:root {
  color-scheme: dark;
  --ink-950: oklch(0.115 0.025 252);
  --ink-920: oklch(0.15 0.03 251);
  --paper: oklch(0.955 0.015 82);
  --paper-ink: oklch(0.19 0.027 252);
  --muted: oklch(0.76 0.026 247);
  --muted-soft: oklch(0.65 0.026 247);
  --line: oklch(0.82 0.025 247 / 0.24);
  --line-strong: oklch(0.9 0.02 80 / 0.38);
  --fire: oklch(0.72 0.22 46);
  --fire-light: oklch(0.83 0.15 72);
  --fire-on-paper: oklch(0.46 0.17 39);
  --cold: oklch(0.79 0.11 215);
  --content: 1320px;
  --header-height: 76px;
  --pad-x: clamp(22px, 5vw, 78px);
  --pad-y: clamp(86px, 8vw, 128px);
  --display: "Bahnschrift Condensed", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --body: "Segoe UI", "Arial Nova", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 3px);
  background: var(--ink-950);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink-950);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.presentation-mode { overflow: hidden; }

button, a, summary { font: inherit; }
a, button { color: inherit; }
img { display: block; max-width: 100%; }

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

:focus-visible {
  outline: 2px solid var(--fire-light);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink-950);
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  z-index: 150;
  inset: 0 0 auto;
  height: 3px;
  background: oklch(0.98 0.01 80 / 0.06);
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--fire);
  transition: width 120ms linear;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 3px;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 0 clamp(20px, 4vw, 62px);
  border-bottom: 1px solid transparent;
  background: oklch(0.105 0.025 252 / 0.9);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: oklch(0.105 0.025 252 / 0.98);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 196px;
  text-decoration: none;
}

.brand img { width: 156px; height: auto; }

.brand span {
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
  color: var(--fire-light);
  font-size: 11px;
  font-weight: 900;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.7vw, 27px);
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--fire);
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--paper); }

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }

.header-focus {
  padding: 12px 20px;
  border: 1px solid var(--fire);
  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.header-focus:hover { background: var(--fire); color: var(--ink-950); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px auto;
  background: var(--paper);
}

.mobile-nav {
  position: fixed;
  z-index: 119;
  inset: calc(var(--header-height) + 3px) 0 0;
  display: grid;
  align-content: center;
  padding: 24px;
  background: var(--ink-950);
}

.mobile-nav[hidden] { display: none; }

.mobile-nav a {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(25px, 6.6vw, 39px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

main { overflow: clip; }

.scene {
  --scene-image: none;
  --scene-position: center;
  position: relative;
  isolation: isolate;
  min-height: 920px;
  overflow: clip;
  background-color: var(--ink-950);
  background-image: var(--scene-image);
  background-position: var(--scene-position);
  background-size: cover;
  color: var(--paper);
}

.scene::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.105 0.025 252 / 0.98) 0%, oklch(0.105 0.025 252 / 0.9) 44%, oklch(0.105 0.025 252 / 0.46) 76%, oklch(0.105 0.025 252 / 0.26) 100%),
    linear-gradient(0deg, oklch(0.105 0.025 252 / 0.92) 0%, transparent 42%, oklch(0.105 0.025 252 / 0.36) 100%);
}

.scene-light {
  --muted: oklch(0.39 0.032 248);
  --muted-soft: oklch(0.48 0.03 248);
  --line: oklch(0.25 0.03 248 / 0.22);
  --line-strong: oklch(0.25 0.03 248 / 0.34);
  --fire: var(--fire-on-paper);
  --fire-light: var(--fire-on-paper);
  color: var(--paper-ink);
}

.scene-light::before {
  background:
    linear-gradient(90deg, oklch(0.955 0.015 82 / 0.99) 0%, oklch(0.955 0.015 82 / 0.94) 54%, oklch(0.955 0.015 82 / 0.72) 100%),
    linear-gradient(0deg, oklch(0.955 0.015 82 / 0.96) 0%, transparent 48%, oklch(0.955 0.015 82 / 0.76) 100%);
}

.hero { --scene-image: url("assets/hero-ignition.webp"); --scene-position: center; min-height: 100svh; padding-top: var(--header-height); }
.value-scene { --scene-image: url("assets/career-freedom-v2.webp"); --scene-position: center; }
.fit-scene { --scene-image: url("assets/selection-bridge-v2.webp"); --scene-position: center; }
.partnership-scene { --scene-image: url("assets/accelerator-core.webp"); --scene-position: center; }
.journey-scene { --scene-image: url("assets/feedback-loop.webp"); --scene-position: center; }
.outcome-scene { --scene-image: url("assets/result-checkpoint-v2.webp"); --scene-position: center; }
.entry-scene { --scene-image: url("assets/decision-threshold-v2.webp"); --scene-position: center; }

.value-scene::before { background: linear-gradient(90deg, oklch(0.955 0.015 82 / 0.99) 0%, oklch(0.955 0.015 82 / 0.94) 55%, oklch(0.955 0.015 82 / 0.58) 100%), linear-gradient(0deg, oklch(0.955 0.015 82 / 0.95), transparent 45%); }
.fit-scene::before { background: linear-gradient(90deg, oklch(0.105 0.025 252 / 0.98) 0%, oklch(0.105 0.025 252 / 0.84) 50%, oklch(0.105 0.025 252 / 0.58) 100%), linear-gradient(0deg, var(--ink-950), transparent 50%); }
.partnership-scene::before { background: linear-gradient(90deg, oklch(0.955 0.015 82 / 0.99) 0%, oklch(0.955 0.015 82 / 0.91) 52%, oklch(0.955 0.015 82 / 0.68) 100%), linear-gradient(0deg, oklch(0.955 0.015 82 / 0.96), transparent 55%); }
.journey-scene::before { background: linear-gradient(90deg, oklch(0.105 0.025 252 / 0.98) 0%, oklch(0.105 0.025 252 / 0.84) 53%, oklch(0.105 0.025 252 / 0.52) 100%), linear-gradient(0deg, var(--ink-950), transparent 48%); }
.outcome-scene::before { background: linear-gradient(90deg, oklch(0.955 0.015 82 / 0.99) 0%, oklch(0.955 0.015 82 / 0.94) 50%, oklch(0.955 0.015 82 / 0.62) 100%), linear-gradient(0deg, oklch(0.955 0.015 82 / 0.96), transparent 48%); }
.entry-scene::before { background: linear-gradient(90deg, oklch(0.105 0.025 252 / 0.99) 0%, oklch(0.105 0.025 252 / 0.86) 52%, oklch(0.105 0.025 252 / 0.48) 100%), linear-gradient(0deg, var(--ink-950), transparent 50%); }

.scene-inner {
  position: relative;
  width: min(var(--content), calc(100% - var(--pad-x) - var(--pad-x)));
  margin: 0 auto;
  padding: var(--pad-y) 0;
}

.scene-heading {
  display: grid;
  grid-template-columns: clamp(82px, 9vw, 148px) minmax(0, 980px);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.scene-number {
  color: var(--fire);
  font-family: var(--display);
  font-size: clamp(78px, 10vw, 150px);
  font-weight: 900;
  line-height: 0.72;
}

.scene-label {
  margin: 0 0 16px;
  color: var(--fire-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.scene-label span { margin-right: 10px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; }

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.2vw, 106px);
  line-height: 0.91;
}

h1 span { display: block; color: var(--paper); }

h2 {
  max-width: 1030px;
  margin-bottom: 0;
  font-size: clamp(43px, 5.3vw, 76px);
  line-height: 0.96;
}

h3 { font-size: clamp(27px, 2.8vw, 40px); line-height: 1.04; }

.reveal { opacity: 1; transform: none; }
.js .reveal.is-visible { animation: reveal-in 620ms var(--ease-out) both; }
.js .reveal.is-visible[data-delay="1"] { animation-delay: 90ms; }

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta {
  display: inline-flex;
  min-width: min(390px, 100%);
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 30px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  background: var(--fire);
  color: var(--ink-950);
  text-decoration: none;
  font-weight: 900;
}

.cta:hover { background: var(--fire-light); }
.cta b { font-size: 24px; }
.quiet-link { color: var(--paper); text-underline-offset: 7px; }

/* Hero */

.hero-layout {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.38fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.hero-lead {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--paper);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
}

.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.honesty-note {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-rail {
  display: grid;
  align-self: stretch;
  align-content: center;
  border-left: 1px solid var(--line-strong);
}

.hero-rail div {
  display: grid;
  gap: 8px;
  padding: 28px 0 28px 34px;
  border-bottom: 1px solid var(--line-strong);
}

.hero-rail div:last-child { border-bottom: 0; }
.hero-rail small { color: var(--fire-light); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.hero-rail strong { font-family: var(--display); font-size: clamp(24px, 2.2vw, 34px); line-height: 1; text-transform: uppercase; }

/* Human value */

.value-lines {
  display: grid;
  width: min(850px, 70%);
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-strong);
}

.value-lines div {
  min-height: 126px;
  padding: 22px 26px 22px 0;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.value-lines div:nth-child(even) { padding-left: 26px; border-right: 0; }
.value-lines span { color: var(--fire-light); font-family: var(--display); font-size: 27px; font-weight: 800; text-transform: uppercase; }
.value-lines p { margin: 8px 0 0; color: var(--muted); font-size: 15px; }

/* Fit */

.fit-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.fit-intro > p { max-width: 530px; color: var(--muted); font-size: 19px; }

.fit-route { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line-strong); }
.fit-route strong { padding: 16px 0; border-bottom: 1px solid var(--line-strong); font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.fit-route i { display: none; }

.fit-checks { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.fit-checks li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line-strong); }
.fit-checks li > span { color: var(--fire); font-family: var(--display); font-size: 21px; font-weight: 900; }
.fit-checks strong { font-family: var(--display); font-size: 27px; text-transform: uppercase; }
.fit-checks p { margin: 4px 0 0; color: var(--muted); font-size: 15px; }

/* Partnership */

.commitment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1120px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.commitment-split article { padding: 34px 40px 34px 0; }
.commitment-split article + article { padding-right: 0; padding-left: 40px; border-left: 1px solid var(--line-strong); }
.commitment-split small { color: var(--fire-light); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.commitment-split h3 { margin: 14px 0 24px; }
.commitment-split ul { margin: 0; padding: 0; list-style: none; }
.commitment-split li { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); }

.trust-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.trust-line span { padding: 18px 22px; border-right: 1px solid var(--line-strong); font-family: var(--display); font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.trust-line span:first-child { padding-left: 0; }
.trust-line span:last-child { border-right: 0; }

/* Journey */

.journey-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: stretch;
}

.month-cycle { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.month-cycle li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line-strong); }
.month-cycle li > span { color: var(--fire); font-family: var(--display); font-size: 21px; font-weight: 900; }
.month-cycle strong { font-family: var(--display); font-size: 27px; text-transform: uppercase; }
.month-cycle p { margin: 4px 0 0; color: var(--muted); font-size: 15px; }

.journey-time { display: grid; grid-template-columns: repeat(3, 1fr); align-self: end; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.journey-time > div { min-height: 220px; padding: 24px; border-right: 1px solid var(--line-strong); }
.journey-time > div:last-child { border-right: 0; }
.journey-time small { color: var(--fire-light); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.journey-time strong { display: block; margin: 22px 0 12px; font-family: var(--display); font-size: 29px; line-height: 1; text-transform: uppercase; }
.journey-time p { margin: 0; color: var(--muted); font-size: 14px; }

.recovery-note { max-width: 880px; margin: 34px 0 0 auto; color: var(--muted); font-size: 16px; }

/* Outcome */

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.outcome-main { padding-top: 24px; border-top: 2px solid var(--fire); }
.outcome-main > p { color: var(--muted); font-size: 18px; }
.outcome-main > strong { display: block; margin: 30px 0 18px; font-family: var(--display); font-size: clamp(30px, 3.5vw, 50px); line-height: 1; text-transform: uppercase; }
.outcome-main > small { color: var(--muted); font-size: 15px; }

.money-answers { border-top: 1px solid var(--line-strong); }
.money-answers div { padding: 19px 0; border-bottom: 1px solid var(--line-strong); }
.money-answers span { color: var(--fire-light); font-family: var(--display); font-size: 23px; font-weight: 800; text-transform: uppercase; }
.money-answers p { margin: 6px 0 0; color: var(--muted); font-size: 15px; }

/* Entry */

.entry-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.entry-flow li { min-height: 190px; padding: 24px; border-right: 1px solid var(--line-strong); }
.entry-flow li:last-child { border-right: 0; }
.entry-flow span { color: var(--fire); font-family: var(--display); font-size: 34px; }
.entry-flow strong { display: block; margin: 28px 0 10px; font-family: var(--display); font-size: 25px; line-height: 1; text-transform: uppercase; }
.entry-flow p { margin: 0; color: var(--muted); font-size: 14px; }

.entry-bottom { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr); gap: clamp(38px, 7vw, 100px); align-items: end; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { position: relative; min-height: 52px; padding: 14px 48px 14px 0; cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 9px; right: 4px; color: var(--fire); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 760px; margin: 0; padding: 8px 42px 18px 0; color: var(--muted); font-size: 15px; }

.entry-statement { padding: 28px 0 6px; border-top: 1px solid var(--fire); }
.entry-statement small { color: var(--fire-light); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.entry-statement p { margin: 14px 0 0; font-family: var(--display); font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1; }
.entry-statement span { display: block; margin-top: 18px; color: var(--muted); font-size: 14px; }

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(22px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: oklch(0.095 0.022 252);
}

.site-footer img { width: 156px; height: auto; }
.site-footer > span { color: var(--fire-light); font-size: 11px; font-weight: 900; }
.site-footer p, .site-footer small { margin: 0; color: var(--muted); font-size: 13px; }
.site-footer small { justify-self: end; }

/* Presentation */

.presentation-controls {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--ink-950);
}

.presentation-controls[hidden] { display: none; }
.presentation-controls button { min-width: 42px; min-height: 42px; border: 1px solid var(--line); background: transparent; color: var(--paper); cursor: pointer; }
.presentation-controls button:disabled { opacity: 0.38; cursor: default; }
.presentation-controls span { min-width: 72px; text-align: center; font-weight: 800; }

body.presentation-mode main { height: 100svh; overflow-y: auto; scroll-snap-type: y mandatory; scroll-behavior: auto; }
body.presentation-mode .site-header { transform: translateY(-110%); }
body.presentation-mode .scene { height: 100svh; min-height: 100svh; overflow: hidden; scroll-snap-align: start; scroll-snap-stop: always; }
body.presentation-mode .scene-inner { padding-top: 34px; padding-bottom: 82px; zoom: var(--presentation-scale, 1); }
body.presentation-mode .hero { padding-top: 0; }
body.presentation-mode .hero-layout { min-height: 100svh; }
body.presentation-mode .scene-heading { margin-bottom: 28px; }
body.presentation-mode .site-footer { display: none; }

body.presentation-mode .value-lines div { min-height: 96px; padding-top: 12px; padding-bottom: 12px; }
body.presentation-mode .value-lines span { font-size: 23px; }
body.presentation-mode .fit-checks li,
body.presentation-mode .month-cycle li { padding-top: 9px; padding-bottom: 9px; }
body.presentation-mode .commitment-split article { padding-top: 22px; padding-bottom: 22px; }
body.presentation-mode .trust-line { margin-top: 20px; }
body.presentation-mode .trust-line span { padding-top: 12px; padding-bottom: 12px; font-size: 19px; }
body.presentation-mode .journey-time > div { min-height: 160px; padding: 16px; }
body.presentation-mode .journey-time strong { margin-top: 14px; font-size: 24px; }
body.presentation-mode .recovery-note { margin-top: 18px; font-size: 14px; }
body.presentation-mode .entry-flow { margin-bottom: 22px; }
body.presentation-mode .entry-flow li { min-height: 135px; padding: 14px 18px; }
body.presentation-mode .entry-flow strong { margin-top: 14px; font-size: 21px; }
body.presentation-mode .entry-bottom { gap: 34px; }
body.presentation-mode .faq-list summary { min-height: 42px; padding-top: 9px; padding-bottom: 9px; font-size: 14px; }
body.presentation-mode .entry-statement { padding-top: 18px; }
body.presentation-mode .entry-statement p { font-size: 34px; }

/* Responsive */

@media (max-width: 1180px) {
  .desktop-nav, .header-focus { display: none; }
  .menu-toggle { display: block; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr); }
  .fit-layout, .journey-grid, .outcome-layout { grid-template-columns: 1fr; }
  .value-lines { width: 100%; }
  .journey-time { max-width: 900px; }
  .entry-flow { grid-template-columns: repeat(2, 1fr); }
  .entry-flow li:nth-child(2) { border-right: 0; }
  .entry-flow li:nth-child(-n + 2) { border-bottom: 1px solid var(--line-strong); }
}

@media (max-width: 800px) {
  :root { --header-height: 64px; --pad-x: 20px; --pad-y: 72px; }
  html { scroll-padding-top: var(--header-height); }
  .site-header { gap: 12px; padding: 0 16px; }
  .brand { min-width: 0; }
  .brand img { width: 132px; }
  .brand span { display: none; }
  .scene { min-height: auto; background-position: 64% center; }
  .scene::before { background: linear-gradient(180deg, oklch(0.105 0.025 252 / 0.97) 0%, oklch(0.105 0.025 252 / 0.88) 62%, oklch(0.105 0.025 252 / 0.68) 100%); }
  .scene-light::before { background: linear-gradient(180deg, oklch(0.955 0.015 82 / 0.97) 0%, oklch(0.955 0.015 82 / 0.91) 62%, oklch(0.955 0.015 82 / 0.78) 100%); }
  .scene-inner { width: calc(100% - 40px); }
  .scene-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .scene-number { font-size: 82px; }
  h1 { font-size: clamp(43px, 12vw, 62px); }
  h2 { font-size: clamp(37px, 10.5vw, 52px); }

  .hero { background-position: 67% center; }
  .hero-layout { min-height: calc(100svh - var(--header-height)); grid-template-columns: 1fr; align-content: end; gap: 32px; padding-top: 84px; padding-bottom: 42px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { gap: 18px; }
  .cta { width: 100%; min-width: 0; }
  .quiet-link { width: 100%; text-align: center; }
  .hero-rail { grid-template-columns: 1fr; border-top: 1px solid var(--line-strong); border-left: 0; }
  .hero-rail div { grid-template-columns: 86px 1fr; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-strong); }
  .hero-rail strong { font-size: 21px; }

  .value-lines { grid-template-columns: 1fr; }
  .value-lines div, .value-lines div:nth-child(even) { min-height: 0; padding: 18px 0; border-right: 0; }

  .fit-route { margin-top: 24px; }
  .fit-checks { margin-top: 28px; }

  .commitment-split { grid-template-columns: 1fr; }
  .commitment-split article, .commitment-split article + article { padding: 28px 0; border-left: 0; }
  .commitment-split article + article { border-top: 1px solid var(--line-strong); }
  .trust-line { grid-template-columns: 1fr; }
  .trust-line span, .trust-line span:first-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .trust-line span:last-child { border-bottom: 0; }

  .journey-time { grid-template-columns: 1fr; }
  .journey-time > div { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .journey-time > div:last-child { border-bottom: 0; }
  .journey-time strong { margin: 12px 0 8px; }

  .entry-flow { grid-template-columns: 1fr; }
  .entry-flow li, .entry-flow li:nth-child(-n + 2) { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .entry-flow strong { margin-top: 16px; }
  .entry-bottom { grid-template-columns: 1fr; }
  .faq-list p { padding-top: 10px; }

  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; }

  body.presentation-mode .scene-inner { padding-top: 26px; padding-bottom: 74px; }
  body.presentation-mode .presentation-controls { right: 10px; bottom: 10px; left: 10px; justify-content: center; }
}

@media (max-width: 520px) {
  .scene-label { margin-bottom: 12px; font-size: 12px; }
  h1 { font-size: clamp(36px, 10.3vw, 47px); }
  h2 { font-size: clamp(36px, 10.5vw, 48px); }
  .value-lines span { font-size: 25px; }
  .outcome-main > strong { font-size: 28px; line-height: 1.05; }
  .entry-statement p { font-size: 34px; }
  .presentation-controls #presentation-close { display: none; }
}

@media (max-height: 820px) and (min-width: 801px) {
  :root { --pad-y: 68px; }
  .hero h1 { max-width: 870px; margin-bottom: 18px; font-size: clamp(54px, 5.7vw, 76px); }
  .hero-lead { max-width: 700px; margin-bottom: 22px; font-size: 18px; }
  .honesty-note { margin-top: 14px; }
}

@media print {
  .site-header, .page-progress, .presentation-controls, .mobile-nav { display: none !important; }
  .scene { min-height: 0; break-inside: avoid; }
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
