/* The Wheel — v16 beta launch site
   Locked Black Fig / Verdigris palette (website/final-brand-site/README.md).
   Rulebook carried from v15/brand handoff:
   - Verdigris marks permission, proof, and action. Never decoration.
   - One black-fig authority moment per page.
   - Radius ≤ 16px. No shadows, no gradients, no side-stripe accents.
   - Fonts self-hosted: a font CDN is a tracking surface with better typography.
*/

@font-face {
  font-family: "Archivo"; font-style: normal; font-weight: 400 700; font-stretch: 100%;
  font-display: swap; src: url("fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo"; font-style: normal; font-weight: 400 700; font-stretch: 100%;
  font-display: swap; src: url("fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono"; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url("fonts/jetbrains-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono"; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url("fonts/jetbrains-mono-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Serif 4"; font-style: italic; font-weight: 400;
  font-display: swap; src: url("fonts/source-serif-4-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4"; font-style: italic; font-weight: 400;
  font-display: swap; src: url("fonts/source-serif-4-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --black-fig: #1c111b;
  --fig-depth: #342235;
  --fig-bright: #51384e;
  --verdigris: #0a947a;
  --verdigris-deep: #066b59;
  --verdigris-dark: #03483d;
  --verdigris-light: #51cdb5;
  --ink: #171216;
  --ink-muted: #3c353b;
  --ink-soft: #6d676e;
  --line: #e2dedf;
  --line-strong: #c9c2c5;
  --surface: #fffefa;
  --surface-cool: #f7f8f3;
  --surface-soft: #e9eee6;
  --paper: #fbfaf7;
  --paper-deep: #e8e7df;

  --font-body: "Archivo", Inter, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-serif: "Source Serif 4", Georgia, serif;

  --w-narrow: 760px;
  --w-medium: 880px;
  --w-wide: 1100px;
  --w-full: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--verdigris-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 12px 20px; background: var(--black-fig); color: #fff;
  font-weight: 700; text-decoration: none; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--w-full); margin: 0 auto; padding: 0 24px; }
.container.wide { max-width: var(--w-wide); }
.container.medium { max-width: var(--w-medium); }
.container.narrow { max-width: var(--w-narrow); }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-nav .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.wordmark {
  font-family: var(--font-mono); font-weight: 700; font-size: 15px;
  letter-spacing: 0.14em;
}
.nav-links {
  display: flex; align-items: center; gap: 22px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-muted);
}
.nav-links a {
  text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] {
  color: var(--black-fig); font-weight: 650;
  border-bottom-color: var(--verdigris-deep);
}
.nav-login {
  font-weight: 650; color: var(--black-fig);
}
.nav-cta {
  display: inline-flex; align-items: center;
  min-height: 40px; padding: 0 18px;
  background: var(--black-fig); color: #fff !important;
  border-radius: 999px; font-size: 14px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--fig-depth); }
.nav-compact { display: none; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 0 14px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: var(--surface); color: var(--black-fig);
  font: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 24px 18px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex; align-items: center; min-height: 46px;
  padding: 0 12px; border-radius: 8px;
  text-decoration: none; color: var(--ink-muted);
  font-size: 15.5px; font-weight: 600;
}
.mobile-nav a[aria-current="page"] { color: var(--black-fig); background: var(--surface); }
.mobile-nav .nav-cta {
  justify-content: center; margin-top: 8px; color: #fff;
}

/* ── Section scaffolding ────────────────────────────────────────────── */
section { padding: clamp(56px, 9vw, 104px) 0; }
section.tight { padding: clamp(40px, 6vw, 72px) 0; }
.rule-top { border-top: 1px solid var(--line); }
.on-surface { background: var(--surface); }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--verdigris-deep);
}
.eyebrow::before {
  content: ""; width: 32px; height: 2px; background: var(--verdigris);
}

h1 {
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.04; font-weight: 700; letter-spacing: -0.035em;
  margin: 0; color: var(--black-fig);
}
h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08; font-weight: 700; letter-spacing: -0.028em;
  margin: 0 0 18px; color: var(--black-fig);
}
h3 {
  font-size: clamp(19px, 2vw, 23px); line-height: 1.25;
  font-weight: 700; letter-spacing: -0.015em;
  margin: 0 0 10px; color: var(--black-fig);
}
.serif-turn {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  letter-spacing: -0.02em;
}
.lede {
  font-size: clamp(17px, 1.6vw, 19px); line-height: 1.62;
  color: var(--ink-muted); max-width: 66ch;
}
.sub { font-size: 16px; line-height: 1.6; color: var(--ink-muted); }
.mono-note {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 26px;
  border-radius: 999px; border: none; cursor: pointer;
  font: inherit; font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none;
}
.btn-primary { background: var(--black-fig); color: #fff; }
.btn-primary:hover { background: var(--fig-depth); }
.btn-verdigris { background: var(--verdigris); color: var(--black-fig); }
.btn-verdigris:hover { background: var(--verdigris-light); }
.btn-link {
  display: inline-flex; align-items: center; min-height: 48px;
  font-size: 15.5px; font-weight: 700; color: var(--black-fig);
  text-decoration: none; border-bottom: 2px solid var(--verdigris-deep);
  padding: 0 2px; border-radius: 0;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero-actions {
  margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}

/* ── Custody map (hero diagram) ─────────────────────────────────────── */
.custody-map {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 20px;
  font-size: 14px;
}
.custody-map .map-title {
  margin: 0; padding-bottom: 14px; border-bottom: 1px solid var(--line);
  text-align: center; font-family: var(--font-mono);
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black-fig);
}
.map-row { text-align: center; margin-top: 16px; }
.map-label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 10px;
}
.map-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.map-chip {
  display: inline-flex; align-items: center; min-height: 28px; padding: 0 12px;
  border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--ink-muted);
  font-size: 13px; font-weight: 650;
}
.map-arrow { text-align: center; color: var(--line-strong); font-size: 24px; line-height: 1; margin: 10px 0 4px; }
.map-gate {
  position: relative; z-index: 2; left: 50%; translate: -50% 0;
  display: inline-flex; align-items: center; min-height: 32px; padding: 0 16px;
  border: 1px dashed var(--verdigris-deep); border-radius: 999px;
  background: var(--paper); color: var(--verdigris-deep);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
}
.map-gate.in { transform: translateY(12px); }
.map-gate.out { transform: translateY(-12px); }
.map-app {
  border: 2px solid var(--black-fig); border-radius: 16px;
  padding: 24px 16px 16px; background: rgba(255, 255, 255, 0.4);
}
.map-app-tag {
  display: inline-flex; padding: 7px 12px; border-radius: 4px;
  background: var(--black-fig); color: var(--verdigris-light);
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
}
.map-app > p { margin: 10px 0 16px; font-size: 15px; font-weight: 700; color: var(--black-fig); }
.map-app > p em { font-style: normal; color: var(--verdigris-deep); }
.map-private-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.map-cell {
  border: 1.5px solid var(--black-fig); border-radius: 8px; padding: 11px;
  background: var(--surface); text-align: left;
}
.map-cell.dim { border: 1px solid var(--line-strong); }
.map-cell strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--black-fig); }
.map-cell.dim strong { color: var(--ink-muted); }
.map-cell span { display: block; font-size: 12.5px; color: var(--ink-muted); }
.map-cell small { display: block; font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.map-shared {
  margin-top: 10px; border: 1.5px solid var(--fig-bright); border-radius: 8px;
  padding: 11px 13px; background: var(--surface); text-align: left;
}
.map-hub {
  margin-top: 12px; min-height: 48px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--black-fig); color: var(--verdigris-light); border-radius: 8px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.map-hub em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 13px; letter-spacing: 0; text-transform: none; }
.map-foot {
  margin: 12px auto 0; max-width: 340px; text-align: center;
  font-size: 13px; line-height: 1.5; color: var(--ink-muted);
  font-family: var(--font-serif); font-style: italic;
}

/* Custody-map flow animation: one 9s loop.
   A dot enters through the source gate, the encrypted core acknowledges it,
   then a dot exits through the MCP gate and a summary dot returns. */
.map-arrow { position: relative; }
.map-arrow::before,
.map-arrow::after {
  content: ""; position: absolute; left: 50%; top: -4px;
  width: 7px; height: 7px; margin-left: -3.5px; border-radius: 50%;
  background: var(--verdigris-deep); opacity: 0;
}
.map-arrow.flow-in::before { animation: map-dot-down 9s ease-in-out infinite; }
.map-arrow.flow-out::before { animation: map-dot-down 9s ease-in-out infinite; animation-delay: 4.5s; }
.map-arrow.flow-out::after {
  background: var(--fig-bright);
  animation: map-dot-up 9s ease-in-out infinite; animation-delay: 6.3s;
}
@keyframes map-dot-down {
  0% { opacity: 0; transform: translateY(0); }
  3% { opacity: 1; }
  11% { opacity: 1; transform: translateY(26px); }
  14% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 0; transform: translateY(30px); }
}
@keyframes map-dot-up {
  0% { opacity: 0; transform: translateY(30px); }
  3% { opacity: 1; }
  11% { opacity: 1; transform: translateY(0); }
  14% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-4px); }
}
.map-gate.in { animation: map-gate-pulse 9s ease-in-out infinite; animation-delay: 0.9s; }
.map-gate.out { animation: map-gate-pulse 9s ease-in-out infinite; animation-delay: 4.1s; }
@keyframes map-gate-pulse {
  0%, 100% { border-style: dashed; box-shadow: none; }
  3%, 9% { border-style: solid; box-shadow: 0 0 0 4px rgba(10, 148, 122, 0.16); }
  14% { border-style: dashed; box-shadow: none; }
}
.map-hub { animation: map-hub-glow 9s ease-in-out infinite; animation-delay: 1.6s; }
@keyframes map-hub-glow {
  0%, 100% { box-shadow: none; }
  4%, 10% { box-shadow: 0 0 0 3px rgba(10, 148, 122, 0.28); }
  16% { box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  .map-arrow::before, .map-arrow::after,
  .map-gate.in, .map-gate.out, .map-hub { animation: none; }
}

/* ── Lightbox: click a screenshot to zoom ───────────────────────────── */
.product-screenshot { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(28, 17, 27, 0.86); cursor: zoom-out; padding: 4vmin;
}
.lightbox img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  border-radius: 8px; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

/* ── Product screenshots ────────────────────────────────────────────── */
.product-screenshot {
  border: 1px solid var(--line-strong); border-radius: 12px;
  margin: 0 auto;
}
.shot-caption {
  margin: 14px auto 0; max-width: 62ch; text-align: center;
  font-size: 14.5px; line-height: 1.55; color: var(--ink-soft);
}
.shot-caption .chip { margin-right: 8px; }

.shot-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 48px; align-items: start;
}
@media (max-width: 760px) { .shot-pair { grid-template-columns: 1fr; } }
.shot-pending {
  position: relative;
  border: 1px dashed var(--line-strong); border-radius: 12px;
  background: var(--surface-cool);
  aspect-ratio: 16 / 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  text-align: center; padding: 24px;
}
.shot-pending .chip { position: absolute; top: 12px; left: 12px; }
.shot-pending p { margin: 0; font-size: 14px; color: var(--ink-soft); max-width: 34ch; }

/* ── Chips (honesty labels) ─────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; min-height: 26px; padding: 0 11px;
  border-radius: 999px; font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.chip-live { background: var(--verdigris); color: var(--black-fig); }
.chip-testing { border: 1px solid var(--verdigris-deep); color: var(--verdigris-deep); background: transparent; }
.chip-soon { border: 1px solid var(--line-strong); color: var(--ink-soft); background: transparent; }
.chip-beta { background: var(--surface-soft); color: var(--ink-muted); }

/* ── Connector list ─────────────────────────────────────────────────── */
.connector-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.connector-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 4px; border-bottom: 1px solid var(--line);
}
.connector-row .name { font-size: 16.5px; font-weight: 650; color: var(--black-fig); }
.connector-row .scope { font-size: 13.5px; color: var(--ink-soft); }

/* ── Numbered list (pillars) ────────────────────────────────────────── */
.pillar-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.pillar-list { border-top: 1px solid var(--line); margin-top: 16px; }
.pillar {
  display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.pillar .n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--verdigris-deep);
}
.pillar h4 { margin: 0; font-size: 17.5px; line-height: 1.3; color: var(--black-fig); letter-spacing: -0.01em; }
.pillar p { margin: 6px 0 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-muted); }

/* ── Dark band (one authority moment per page) ──────────────────────── */
.band-dark {
  background: var(--black-fig); color: #fff;
  border-top: 1px solid var(--black-fig);
}
.band-dark h2 { color: #fff; }
.band-dark .eyebrow { color: var(--verdigris-light); }
.band-dark .eyebrow::before { background: var(--verdigris); }
.band-dark .lede, .band-dark .sub { color: rgba(255, 255, 255, 0.72); }
.band-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.fact-rows { display: flex; flex-direction: column; gap: 12px; }
.fact-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
.fact-row b { font-size: 15px; font-weight: 650; color: #fff; }
.fact-row span { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); font-family: var(--font-mono); text-align: right; }

/* ── Steps ──────────────────────────────────────────────────────────── */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); counter-reset: step; }
.step {
  display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 18px;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.step .dot {
  counter-increment: step;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--black-fig);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  color: var(--black-fig);
}
.step .dot::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-muted); font-size: 16px; }

/* ── Receipt anatomy ────────────────────────────────────────────────── */
.receipt {
  background: var(--black-fig); color: #fff;
  border-radius: 16px; padding: clamp(20px, 3vw, 32px);
}
.receipt-head {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--verdigris-light);
  padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.receipt-layers { list-style: none; margin: 0; padding: 0; }
.receipt-layers li {
  display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.receipt-layers li:last-child { border-bottom: none; padding-bottom: 4px; }
.receipt-layers .n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--verdigris-light);
}
.receipt-layers b { display: block; font-size: 16px; color: #fff; margin-bottom: 3px; }
.receipt-layers span { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.68); }

/* ── FAQ (native details/summary, no JS required) ───────────────────── */
.faq-list {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.faq-item { border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: none; }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-size: 16.5px; font-weight: 650; color: var(--black-fig); letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--paper); color: var(--black-fig);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; line-height: 1;
}
.faq-item[open] summary::after { content: "−"; background: var(--black-fig); color: #fff; }
.faq-item .faq-a {
  padding: 0 24px 22px; font-size: 15.5px; line-height: 1.62; color: var(--ink-muted);
}
.faq-item .faq-a p { margin: 0 0 12px; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ── Compare ────────────────────────────────────────────────────────── */
.compare-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.compare-col { padding: 36px 28px 40px; border-right: 1px solid var(--line); }
.compare-col:last-child { border-right: none; }
.compare-col.us { background: var(--black-fig); color: #fff; }
.compare-col .tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 16px;
}
.compare-col.us .tag { color: var(--verdigris-light); }
.compare-col h3 { margin-bottom: 18px; }
.compare-col.us h3 { color: #fff; }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.compare-col li {
  position: relative; padding-left: 22px;
  font-size: 14.5px; line-height: 1.5; color: var(--ink-muted);
}
.compare-col.us li { color: rgba(255, 255, 255, 0.82); }
.compare-col li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 2px; background: var(--line-strong);
}
.compare-col.us li::before { background: var(--verdigris-light); }

/* ── Waitlist form ──────────────────────────────────────────────────── */
.waitlist-form {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px;
  max-width: 520px;
}
.waitlist-form input[type="email"] {
  min-height: 52px; padding: 0 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font: inherit; font-size: 15.5px; color: #fff;
}
.waitlist-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.65); }
.waitlist-form input[type="email"]:focus-visible { outline-color: var(--verdigris-light); }
.waitlist-form .btn { min-height: 52px; }
.waitlist-form .btn[disabled] { opacity: 0.6; cursor: default; }
.waitlist-status {
  margin-top: 18px; font-size: 15px; line-height: 1.5; min-height: 1.5em;
}
.waitlist-status.ok { color: var(--verdigris-light); }
.waitlist-status.err { color: #ffb3a0; }
.on-light .waitlist-status.ok { color: var(--verdigris-dark); }
.on-light .waitlist-status.err { color: #a03a20; }
.cta-note {
  margin-top: 24px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Callouts / thesis lines ────────────────────────────────────────── */
.keyline {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 27px); line-height: 1.4;
  color: var(--black-fig); max-width: 30em;
}
.band-dark .keyline { color: var(--verdigris-light); }
.callout {
  border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 22px 26px; background: var(--surface);
}
.callout .mono-note { margin-bottom: 8px; }

/* ── Prose (legal, about, blog) ─────────────────────────────────────── */
.prose { max-width: 70ch; }
.prose p { margin: 0 0 1.2em; color: var(--ink-muted); }
.prose h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 1.8em 0 0.6em; }
.prose h3 { margin: 1.5em 0 0.5em; }
.prose ul, .prose ol { color: var(--ink-muted); padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.12em; color: var(--black-fig); border: none;
}
.prose a { color: var(--verdigris-dark); text-decoration-color: var(--verdigris); }

/* ── Blog ───────────────────────────────────────────────────────────── */
.post-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.post-row {
  display: block; padding: 26px 4px; border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.post-row h3 { margin-bottom: 6px; }
.post-row:hover h3 { color: var(--verdigris-dark); }
.post-row .post-hook { font-size: 15.5px; color: var(--ink-muted); max-width: 66ch; }
.post-row .post-date {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}
.article-header { padding-bottom: 24px; }
.article-body { max-width: 70ch; }
.article-body p { margin: 0 0 1.25em; color: var(--ink-muted); font-size: 17.5px; line-height: 1.7; }
.article-body h2 { font-size: clamp(23px, 2.6vw, 31px); margin: 1.8em 0 0.6em; }
.article-body h3 { margin: 1.5em 0 0.5em; }
.article-body ul, .article-body ol { color: var(--ink-muted); padding-left: 1.3em; margin: 0 0 1.25em; font-size: 17.5px; line-height: 1.7; }
.article-body blockquote {
  margin: 1.8em 0; padding: 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.15em; line-height: 1.55; color: var(--black-fig); border: none;
}
.article-body a { color: var(--verdigris-dark); text-decoration-color: var(--verdigris); }
.article-body hr { border: none; border-top: 1px solid var(--line); margin: 2.2em 0; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--paper-deep); border-top: 1px solid var(--line);
  padding: clamp(44px, 6vw, 64px) 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px); margin-bottom: 40px;
}
.footer-grid .tagline {
  font-size: 14px; line-height: 1.55; color: var(--ink-muted);
  margin: 14px 0 0; max-width: 300px;
}
.footer-col .col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--black-fig); margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: var(--ink-muted); text-decoration: none; }
.footer-col a:hover { color: var(--black-fig); }
.footer-base {
  padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--ink-soft);
}

/* ── Motion ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.in { opacity: 1; transform: none; }
  /* Content is visible by default when JS is absent; site.js adds .reveal
     only after confirming IntersectionObserver support. */
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .pillar-cols { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col { border-right: none; border-bottom: 1px solid var(--line); }
  .compare-col:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-compact { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-login-mobile {
    display: flex; align-items: center; min-height: 44px;
    font-size: 14.5px; font-weight: 650; color: var(--black-fig);
    text-decoration: none;
  }
  body { font-size: 16px; }
  .map-private-grid { grid-template-columns: 1fr; }
  .waitlist-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
