/* ==========================================================================
   PolishMaster — THE FORMULA landing page
   Self-contained stylesheet. The blog and legal pages keep site.css.

   Concept: the page is the transformation.
   Section surfaces move RAW -> PREPARED -> MATTE -> MIRROR as the visitor
   scrolls, so the background literally loses its layer lines on the way to
   the offer.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:            #08090A;
  --bg-raw:        #0C0D0E;
  --bg-panel:      #121315;
  --bg-panel-2:    #17191C;
  --bg-mirror:     #0A0B0D;

  /* Ink */
  --ink:           #F4F5F6;
  --body:          #B4BAC1;
  --muted:         #7C838C;
  /* Dimmest ink still clearing WCAG AA (4.5:1) on the lightest panel (#17191C). */
  --faint:         #7A828B;

  /* Brand */
  --orange:        #C86B3C;
  --orange-hi:     #E68A50;
  --orange-lo:     #9C4F27;
  --orange-glow:   rgba(200, 107, 60, .30);

  /* Lines */
  --line:          rgba(255, 255, 255, .09);
  --line-2:        rgba(255, 255, 255, .16);
  --line-orange:   rgba(200, 107, 60, .34);

  /* Type */
  --font:    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Bebas Neue", "Arial Narrow", "Haettenschweiler", sans-serif;
  --mono:    ui-monospace, "SFMono-Regular", "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;

  --shell: min(1200px, calc(100% - 40px));
  --header-h: 56px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --buybar-clearance: calc(58px + var(--safe-bottom));
  --consent-clearance: calc(148px + var(--safe-bottom));
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Vertical flow tokens (8pt scale) */
  --space-2: 16px;
  --space-3: 24px;
  --space-5: 48px;
  --space-6: 64px;
  --section-y: clamp(56px, 11vw, 96px);
  --section-join: var(--space-3);
  --section-decision: var(--space-6);
  --seam-h: clamp(64px, 14vw, 104px);
}

/* Cookie banner clearance — landing no longer ignores the overlay */
body.has-consent-banner {
  padding-bottom: var(--consent-clearance);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font: 450 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p, ul, ol, figure, dl { margin: 0; }
ul { padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--orange-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

body.is-locked { overflow: hidden; touch-action: none; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--orange);
  border-radius: 3px;
  background: var(--bg-panel);
  font: 700 13px/1 var(--font);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   1. Type scale
   -------------------------------------------------------------------------- */

.display-1 {
  font: 400 clamp(52px, 13.2vw, 118px)/.84 var(--display);
  letter-spacing: .004em;
  text-transform: uppercase;
}

.display-2 {
  font: 400 clamp(38px, 8.6vw, 74px)/.88 var(--display);
  letter-spacing: .008em;
  text-transform: uppercase;
}

.display-3 {
  font: 400 clamp(28px, 5.4vw, 44px)/.92 var(--display);
  letter-spacing: .012em;
  text-transform: uppercase;
}

.display-1 em, .display-2 em, .display-3 em { font-style: normal; color: var(--orange); }

.lede {
  max-width: 46ch;
  color: var(--body);
  font-size: clamp(16px, 4vw, 19px);
  line-height: 1.55;
}

.mono {
  font: 600 11px/1.2 var(--mono);
  letter-spacing: .17em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.shell { width: var(--shell); margin-inline: auto; }
.shell-narrow { width: min(760px, calc(100% - 40px)); margin-inline: auto; }

.section-lede { margin-top: 16px; }
.evidence-head { margin-bottom: 24px; }
.offer-head-block { margin-bottom: 28px; }
.faq-title { margin-bottom: 26px; }
.offer-side-rail { margin-bottom: 18px; }
.footer-note { color: var(--body); font-size: 14px; line-height: 1.6; }

.inline-link {
  color: var(--orange-hi);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   2. Surface progression — the page polishes itself on the way down
   -------------------------------------------------------------------------- */

.surface { position: relative; isolation: isolate; }

.surface > .shell,
.surface > .shell-narrow {
  position: relative;
  z-index: 1;
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity .7s var(--ease);
}

/* RAW — visible print layers in the background */
.surface[data-surface="raw"] { background: var(--bg-raw); }
.surface[data-surface="raw"]::before {
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, .045) 0 1px,
    transparent 1px 4px
  );
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
}

/* PREPARED — a tighter, more even scratch pattern */
.surface[data-surface="prepared"] { background: var(--bg-panel); }
.surface[data-surface="prepared"]::before {
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, .022) 0 1px,
    transparent 1px 3px
  );
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

/* MATTE — flat, no direction, a soft top light */
.surface[data-surface="matte"] { background: var(--bg-panel-2); }
.surface[data-surface="matte"]::before {
  background: radial-gradient(120% 70% at 50% 0%, rgba(255, 255, 255, .045), transparent 70%);
}

/* MIRROR — deep, specular, reflective */
.surface[data-surface="mirror"] { background: var(--bg-mirror); }
.surface[data-surface="mirror"]::before {
  background:
    radial-gradient(90% 55% at 50% 0%, rgba(200, 107, 60, .13), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 34%, rgba(0, 0, 0, .5));
}

/* Soft seams at chapter boundaries — previous ground dissolves into the next */
.hero + .surface[data-surface="prepared"]::after,
.surface[data-surface="prepared"] + .surface[data-surface="matte"]::after,
.surface[data-surface="matte"] + .surface[data-surface="mirror"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--seam-h);
  z-index: 0;
  pointer-events: none;
}

.hero + .surface[data-surface="prepared"]::after {
  background: linear-gradient(180deg, #050506 0%, rgba(18, 19, 21, .55) 42%, transparent 100%);
}
.surface[data-surface="prepared"] + .surface[data-surface="matte"]::after {
  background: linear-gradient(180deg, var(--bg-panel) 0%, rgba(23, 25, 28, .5) 45%, transparent 100%);
}
.surface[data-surface="matte"] + .surface[data-surface="mirror"]::after {
  background: linear-gradient(180deg, var(--bg-panel-2) 0%, rgba(10, 11, 13, .55) 45%, transparent 100%);
}

/* Same-surface continuation: tighter join, no seam veil */
.surface[data-surface="prepared"] + .surface[data-surface="prepared"],
.surface[data-surface="matte"] + .surface[data-surface="matte"],
.surface[data-surface="mirror"] + .surface[data-surface="mirror"] {
  padding-top: var(--section-join);
}
.surface[data-surface="prepared"]:has(+ .surface[data-surface="prepared"]),
.surface[data-surface="matte"]:has(+ .surface[data-surface="matte"]),
.surface[data-surface="mirror"]:has(+ .surface[data-surface="mirror"]) {
  padding-bottom: var(--section-join);
}

/* Decision pause before the offer */
#offer.surface {
  padding-top: max(var(--section-y), var(--section-decision));
}

/* --------------------------------------------------------------------------
   3. Section index rail
   -------------------------------------------------------------------------- */

.section {
  padding: var(--section-y) 0;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.rail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(22px, 4vw, 34px);
  color: var(--faint);
}

.rail-num {
  flex: none;
  padding: 4px 8px;
  border: 1px solid var(--line-orange);
  border-radius: 2px;
  color: var(--orange);
  background: rgba(200, 107, 60, .07);
}

.rail-line {
  flex: 1;
  height: 1px;
  min-width: 12px;
  background: linear-gradient(90deg, var(--line-2), var(--line) 40%, transparent);
}

.rail-label { flex: none; color: var(--muted); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font: 800 14px/1.1 var(--font);
  letter-spacing: .045em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .16s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.btn:active { transform: translateY(1px) scale(.995); }

.btn-primary {
  overflow: hidden;
  background: linear-gradient(178deg, var(--orange-hi), var(--orange) 58%, var(--orange-lo));
  color: #0B0B0B;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .34) inset,
    0 -1px 0 rgba(0, 0, 0, .28) inset,
    0 12px 30px -12px var(--orange-glow);
}

.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .44) inset,
    0 -1px 0 rgba(0, 0, 0, .28) inset,
    0 18px 40px -14px rgba(200, 107, 60, .55);
}

/* The specular sweep: the CTA carries the same highlight a polished part does. */
.btn-primary::after {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: 0;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: translateX(-180%) rotate(4deg);
  animation: sweep 5.2s var(--ease) 1.4s infinite;
  pointer-events: none;
}

@keyframes sweep {
  0%   { transform: translateX(-180%) rotate(4deg); }
  38%  { transform: translateX(340%)  rotate(4deg); }
  100% { transform: translateX(340%)  rotate(4deg); }
}

.btn-ghost {
  border-color: var(--line-2);
  background: rgba(255, 255, 255, .025);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(200, 107, 60, .08); }

.btn-quiet {
  min-height: 44px;
  padding: 10px 4px;
  color: var(--body);
  font-weight: 700;
  letter-spacing: .09em;
}
.btn-quiet:hover { color: var(--orange-hi); }

.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 120;
  padding-top: var(--safe-top);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 10, .82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.masthead::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-orange) 22%, rgba(200, 107, 60, .12) 60%, transparent);
}

.masthead-in {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font: 800 15px/1 var(--font);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.wordmark b { font-weight: 800; color: var(--ink); }
.wordmark i { font-style: normal; color: var(--orange); }

.masthead-nav { display: flex; align-items: center; gap: 4px; }

.masthead-link {
  min-height: 40px;
  display: none;
  align-items: center;
  padding: 0 12px;
  color: var(--body);
  font: 700 12px/1 var(--font);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.masthead-link:hover { color: var(--ink); background: rgba(255, 255, 255, .04); }

/* The phone header stays quiet: the hero and the sticky bar carry the CTA,
   so a visitor never sees two competing orange buttons at the same time. */
.masthead-cta {
  display: none;
  min-height: 40px;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* On phones the header stays quiet — the sticky bar at the bottom is the CTA. */
.masthead-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  color: var(--body);
}
.masthead-price b { color: var(--ink); font-family: var(--mono); font-size: 12px; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: #050506;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

/* Scrim: only as dark as the type needs. The footage stays readable, and the
   band behind the headline is the only place that goes properly opaque. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, .58) 0%, rgba(5, 5, 6, .1) 18%, rgba(5, 5, 6, .04) 30%, rgba(5, 5, 6, .62) 55%, rgba(6, 7, 8, .93) 76%, #08090A 97%);
}

.hero-in {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100svh - var(--header-h) - var(--safe-top));
  padding: 26px 0 22px;
}

.hero h1 {
  margin: 0 0 14px;
  max-width: 14ch;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .85), 0 1px 3px rgba(0, 0, 0, .6);
}

.hero-lede {
  max-width: 26ch;
  margin-bottom: 22px;
  color: #DCE0E5;
  font-size: clamp(16px, 4.2vw, 19px);
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}

.hero-cta { width: 100%; max-width: 420px; }

.hero-trailer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  min-height: 46px;
  margin-top: 14px;
  padding: 11px 18px;
  border: 1px solid rgba(200, 107, 60, .42);
  border-radius: 3px;
  background: transparent;
  color: rgba(244, 245, 246, .92);
  font: 700 11.5px/1.2 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.hero-trailer:hover,
.hero-trailer:focus-visible {
  border-color: rgba(200, 107, 60, .78);
  background: rgba(200, 107, 60, .1);
  color: var(--ink);
  outline: none;
}
.hero-trailer-icon {
  flex: none;
  color: var(--orange-hi);
}

.hero-terms {
  width: 100%;
  max-width: 420px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .7);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}

.hero-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin-top: 20px;
  color: var(--orange);
}
.hero-scroll svg {
  width: 12px;
  height: 14px;
  stroke-width: 1.8;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .55));
  animation: nudge 2.2s var(--ease) infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50%      { transform: translateY(5px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   8a. Sample — a real clip from inside the product
   -------------------------------------------------------------------------- */

.sample-head { margin-bottom: clamp(20px, 4vw, 32px); }

.sample-grid { display: grid; gap: clamp(22px, 4vw, 44px); align-items: center; }

.sample-player {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: #0D0E10;
  box-shadow: 0 30px 70px -44px rgba(0, 0, 0, .9);
  cursor: pointer;
  isolation: isolate;
}
.sample-player.is-ended { cursor: default; }

.sample-player video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0D0E10;
}

.sample-play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(8, 9, 10, .22);
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s var(--ease), background .25s var(--ease);
}
.sample-player.is-playing .sample-play,
.sample-player.is-ended .sample-play {
  opacity: 0;
  pointer-events: none;
}
.sample-player.is-paused:not(.is-ended) .sample-play {
  background: rgba(8, 9, 10, .3);
}

.sample-play-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(10, 11, 12, .55);
  color: #fff;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.sample-play-mark svg { margin-left: 2px; }
.sample-play:hover .sample-play-mark,
.sample-play:focus-visible .sample-play-mark {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, .5);
  background: rgba(10, 11, 12, .7);
}

.sample-end {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.35s var(--ease);
}
.sample-end.is-on {
  opacity: 1;
  pointer-events: auto;
}
.sample-end-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(12, 13, 15, .55), rgba(5, 6, 7, .88) 72%),
    linear-gradient(180deg, rgba(5, 6, 7, .55), rgba(5, 6, 7, .92));
}
.sample-end-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 28ch;
  text-align: center;
  transform: translateY(16px);
  opacity: 0;
  transition:
    opacity 1.15s var(--ease) .28s,
    transform 1.15s var(--ease) .28s;
}
.sample-end.is-on .sample-end-inner {
  opacity: 1;
  transform: translateY(0);
}
.sample-end-title {
  margin: 0;
  color: #fff;
  font: 400 clamp(34px, 6vw, 48px)/1 var(--display);
  letter-spacing: .02em;
  text-transform: uppercase;
  text-wrap: balance;
}
.sample-end-cta {
  margin-top: 6px;
  min-width: min(100%, 280px);
}
.sample-replay {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 2px 0 0;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 700 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .18s var(--ease);
}
.sample-replay:hover,
.sample-replay:focus-visible {
  color: var(--ink);
}

.sample-points {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-2);
}
.sample-points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  padding: 22px 0 22px 14px;
  border-bottom: 1px solid var(--line-2);
  border-left: 2px solid transparent;
  transition: border-color .2s var(--ease);
}
.sample-points li:hover { border-left-color: var(--orange); }
.sample-points-idx {
  margin-top: 3px;
  color: var(--orange-hi);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
}
.sample-points-copy { min-width: 0; }
.sample-points b {
  display: block;
  color: #FFFFFF;
  font: 800 clamp(18px, 2.4vw, 22px)/1.2 var(--font);
  letter-spacing: -.025em;
  text-wrap: balance;
}
.sample-points-copy > span {
  display: block;
  margin-top: 8px;
  color: #D6DBE1;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   9. Evidence
   -------------------------------------------------------------------------- */

.evidence-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: #101113;
}

.evidence-hero img { width: 100%; height: auto; }

.evidence-hero .split-label {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(8, 9, 10, .86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.evidence-hero .split-label.left  { left: 0;  border-top-right-radius: 3px; color: var(--body); }
.evidence-hero .split-label.right { right: 0; border-top-left-radius: 3px;  color: var(--orange-hi); }

.evidence-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 10px;
  margin-top: 12px;
  padding-bottom: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}

.evidence-cell {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #0E0F11;
  scroll-snap-align: start;
  cursor: zoom-in;
}
.evidence-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform .5s var(--ease);
}
.evidence-cell:hover img { transform: scale(1.04); }

.evidence-cell .tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 8px;
  border-radius: 2px;
  background: rgba(8, 9, 10, .8);
  color: var(--ink);
}
.evidence-cell .cap {
  position: absolute;
  inset: auto 0 0;
  padding: 26px 10px 9px;
  background: linear-gradient(180deg, transparent, rgba(6, 7, 8, .92));
  color: var(--body);
  text-align: left;
}

.disclosure { margin-top: 14px; color: var(--faint); font-size: 12px; line-height: 1.55; }

.evidence-swipe {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
}
.evidence-swipe span { color: var(--orange); font-size: 16px; line-height: 1; }

/* One-shot swipe affordance when the strip enters view */
.evidence-strip.is-swipe-hint {
  animation: evidence-swipe-hint .95s cubic-bezier(.22, .61, .36, 1) 1;
}
@keyframes evidence-swipe-hint {
  0%, 100% { transform: translateX(0); }
  38%      { transform: translateX(-28px); }
  72%      { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .evidence-strip.is-swipe-hint { animation: none; }
}

/* --------------------------------------------------------------------------
   10. Manifest — core pillars + bonus row (Option E)
   -------------------------------------------------------------------------- */

.manifest { display: grid; gap: clamp(20px, 3.5vw, 40px); align-items: start; }
.manifest-body { display: grid; gap: 22px; min-width: 0; }

.manifest-head .lede { margin-top: 12px; max-width: 36ch; }
.manifest-stake {
  margin-top: 12px;
  color: var(--orange-hi);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.manifest-list { border-top: 1px solid var(--line-2); }

.manifest-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.manifest-list .manifest-row:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.manifest-row .idx {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .16em;
}
.manifest-row h3 {
  margin-top: 6px;
  font: 400 clamp(24px, 5.4vw, 32px)/1.05 var(--display);
  letter-spacing: .015em;
  text-transform: uppercase;
}
.manifest-row .copy > p { margin-top: 8px; color: var(--body); font-size: 15px; line-height: 1.55; }

.manifest-row .copy > p.manifest-loss {
  margin-top: 8px;
  padding-left: 10px;
  border-left: 2px solid var(--line-orange);
  color: var(--muted);
  font: 550 13px/1.4 var(--font);
}

.manifest-row .thumb {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  aspect-ratio: 16 / 9;
  background: #0e0f11;
}
.manifest-row .thumb img,
.manifest-row .thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manifest-row .thumb-clip {
  pointer-events: none;
}

/* Bonus row — same grid as pillars; uncropped tool-pack thumb */
.manifest-row-bonus .copy > p.manifest-row-meta {
  margin-top: 8px;
  color: var(--faint);
  font: 700 11.5px/1.35 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.manifest-row-bonus .thumb {
  aspect-ratio: 1590 / 989;
  background: #0e0f11;
}
.manifest-row-bonus .thumb img {
  object-fit: contain;
}

.manifest-row-shopping .thumb {
  aspect-ratio: 1590 / 989;
  background: #0e0f11;
}
.manifest-row-shopping .thumb img {
  object-fit: contain;
}

.manifest-cta {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.manifest-cta .btn { min-width: min(100%, 340px); }
.manifest-cta .offer-terms {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. Social proof — Instagram DM archive
   -------------------------------------------------------------------------- */

.proof-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(200, 107, 60, .1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 28%),
    #12141a;
  box-shadow:
    inset 0 0 0 1px rgba(200, 107, 60, .1),
    0 36px 80px -48px rgba(0, 0, 0, .85);
}
.proof-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  pointer-events: none;
}

.proof-head {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(14px, 2.2vw, 22px);
  padding-bottom: clamp(14px, 2vw, 20px);
  border-bottom: 1px solid var(--line);
  justify-items: center;
  text-align: center;
}
.proof-head-copy { max-width: 40ch; }
.proof-head-copy .lede {
  margin-top: 10px;
  margin-inline: auto;
  max-width: 36ch;
}
.proof-stake {
  margin-top: 10px;
  color: var(--orange-hi);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proof-meta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.proof-meta-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--line-orange);
}

.proof-swipe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proof-swipe span { color: var(--orange); font-size: 16px; line-height: 1; }

.proof-wall {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  align-items: start;
  margin: 0 -4px;
  padding: 4px 4px 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}

.proof-shot {
  position: relative;
  flex: 0 0 min(78vw, 300px);
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  background: #12141a;
  aspect-ratio: 9 / 16;
  scroll-snap-align: center;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, .9);
  transition: border-color .22s var(--ease);
}
.proof-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #12141a;
}
.proof-foot-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.proof-foot {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}
.proof-foot-side { color: var(--muted); }


/* --------------------------------------------------------------------------
   12. Offer
   -------------------------------------------------------------------------- */

.offer-grid { display: grid; gap: clamp(24px, 4vw, 44px); align-items: start; }

.offer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  background: #101114;
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .9);
}

.offer-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

/* Pricing visual — white studio plate, soft handoff into the dark card */
.offer-card-media {
  position: relative;
  z-index: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #ffffff;
}
.offer-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.offer-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 62%,
    rgba(16, 17, 20, .28) 82%,
    #101114 100%
  );
  pointer-events: none;
}

.offer-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.offer-head h3 {
  font: 400 clamp(30px, 7vw, 44px)/.94 var(--display);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.offer-head .kicker { color: var(--muted); margin-bottom: 8px; }

.offer-price { text-align: right; flex: none; }
.offer-price strong {
  display: block;
  font: 400 clamp(42px, 10vw, 60px)/.85 var(--display);
  color: var(--ink);
  letter-spacing: .01em;
}
.offer-price span { display: block; margin-top: 6px; color: var(--muted); }

.offer-includes { padding: 6px 22px 4px; }
.offer-includes li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.5;
}
.offer-includes li:last-child { border-bottom: 0; }
.offer-includes b { color: var(--ink); font-weight: 700; }
.offer-includes svg { margin-top: 3px; color: var(--orange); }
.offer-bonus {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  vertical-align: 1px;
  border: 1px solid rgba(200, 107, 60, .55);
  border-radius: 2px;
  color: var(--orange-hi);
  background: rgba(200, 107, 60, .1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.offer-action { padding: 8px 22px 22px; }

.offer-terms {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
}
.offer-terms a { color: var(--body); text-decoration: underline; text-underline-offset: 3px; }

/* Delivery steps — removes "what happens after I pay?" friction */
.steps { counter-reset: step; margin-top: 4px; }
.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 0 0 22px 0;
}
.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-orange);
  border-radius: 50%;
  color: var(--orange);
  font: 700 11px/1 var(--mono);
  background: rgba(200, 107, 60, .07);
}
.steps li::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 4px;
  left: 15px;
  width: 1px;
  background: var(--line);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
/* The marker owns column 1; both text nodes stay in column 2. */
.steps b { grid-column: 2; color: var(--ink); font-size: 14.5px; }
.steps span { grid-column: 2; margin-top: 3px; color: var(--body); font-size: 14px; line-height: 1.5; }

.guarantee {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, .022);
}
.guarantee b { display: block; margin-bottom: 6px; color: var(--ink); font-size: 15px; }
.guarantee p { color: var(--body); font-size: 14px; line-height: 1.55; }
.guarantee a { color: var(--orange-hi); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  color: var(--ink);
  font: 700 16px/1.4 var(--font);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  flex: none;
  width: 13px;
  height: 13px;
  margin-top: 5px;
  background: currentColor;
  color: var(--orange);
  transition: transform .22s var(--ease);
  clip-path: polygon(45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%, 0 45%, 45% 45%);
}
.faq details[open] summary::after,
.faq details.is-open summary::after { transform: rotate(135deg); }
.faq.is-enhanced details[data-faq-animating] summary::after { transform: none; }

.faq-panel-inner {
  padding: 0 0 22px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
  max-width: 68ch;
}
.faq-panel-inner a { color: var(--orange-hi); text-decoration: underline; text-underline-offset: 3px; }
.faq-panel-inner p + p { margin-top: 10px; }

/* Height-only accordion motion (JS drives px → auto) */
.faq.is-enhanced .faq-panel {
  overflow: hidden;
  height: 0;
  transition: height .26s cubic-bezier(.2, .7, .2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .faq.is-enhanced .faq-panel,
  .faq summary::after { transition: none; }
}

/* --------------------------------------------------------------------------
   14. Closer + footer
   -------------------------------------------------------------------------- */

.section.surface.closer {
  text-align: center;
  padding-block: clamp(88px, 14vw, 140px);
}
.closer-title {
  margin: 0 auto 36px;
  max-width: none;
  color: var(--ink);
  font: 400 clamp(52px, 10.5vw, 104px)/.86 var(--display);
  letter-spacing: .004em;
  text-transform: uppercase;
  text-wrap: nowrap;
}
.closer-title em {
  font-style: normal;
  color: var(--orange);
}
.closer .btn { min-width: min(100%, 340px); }
.closer .offer-terms { margin-top: 18px; }

.site-footer {
  padding: 44px 0 34px;
  border-top: 1px solid var(--line);
  background: #060708;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.footer-cols h3 { margin-bottom: 12px; color: var(--muted); font: 600 11px/1 var(--mono); letter-spacing: .17em; text-transform: uppercase; }
.footer-cols nav { display: grid; gap: 0; }
/* 44px minimum touch target — the link box grows, the type does not. */
.footer-cols a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--body);
  font-size: 14px;
}
.footer-cols a:hover { color: var(--orange-hi); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  color: var(--faint);
  font-size: 12.5px;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.footer-bottom nav a { display: inline-flex; align-items: center; min-height: 44px; }
.footer-bottom a:hover { color: var(--body); }

/* --------------------------------------------------------------------------
   15. Sticky purchase bar (phones)
   -------------------------------------------------------------------------- */

.buybar {
  position: fixed;
  z-index: 130;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + var(--safe-bottom));
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(22, 24, 28, .78), rgba(10, 11, 12, .82));
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow:
    0 -1px 0 rgba(200, 107, 60, .18),
    0 -12px 36px rgba(0, 0, 0, .32);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.buybar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 138, 80, .42), transparent);
  pointer-events: none;
}

.buybar.is-visible { display: flex; }
.buybar.is-in { transform: translateY(0); }

.buybar-copy {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 3px;
}
.buybar-title {
  color: var(--ink);
  font: 400 17px/.95 var(--display);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.buybar-meta {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
}
.buybar-cta {
  flex: none;
  min-height: 40px;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: .045em;
}
.buybar-cta-short { display: none; }

body.is-locked .buybar { display: none !important; }

/* --------------------------------------------------------------------------
   16. Lightbox
   -------------------------------------------------------------------------- */

.lightbox {
  width: min(1100px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  background: #0B0C0E;
  color: var(--ink);
}
.lightbox::backdrop { background: rgba(3, 4, 5, .88); backdrop-filter: blur(4px); }
.lightbox img { width: 100%; max-height: calc(100dvh - 84px); object-fit: contain; }
.lightbox figcaption { padding: 12px 16px; border-top: 1px solid var(--line); color: var(--body); font-size: 13px; }

.lightbox-close {
  position: absolute;
  top: max(10px, var(--safe-top));
  right: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  background: rgba(8, 9, 10, .8);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   16b. Formula overview trailer — fullscreen player
   -------------------------------------------------------------------------- */

.trailer-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #050506;
  color: var(--ink);
  overflow: hidden;
}
.trailer-modal::backdrop {
  background: #050506;
}
.trailer-modal[open] {
  display: grid;
  place-items: center;
}

.trailer-modal video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  object-fit: contain;
  background: #050506;
}

.trailer-modal-close {
  position: absolute;
  top: max(12px, var(--safe-top));
  right: max(12px, var(--safe-right, 12px));
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 3px;
  background: rgba(8, 9, 10, .72);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.trailer-modal-close:hover,
.trailer-modal-close:focus-visible {
  border-color: rgba(200, 107, 60, .55);
  background: rgba(200, 107, 60, .14);
  outline: none;
}

.trailer-pause-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 48px 16px calc(28px + var(--safe-bottom));
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(5, 5, 6, .08) 28%,
      rgba(5, 5, 6, .42) 62%,
      rgba(5, 5, 6, .72) 100%
    );
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    opacity .36s cubic-bezier(.22, 1, .36, 1);
}
.trailer-pause-cta.is-on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.trailer-pause-cta.is-leaving {
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .28s cubic-bezier(.4, 0, .2, 1),
    opacity .24s cubic-bezier(.4, 0, .2, 1);
}
.trailer-pause-cta[hidden] { display: none; }
.trailer-pause-cta-btn {
  width: min(100%, 340px);
  justify-content: center;
  background: linear-gradient(178deg, var(--orange-hi), var(--orange) 58%, var(--orange-lo));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .14) inset,
    0 18px 40px -18px rgba(0, 0, 0, .75),
    0 8px 24px -10px rgba(200, 107, 60, .45);
}

.trailer-tap {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.trailer-modal.is-ended .trailer-tap {
  pointer-events: none;
}

.trailer-end-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(70% 60% at 50% 45%, rgba(8, 9, 10, .35), rgba(3, 4, 5, .88) 72%),
    rgba(3, 4, 5, .78);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity .18s linear;
}
.trailer-end-veil.is-soft {
  transition: opacity .55s cubic-bezier(.4, 0, .2, 1);
}

.trailer-end-card {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: max(48px, calc(var(--safe-top) + 40px)) 16px calc(20px + var(--safe-bottom));
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1);
  overflow: auto;
}
.trailer-end-card.is-on {
  display: grid !important;
  opacity: 1;
  pointer-events: auto;
}
.trailer-end-card[hidden] { display: none; }

.trailer-end-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: #0c0d10;
  box-shadow:
    0 0 0 1px rgba(200, 107, 60, .08),
    0 20px 56px -24px rgba(0, 0, 0, .95),
    0 0 44px -18px rgba(200, 107, 60, .24);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  filter: blur(4px);
  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1) .04s,
    opacity .5s cubic-bezier(.22, 1, .36, 1),
    filter .5s cubic-bezier(.22, 1, .36, 1);
}
.trailer-end-card.is-on .trailer-end-panel {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.trailer-end-glow {
  position: absolute;
  inset: -35% -20% auto;
  height: 70%;
  background:
    radial-gradient(55% 70% at 50% 30%, rgba(200, 107, 60, .42), transparent 72%),
    radial-gradient(40% 50% at 18% 80%, rgba(200, 107, 60, .14), transparent 70%);
  pointer-events: none;
}

.trailer-end-media {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 132px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 42%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #0a0b0d;
}

.trailer-end-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  justify-items: center;
  padding: 14px 16px 14px;
  text-align: center;
}

.trailer-end-kicker {
  margin: 0 0 6px;
  color: var(--orange-hi);
  font: 700 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trailer-end-title {
  margin: 0 0 6px;
  color: var(--ink);
  font: 400 22px/1.1 var(--display);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.trailer-end-lede {
  margin: 0 0 12px;
  max-width: 28ch;
  color: var(--body);
  font-size: 13px;
  line-height: 1.4;
}

.trailer-end-cta {
  width: 100%;
  max-width: none;
  margin: 0 0 8px;
  min-height: 44px;
  padding-block: 11px;
  font-size: 13px;
  justify-content: center;
  box-shadow: 0 12px 28px -16px rgba(200, 107, 60, .55);
}

.trailer-end-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 36px;
  width: 100%;
  margin: 0 0 8px;
}
.trailer-end-again,
.trailer-end-dismiss {
  min-height: 30px;
  padding: 4px 2px;
  border: 0;
  background: none;
  color: var(--body);
  font: 700 11.5px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .18s var(--ease);
}
.trailer-end-again:hover,
.trailer-end-again:focus-visible,
.trailer-end-dismiss:hover,
.trailer-end-dismiss:focus-visible {
  color: var(--orange-hi);
  outline: none;
}
.trailer-end-again span {
  margin-right: 6px;
  color: var(--orange);
}

.trailer-end-terms {
  margin: 0;
  color: var(--faint);
  font: 700 11px/1.35 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   17. Chapter reveal — only chapter titles, not every block
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .48s var(--ease), transform .48s var(--ease);
  will-change: auto;
}

/* Continuation chapters stay present — no entrance motion */
.surface.is-continuation .reveal {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

/* --------------------------------------------------------------------------
   18. Breakpoints
   -------------------------------------------------------------------------- */

@media (min-width: 620px) {
  .manifest-row { grid-template-columns: 1fr minmax(160px, 220px); align-items: start; }
  .manifest-row .copy { grid-column: 1; }
  .manifest-row .thumb { grid-column: 2; grid-row: 1; }
  .evidence-strip { grid-auto-columns: minmax(220px, 1fr); }
  .footer-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  :root { --header-h: 68px; --shell: min(1200px, calc(100% - 56px)); }

  .masthead-link { display: inline-flex; }
  .masthead-price { display: none; }
  .masthead-cta { display: inline-flex; }

  /* Desktop keeps the vertical footage intact in a contained panel instead of
     cropping a 9:16 clip into a landscape band. */
  .hero {
    background: var(--bg-raw);
    border-bottom: 1px solid var(--line);
  }
  .hero-media {
    inset: auto;
    top: 50%;
    right: max(28px, calc((100vw - 1200px) / 2));
    overflow: hidden;
    width: min(31vw, 352px);
    aspect-ratio: 9 / 16;
    max-height: calc(100% - 96px);
    border: 1px solid var(--line-2);
    border-radius: 4px;
    transform: translateY(-50%);
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9);
  }
  .hero-media video, .hero-media img { object-position: 50% 50%; }

  .hero-scrim {
    background: radial-gradient(120% 90% at 12% 45%, rgba(6, 7, 8, .58), transparent 64%);
  }

  .hero-in { min-height: min(760px, calc(100svh - var(--header-h))); padding: 40px 0 42px; }
  .hero-in > * { max-width: min(100%, calc(100% - 34vw)); }
  .hero h1 { max-width: 12ch; }
  .hero-lede { font-size: 21px; max-width: 30ch; }
  .hero-cta { width: auto; }
  .hero-trailer { width: auto; }

  .sample-grid { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr); }
  .sample-points { border-top: 0; }
  .sample-points li:first-child { border-top: 1px solid var(--line-2); }

  .manifest { grid-template-columns: minmax(280px, .8fr) minmax(0, 1.5fr); }
  .manifest-head { position: sticky; top: calc(var(--header-h) + 24px); }

  .proof-stage { padding: 28px 28px 24px; }
  .proof-head {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    gap: 12px;
  }
  .proof-meta {
    display: inline-flex;
    justify-content: center;
  }
  .proof-swipe { display: none; }
  .proof-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 4px 0 0;
    overflow: visible;
    scroll-snap-type: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .proof-shot {
    flex: 0 1 calc((100% - 28px) / 3);
    max-width: 240px;
    scroll-snap-align: unset;
    aspect-ratio: 9 / 16;
    min-height: 0;
  }
  .proof-shot.is-feature {
    flex: 0 1 calc((100% - 28px) / 3);
    max-width: 240px;
  }
  .proof-shot[data-proof-clone] { display: none !important; }
  .proof-shot:hover {
    border-color: rgba(200, 107, 60, .45);
  }

  .offer-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr); }
  .offer-side { position: sticky; top: calc(var(--header-h) + 24px); }

  .buybar { display: none !important; }
}

@media (min-width: 1180px) {
  .evidence-strip {
    grid-auto-columns: minmax(148px, 1fr);
    overflow-x: auto;
  }
}

/* ==========================================================================
   Mobile composition — phones and small tablets
   One clear vertical rhythm: tighter sections, full-bleed evidence,
   aligned CTAs, readable type, no competing chrome.
   ========================================================================== */
@media (max-width: 899px) {
  :root {
    --shell: min(100% - 32px, 1200px);
    --section-y: var(--space-5);
    --section-join: var(--space-3);
    --section-decision: var(--space-6);
    --seam-h: 72px;
  }

  body.has-buybar { padding-bottom: var(--buybar-clearance); }
  body.has-consent-banner { padding-bottom: var(--consent-clearance); }
  body.has-consent-banner.has-buybar { padding-bottom: var(--consent-clearance); }

  .shell-narrow { width: min(100% - 32px, 760px); }

  /* Header stays quiet — hero + sticky bar own the purchase path */
  .masthead-price { display: none; }

  /* Section rhythm */
  .section {
    padding: var(--section-y) 0;
    scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 10px);
  }

  #offer.surface {
    padding-top: var(--section-decision);
  }
  .rail { margin-bottom: 18px; gap: 10px; }
  .rail-label { letter-spacing: .14em; }
  .section-lede { margin-top: 12px; }
  .evidence-head,
  .sample-head,
  .offer-head-block { margin-bottom: 18px; }
  .faq-title { margin-bottom: 18px; }
  .display-2 { font-size: clamp(34px, 9.2vw, 48px); line-height: .9; text-wrap: balance; }
  .lede { font-size: 16px; line-height: 1.5; max-width: 34ch; }

  /* Hero: brand-first stack, CTA full width, copy sits in the safe lower band */
  .hero-in {
    justify-content: flex-end;
    gap: 0;
    min-height: calc(100svh - var(--header-h) - var(--safe-top));
    padding: 28px 0 max(20px, calc(12px + var(--safe-bottom)));
  }
  /* No measure cap: an 11ch limit broke this into four ragged lines that used
     just over half the width. Left to the full column it sets two balanced
     lines at a larger size and roughly 40% less height. */
  .hero h1 {
    max-width: none;
    margin: 0 0 12px;
    font-size: clamp(48px, 15vw, 60px);
    line-height: .86;
    text-wrap: balance;
  }
  .hero-lede {
    max-width: 28ch;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.4;
  }
  .hero-cta {
    width: 100%;
    max-width: none;
    min-height: 54px;
    justify-content: center;
  }
  .hero-trailer {
    width: 100%;
    max-width: none;
    min-height: 48px;
    margin-top: 12px;
    justify-content: center;
  }
  .hero-terms {
    max-width: none;
    margin-top: 14px;
    font-size: 11.5px;
    letter-spacing: .1em;
    text-align: center;
  }
  .hero-scroll {
    max-width: none;
    margin-top: 18px;
  }
  .hero-media video,
  .hero-media img { object-position: 50% 38%; }

  /* Evidence: edge-to-edge strip with aligned gutters */
  .evidence-hero { border-radius: 3px; }
  .evidence-hero .split-label { padding: 7px 10px; font-size: 11px; }
  .evidence-swipe { display: flex; }
  .evidence-strip {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    margin-top: 14px;
    padding: 0 16px 12px;
    gap: 8px;
    grid-auto-columns: min(58vw, 220px);
    scroll-padding-inline: 16px;
    scrollbar-width: none;
  }
  .evidence-strip::-webkit-scrollbar { display: none; }
  .evidence-cell {
    aspect-ratio: 5 / 6;
    border-radius: 3px;
  }
  .evidence-cell:hover img { transform: none; }
  .disclosure { margin-top: 12px; font-size: 11.5px; }

  /* Sample */
  .sample-grid { gap: 18px; }
  .sample-play-mark { width: 52px; height: 52px; }
  .sample-end { padding: 16px; }
  .sample-end-title { font-size: clamp(30px, 9vw, 40px); }
  .sample-end-cta {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 13px;
  }
  .sample-points li {
    gap: 12px;
    padding: 18px 0 18px 12px;
  }
  .sample-points b { font-size: 17px; }
  .sample-points-copy > span { font-size: 14.5px; }

  /* Manifest */
  .manifest { gap: 18px; }
  .manifest-body { gap: 18px; }
  .manifest-row {
    gap: 12px;
    padding: 16px 0;
  }
  .manifest-row h3 { margin-top: 5px; font-size: clamp(24px, 6.8vw, 30px); }
  .manifest-row .copy > p:not(.manifest-loss) { font-size: 14.5px; }
  .manifest-row .copy > p.manifest-loss { font-size: 12.5px; }
  .manifest-row .thumb { aspect-ratio: 16 / 10; }
  .manifest-stake { font-size: 11.5px; }
  .manifest-row-bonus .thumb { aspect-ratio: 16 / 10; }
  .manifest-row-shopping .thumb { aspect-ratio: 16 / 10; }
  .manifest-cta { padding-top: 16px; }
  .manifest-cta .btn { width: 100%; min-width: 0; }

  /* Social proof */
  .proof-stage {
    margin-left: 0;
    margin-right: 0;
    padding: 14px 12px 14px;
    border-radius: 4px;
    overflow: visible;
  }
  .proof-head { gap: 10px; margin-bottom: 12px; padding-bottom: 12px; }
  .proof-stake { font-size: 11.5px; }
  .proof-swipe { margin-bottom: 10px; }
  .proof-wall {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding: 2px 12px 8px;
    gap: 10px;
    justify-content: flex-start;
    scroll-padding-inline: 12px;
    scrollbar-width: none;
  }
  .proof-wall::-webkit-scrollbar { display: none; }
  .proof-shot {
    flex-basis: min(72vw, 280px);
    border-radius: 3px;
  }
  .proof-foot-row { margin-top: 10px; padding-top: 12px; }
  .proof-foot { font-size: 11.5px; }
  .proof-foot-side { display: none; }

  /* Offer card: keep price on the right — title left, $97 right */
  .offer-grid { gap: 22px; }
  .offer-card-media { aspect-ratio: 16 / 9; }
  .offer-head {
    align-items: flex-end;
    gap: 12px;
    margin-top: 0;
    padding: 16px;
  }
  .offer-price { text-align: right; }
  .offer-price strong { font-size: clamp(40px, 12vw, 52px); }
  .offer-includes { padding: 4px 16px 0; }
  .offer-includes li {
    gap: 10px;
    padding: 11px 0;
    font-size: 14px;
  }
  .offer-action { padding: 10px 16px 18px; }
  .offer-terms { font-size: 12px; }
  .steps li { gap: 12px; padding-bottom: 18px; }
  .guarantee { margin-top: 20px; padding: 16px; }

  /* FAQ + closer + footer */
  .faq summary {
    min-height: 52px;
    padding: 16px 0;
    font-size: 15px;
    gap: 14px;
  }
  .faq-panel-inner { padding-bottom: 18px; font-size: 14.5px; }
  .section.surface.closer {
    padding-block: clamp(72px, 16vw, 108px);
  }
  .closer-title {
    margin-bottom: 28px;
    /* Matches .display-2 so every section headline lands on the same size. */
    font-size: clamp(34px, 9.2vw, 48px);
    line-height: .9;
    text-wrap: balance;
    white-space: normal;
  }
  .closer .btn { width: 100%; min-width: 0; }
  .closer .offer-terms { margin-top: 16px; }

  /* Hide sticky CTA while the cookie sheet owns the bottom edge */
  body.has-consent-banner .buybar { display: none !important; }
  .site-footer { padding: 36px 0 28px; }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    padding-bottom: 22px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
  }

  .buybar {
    gap: 12px;
    padding: 9px 14px calc(9px + var(--safe-bottom));
  }
  .buybar-cta {
    min-width: 0;
    min-height: 40px;
    padding: 10px 14px;
  }
}

/* Short phones: keep the hero from crushing the CTA out of view */
@media (max-width: 899px) and (max-height: 700px) {
  .hero-in {
    min-height: calc(100svh - var(--header-h) - var(--safe-top));
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .hero h1 { font-size: clamp(40px, 10.5vw, 56px); margin-bottom: 8px; }
  .hero-lede { font-size: 15px; margin-bottom: 12px; }
  .hero-cta { min-height: 50px; }
  .hero-trailer { min-height: 46px; margin-top: 12px; }
  .hero-terms { margin-top: 14px; }
  .hero-scroll { display: none; }
}

/* Landscape phones: prefer readable CTA over a tall cinematic hero */
@media (max-width: 899px) and (orientation: landscape) and (max-height: 500px) {
  .hero-in {
    min-height: calc(100svh - var(--header-h) - var(--safe-top));
    justify-content: center;
    padding: 14px 0 12px;
  }
  .hero h1 { font-size: clamp(34px, 9vh, 52px); max-width: 18ch; margin-bottom: 8px; }
  .hero-lede { font-size: 14px; margin-bottom: 12px; max-width: 36ch; }
  .hero-cta { max-width: 280px; min-height: 46px; }
  .hero-trailer { max-width: 280px; min-height: 44px; margin-top: 12px; }
  .hero-terms { margin-top: 14px; }
  .hero-scroll { display: none; }
  .hero-media video,
  .hero-media img { object-position: 50% 30%; }
  .section { padding: 40px 0; }
}

/* Narrow phones: prevent type and sticky CTA overflow */
@media (max-width: 360px) {
  :root { --shell: min(100% - 28px, 1200px); }
  .display-1 { font-size: clamp(44px, 12.2vw, 52px); }
  .hero-lede { font-size: 15px; }
  .hero-cta { max-width: none; font-size: 13px; padding-inline: 18px; }
  .masthead-price { padding: 0 10px; gap: 6px; }
  .masthead-price span { display: none; }
  .buybar { gap: 8px; padding: 8px 10px calc(8px + var(--safe-bottom)); }
  .buybar-title { font-size: 15px; }
  .buybar-meta { font-size: 10.5px; letter-spacing: .1em; }
  .buybar-cta { min-height: 44px; padding: 9px 12px; font-size: 11.5px; }
  .buybar-cta-full { display: none; }
  .buybar-cta-short { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal,
  .surface.is-continuation .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .btn-primary::after { display: none; }
  .hero-scroll svg { animation: none; }
  .hero-media {
    background: #050506 center / cover no-repeat url("hero-loop-poster.webp");
  }
  .hero-media video { display: none; }
}
