/* sites/highseas/app/theme.css */
:root {
  color-scheme: light dark;
  --bg: #000000;
  --surface: #0c0c0d;
  --surface-dim: #08080a;
  --ink: #ffffff;
  --muted: #8b8b92;
  --line: #1f1f22;
  --accent: #ff6a00;
  --accent-ink: #ffffff;
  --accent-soft: #ff8636;
  --badge-bg: color-mix(in oklab, var(--accent) 16%, var(--surface));
  --badge-ink: var(--accent);
  --navy: #16161a;
  --navy-ink: #ffffff;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff;
    --surface: #f6f6f7;
    --surface-dim: #efeff1;
    --ink: #111114;
    --muted: #6a6a72;
    --line: #e6e6e9;
    --accent: #ff6a00;
    --accent-ink: #ffffff;
    --accent-soft: #ff8636;
    --badge-bg: color-mix(in oklab, var(--accent) 12%, var(--surface));
    --badge-ink: #b34a00;
    --navy: #16161a;
    --navy-ink: #ffffff;
  }
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
body {
  background:
    radial-gradient(
      1200px 600px at 20% -10%,
      color-mix(in oklab, var(--accent) 18%, var(--bg)) 0%,
      var(--bg) 60%);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    "Inter",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* app/shared.css */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.head-cta:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site main {
  flex: 1;
}
.site-head {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.site-head-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.wordmark {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.wordmark-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.site-nav {
  display: flex;
  gap: 22px;
  margin: 0 auto;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
}
.site-nav a:hover {
  color: var(--accent);
}
.site-head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.head-login {
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
}
.head-cta {
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
}
.head-cta-orange {
  background: var(--accent);
  color: var(--accent-ink);
}
.head-cta-navy {
  background: var(--navy);
  color: var(--navy-ink);
}
.site-foot {
  background: var(--surface-dim);
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.site-foot-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 30px 20px 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-tag {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.foot-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.foot-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
}
.foot-nav a:hover {
  color: var(--accent);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-accent:hover {
  background: var(--accent-soft);
}
.btn-gradient {
  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent-soft));
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-block {
  width: 100%;
  margin-top: 18px;
}
code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  font-size: .85em;
  background: var(--badge-bg);
  color: var(--badge-ink);
  border-radius: 6px;
  padding: 1px 6px;
  white-space: nowrap;
}
.auth-wrap {
  padding: 56px 20px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: start center;
}
.dash-wrap {
  padding: 56px 20px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: start center;
  gap: 22px;
}
.auth-card {
  width: 410px;
  max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 36px 28px;
  box-shadow: 0 18px 40px -22px rgba(10, 22, 40, 0.25);
  text-align: center;
}
.dash-card {
  width: 680px;
}
.auth-card-accent-top {
  border-top: 4px solid var(--navy);
}
.card-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card-mark-blue {
  background: var(--badge-bg);
  color: var(--badge-ink);
  border-radius: 999px;
}
.card-mark-navy {
  background: var(--navy);
  color: var(--navy-ink);
}
.card-title {
  margin: 16px 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}
.card-title-sm {
  margin-top: 0;
  font-size: 1.2rem;
}
.card-sub {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: .92rem;
}
.field-label {
  display: block;
  text-align: left;
  font-size: .82rem;
  font-weight: 600;
  margin: 14px 0 6px;
}
.field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  padding: 0 12px;
}
.field:focus-within {
  border-color: var(--accent);
}
.field-icon {
  color: var(--muted);
  display: inline-flex;
}
.field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  font-size: .95rem;
  font-family: inherit;
}
.handle-suffix {
  color: var(--muted);
  font-size: .85rem;
  background: var(--surface-dim);
  border-radius: 7px;
  padding: 4px 9px;
  white-space: nowrap;
}
.field-note {
  text-align: left;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}
.field-note strong {
  color: var(--ink);
  font-weight: 600;
}
.agree-row {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  text-align: left;
  margin: 18px 0 0;
  font-size: .82rem;
  color: var(--muted);
}
.agree-row input {
  margin-top: 2px;
  accent-color: var(--accent);
}
.agree-row a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.form-err {
  margin: 0 0 12px;
  color: #dc2626;
  font-size: .85rem;
}
.form-hint {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .85rem;
}
.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}
.auth-alt {
  margin: 14px 0 0;
  font-size: .85rem;
  color: var(--muted);
}
.auth-alt a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.id-rows {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  text-align: left;
}
.id-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  align-items: baseline;
}
.id-key {
  flex: 0 0 11rem;
  color: var(--muted);
}
.id-row .id-val {
  flex-basis: 100%;
}
.id-val {
  color: var(--accent);
  text-decoration: none;
  word-break: break-all;
}
.id-mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  font-size: .8rem;
  color: var(--ink);
}
.id-ok {
  color: #16a34a;
  font-weight: 600;
}
.id-bad {
  color: #dc2626;
  font-weight: 600;
}
.dash-empty {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}
.app-meta {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: baseline;
}
.app-since {
  color: var(--muted);
  font-size: .8rem;
}
.pw-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: -6px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.pw-toggle:hover {
  color: var(--ink);
  background: var(--surface-dim);
}
.pw-toggle .pw-eye,
.pw-toggle .pw-eye-off {
  display: grid;
  place-items: center;
}
.pw-toggle .pw-eye-off {
  display: none;
}
.pw-toggle[aria-pressed=true] .pw-eye {
  display: none;
}
.pw-toggle[aria-pressed=true] .pw-eye-off {
  display: grid;
}
.scope-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
}
.scope-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--muted);
}
.scope-list .scope-icon {
  color: var(--accent);
  display: inline-flex;
}
.app-name-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.app-name-link:hover {
  text-decoration: underline;
}
@media (max-width: 720px) {
  .site-head-inner {
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 12px 16px;
  }
  .wordmark {
    margin-right: auto;
  }
  .site-head-actions {
    display: contents;
  }
  .head-login {
    order: 1;
  }
  .site-head-inner z-theme-toggle {
    order: 1;
  }
  .site-nav {
    order: 2;
    flex-basis: 100%;
    margin: 0;
    gap: 8px 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-nav a {
    white-space: nowrap;
  }
  .head-cta {
    order: 3;
    flex-basis: 100%;
    text-align: center;
    padding: 12px 18px;
  }
  .auth-wrap,
  .dash-wrap {
    padding: 28px 12px 24px;
  }
  .auth-card {
    padding: 26px 18px 24px;
  }
  .id-key {
    flex-basis: 100%;
  }
}

/* sites/highseas/app/blog/blog.css */
.blog {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem 4rem;
}
.blog a {
  color: inherit;
  text-decoration: none;
}
.blog .back {
  display: inline-block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.blog .back:hover {
  color: var(--accent);
}
.blog-head {
  margin-bottom: 2.5rem;
}
.blog-head h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.25rem 0 0.5rem;
}
.blog-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}
.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.post-item a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.08s ease, border-color 0.15s ease;
}
.post-item a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.post-item h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.4rem 0 0.5rem;
  letter-spacing: -0.01em;
}
.post-item p {
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}
.post-item .read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}
.post-date {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
}
.blog.post article {
  margin-bottom: 2.5rem;
}
.blog.post h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0.4rem 0 1.5rem;
}
.blog.post h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 2.25rem 0 0.75rem;
}
.blog.post p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.blog.post ul {
  margin: 0 0 1.3rem;
  padding-left: 1.3rem;
}
.blog.post li {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.blog.post strong {
  font-weight: 700;
}
.blog.post a:not(.back) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog.post blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  color: var(--muted);
  font-style: italic;
}
.blog.post ol {
  margin: 0 0 1.3rem;
  padding-left: 1.3rem;
}
.blog.post ol li {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.blog.post table.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  font-size: 0.98rem;
}
.blog.post table.compare th,
.blog.post table.compare td {
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.blog.post table.compare th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}
.blog.post table.compare td:first-child {
  font-weight: 700;
}
.blog.post .dek {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}
.blog.post hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}
.blog.post .ask {
  color: var(--muted);
  font-style: italic;
}
.blog.post h2 .hash {
  color: var(--accent);
  opacity: 0.55;
  margin-right: 0.12em;
  text-decoration: none;
}
.blog.post .layer-badge {
  display: inline-block;
  font-family:
    ui-monospace,
    Menlo,
    monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 106, 0, 0.10);
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 999px;
  padding: 3px 11px;
}
.blog.post .layer-badge + h2 {
  margin-top: 0.45rem;
}
.blog.post .note {
  border-left: 3px solid var(--accent);
  background: var(--surface);
  padding: 2px 18px;
  margin: 1.6em 0;
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.blog.post figure.diagram {
  margin: 1.8em 0;
  background: #ffffff;
  border: 1px solid #ece9e4;
  border-radius: 16px;
  padding: 22px 16px 14px;
  overflow-x: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 8px 28px rgba(0, 0, 0, .06);
}
.blog.post figure.diagram svg.diag {
  width: 100%;
  height: auto;
  display: block;
}
.blog.post figure.diagram figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: #6a6a6a;
  font-style: italic;
}
.diag text {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.diag .box {
  fill: #f1eee8;
  stroke: #d9d4cc;
  stroke-width: 1.5;
}
.diag .box-orange {
  fill: #ff6a00;
  stroke: #cc5500;
  stroke-width: 1.5;
}
.diag .box-green {
  fill: #0a8a3f;
  stroke: #076b30;
  stroke-width: 1.5;
}
.diag .box-dark {
  fill: #333;
  stroke: #111;
  stroke-width: 1.5;
}
.diag .lbl {
  fill: #2a2a2a;
  font-size: 14px;
}
.diag .lbl-sm {
  fill: #2a2a2a;
  font-size: 12.5px;
}
.diag .lbl-w {
  fill: #fff;
}
.diag .edge {
  stroke: #9a948a;
  stroke-width: 1.7;
  fill: none;
}
.diag .edge-dash {
  stroke-dasharray: 5 4;
}
.diag .elabel {
  fill: #837c70;
  font-size: 11.5px;
  font-style: italic;
}
.diag .container {
  fill: rgba(120, 110, 95, .06);
  stroke: #cdc7bc;
  stroke-width: 1.4;
  stroke-dasharray: 6 5;
}
.diag .clabel {
  fill: #8a8276;
  font-size: 12.5px;
  font-weight: 700;
}

/* sites/highseas/app/docs/docs.css */
.docs {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem 4rem;
}
.docs a {
  color: inherit;
  text-decoration: none;
}
.docs-nav {
  align-self: start;
  position: sticky;
  top: 2rem;
}
.docs-nav .docs-home {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.docs-nav .docs-home:hover {
  color: var(--accent);
}
.docs-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.docs-nav nav a {
  padding: 0.45rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}
.docs-nav nav a:hover {
  color: var(--ink);
  background: var(--surface);
}
.docs-nav nav a.active {
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  font-weight: 600;
}
.docs-content {
  min-width: 0;
  max-width: 46rem;
}
.docs-content h1 {
  font-size: clamp(2rem, 4.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.docs-content .lead {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.docs-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 2.25rem 0 0.75rem;
}
.docs-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.1rem;
}
.docs-content ul {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
}
.docs-content li {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.docs-content strong {
  font-weight: 700;
}
.docs-content a:not(.docs-home):not(.active) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.docs-content code {
  font-family:
    ui-monospace,
    "SF Mono",
    Menlo,
    Consolas,
    monospace;
  font-size: 0.88em;
  background: color-mix(in oklab, var(--accent) 10%, var(--surface));
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  padding: 0.1rem 0.4rem;
}
.docs-content pre {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin: 0 0 1.3rem;
}
.docs-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
}
@media (max-width: 760px) {
  .docs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .docs-nav {
    position: static;
  }
  .docs-nav nav {
    flex-flow: row wrap;
  }
}

/* sites/highseas/app/page.css */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.landing {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.landing a {
  color: inherit;
  text-decoration: none;
}
.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition:
    transform 0.08s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}
.btn.primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn.primary:hover {
  filter: brightness(1.05);
}
.btn.ghost {
  background: transparent;
}
.hero {
  text-align: center;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 1.1rem;
}
.hero .lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.hero .actions {
  justify-content: center;
}
.section-head {
  text-align: center;
  margin-bottom: 2.25rem;
}
.section-head h2,
.cta h2,
.faq h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}
.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}
.features {
  padding: 1rem 0 3rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}
.cta {
  text-align: center;
  background: color-mix(in oklab, var(--accent) 12%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--accent) 35%, var(--line));
  border-radius: 1.25rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
  margin: 2rem 0 3.5rem;
}
.cta p {
  color: var(--muted);
  max-width: 34rem;
  margin: 0.5rem auto 1.75rem;
}
.cta .actions {
  justify-content: center;
}
.faq {
  max-width: 46rem;
  margin: 0 auto;
}
.faq h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.qas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.25rem 1.1rem;
}
.qa summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.9rem 0;
  list-style: none;
}
.qa summary::-webkit-details-marker {
  display: none;
}
.qa summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.qa[open] summary::after {
  content: "\2013";
}
.qa p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}
.site-footer {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.foot-brand .mark {
  font-weight: 800;
  font-size: 1.15rem;
}
.foot-brand .tag {
  color: var(--muted);
  font-size: 0.92rem;
}
.foot-cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.foot-col .foot-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.foot-col a {
  color: var(--ink);
  font-size: 0.94rem;
}
.foot-col a:hover {
  color: var(--accent);
}
.copy {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 2rem 0 0;
}
@media (max-width: 860px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.live {
  padding: 0.5rem 0 2.5rem;
}
.live-grid {
  grid-template-columns: repeat(2, 1fr);
}
.live-card {
  text-decoration: none;
  transition: transform 0.08s ease, border-color 0.15s ease;
}
.live-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.live-card h3 {
  color: var(--accent);
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}
.live-card p {
  color: var(--muted);
  margin: 0;
}
@media (max-width: 640px) {
  .live-grid {
    grid-template-columns: 1fr;
  }
}
.hero-logo {
  width: clamp(88px, 15vw, 140px);
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 6px 24px rgba(255, 106, 0, 0.35));
}
