/* ============================================================
   VOLTRA — Landing Page
   Design system: Nike-app precision × clean white sports car.
   Type + data do the work. Volt accent is a scalpel.
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #FFFFFF;
  --card:      #F7F7F7;
  --line:      #EFEFEF;
  --line-2:    #E4E4E4;
  --ink:       #000000;
  --ink-2:     #8C8C8C;
  --ink-3:     #B4B4B4;
  --inverse:   #000000;   /* black surface for session / high-intensity */
  --on-inverse:#FFFFFF;
  --on-inverse-2: #8C8C8C;
  --inverse-line: #1E1E1E;
  --inverse-card: #131313;

  /* accent — reserved for PRs / earned / active only */
  --accent:    #F5FF3D;
  --accent-ink:#000000;

  /* type */
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body:    'Geist', system-ui, sans-serif;
  --mono:    'Geist Mono', ui-monospace, monospace;

  /* metrics */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; }

/* ---------- type primitives ---------- */
.display {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0;
}
.subhead {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: 0.005em;
  margin: 0;
}
.mono {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.mono.tight { letter-spacing: 0.1em; }
.body { font-family: var(--body); }
.muted { color: var(--ink-2); }

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
@media (max-width: 520px) { .eyebrow { white-space: normal; } }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ---------- layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(72px, 11vw, 132px) 0; }
.section-tight { padding: clamp(56px, 8vw, 96px) 0; }

/* ---------- section divider (finish-line tick) ---------- */
.divider {
  display: flex; align-items: center; gap: 20px;
  margin: clamp(-44px, -5vw, -64px) 0; padding: clamp(40px, 5vw, 60px) 0;
}
.dv-ln {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 16%, var(--line-2) 84%, transparent);
}
.dv-mark { display: inline-flex; align-items: flex-end; gap: 4px; height: 16px; flex: none; }
.dv-mark i { width: 2px; height: 9px; background: var(--ink-3); border-radius: 1px; }
.dv-mark i.v { height: 16px; background: var(--accent); }

/* ---------- wordmark + symbol ---------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  user-select: none;
}
.wordmark .wm-text {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1;
}
.wordmark.on-dark { color: #fff; }

.vmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  overflow: hidden;
}
.vmark svg { display: block; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  padding: 0 22px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .12s ease, background .15s ease, color .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #1a1a1a; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 11.5px; }
.btn-inverse { background: #fff; color: #000; }
.btn-inverse:hover { background: var(--accent); }
.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover { background: color-mix(in srgb, var(--accent) 86%, #000); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.mono { transition: color .15s ease; }
.nav-links a.mono:hover { color: var(--ink); }
@media (max-width: 760px) {
  .nav-links .hide-sm { display: none; }
}

/* ---------- email capture ---------- */
.capture { width: 100%; max-width: 480px; }
.capture-row {
  display: flex; gap: 8px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 6px;
  transition: border-color .15s ease;
}
.capture-row:focus-within { border-color: var(--ink); }
.capture-row input {
  flex: 1; min-width: 0;
  border: none; background: transparent;
  font-family: var(--body); font-size: 16px;
  color: var(--ink); padding: 0 12px;
}
.capture-row input::placeholder { color: var(--ink-3); }
.capture-row input:focus { outline: none; }
.capture-note {
  margin-top: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.capture-note .vk { color: var(--ink); }

/* dark variant */
.capture.on-dark .capture-row {
  background: var(--inverse-card);
  border-color: var(--inverse-line);
}
.capture.on-dark .capture-row:focus-within { border-color: #fff; }
.capture.on-dark .capture-row input { color: #fff; }
.capture.on-dark .capture-row input::placeholder { color: #5a5a5a; }
.capture.on-dark .capture-note { color: var(--on-inverse-2); }
.capture.on-dark .capture-note .vk { color: #fff; }

/* success state */
.capture-success {
  display: flex; align-items: center; gap: 12px;
  height: 64px; padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 14%, #fff);
}
.capture.on-dark .capture-success {
  background: color-mix(in srgb, var(--accent) 14%, #000);
}
.capture-success .check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #000;
  display: grid; place-items: center; flex: none;
  font-size: 14px; font-weight: 700;
}
.capture-success .ok-title {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: 20px; line-height: 1; letter-spacing: 0.01em;
}
.capture.on-dark .ok-title { color: #fff; }
.capture-success .ok-sub {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-2);
}

/* ---------- placeholder image ---------- */
.ph {
  position: relative;
  background-color: var(--card);
  background-image: repeating-linear-gradient(
    -45deg, transparent 0 11px,
    rgba(0,0,0,0.035) 11px 12px
  );
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: grid; place-items: center;
  overflow: hidden;
}
.ph .ph-tag {
  font-family: var(--mono); text-transform: uppercase; white-space: nowrap;
  letter-spacing: 0.14em; font-size: 11px; color: var(--ink-2);
  border: 1px solid var(--line-2); background: #fff;
  padding: 7px 12px; border-radius: 3px;
}
.ph.on-dark {
  background-color: #0c0c0c;
  background-image: repeating-linear-gradient(
    -45deg, transparent 0 11px,
    rgba(255,255,255,0.045) 11px 12px
  );
  border-color: var(--inverse-line);
}
.ph.on-dark .ph-tag { background: #000; color: #6a6a6a; border-color: var(--inverse-line); }

/* ---------- chips / data ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--mono); text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 11px; font-weight: 500;
  padding: 7px 12px; border-radius: 3px;
  border: 1px solid var(--line-2); color: var(--ink-2); background: #fff;
}
.chip .led { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); }
.chip.is-accent { border-color: var(--accent); color: var(--ink); background: color-mix(in srgb, var(--accent) 18%, #fff); }
.chip.is-accent .led { background: var(--accent); }
.chip.on-dark { background: var(--inverse-card); border-color: var(--inverse-line); color: var(--on-inverse-2); }
.chip.on-dark.is-accent { background: color-mix(in srgb, var(--accent) 16%, #000); color: #fff; border-color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(48px, 7vw, 92px); padding-bottom: clamp(64px, 9vw, 112px); }
.hero-grid {
  display: grid; gap: clamp(36px, 5vw, 72px);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* Direction A — Statement */
.heroA-eyebrow { margin-bottom: 28px; }
.heroA-title {
  font-size: clamp(46px, 7.3vw, 100px);
}
.heroA-title > div { white-space: nowrap; }
.heroA-title .v { color: var(--ink); }
.heroA-sub {
  margin: 28px 0 34px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5; color: var(--ink-2);
  max-width: 30ch;
}
.heroA-sub b { color: var(--ink); font-weight: 600; }

/* hero photo column */
.hero-photo { position: relative; aspect-ratio: 4 / 5; min-height: 340px; }
.hero-photo .overlay-chip {
  position: absolute; left: 16px; bottom: 16px;
}
.hero-photo .overlay-chip-tr { position: absolute; right: 16px; top: 16px; }

/* Direction B — Intelligence-forward */
.heroB-title { font-size: clamp(42px, 5.6vw, 80px); }
.heroB-title > div { white-space: nowrap; }
.heroB-sub {
  margin: 22px 0 30px; font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2); max-width: 34ch;
}
.heroB-sub b { color: var(--ink); font-weight: 600; }

/* live readiness card (dark) */
.readout {
  background: var(--inverse); color: #fff;
  border-radius: 10px; padding: 26px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5);
}
.readout-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.readout-date { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--on-inverse-2); text-transform: uppercase; white-space: nowrap; }
.readout-main { display: flex; align-items: flex-end; gap: 20px; margin-bottom: 22px; }
.readout-score {
  font-family: var(--display); font-weight: 900; font-size: 104px; line-height: 0.8;
  letter-spacing: -0.02em;
}
.readout-meta { padding-bottom: 8px; }
.readout-meta .lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--on-inverse-2); text-transform: uppercase; }
.readout-meta .val { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 26px; line-height: 1; margin-top: 4px; }
.readout-bar { height: 6px; border-radius: 3px; background: #1f1f1f; overflow: hidden; margin-bottom: 24px; }
.readout-bar > i { display: block; height: 100%; background: #fff; border-radius: 3px; }
.readout-coach {
  border-top: 1px solid var(--inverse-line); padding-top: 18px;
  font-size: 15.5px; line-height: 1.5; color: #e4e4e4;
}
.readout-coach b { color: #fff; font-weight: 600; }
.readout-session {
  margin-top: 18px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 16px; background: var(--inverse-card);
  border: 1px solid var(--inverse-line); border-radius: 6px;
}
.readout-session .rs-lab { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--on-inverse-2); text-transform: uppercase; white-space: nowrap; }
.readout-session .rs-val { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 19px; margin-top: 3px; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(38px, 5.4vw, 72px); max-width: 18ch; }
.section-head .sh-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head p { color: var(--ink-2); max-width: 36ch; font-size: 16px; margin: 0; }

.persona-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px) { .persona-grid { grid-template-columns: 1fr; } }
.persona {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 8px; padding: clamp(26px, 3vw, 40px);
  display: flex; flex-direction: column; min-height: 340px;
}
.persona .idx {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--ink-3);
  margin-bottom: 22px;
}
.persona h3 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(26px, 3vw, 36px); line-height: 0.96; margin: 0 0 6px;
}
.persona .who { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-2); text-transform: uppercase; margin-bottom: 20px; }
.persona p { margin: 0; color: #2c2c2c; font-size: 16px; line-height: 1.55; }
.persona .tags { margin-top: auto; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.persona .tag {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 10.5px; color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 3px; padding: 6px 9px; background: #fff;
}

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: stretch;
}
@media (max-width: 820px) {
  .how-steps { grid-template-columns: 1fr; gap: 0; }
}
.hstep {
  display: flex; flex-direction: column;
  padding-top: 26px; border-top: 2px solid var(--ink);
}
@media (max-width: 820px) {
  .hstep { border-top: 1px solid var(--line); padding: 28px 0; }
  .hstep:first-child { border-top: 2px solid var(--ink); }
}
.hs-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.hs-num {
  font-family: var(--display); font-weight: 900; font-size: clamp(40px, 4.6vw, 60px);
  line-height: 0.8; letter-spacing: -0.02em; color: var(--ink);
}
.hs-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); border: 1px solid var(--line-2); padding: 6px 10px; border-radius: 3px; white-space: nowrap;
}
.hs-verb {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(30px, 3.4vw, 44px); line-height: 0.95; margin: 22px 0 12px; letter-spacing: -0.01em;
}
.hstep p { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.5; max-width: 30ch; }
.hs-arrow {
  align-self: center; padding-top: 26px;
  font-family: var(--mono); font-size: clamp(24px, 2.4vw, 32px); font-weight: 400;
  color: var(--ink-3); line-height: 0.8;
}
@media (max-width: 820px) { .hs-arrow { display: none; } }

/* ============================================================
   SESSION — copy + real product screen (showpiece)
   ============================================================ */
.session-section { background: var(--bg); overflow-x: clip; }
.session-aside {
  display: grid; grid-template-columns: 1fr auto; gap: clamp(40px, 6vw, 96px); align-items: center;
}
@media (max-width: 980px) { .session-aside { grid-template-columns: 1fr; align-items: start; justify-items: center; } .session-aside > * { min-width: 0; max-width: 100%; } }
.sa-copy { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 980px) { .sa-copy { max-width: 560px; } }
.session-aside .sa-copy h2 { font-size: clamp(34px, 4.6vw, 60px); max-width: 14ch; }
.session-aside .sa-copy .eyebrow { margin-bottom: 18px; }
.session-aside .sa-copy p { color: var(--ink-2); max-width: 42ch; margin: 22px 0 0; font-size: 16.5px; }
.sa-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 2px; }
.sa-list li { display: flex; gap: 14px; align-items: baseline; padding: 13px 0; border-top: 1px solid var(--line); font-size: 15.5px; }
.sa-list li .k { color: var(--ink-3); min-width: 22px; font-weight: 700; }
.sa-list li b { font-weight: 600; }
.sa-note { margin-top: 26px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.sa-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---- phone stage ---- */
/* wrapper is sized to the SCALED dimensions and the device scales into it from
   top-left, so the layout box never exceeds the viewport (no mobile overflow). */
.phone-stage {
  position: relative; --psc: 1;
  width: calc(402px * var(--psc));
  height: calc(862px * var(--psc));
  margin: 0 auto;
  min-width: 0; overflow: clip;
}
.phone-scale {
  width: 402px; height: 862px;
  transform: scale(var(--psc)); transform-origin: top left;
}
@media (max-width: 980px) { .phone-stage { --psc: 0.92; } }
@media (max-width: 560px) { .phone-stage { --psc: 0.86; } }
@media (max-width: 430px) { .phone-stage { --psc: 0.80; } }
@media (max-width: 380px) { .phone-stage { --psc: 0.74; } }
@media (max-width: 340px) { .phone-stage { --psc: 0.66; } }
.phone-glow {
  position: absolute; z-index: 0; width: 78%; height: 62%; left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, color-mix(in oklch, var(--accent) 60%, transparent), transparent 70%);
  filter: blur(70px); opacity: 0.5; pointer-events: none;
}

/* ============================================================
   VOLTRA APP — session screen (inside the device)
   ============================================================ */
.vapp {
  --txt: #111111;
  --txt-2: #6E6E6E;
  --txt-3: #9C9C9C;
  --surf: #FFFFFF;
  --surf-2: #FFFFFF;
  --inset: #F2F2EF;
  --hair: rgba(0,0,0,0.07);
  --card-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 10px 26px -16px rgba(0,0,0,0.22);
  height: 100%;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 58px 15px 0;
  color: var(--txt);
  background:
    radial-gradient(120% 56% at 50% -6%, color-mix(in oklch, var(--accent) 13%, transparent), transparent 54%),
    #F4F4F1;
  font-family: var(--body);
  letter-spacing: -0.01em;
}

/* header */
.vhead { display: flex; align-items: center; justify-content: space-between; }
.vhead-l { display: flex; align-items: center; gap: 11px; }
.vhead-meta { display: flex; flex-direction: column; gap: 2px; }
.vh-day { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px; line-height: 1; }
.vh-week { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-3); }
.vh-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--inset); border: 1px solid var(--hair);
  font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--txt-2); letter-spacing: 0.04em;
}

/* readiness hero */
.vready {
  margin-top: 22px; display: grid; grid-template-columns: auto 1fr; align-items: center;
  column-gap: 16px; row-gap: 12px;
}
.vr-ring { flex: none; }
.vr-ring .vr-num { font-family: var(--display); font-weight: 900; font-size: 30px; fill: var(--txt); }
.vr-ring .vr-unit { font-family: var(--mono); font-size: 7.5px; letter-spacing: 0.18em; fill: var(--txt-3); }
.vready-x { display: flex; flex-direction: column; gap: 3px; }
.vr-lab { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-3); }
.vr-state { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 32px; line-height: 0.92; }
.vr-delta { font-size: 12px; color: var(--txt-2); }
.vr-delta .up { color: var(--txt); font-weight: 600; font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; }
.vr-delta .up::first-letter { color: color-mix(in oklch, var(--accent) 70%, #111); }
.vready-tip {
  grid-column: 1 / -1; font-size: 11.5px; color: var(--txt-2);
  padding: 9px 12px; border-radius: 9px; background: var(--surf); border: 1px solid var(--hair);
  box-shadow: var(--card-shadow);
}
.vready-tip b { color: var(--txt); font-weight: 600; }

/* session objective card */
.vcard {
  margin-top: 16px; padding: 15px 16px; border-radius: 16px;
  background: var(--surf); border: 1px solid var(--hair);
  box-shadow: var(--card-shadow);
}
.vcard-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.vc-kicker { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-3); display: flex; align-items: center; gap: 6px; }
.vc-kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.vc-title { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 27px; line-height: 0.92; margin: 7px 0 0; letter-spacing: -0.01em; }
.vc-title .vc-plus { color: var(--txt-3); }
.vc-focus { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; text-align: right; flex: none;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt-3); }
.vc-focus b { font-family: var(--display); font-size: 14px; letter-spacing: 0.01em; color: var(--txt); font-weight: 700; }
.vc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.vc-stat { display: flex; flex-direction: column; gap: 4px; padding: 10px 11px; border-radius: 11px; background: var(--inset); border: 1px solid var(--hair); }
.vs-lab { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt-3); }
.vs-val { font-family: var(--display); font-weight: 800; font-size: 21px; line-height: 1; display: flex; align-items: baseline; gap: 3px; }
.vs-val i { font-family: var(--mono); font-style: normal; font-size: 9px; font-weight: 500; color: var(--txt-2); letter-spacing: 0.04em; }
.vs-val.vs-cns { font-size: 15px; align-items: center; gap: 6px; }
.vcns { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.vcns i { width: 3px; height: 5px; border-radius: 1px; background: rgba(0,0,0,0.16); }
.vcns i:nth-child(2) { height: 8px; }
.vcns i:nth-child(3) { height: 12px; }
.vcns i.on { background: var(--accent); }
.vc-obj { margin: 13px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--txt-2); }
.vc-obj b { color: var(--txt); font-weight: 600; }

/* progress */
.vprog { margin-top: 16px; }
.vprog-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.vp-lab { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-3); }
.vp-count { font-size: 12px; color: var(--txt-2); }
.vp-count b { color: var(--txt); font-family: var(--display); font-weight: 900; font-size: 15px; }
.vp-track { height: 5px; border-radius: 99px; background: rgba(0,0,0,0.08); overflow: hidden; }
.vp-fill { display: block; height: 100%; border-radius: 99px; background: var(--accent); }

/* exercise list */
.vlist { margin-top: 16px; flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; display: flex; flex-direction: column; gap: 6px; padding-bottom: 12px; }
.vrow {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px 9px 10px; border-radius: 12px;
  background: var(--surf); border: 1px solid var(--hair);
}
.vrow.is-active {
  background: color-mix(in oklch, var(--accent) 18%, #fff);
  border-color: color-mix(in oklch, var(--accent) 55%, #fff);
}
.vrow.is-todo { opacity: 0.55; }
.vr-mark { width: 26px; height: 26px; flex: none; display: flex; align-items: center; justify-content: center; position: relative; }
.vr-mark .vr-idx {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.16);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: var(--txt-2);
}
.is-done .vr-mark::before, .is-active .vr-mark::before { content: ""; position: absolute; inset: 1px; border-radius: 50%; }
.is-done .vr-mark::before { background: var(--accent); }
.vr-check { width: 17px; height: 17px; position: relative; z-index: 1; }
.is-active .vr-mark::before { background: transparent; border: 2px solid var(--accent); }
.vr-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); position: relative; z-index: 1; }
.vr-pulse::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--accent); opacity: 0; }
.js-anim .vr-pulse::after { animation: vpulse 1.8s ease-out infinite; }
@keyframes vpulse { 0% { transform: scale(0.5); opacity: 0.7; } 100% { transform: scale(1.3); opacity: 0; } }
.vr-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.vr-top { display: flex; align-items: center; gap: 8px; }
.vr-phase { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: 16px; line-height: 1; }
.is-done .vr-phase { color: var(--txt-2); }
.vr-detail { font-family: var(--mono); font-size: 10px; letter-spacing: 0.02em; color: var(--txt-3); }
.vr-tag { font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt); background: color-mix(in oklch, var(--accent) 28%, #fff); border-radius: 4px; padding: 3px 6px; font-weight: 600; }
.vr-now { font-family: var(--mono); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; color: #0A0A0A; background: var(--accent); border-radius: 4px; padding: 2px 6px; font-weight: 600; }
.vr-set { font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; color: var(--txt); font-weight: 600; white-space: nowrap; }
.vr-arrow { color: var(--txt-3); font-size: 15px; }

/* action bar — static flex child pinned at the bottom of the screen (no sticky:
   sticky broke under the phone's scale() transform on mobile and floated mid-screen) */
.vbar {
  flex: none;
  margin: 0 -15px; padding: 13px 18px calc(13px + 26px);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #F4F4F1;
  border-top: 1px solid var(--hair);
  box-shadow: 0 -10px 24px -12px rgba(0,0,0,0.18);
}
.vbar-l { display: flex; flex-direction: column; gap: 3px; }
.vbar-lab { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 14px; line-height: 1; }
.vbar-sub { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em; color: var(--txt-3); }
.vbar-btn {
  flex: none; border: none; cursor: pointer;
  background: var(--accent); color: #0A0A0A;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; font-size: 12px;
  padding: 0 20px; height: 44px; border-radius: 12px;
  box-shadow: 0 8px 24px -6px color-mix(in oklch, var(--accent) 60%, transparent);
}

/* ============================================================
   FINAL CTA (white, framed photo)
   ============================================================ */
.cta {
  background: var(--bg); color: var(--ink);
  border-radius: 0;
}
.cta-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 920px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-photo {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2); background: var(--card);
  aspect-ratio: 3 / 4;
}
.cta-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 920px) { .cta-photo { aspect-ratio: 16 / 9; } }
.cta .eyebrow { color: var(--ink-2); margin-bottom: 22px; }
.cta h2 { font-size: clamp(42px, 5.4vw, 80px); color: var(--ink); }
.cta h2 .price { color: var(--ink); }
.cta p { color: var(--ink-2); font-size: 17px; max-width: 40ch; margin: 24px 0 0; }
.cta p b { color: var(--ink); font-weight: 600; }
.cta-form { margin-top: clamp(28px, 3.5vw, 40px); }
.cta-meta { display: flex; gap: 30px; margin-top: 34px; flex-wrap: wrap; }
.cta-meta .cm .lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; }
.cta-meta .cm .val { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 22px; margin-top: 6px; }

/* ============================================================
   PHOTOGRAPHY
   ============================================================ */
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
  border-radius: var(--radius); border: 1px solid var(--line-2);
}

/* contained photo feature (white, framed) */
.photo-feature .pf-head { max-width: 24ch; margin-bottom: clamp(28px, 4vw, 48px); }
.photo-feature .pf-head .eyebrow { margin-bottom: 18px; }
.photo-feature .pf-head h2 {
  margin: 0; font-size: clamp(34px, 5vw, 68px); line-height: 0.96;
}
.photo-feature .pf-frame {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2); background: var(--card);
  aspect-ratio: 16 / 7;
}
.photo-feature .pf-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 34% 40%;
}
@media (max-width: 720px) { .photo-feature .pf-frame { aspect-ratio: 4 / 3; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .f-links { display: flex; gap: 24px; }
.footer .f-links a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.footer .f-links a:hover { color: var(--ink); }
.footer .copy { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }

/* entrance — base state is ALWAYS visible. A subtle reveal is layered on
   only once JS adds .is-in (IntersectionObserver), so content never hides
   if animations are throttled (hidden tab) or JS doesn't run. */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  html.js-anim .reveal:not(.is-in) { opacity: 0; transform: translateY(16px); }
  html.js-anim .reveal.d1 { transition-delay: .06s; }
  html.js-anim .reveal.d2 { transition-delay: .12s; }
  html.js-anim .reveal.d3 { transition-delay: .18s; }
}

/* ============================================================
   HERO — checks + floating proof card
   ============================================================ */
.hero-grid { align-items: center; }
.hero-checks { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.hero-checks li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--ink); }
.tick { width: 16px; height: 16px; flex: none; border-radius: 3px; background: var(--accent); position: relative; }
.tick::after { content: ""; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px; border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.tick.dark { background: #000; }
.tick.dark::after { border-color: var(--accent); }

.hero-stack { position: relative; }
.proof-card {
  position: relative; z-index: 2;
  width: min(330px, 88%);
  margin: -64px 0 0 clamp(0px, 2vw, 26px);
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.32);
  padding: 18px 20px 16px;
}
@media (max-width: 920px) { .proof-card { margin: -52px auto 0; } }
.proof-card .proof-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.proof-card .pc-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.proof-card .proof-day { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 26px; line-height: 1; margin: 14px 0 0; }
.proof-card .proof-list { list-style: none; margin: 14px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.proof-card .proof-list li { font-size: 13.5px; color: var(--ink); display: flex; gap: 10px; }
.proof-card .proof-list .pl-k { font-family: var(--mono); font-size: 12px; color: var(--ink-2); min-width: 52px; }
.proof-card .proof-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); }
.proof-card .pf-lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.proof-card .pf-val { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #000; font-weight: 500; }

/* ============================================================
   PROBLEM
   ============================================================ */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .prob-grid { grid-template-columns: 1fr; } }
.prob-card { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: clamp(26px, 3vw, 40px); }
.prob-card .pc-n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--ink-3); }
.prob-card h3 { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(24px, 2.6vw, 32px); line-height: 0.96; margin: 18px 0 12px; }
.prob-card p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.prob-foot { margin: clamp(38px, 5vw, 60px) 0 0; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(28px, 3.6vw, 50px); line-height: 0.98; letter-spacing: -0.01em; color: var(--ink-3); }
.prob-foot .pf-em { color: var(--ink); }

/* ============================================================
   WHY VOLTRA EXISTS
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 920px) { .why-grid { grid-template-columns: 1fr; } }
.why-photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); background: var(--card); aspect-ratio: 4 / 5; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.why-photo-chip { position: absolute; left: 16px; bottom: 16px; }
.why-title { font-size: clamp(32px, 4.4vw, 58px); max-width: 16ch; }
.why-lead { color: var(--ink-2); font-size: 17px; margin: 22px 0 0; max-width: 40ch; }
.why-lead b { color: var(--ink); font-weight: 600; }
.why-factors { margin-top: clamp(24px, 3vw, 32px); }
.wf-lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.why-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.why-list li { display: flex; gap: 10px; align-items: baseline; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(18px, 2vw, 24px); }
.why-list li .k { font-family: var(--mono); font-weight: 400; font-size: 12px; color: var(--ink-3); }
.why-result { margin: clamp(26px, 3.4vw, 40px) 0 0; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(24px, 3vw, 42px); line-height: 0.98; letter-spacing: -0.01em; }
.why-callouts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(24px, 3vw, 32px); }

/* ============================================================
   HOW IT WORKS — track separator + steps
   ============================================================ */
.track-sep { position: relative; display: flex; align-items: flex-end; width: 100%; overflow: hidden; background: #0a0a0a; height: clamp(360px, 42vw, 520px); }
.track-sep img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.track-sep .ts-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.06) 44%, rgba(0,0,0,0) 68%); }
.ts-inner { position: relative; z-index: 1; width: 100%; padding-top: clamp(40px, 6vw, 90px); padding-bottom: clamp(28px, 4vw, 52px); }
.ts-eyebrow { color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.ts-title { color: #fff; font-size: clamp(46px, 8vw, 108px); line-height: 0.88; }
.how-body { padding-top: clamp(44px, 6vw, 72px); }
.step-meta { display: inline-block; margin-top: 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line-2); padding: 5px 9px; border-radius: 3px; }
.how-foot { margin-top: clamp(30px, 3.6vw, 44px); font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(18px, 2.2vw, 26px); color: var(--ink-3); }

/* ============================================================
   THE PROOF — founder transformation (dark)
   ============================================================ */
.tform { background: var(--inverse); color: #fff; }
.tform .eyebrow { color: rgba(255,255,255,0.72); margin-bottom: 22px; }
.tform .eyebrow .dot { background: var(--accent); }
.tform-head { max-width: 24ch; }
.tform-title { font-size: clamp(40px, 6vw, 88px); color: #fff; line-height: 0.92; }
.tform-title .why-dim { color: #6f6f6f; }

/* before / after ledger */
.ba-table { margin: clamp(40px, 5.5vw, 72px) 0 0; border-top: 1px solid var(--inverse-line); }
.ba-row {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; align-items: baseline;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(18px, 2.4vw, 30px) 0; border-bottom: 1px solid var(--inverse-line);
}
.ba-head { padding-top: 0; padding-bottom: 16px; }
.ba-head .ba-before, .ba-head .ba-after {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.ba-head .ba-before { color: var(--on-inverse-2); }
.ba-head .ba-after { color: var(--accent); border-left: none; }
.ba-ev {
  font-family: var(--mono); font-size: clamp(13px, 1.3vw, 16px); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--on-inverse-2);
}
.ba-before {
  font-family: var(--display); font-weight: 900; font-size: clamp(36px, 5.2vw, 72px);
  line-height: 0.85; letter-spacing: -0.02em; color: #5e5e5e;
}
.ba-before.is-na {
  font-family: var(--mono); font-weight: 500; font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-inverse-2); line-height: 1.45;
}
.ba-after {
  font-family: var(--display); font-weight: 900; font-size: clamp(40px, 6.2vw, 88px);
  line-height: 0.85; letter-spacing: -0.02em; color: var(--accent);
  padding-left: clamp(16px, 2.4vw, 36px); border-left: 1px solid var(--inverse-line);
}

.ba-note { margin: clamp(40px, 5.5vw, 72px) 0 0; padding: 0; max-width: 62ch; }
.ba-story { margin: 0; font-size: clamp(18px, 1.9vw, 24px); line-height: 1.5; color: var(--on-inverse-2); text-wrap: pretty; }
.ba-punch {
  margin: clamp(22px, 2.6vw, 32px) 0 0; font-family: var(--display); font-weight: 900;
  text-transform: uppercase; font-size: clamp(30px, 4.4vw, 60px); line-height: 0.96;
  letter-spacing: -0.015em; color: #fff;
}
.ba-note .tf-attrib { margin-top: clamp(24px, 3vw, 36px); }
.tf-attrib { display: flex; flex-direction: column; gap: 5px; }
.tf-name { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(22px, 2.4vw, 30px); line-height: 1; letter-spacing: 0.01em; color: #fff; }
.tf-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-inverse-2); }

/* ============================================================
   FOUNDING ATHLETE OFFER — the yellow moment
   ============================================================ */
.founding { background: var(--bg); }
.founding-panel {
  background: var(--accent); color: #000; border-radius: 14px;
  padding: clamp(28px, 4vw, 56px);
  display: flex; flex-direction: column; gap: clamp(28px, 3.4vw, 44px);
}
.fp-eyebrow { color: rgba(0,0,0,0.6); margin-bottom: 20px; }
.fp-eyebrow .dot { background: #000; }
.fp-title { font-size: clamp(36px, 5vw, 78px); color: #000; line-height: 0.9; }
.fp-sub { font-size: 17px; color: rgba(0,0,0,0.74); margin: 16px 0 0; max-width: 46ch; font-weight: 500; }

/* plan comparison */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); }
@media (max-width: 720px) { .plan-grid { grid-template-columns: 1fr; } }
.plan {
  background: #fff; border: 1px solid rgba(0,0,0,0.12); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
}
.plan.is-feat { background: #000; border-color: #000; box-shadow: 0 26px 60px -30px rgba(0,0,0,0.55); }
.plan-flag {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 11px; font-weight: 600; padding: 12px 22px;
  background: var(--accent); color: #000;
}
.plan-flag-plain { background: #fff; color: rgba(0,0,0,0.45); font-weight: 500; border-bottom: 1px solid rgba(0,0,0,0.08); }
.plan-flag .pf-led { width: 7px; height: 7px; border-radius: 50%; background: #000; animation: fu-pulse 2.4s ease-in-out infinite; }
.plan-inner { padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; flex: 1; }
.plan-label {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 12px; color: rgba(0,0,0,0.55); display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.plan.is-feat .plan-label { color: rgba(255,255,255,0.6); }
.plan-tag {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; font-weight: 500;
  color: #000; background: var(--accent); padding: 3px 7px; border-radius: 3px;
}
.plan-price { display: flex; align-items: baseline; gap: 1px; margin-top: 16px; color: #000; }
.plan.is-feat .plan-price { color: #fff; }
.pl-cur { font-family: var(--display); font-weight: 900; font-size: clamp(24px, 2.4vw, 32px); }
.pl-num { font-family: var(--display); font-weight: 900; font-size: clamp(54px, 6.4vw, 86px); line-height: 0.82; letter-spacing: -0.02em; }
.pl-per { font-family: var(--mono); font-size: 14px; letter-spacing: 0.06em; color: rgba(0,0,0,0.5); margin-left: 7px; }
.plan.is-feat .pl-per { color: rgba(255,255,255,0.5); }
.plan-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-top: 15px; }
.plan-was { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 13px; text-decoration: line-through; }
.plan-eff { color: #fff; font-size: 14.5px; line-height: 1.45; margin-top: 9px; }
.plan-eff b { color: var(--accent); font-weight: 600; }
.plan-foot { margin-top: auto; padding-top: 20px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(0,0,0,0.1); }
.plan.is-feat .plan-foot { border-top-color: rgba(255,255,255,0.14); }
.pf-k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.5); }
.plan.is-feat .pf-k { color: rgba(255,255,255,0.5); }
.pf-v { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 19px; color: #000; white-space: nowrap; }
.plan.is-feat .pf-v { color: var(--accent); }

/* cost-effectiveness explainer */
.why-annual { background: #fff; border-radius: 12px; padding: clamp(22px, 2.8vw, 34px); }
.wa-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.wa-label { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(20px, 2.2vw, 28px); line-height: 1; }
.wa-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.wa-bars { display: flex; flex-direction: column; gap: 14px; }
.wa-row { display: grid; grid-template-columns: 142px 1fr auto; gap: 18px; align-items: center; }
@media (max-width: 560px) { .wa-row { grid-template-columns: 1fr auto; } .wa-row .wa-bar { grid-column: 1 / -1; order: 3; } }
.wa-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); display: flex; align-items: center; gap: 9px; }
.wa-badge { font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; background: var(--accent); color: #000; padding: 2px 6px; border-radius: 3px; font-weight: 600; }
.wa-bar { height: 15px; background: var(--line); border-radius: 3px; overflow: hidden; }
.wa-bar i { display: block; height: 100%; background: var(--ink-3); border-radius: 3px; }
.wa-bar i.v { background: var(--accent); }
.wa-amt { font-family: var(--display); font-weight: 900; font-size: 22px; min-width: 86px; text-align: right; letter-spacing: -0.01em; }
.wa-foot { margin-top: 18px; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); font-weight: 500; max-width: 60ch; }
.wa-foot b { color: var(--ink); font-weight: 600; }

/* conversion row */
.fp-convert { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 760px) { .fp-convert { grid-template-columns: 1fr; gap: 28px; } }
.fp-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; align-content: start; }
.fp-checks li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; color: #000; }
.fp-urgency {
  display: flex; align-items: flex-start; gap: 11px; margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.2); font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.05em; text-transform: uppercase; color: rgba(0,0,0,0.7); line-height: 1.5; max-width: 44ch;
}
.fu-led { width: 8px; height: 8px; border-radius: 50%; background: #000; margin-top: 4px; flex: none; animation: fu-pulse 2.4s ease-in-out infinite; }
@keyframes fu-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.founding-panel .capture-row { background: #fff; border-color: rgba(0,0,0,0.16); }
.founding-panel .capture-row:focus-within { border-color: #000; }
.founding-panel .capture-note { color: rgba(0,0,0,0.66); }
.founding-panel .capture-note .vk { color: #000; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--bg); text-align: center; }
.final-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.final-cta .eyebrow { margin-bottom: 22px; }
.final-title { font-size: clamp(44px, 7vw, 104px); line-height: 0.9; }
.final-sub { color: var(--ink-2); font-size: 18px; margin: 22px 0 0; max-width: 42ch; }
.final-form { width: 100%; max-width: 520px; margin: clamp(28px, 3.4vw, 40px) auto 0; text-align: left; }
.final-form .capture-note { text-align: center; }

/* ============================================================
   CINEMATIC FULL-BLEED SECTIONS (Problem · Dream · Final CTA)
   ============================================================ */
.volt { color: var(--accent); }

.cine {
  position: relative; width: 100%;
  min-height: clamp(600px, 88vh, 920px);
  display: flex; align-items: flex-end;
  overflow: hidden; background: #0a0a0a; isolation: isolate;
}
.cine-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%; z-index: 0;
}
.cine-scrim { position: absolute; inset: 0; z-index: 1; }
.cine-dark .cine-scrim {
  background: linear-gradient(180deg, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0) 26%, rgba(8,8,8,0.16) 52%, rgba(8,8,8,0.93) 100%);
}
.cine-dream .cine-scrim {
  background:
    linear-gradient(180deg, rgba(12,9,6,0.34) 0%, rgba(12,9,6,0) 28%, rgba(12,9,6,0.28) 54%, rgba(8,6,4,0.92) 100%),
    linear-gradient(90deg, rgba(8,6,4,0.5) 0%, rgba(8,6,4,0) 52%);
}
.cine-final .cine-scrim {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
    radial-gradient(130% 90% at 50% 50%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.66) 100%);
}
/* filmic grain (toggled by Tweaks) */
.cine-scrim::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px; mix-blend-mode: overlay; transition: opacity .3s ease;
}
body.grain .cine-scrim::after { opacity: 0.4; }

.cine-inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: clamp(64px, 10vw, 130px);
  padding-bottom: clamp(48px, 7vw, 100px);
}
.cine-content { max-width: 22ch; }
.cine-content-wide { max-width: 30ch; }
.cine-eyebrow { color: rgba(255,255,255,0.82); margin-bottom: 20px; }
.cine-title {
  color: #fff; font-size: clamp(50px, 8.4vw, 134px); line-height: 0.9; letter-spacing: -0.015em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.cine-lead {
  color: rgba(255,255,255,0.84); font-size: clamp(17px, 1.7vw, 22px); line-height: 1.5;
  max-width: 42ch; margin: clamp(22px, 3vw, 32px) 0 0; text-wrap: pretty;
}
.cine-punch {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(23px, 3vw, 42px); line-height: 0.98; letter-spacing: -0.01em;
  color: var(--accent); margin: clamp(24px, 3vw, 34px) 0 0; max-width: 22ch;
}

/* Dream — outcome list */
.dream-list { list-style: none; margin: clamp(26px, 3.4vw, 38px) 0 0; padding: 0; display: grid; gap: clamp(12px, 1.4vw, 18px); }
.dream-list li {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(22px, 3.1vw, 46px); line-height: 0.98; letter-spacing: -0.01em;
  color: #fff; display: flex; align-items: baseline; gap: clamp(12px, 1.4vw, 18px); text-wrap: balance;
}
.dream-list li::before {
  content: ""; width: clamp(10px, 1vw, 14px); height: clamp(10px, 1vw, 14px);
  background: var(--accent); flex: none; transform: translateY(-0.04em);
}

/* ============================================================
   WHY VOLTRA (rebuilt — type-driven)
   ============================================================ */
.why-grid2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 96px); align-items: start; }
@media (max-width: 920px) { .why-grid2 { grid-template-columns: 1fr; gap: 32px; } }
.why-h { font-size: clamp(40px, 6vw, 94px); line-height: 0.92; }
.why-h .why-dim, .how2-h .why-dim { color: var(--ink-3); }
.why-l .eyebrow { margin-bottom: 22px; }
.why-r { padding-top: clamp(6px, 1.4vw, 20px); }
.why-p { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.5; color: var(--ink-2); margin: 0 0 18px; max-width: 44ch; }
.why-p:first-child { color: #2c2c2c; }
.why-punch {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(30px, 4vw, 58px); line-height: 0.96; letter-spacing: -0.015em; margin-top: clamp(20px, 2.4vw, 30px);
}

/* ============================================================
   HOW IT WORKS (rebuilt — outputs, not process)
   ============================================================ */
.how2-head {
  max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center; border-top: 2px solid var(--ink); padding-top: clamp(28px, 3.6vw, 48px);
}
.how2-head .eyebrow { margin-bottom: 20px; justify-content: center; }
.how2-h { font-size: clamp(40px, 6vw, 94px); line-height: 0.92; }
.how2-sub { color: var(--ink-2); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.5; max-width: 48ch; margin: 22px auto 0; }
.how2-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 2px solid var(--ink); }
@media (max-width: 820px) { .how2-list { grid-template-columns: 1fr; } }
.how2-list li {
  padding: clamp(26px, 3vw, 38px) clamp(28px, 3vw, 40px) clamp(30px, 3.4vw, 44px) 0;
  border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: clamp(16px, 2vw, 24px);
}
.how2-list li:last-child { border-right: none; padding-right: 0; }
@media (max-width: 820px) {
  .how2-list li { border-right: none; border-bottom: 1px solid var(--line); padding: 26px 0; }
  .how2-list li:last-child { border-bottom: none; }
}
.h2-k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--ink-3); }
.how2-list p {
  margin: 0; font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(26px, 3vw, 42px); line-height: 0.96; letter-spacing: -0.01em; color: var(--ink-3);
}
.how2-list b { color: var(--ink); font-weight: 900; }

/* ============================================================
   WHO IT'S FOR (rebuilt — identity)
   ============================================================ */
.whofor-head {
  max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center; border-top: 2px solid var(--ink); padding-top: clamp(28px, 3.6vw, 48px);
}
.whofor-head .eyebrow { justify-content: center; margin-bottom: 18px; }
.whofor-head h2 { max-width: none; }
.ident-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 2px solid var(--ink); }
@media (max-width: 820px) { .ident-grid { grid-template-columns: 1fr; } }
.ident {
  padding: clamp(32px, 4vw, 60px) clamp(32px, 4vw, 56px) clamp(32px, 4vw, 56px) 0;
  border-right: 1px solid var(--line); display: flex; flex-direction: column;
}
.ident:last-child { border-right: none; padding-right: 0; }
@media (max-width: 820px) {
  .ident { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 0; }
  .ident:last-child { border-bottom: none; }
}
.ident-q {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(40px, 5.6vw, 86px); line-height: 0.86; letter-spacing: -0.02em; color: var(--ink);
}
.ident p { margin: clamp(22px, 2.6vw, 32px) 0 0; color: var(--ink-2); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.55; max-width: 40ch; }

/* ============================================================
   FINAL CTA (cinematic)
   ============================================================ */
.cine-final { align-items: stretch; text-align: center; min-height: clamp(600px, 86vh, 900px); }
.cine-final .cine-inner { display: flex; flex-direction: column; justify-content: center; }
.final2 { max-width: 940px; margin: 0 auto; }
.cine-final .eyebrow { justify-content: center; color: rgba(255,255,255,0.82); margin-bottom: 24px; }
.final2-h { color: #fff; font-size: clamp(44px, 6vw, 88px); line-height: 0.94; letter-spacing: -0.015em; }
.final2-sub { color: rgba(255,255,255,0.82); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; margin: clamp(20px, 2.6vw, 30px) auto 0; max-width: 46ch; }
.final2-form { width: 100%; max-width: 520px; margin: clamp(28px, 3.4vw, 40px) auto 0; text-align: left; }
.final2-form .capture-note { text-align: center; }

/* ============================================================
   MOBILE OVERFLOW GUARDS — keep all content within the viewport.
   Grid items default to min-width:auto, so long nowrap content
   (CTA button, statement headline) was forcing tracks wider than
   the screen. Let tracks shrink + stack the form on small screens.
   ============================================================ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { min-width: 0; }
}
@media (max-width: 560px) {
  /* email capture stacks vertically so the long CTA can't force width */
  .capture-row { flex-direction: column; align-items: stretch; gap: 8px; padding: 8px; }
  .capture-row input { height: 48px; padding: 0 12px; }
  .capture-row .btn {
    width: 100%; white-space: normal; text-align: center;
    line-height: 1.25; height: auto; min-height: 50px; padding: 13px 18px;
  }
  /* allow the statement headline to wrap rather than force a single line */
  .heroA-title > div { white-space: normal; }
}
