/* ============================================================
   DAY90 — Landing v2 · light theme · B&W photos + volt accent
   Design: paper-white base, near-black ink, volt electric
   accent. Photography starts grayscale, pops to color on hover
   ("black & white AND color"). Motion: marquees, counters,
   floating ASCII runner, parallax, scroll reveals.
   ============================================================ */

:root {
  --bg: #F6F6F2;
  --bg-2: #EFEFE9;
  --surface: #FFFFFF;
  --ink: #12140F;
  --ink-2: #41463E;
  --ink-3: #838A80;
  --line: #E1E1D9;
  --accent: #C9F24A;
  --accent-ink: #161A0A;
  --dark: #12140F;
  --dark-2: #1B1E17;
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(18,20,15,.05), 0 12px 32px -18px rgba(18,20,15,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- type ---------- */
h1, h2, h3, .brand { font-family: var(--font-display); font-weight: 700; }
.hero-title { font-size: clamp(38px, 5.2vw, 62px); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 18px; }
.hero-title em { font-style: normal; color: var(--ink); position: relative; white-space: nowrap; }
.hero-title em::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.04em; height: 0.32em; background: var(--accent); z-index: -1; border-radius: 4px; }
.section-statement { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.12; margin: 0; }
.section-statement em { font-style: normal; color: var(--accent); }
.section-title { font-size: clamp(24px, 3vw, 38px); letter-spacing: -0.015em; line-height: 1.12; margin: 0 0 10px; }
.section-sub { color: var(--ink-2); font-size: 17px; max-width: 640px; margin: 0 0 28px; }

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-dark { background: var(--dark); color: var(--bg); }
.section-dark .section-sub { color: rgba(246,246,242,.62); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(246,246,242,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { font-size: 20px; letter-spacing: -0.02em; font-weight: 700; }
.brand span { color: var(--ink-3); font-weight: 500; }
.nav-links { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; font-weight: 700; font-size: 15px; padding: 13px 26px; border: 1px solid transparent; cursor: pointer; transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s, background .18s; text-align: center; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { box-shadow: 0 10px 24px -12px rgba(18,20,15,.5); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 8px 16px; font-size: 13.5px; }
.btn-lg { padding: 16px 34px; font-size: 16.5px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { box-shadow: 0 10px 24px -14px rgba(120,150,20,.55); transform: translateY(-1px); }

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; margin: 0 0 22px; }
.hero-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-sub { font-size: 18px; color: var(--ink-2); max-width: 520px; margin: 0 0 30px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; font-size: 13px; color: var(--ink-3); }
.hero-trust span::before { content: "▚ "; color: var(--accent); font-weight: 700; }

.hero-visual { position: relative; }
.hero-photo { border-radius: var(--radius); overflow: hidden; filter: grayscale(1) contrast(1.06); box-shadow: var(--shadow); transition: filter .5s ease; }
.hero-photo:hover { filter: grayscale(0) contrast(1); }
.hero-photo img { width: 100%; height: 520px; object-fit: cover; }
.hero-chip { position: absolute; left: 18px; top: 18px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 700; box-shadow: var(--shadow); }
.hero-chip .chip-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s ease infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,242,74,.6); } 50% { box-shadow: 0 0 0 7px rgba(201,242,74,0); } }
.hero-runner { position: absolute; right: -14px; bottom: -26px; background: var(--ink); border-radius: 14px; padding: 10px 12px; box-shadow: var(--shadow); border: 1px solid var(--dark-2); }
.hero-runner canvas { display: block; width: 150px; height: auto; }
.hero-runner-label { font-family: var(--font-mono); font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin: 6px 2px 0; }

.hero-visual-note { text-align: center; font-size: 13px; color: var(--ink-3); margin: 34px 0 0; }
.hero-visual-note strong { color: var(--ink-2); }

/* ---------- marquee ---------- */
.strip { background: var(--ink); color: var(--bg); overflow: hidden; padding: 14px 0; }
.marquee { display: flex; gap: 42px; white-space: nowrap; animation: marquee 26s linear infinite; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: 0.01em; }
.marquee span { display: inline-flex; align-items: center; gap: 42px; }
.marquee-sep { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-photo { height: 210px; overflow: hidden; filter: grayscale(1) contrast(1.05); transition: filter .5s ease; }
.step-card:hover .step-photo { filter: grayscale(0) contrast(1); }
.step-photo img { width: 100%; height: 100%; object-fit: cover; }
.step-body { padding: 20px 22px 24px; }
.step-kicker { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px; }
.step-kicker b { color: var(--ink); }
.step-title { font-size: 19px; margin: 0 0 8px; letter-spacing: -0.01em; }
.step-body p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.step-tag { font-family: var(--font-mono); font-size: 11px; border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; color: var(--ink-2); }

/* ---------- race wedge (dark) ---------- */
.wedge-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; margin-bottom: 44px; }
.wedge-sub { color: rgba(246,246,242,.6); font-size: 16px; max-width: 560px; margin: 0; }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tile { background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 22px 18px; text-align: center; }
.tile-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.02em; color: var(--bg); font-variant-numeric: tabular-nums; }
.tile-value-accent { color: var(--accent); }
.tile-label { display: block; font-size: 13.5px; font-weight: 600; margin-top: 6px; }
.tile-note { display: block; font-size: 12px; color: rgba(246,246,242,.45); margin-top: 2px; }
.tiles-note { text-align: center; color: rgba(246,246,242,.5); font-size: 14px; margin: 26px 0 0; }
.race-photo { margin-top: 44px; border-radius: var(--radius); overflow: hidden; max-height: 260px; filter: grayscale(1) brightness(.82) contrast(1.05); }
.race-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- leagues / social ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checklist { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-2); }
.checklist li::before { content: "▚"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.league-photo { border-radius: var(--radius); overflow: hidden; filter: grayscale(1) contrast(1.05); transition: filter .5s ease; }
.league-photo:hover { filter: grayscale(0) contrast(1); }
.league-photo img { width: 100%; height: 380px; object-fit: cover; }
.league-card { margin-top: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; font-family: var(--font-mono); font-size: 13.5px; }
.league-head { display: flex; justify-content: space-between; font-weight: 700; padding: 4px 6px 12px; border-bottom: 1px solid var(--line); }
.league-tier { color: var(--ink-3); }
.league-rows { display: grid; }
.lrow { display: grid; grid-template-columns: 34px 1fr auto; gap: 8px; align-items: center; padding: 9px 6px; border-bottom: 1px solid var(--line); }
.lrow:last-child { border-bottom: 0; }
.lrank { color: var(--ink-3); }
.lname { font-weight: 600; }
.lpts { color: var(--ink-3); }
.lrow-top .lname { font-weight: 700; }
.lrow-you { background: var(--accent); border-radius: 10px; margin: 6px 0; border-bottom: 0; padding: 9px 6px; }
.lrow-you .lrank { color: var(--accent-ink); }
.ltag { font-size: 10.5px; font-weight: 700; background: var(--accent-ink); color: var(--accent); border-radius: 999px; padding: 2px 9px; }

/* ---------- matching ---------- */
.match-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.match-sub { color: var(--ink-2); font-size: 16.5px; margin: 0; }
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px 18px; }
.tier-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.tier-rule { display: inline-block; font-family: var(--font-mono); font-size: 11.5px; margin: 8px 0 10px; border: 1px solid var(--line); border-radius: 999px; padding: 2px 10px; color: var(--ink-2); }
.tier p { margin: 0; font-size: 13.5px; color: var(--ink-2); }
.tier-hot { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tier-hot .tier-rule { border-color: rgba(255,255,255,.25); color: var(--accent); }
.tier-hot p { color: rgba(246,246,242,.65); }
.match-note { text-align: center; font-size: 14px; color: var(--ink-3); margin: 26px 0 0; }
.match-photo { margin-top: 40px; border-radius: var(--radius); overflow: hidden; filter: grayscale(1) contrast(1.05); transition: filter .5s ease; max-height: 300px; }
.match-photo:hover { filter: grayscale(0); }
.match-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- benchmarks strip (light, playful) ---------- */
.bench-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bench-grid-lg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bench-card-lg { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; transition: transform .22s cubic-bezier(.16,1,.3,1); }
.bench-card-lg:hover { transform: translateY(-3px); }
.bench-art-lg { font-family: var(--font-mono); font-size: 10.5px; line-height: 1.2; color: var(--ink); margin: 0 0 12px; white-space: pre; }
.bench-value-lg { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin: 0 0 4px; }
.bench-title-lg { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin: 0 0 8px; }
.bench-note-lg { margin: 0; font-size: 12.5px; color: var(--ink-2); }

/* ---------- demo card (interactive lab) ---------- */
.demo-card { margin-top: 42px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.demo-head { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.demo-title { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.demo-live { margin-left: auto; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.demo-step { display: none; padding: 22px 20px 26px; }
.demo-step-active { display: block; animation: fadeUp .4s cubic-bezier(.16,1,.3,1); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.demo-hint { font-size: 13px; color: var(--ink-3); text-align: center; margin: 14px 0 10px; }

.dropzone { border: 2px dashed var(--line); border-radius: var(--radius); padding: 34px 20px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; }
.dropzone:hover { border-color: var(--ink); background: var(--bg-2); }
.dz-icon { color: var(--ink-2); }
.dz-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 10px 0 4px; }
.dz-sub { font-size: 13.5px; color: var(--ink-2); margin: 0; }
.dz-opt { font-size: 12.5px; color: var(--ink-3); margin: 10px 0 0; text-decoration: underline; text-underline-offset: 3px; }

.demo-field { margin-top: 16px; }
.field-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field-hint { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); font-weight: 400; }
.field-input { width: 100%; border: 1px solid var(--line); background: var(--bg); border-radius: 12px; padding: 11px 14px; font-size: 15px; color: var(--ink); outline: none; transition: border-color .2s; font-family: inherit; }
.field-input:focus { border-color: var(--ink); background: var(--surface); }

.archetype-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.archetype-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px 8px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; }
.archetype-card:hover { border-color: var(--ink-2); }
.archetype-card-active { background: var(--ink); border-color: var(--ink); }
.archetype-card-active .archetype-name { color: var(--bg); }
.archetype-card-active .archetype-desc { color: rgba(246,246,242,.6); }
.archetype-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.archetype-desc { display: block; font-size: 11px; color: var(--ink-3); margin-top: 2px; }

#btn-scan { margin-top: 18px; }

.scan-visual { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); border: 1px solid var(--dark-2); }
.scan-visual canvas { display: block; width: 100%; height: auto; }
.scan-beam { position: absolute; left: 0; right: 0; top: -18%; height: 22%; background: linear-gradient(to bottom, transparent, rgba(201,242,74,.34), transparent); animation: beam 1.15s ease-in-out infinite; }
@keyframes beam { 0% { transform: translateY(0); } 100% { transform: translateY(620%); } }
.scan-ascii-status { font-family: var(--font-mono); font-size: 12.5px; text-align: center; margin: 14px 0 0; color: var(--ink-2); }

.result-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: stretch; }
.result-figure { position: relative; margin: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--bg-2); }
.result-figure img { width: 100%; height: auto; display: block; }
.result-figure figcaption { position: absolute; left: 8px; bottom: 8px; font-family: var(--font-mono); font-size: 10.5px; background: rgba(18,20,15,.78); color: var(--bg); border-radius: 999px; padding: 3px 10px; }
.char-corner { position: absolute; font-family: var(--font-mono); font-size: 15px; color: var(--accent); z-index: 2; text-shadow: 0 0 6px rgba(0,0,0,.35); }
.cc-tl { top: 5px; left: 6px; } .cc-tr { top: 5px; right: 6px; } .cc-bl { bottom: 22px; left: 6px; } .cc-br { bottom: 22px; right: 6px; }
.result-arrow { display: flex; align-items: center; color: var(--ink-3); font-size: 20px; }
.result-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0 4px; }
.stat { background: var(--bg-2); border-radius: 12px; padding: 12px 10px; text-align: center; }
.stat-label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); font-family: var(--font-mono); }
.stat-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-top: 3px; font-variant-numeric: tabular-nums; }
.result-archetypes { margin-top: 14px; }
.result-badge { margin-left: 6px; font-size: 9.5px; font-weight: 700; color: var(--accent-ink); background: var(--accent); border-radius: 999px; padding: 2px 7px; }
.result-figure-projected { border-color: var(--ink); box-shadow: 0 0 0 1px rgba(18,20,15,.08), 0 12px 30px -18px rgba(18,20,15,.3); }

.btn-plan-toggle { margin: 10px 0 0; }
.plan-panel { display: none; margin-top: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); overflow: hidden; }
.plan-panel.plan-open { display: block; animation: fadeUp .35s cubic-bezier(.16,1,.3,1); }
.plan-day1 { padding: 14px 16px; background: linear-gradient(135deg, rgba(201,242,74,.22), transparent 60%); border-bottom: 1px solid var(--line); }
.plan-day1-kicker { font-size: 10px; font-family: var(--font-mono); color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.1em; }
.plan-day1-title { margin: 4px 0 2px; font-size: 14px; font-weight: 700; }
.plan-day1-meta { margin: 0; font-size: 12px; color: var(--ink-3); }
.plan-paces { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 16px; border-bottom: 1px solid var(--line); }
.pace-chip { font-family: var(--font-mono); font-size: 11px; border: 1px solid var(--line); padding: 3px 9px; border-radius: 999px; }
.plan-vdot { padding: 8px 16px 0; margin: 0; font-size: 11px; color: var(--ink-3); font-family: var(--font-mono); }
.plan-phases { padding: 6px 16px 14px; display: grid; gap: 10px; }
.phase-card { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.phase-card-first { border-color: var(--ink); }
.phase-head { display: flex; justify-content: space-between; align-items: baseline; }
.phase-name { font-size: 13px; font-weight: 700; }
.phase-weeks { font-size: 11px; font-family: var(--font-mono); color: var(--ink-3); }
.phase-theme { margin: 4px 0 8px; font-size: 12px; color: var(--ink-2); }
.phase-sessions { margin: 0; padding: 0; list-style: none; display: grid; gap: 5px; }
.phase-sessions li { font-size: 12px; color: var(--ink-2); padding-left: 14px; position: relative; }
.phase-sessions li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.plan-basis { margin: 0; padding: 0 16px 14px; font-size: 11px; color: var(--ink-3); }

.bench-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.bench-panel, .video-panel { display: none; margin-top: 10px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); padding: 12px; }
.bench-panel.open, .video-panel.open { display: block; animation: fadeUp .35s cubic-bezier(.16,1,.3,1); }
.bench-note { margin: 0 2px 10px; font-size: 11px; color: var(--ink-3); }
.bench-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bench-card { border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.bench-art { font-family: var(--font-mono); font-size: 9px; line-height: 1.15; margin-bottom: 8px; white-space: pre; min-height: 32px; }
.bench-title { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-family: var(--font-mono); }
.bench-value { font-size: 15px; font-weight: 700; margin: 2px 0 6px; font-family: var(--font-display); }
.bench-note-sm { margin: 0; font-size: 10.5px; line-height: 1.45; color: var(--ink-3); }
.video-modes { display: flex; gap: 6px; margin-bottom: 10px; }
.mode-chip { font-family: var(--font-mono); font-size: 11px; color: var(--ink-2); background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; cursor: pointer; }
.mode-chip-active { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); font-weight: 700; }
#ascii-canvas { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line); display: block; background: var(--ink); }

/* ---------- waitlist ---------- */
.section-waitlist { background: var(--surface); border-top: 1px solid var(--line); }
.waitlist-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.wl-kicker { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin: 0 0 12px; }
.wl-body { font-size: 16px; color: var(--ink-2); margin: 0 0 24px; max-width: 520px; }
.wl-perks { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.wl-perks li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink-2); }
.wl-perks li::before { content: "▚"; color: var(--accent); font-weight: 700; }
.wl-trust { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--ink-3); }
.wl-trust span::before { content: "✓ "; font-weight: 700; color: var(--ink-2); }
.wl-how { margin-top: 26px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.wl-how-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin: 0 0 8px; }
.wl-how ol { margin: 0; padding-left: 18px; display: grid; gap: 6px; font-size: 13.5px; color: var(--ink-2); }
.waitlist-card { background: var(--ink); color: var(--bg); border-radius: 20px; padding: 26px; position: sticky; top: 86px; }
.waitlist-card .field-label { color: rgba(246,246,242,.7); }
.waitlist-card .field-input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: var(--bg); }
.waitlist-card .field-input:focus { border-color: var(--accent); background: rgba(255,255,255,.1); }
.waitlist-card .field-input::placeholder { color: rgba(246,246,242,.35); }
.wl-error { font-size: 13px; color: #FF7A6B; margin: 10px 0 0; }
.wl-success-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.wl-success-body { font-size: 14px; color: rgba(246,246,242,.75); }
.wl-code { font-family: var(--font-mono); color: var(--accent); }
.wl-copy { background: transparent; border: 1px solid rgba(255,255,255,.25); color: var(--bg); border-radius: 999px; font-size: 12px; padding: 3px 12px; margin-left: 6px; cursor: pointer; }
.wl-actions { display: grid; gap: 8px; margin-top: 18px; }
.wl-success-note { font-size: 12.5px; color: rgba(246,246,242,.5); margin: 14px 0 0; }
.wl-ref-row { margin-top: 12px; }
.wl-subnote { font-size: 12.5px; color: rgba(246,246,242,.55); margin: 12px 0 0; }
.wl-leaders { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 14px; }
.wl-leaders-title { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(246,246,242,.5); margin: 0 0 10px; }
.wl-leader-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; font-size: 13px; }
.wl-leader-list li { display: flex; justify-content: space-between; }
.wl-leader-list strong { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-title { text-align: center; margin-bottom: 34px; }
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-mono); font-size: 17px; color: var(--ink-3); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 20px 18px; font-size: 14.5px; color: var(--ink-2); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--bg); padding: 44px 0 38px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer .brand span { color: rgba(246,246,242,.4); }
.footer-tag { font-size: 13.5px; color: rgba(246,246,242,.6); }
.footer-links { display: flex; gap: 18px; font-size: 13.5px; }
.footer-links a:hover { color: var(--accent); }
.footer-legal { width: 100%; font-size: 12px; color: rgba(246,246,242,.35); margin: 18px 0 0; }

/* ---------- toast ---------- */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(80px); background: var(--ink); color: var(--bg); border-radius: 999px; padding: 12px 22px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow); z-index: 100; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.toast.toast-show { transform: translateX(-50%) translateY(0); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible, .reveal-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .waitlist-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps, .tiles, .tiers, .bench-grid-lg { grid-template-columns: 1fr 1fr; }
  .hero-photo img { height: 420px; }
  .nav-links { display: none; }
  .waitlist-card { position: static; }
}
@media (max-width: 640px) {
  .steps, .tiles, .tiers, .bench-grid-lg, .bench-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 30px; }
  .hero-runner { right: 6px; bottom: -18px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-arrow { display: none; }
  .bench-row { grid-template-columns: 1fr; }
  .demo-live { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
  .scan-beam { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .hero-chip .chip-dot { animation: none; }
}
