/* ========================================================================
   MSSL FITNESS — COACH DALTON MUSSELWHITE
   Stadium / Broadcast aesthetic · Ignite brand system · Oswald throughout
   ======================================================================== */

/* ---------------- DESIGN TOKENS ---------------- */
:root {
  /* Color */
  --black: #0A0A0A;
  --black-2: #141414;
  --black-3: #1C1C1C;
  --red: #CC2D2D;
  --red-hot: #E63535;
  --off-white: #F5F5F5;
  --charcoal: #444444;
  --charcoal-2: #2A2A2A;
  --rule: rgba(245, 245, 245, 0.1);
  --rule-strong: rgba(245, 245, 245, 0.2);
  --muted: rgba(245, 245, 245, 0.6);
  --muted-low: rgba(245, 245, 245, 0.4);

  /* Type */
  --font-display: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-body: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Scale (fluid) */
  --fs-tick: 10px;
  --fs-micro: 11px;
  --fs-caption: 12px;
  --fs-body: 16px;
  --fs-body-lg: 18px;
  --fs-sub: 20px;
  --fs-h3: clamp(22px, 4vw, 32px);
  --fs-h2: clamp(32px, 6vw, 56px);
  --fs-h1: clamp(44px, 10vw, 96px);
  --fs-monster: clamp(80px, 22vw, 260px);

  /* Space (8px base) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Layout */
  --page-max: 1440px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-punch: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 180ms;
  --t-med: 360ms;
  --t-slow: 720ms;
}

/* ---------------- RESET + BASE ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: contain;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; }
p { margin: 0; }

::selection { background: var(--red); color: var(--off-white); }

/* ---------------- UTILITIES ---------------- */
.wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

.label {
  font-family: var(--font-mono);
  font-size: var(--fs-tick);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.label-muted { color: var(--muted); }
.mono { font-family: var(--font-mono); letter-spacing: 0.08em; }
.divider { height: 1px; background: var(--rule-strong); margin: 0; border: 0; }
.kbd { display: inline-block; padding: 2px 6px; border: 1px solid var(--rule-strong); font-family: var(--font-mono); font-size: 11px; border-radius: 2px; }

/* reveal animation base */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 720ms var(--ease), transform 720ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-fast { transition-duration: 360ms; }
.reveal-delay-1 { transition-delay: 60ms; }
.reveal-delay-2 { transition-delay: 120ms; }
.reveal-delay-3 { transition-delay: 180ms; }
.reveal-delay-4 { transition-delay: 240ms; }

/* word-split reveal */
.split-word { display: inline-block; overflow: hidden; }
.split-word > span { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform 720ms var(--ease), opacity 720ms var(--ease); }
.split-word.in > span { transform: translateY(0); opacity: 1; }

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-4) var(--gutter);
  z-index: 90;
  background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--t-med) var(--ease);
}
.nav.solid { background: var(--black); border-bottom: 1px solid var(--rule); }
.nav-logo { display: flex; align-items: center; gap: var(--s-3); }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; font-size: 14px; }
.nav-right { display: flex; align-items: center; gap: var(--s-5); }
.nav-live { display: flex; align-items: center; gap: var(--s-2); font-family: var(--font-mono); font-size: var(--fs-tick); letter-spacing: 0.2em; color: var(--red); font-weight: 700; }
.nav-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.6s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.nav-apply { display: none; }
@media (min-width: 768px) {
  .nav-apply { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid var(--off-white); font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
  .nav-apply:hover { background: var(--red); border-color: var(--red); }
  .nav-apply::after { content: "→"; }
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px var(--gutter) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(204, 45, 45, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(204, 45, 45, 0.04), transparent 50%),
    var(--black);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.15 0' /></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.4; pointer-events: none; mix-blend-mode: overlay;
}
.hero::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.4;
  z-index: 1;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; gap: var(--s-7);
  align-items: start;
  padding: var(--s-6) 0;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 460px; align-items: center; gap: var(--s-8); padding: var(--s-6) 0; }
}
@media (min-width: 1280px) {
  .hero-grid { gap: var(--s-9); }
}

/* Scoreboard */
.scoreboard {
  display: flex;
  align-items: flex-end;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}
.sb-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 16vw, 200px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--off-white);
}
.sb-num.then { color: var(--off-white); }
.sb-num.now { color: var(--red); }
.sb-arrow {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 80px);
  color: var(--red);
  line-height: 0.8;
  padding-bottom: 12px;
}
.sb-meta { display: flex; flex-direction: column; gap: 2px; padding-bottom: 10px; }
.sb-meta-val { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }

.hero h1 {
  font-size: var(--fs-h2);
  line-height: 0.98;
  margin-bottom: var(--s-5);
  max-width: 16ch;
}
.hero h1 .hi-red { color: var(--red); }
.hero h1 .hi-block { background: var(--red); padding: 0 0.12em; color: var(--off-white); display: inline-block; }
.hero-sub {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: var(--s-5);
  line-height: 1.5;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: var(--fs-tick);
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-trust strong { color: var(--off-white); font-weight: 700; }

/* Hero right column — photo + quiz stack */
.hero-right { display: flex; flex-direction: column; gap: var(--s-4); position: relative; }

/* Hero Dalton photo (cutout-style framed) */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  margin: 0 0 0 auto;
  width: 100%;
  overflow: hidden;
  background: var(--black-2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.05) saturate(0.95);
  transition: transform 1200ms var(--ease-out);
}
.hero-photo:hover img { transform: scale(1.03); }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}
.hero-photo-frame {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  z-index: 2;
}
.hero-photo-tag {
  position: absolute;
  top: var(--s-3); right: var(--s-3);
  background: var(--red);
  color: var(--off-white);
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 3;
}
.hero-photo-stat {
  position: absolute;
  bottom: var(--s-3); left: var(--s-3);
  z-index: 3;
  display: flex;
  flex-direction: column;
  background: rgba(10,10,10,0.8);
  padding: var(--s-3);
  border-left: 3px solid var(--red);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-photo-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 0.9;
  color: var(--off-white);
  letter-spacing: -0.02em;
}
.hero-photo-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Quiz card in hero */
.qcard {
  background: var(--off-white);
  color: var(--black);
  padding: var(--s-5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  max-width: 440px;
  margin: 0 0 0 auto;
  width: 100%;
}
.qcard::before {
  content: "";
  position: absolute;
  top: -12px; left: -12px;
  width: 40px; height: 40px;
  background: var(--red);
  z-index: -1;
}
.qcard-head { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.qcard-label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--red); white-space: nowrap; }
.qcard-progress { flex: 1; height: 3px; background: rgba(0,0,0,0.12); position: relative; overflow: hidden; min-width: 40px; }
.qcard-progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 15%; background: var(--red); transition: width var(--t-slow) var(--ease); }
.qcard-step { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--charcoal); font-weight: 700; white-space: nowrap; }

/* Quiz inline screens (per-question fade-slide) */
.qscreen { display: none; animation: qscreenIn 360ms var(--ease-out); }
.qscreen.active { display: block; }
@keyframes qscreenIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}

.qcard-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: var(--s-4);
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.02em;
}
.qcard-q-red { color: var(--red); }

.qcard-opts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.qcard-opts-stack { grid-template-columns: 1fr; }
.qcard-opt {
  padding: var(--s-4) var(--s-3);
  border: 1.5px solid var(--black);
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  line-height: 1.1;
}
.qcard-opt:hover, .qcard-opt:focus-visible { background: var(--black); color: var(--off-white); transform: translateY(-2px); outline: none; }
.qcard-opt:active, .qcard-opt.selected { background: var(--red); color: var(--off-white); border-color: var(--red); transform: translateY(0); }
.qcard-opt-wide { grid-column: 1 / -1; text-align: left; justify-content: flex-start; padding-left: var(--s-4); }

/* Quiz capture form */
.qcard-form { display: flex; flex-direction: column; gap: var(--s-3); }
.qcard-field { display: flex; flex-direction: column; gap: 4px; }
.qcard-field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--black); font-weight: 700; text-transform: uppercase; }
.qcard-field-note { color: var(--charcoal); font-weight: 400; margin-left: 4px; }
.qcard-field input {
  background: #fff;
  border: 1.5px solid rgba(10,10,10,0.15);
  color: var(--black);
  padding: 14px 14px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  transition: border-color var(--t-fast);
  min-height: 52px;
  border-radius: 0;
  width: 100%;
}
.qcard-field input:focus { outline: none; border-color: var(--red); }
.qcard-field input::placeholder { color: rgba(10,10,10,0.3); }
.qcard-submit {
  margin-top: var(--s-2);
  padding: 18px;
  background: var(--red);
  color: var(--off-white);
  border: 2px solid var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  min-height: 56px;
}
.qcard-submit:hover { background: var(--red-hot); transform: translateY(-2px); }

/* Calculating state */
.qcard-calc { text-align: center; padding: var(--s-5) 0; }
.qcard-spinner {
  width: 52px; height: 52px;
  margin: 0 auto var(--s-4);
  border: 3px solid rgba(204, 45, 45, 0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: qspin 0.8s linear infinite;
}
@keyframes qspin { to { transform: rotate(360deg); } }
.qcard-calc-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--black); text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: var(--s-2); }
.qcard-calc-status { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; color: var(--charcoal); text-transform: uppercase; min-height: 16px; }
.qcard-calc-status.done { color: var(--red); }

.qcard-foot {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.qcard-back {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  font-weight: 700;
  transition: color var(--t-fast);
}
.qcard-back:hover:not(:disabled) { color: var(--red); }
.qcard-back:disabled { opacity: 0.3; cursor: not-allowed; }
.qcard-foot-secure { letter-spacing: 0.15em; }

@media (max-width: 599px) {
  .hero-photo { max-width: 100%; aspect-ratio: 4 / 5; }
  .qcard { max-width: 100%; }
}

/* ---------------- TICKER ---------------- */
.ticker {
  background: var(--red);
  color: var(--off-white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.ticker-track { display: flex; gap: var(--s-7); animation: tick 40s linear infinite; white-space: nowrap; width: max-content; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.15em; text-transform: uppercase; display: flex; align-items: center; gap: var(--s-5); flex-shrink: 0; }
.ticker-item::after { content: "●"; color: var(--black); font-size: 12px; }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- SECTION ---------------- */
.section { padding: var(--s-9) 0; position: relative; }
.section-pad-lg { padding: calc(var(--s-9) + var(--s-5)) 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: var(--fs-tick);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: var(--s-5);
}
.section-tag::before {
  content: ""; width: 32px; height: 1px; background: var(--red);
}
.section-title {
  font-size: var(--fs-h2);
  line-height: 0.95;
  max-width: 20ch;
  margin-bottom: var(--s-6);
}
.section-title em { font-style: normal; color: var(--red); }
.section-title .block { background: var(--red); color: var(--off-white); padding: 0 0.12em; display: inline-block; }
.section-sub {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  max-width: 55ch;
  margin-bottom: var(--s-7);
  line-height: 1.5;
}

/* ---------------- TRUST BAR ---------------- */
.trustbar {
  background: var(--black-2);
  padding: var(--s-6) var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trustbar-grid {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 768px) { .trustbar-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; }
.trust-val { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 5vw, 44px); color: var(--off-white); line-height: 0.9; }
.trust-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-top: var(--s-2); }

/* ---------------- PROBLEM BLOCK ---------------- */
.problem { background: var(--black); padding: var(--s-9) 0; }
.problem-list {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (min-width: 768px) { .problem-list { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }
.problem-item {
  border-left: 3px solid var(--red);
  padding: var(--s-4) var(--s-5);
  background: var(--black-2);
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  color: var(--off-white);
  position: relative;
  transition: transform var(--t-med) var(--ease), border-left-width var(--t-fast) var(--ease);
}
.problem-item:hover { transform: translateX(4px); border-left-width: 6px; }
.problem-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: var(--s-2);
}

/* ---------------- METHOD ---------------- */
.method { background: var(--off-white); color: var(--black); padding: var(--s-9) 0; position: relative; overflow: hidden; }
.method .section-title { color: var(--black); }
.method .section-sub { color: var(--charcoal); }
.method .section-tag { color: var(--red); }
.method-big-515 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(300px, 50vw, 700px);
  color: rgba(10, 10, 10, 0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 0.8;
}
.method-inner { position: relative; z-index: 1; }
.pillars { display: grid; gap: var(--s-5); margin-top: var(--s-7); }
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--black);
  color: var(--off-white);
  padding: var(--s-6);
  position: relative;
  transition: transform var(--t-med) var(--ease);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.pillar:hover { transform: translateY(-6px); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: var(--s-5);
}
.pillar-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
}
.pillar-name em { font-style: normal; color: var(--red); }
.pillar-desc { font-size: 15px; line-height: 1.6; color: var(--muted); flex: 1; }
.pillar::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.pillar:hover::after { transform: scaleX(1); }

/* ---------------- STORY ---------------- */
.story { background: var(--black); padding: var(--s-9) 0; position: relative; }
.story-grid {
  display: grid;
  gap: var(--s-7);
  margin-top: var(--s-7);
}
@media (min-width: 900px) { .story-grid { grid-template-columns: 1.2fr 1fr; align-items: start; gap: var(--s-9); } }

.story-timeline { display: flex; flex-direction: column; gap: var(--s-6); position: relative; }
.story-timeline::before {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px; left: 24px;
  width: 2px; background: var(--rule-strong);
}
.tl-item { position: relative; padding-left: 60px; }
.tl-dot {
  position: absolute;
  left: 16px; top: 8px;
  width: 18px; height: 18px;
  background: var(--red);
  border: 3px solid var(--black);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 1px var(--red);
}
.tl-year { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--red); font-weight: 700; text-transform: uppercase; margin-bottom: var(--s-2); }
.tl-weight { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 0.9; margin-bottom: var(--s-2); }
.tl-weight .unit { font-size: 14px; color: var(--muted); letter-spacing: 0.2em; margin-left: 6px; font-weight: 400; font-family: var(--font-mono); }
.tl-event { font-size: 15px; line-height: 1.5; color: var(--muted); max-width: 42ch; }

.story-video {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 100%;
  background: var(--black-2);
  border: 1px solid var(--rule);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  display: block;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  font-family: inherit;
}
.story-video:hover { transform: translateY(-4px); border-color: var(--red); }
.story-video:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
@media (min-width: 900px) {
  .story-video { aspect-ratio: 3 / 4; max-width: 480px; margin-left: auto; }
}
.story-video-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 0;
  filter: contrast(1.05);
  transition: transform 1800ms var(--ease-out);
}
.story-video:hover .story-video-poster { transform: scale(1.04); }
.story-video-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0) 0%, rgba(10,10,10,0.5) 100%),
    linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 16px 40px rgba(204,45,45,0.5), 0 0 0 0 rgba(204,45,45,0.4);
  animation: playPulse 2.4s ease-out infinite;
  transition: transform var(--t-med) var(--ease);
}
.play-btn::before {
  content: "";
  width: 0; height: 0;
  border-left: 28px solid var(--off-white);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 8px;
}
@keyframes playPulse {
  0% { box-shadow: 0 16px 40px rgba(204,45,45,0.5), 0 0 0 0 rgba(204,45,45,0.6); }
  70% { box-shadow: 0 16px 40px rgba(204,45,45,0.5), 0 0 0 30px rgba(204,45,45,0); }
  100% { box-shadow: 0 16px 40px rgba(204,45,45,0.5), 0 0 0 0 rgba(204,45,45,0); }
}
.story-video-tag {
  position: absolute;
  top: var(--s-4); left: var(--s-4);
  background: var(--red);
  color: var(--off-white);
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}
.story-video-label {
  position: absolute; bottom: var(--s-4); left: var(--s-4); right: var(--s-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--off-white);
  text-transform: uppercase;
  z-index: 2;
}

/* ---------------- TRANSFORMATIONS ---------------- */
.transforms { background: var(--black-2); padding: var(--s-9) 0; }
.transforms-rail {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-7);
}
@media (min-width: 768px) { .transforms-rail { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .transforms-rail { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); } }
/* When only 2 cards, keep them at 2 columns even at desktop for better presence */
.transforms-rail-2 { max-width: 1080px; margin-left: auto; margin-right: auto; }
@media (min-width: 1100px) { .transforms-rail-2 { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); } }

/* Single-image transformation card (composite before/after photo in one frame) */
.tcard-single .tcard-image-full {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--charcoal-2);
}
.tcard-single .tcard-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1200ms var(--ease-out);
}
.tcard-single:hover .tcard-image-full img { transform: scale(1.03); }
.tcard-stamp-overlay {
  top: var(--s-3);
  left: var(--s-3);
}

/* Unified transformation card: 2 photos of Dalton + ONE shared stat/quote */
.tcard-unified {
  background: var(--black);
  border: 1px solid var(--rule);
  max-width: 1100px;
  margin: var(--s-7) auto 0;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  position: relative;
}
.tcard-unified:hover { transform: translateY(-4px); border-color: var(--red); }

/* Side-by-side landscape spread on desktop, stacked on mobile */
.tcard-photos-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--red);
}
@media (min-width: 800px) {
  .tcard-photos-pair { grid-template-columns: 1fr 1fr; }
}

.tcard-photo-half {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;          /* portrait-ish on mobile so subjects stay tall */
  overflow: hidden;
  background: var(--charcoal-2);
}
@media (min-width: 800px) {
  .tcard-photo-half { aspect-ratio: 4 / 3; }  /* landscape spread on desktop */
}
.tcard-photo-half img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;  /* keep faces/torsos in frame, trim more from bottom */
  transition: transform 1200ms var(--ease-out);
}
.tcard-unified:hover .tcard-photo-half img { transform: scale(1.02); }
.tcard-photo-half .tcard-stamp {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  background: var(--red);
  color: var(--off-white);
  z-index: 2;
}

/* Unified body — 3-up stats centered, single quote */
.tcard-body-unified {
  padding: var(--s-6) var(--s-6);
  text-align: center;
}
.tcard-body-unified .tcard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  border-bottom: 1px solid var(--rule);
  padding-bottom: var(--s-5);
  margin-bottom: var(--s-5);
}
@media (max-width: 599px) {
  .tcard-body-unified .tcard-stats { grid-template-columns: 1fr; gap: var(--s-4); }
}
.tcard-body-unified .tcard-stat {
  text-align: center;
  border-right: 1px solid var(--rule);
  padding: 0 var(--s-3);
}
.tcard-body-unified .tcard-stat:last-child { border-right: none; }
@media (max-width: 599px) {
  .tcard-body-unified .tcard-stat { border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: var(--s-3); }
  .tcard-body-unified .tcard-stat:last-child { border-bottom: none; padding-bottom: 0; }
}
.tcard-body-unified .tcard-stat-v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tcard-body-unified .tcard-stat-l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: var(--s-2);
  text-transform: uppercase;
}
.tcard-body-unified .tcard-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.4;
  color: var(--off-white);
  max-width: 56ch;
  margin: 0 auto var(--s-4);
  letter-spacing: -0.01em;
  text-transform: none;
}
.tcard-body-unified .tcard-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.tcard-body-unified .tcard-name strong { color: var(--red); font-weight: 700; }

.tcard {
  background: var(--black);
  border: 1px solid var(--rule);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.tcard:hover { transform: translateY(-4px); border-color: var(--red); }
.tcard-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 2 / 1.3;
  background: var(--black-2);
}
.tcard-img {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-2);
}
.tcard-img.before { border-right: 1px solid var(--red); }
.tcard-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-low);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.tcard-img-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.8' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay; opacity: 0.5;
}
.tcard-stamp {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: var(--off-white);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}
.tcard-stamp.after { background: var(--off-white); color: var(--black); }
.tcard-body { padding: var(--s-5); }
.tcard-stats {
  display: flex;
  gap: var(--s-4);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--rule);
}
.tcard-stat { flex: 1; }
.tcard-stat-v { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--red); line-height: 1; }
.tcard-stat-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--muted); margin-top: 3px; text-transform: uppercase; }
.tcard-quote { font-size: 14px; line-height: 1.5; color: var(--off-white); margin-bottom: var(--s-3); }
.tcard-name { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }
.tcard-name strong { color: var(--red); font-weight: 700; }

/* ---------------- HOW IT WORKS ---------------- */
.how { background: var(--black); padding: var(--s-9) 0; }
.steps { display: grid; gap: var(--s-5); margin-top: var(--s-7); counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--black-2);
  border-top: 3px solid var(--red);
  padding: var(--s-6);
  position: relative;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 96px;
  color: var(--red);
  line-height: 0.8;
  margin-bottom: var(--s-4);
  letter-spacing: -0.04em;
}
.step-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); font-weight: 700; margin-bottom: var(--s-2); text-transform: uppercase; }
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1; margin-bottom: var(--s-3); text-transform: uppercase; letter-spacing: -0.02em; }
.step-desc { font-size: 14px; line-height: 1.6; color: var(--muted); flex: 1; }
.step-cta { margin-top: var(--s-4); }

/* ---------------- OFFER + IPHONE MOCKUPS ---------------- */
.offer { background: var(--black); color: var(--off-white); padding: var(--s-9) 0; position: relative; overflow: hidden; }
.offer .section-title { color: var(--off-white); }
.offer .section-title .block { background: var(--red); color: var(--off-white); }
.offer .section-sub { color: var(--muted); }
.offer-grid { display: grid; gap: var(--s-7); margin-top: var(--s-7); }
@media (min-width: 900px) { .offer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-9); align-items: center; } }

.stack { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.stack li {
  display: flex; align-items: flex-start; gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--rule);
  color: var(--off-white);
}
.stack-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.stack-check::before {
  content: "";
  width: 14px; height: 7px;
  border-left: 3px solid var(--off-white);
  border-bottom: 3px solid var(--off-white);
  transform: rotate(-45deg) translate(2px, -2px);
}
.stack-item-head { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 4px; color: var(--off-white); }
.stack-item-desc { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* iPhone mockups — overlapping fanned phones stage, scales proportionally at all viewports */
.phones-stage {
  position: relative;
  aspect-ratio: 5 / 4;
  max-width: 640px;
  margin: var(--s-5) auto 0;
  width: 100%;
}
@media (min-width: 1000px) {
  .phones-stage { aspect-ratio: 5 / 4.2; max-width: 100%; }
}

.phone {
  position: absolute;
  background: #16161A;       /* same as screen + image bg — NO visible bezel = single frame */
  border-radius: 11% / 6%;
  padding: 0;                /* no bezel at all */
  box-shadow:
    0 36px 70px rgba(0,0,0,0.6),
    0 12px 28px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.04);  /* subtle outer edge for definition against bg */
  transition: transform var(--t-slow) var(--ease), z-index 0s linear var(--t-slow);
  will-change: transform;
  animation: phoneFloat 6.5s ease-in-out infinite;
  overflow: hidden;           /* important — clips the screenshot to the rounded phone shape */
}

.phone-screen {
  position: relative;
  background: #16161A;
  border-radius: 11% / 6%;   /* SAME radius as phone, no inset frame */
  overflow: hidden;
  aspect-ratio: 474 / 840;
  width: 100%;
}

/* Phone shot (real app screenshot) */
.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Layout — three phones overlapping, all sized as % of stage so they scale together */
.phone-1 {
  width: 42%;
  top: 6%;
  left: 2%;
  transform: rotate(-5deg);
  z-index: 2;
  animation-delay: -1s;
  animation-name: phoneFloatLeft;
}
.phone-2 {
  width: 46%;
  top: 0;
  left: 27%;
  transform: rotate(1deg);
  z-index: 3;
  animation-delay: -3s;
}
.phone-3 {
  width: 42%;
  top: 14%;
  right: 2%;
  transform: rotate(5deg);
  z-index: 2;
  animation-delay: -5s;
  animation-name: phoneFloatRight;
}

.phone:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 5;
  animation-play-state: paused;
}

@keyframes phoneFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}
@keyframes phoneFloatLeft {
  0%, 100% { translate: 0 0; }
  50%      { translate: -3px -8px; }
}
@keyframes phoneFloatRight {
  0%, 100% { translate: 0 0; }
  50%      { translate: 3px -8px; }
}
@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; }
}
.phone-status {
  padding: 12px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--off-white);
  position: relative;
  z-index: 2;
}
.phone-status-right { display: flex; gap: 4px; align-items: center; }
.phone-status-right svg { width: 14px; height: 14px; }

/* Phone 1 — Daily check-in */
.phone-screen.p1-screen {
  background: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
  padding: 56px 16px 20px;
  color: var(--off-white);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}
.p1-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.p1-hd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: blink 1.6s infinite; }
.p1-hd-title { font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 0.2em; }
.p1-hd-date { font-size: 9px; color: var(--muted); font-family: var(--font-mono); margin-left: auto; letter-spacing: 0.15em; }
.p1-hero-weight {
  background: var(--red);
  padding: 16px 14px;
  margin-bottom: 12px;
}
.p1-hero-weight-lbl { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.2em; font-weight: 700; opacity: 0.85; }
.p1-hero-weight-val { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1; margin-top: 4px; }
.p1-hero-weight-delta { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em; margin-top: 4px; }
.p1-macros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
.p1-macro { background: #1C1C1C; padding: 10px 6px; text-align: center; }
.p1-macro-lbl { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; color: var(--muted); }
.p1-macro-val { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--off-white); margin-top: 3px; line-height: 1; }
.p1-macro-bar { height: 2px; background: #333; margin-top: 4px; position: relative; overflow: hidden; }
.p1-macro-bar::before { content: ""; position: absolute; inset: 0 20% 0 0; background: var(--red); }
.p1-macro:nth-child(2) .p1-macro-bar::before { inset: 0 40% 0 0; }
.p1-macro:nth-child(3) .p1-macro-bar::before { inset: 0 55% 0 0; }
.p1-row-title { font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 0.15em; margin: 10px 0 6px; color: var(--muted); }
.p1-task { display: flex; align-items: center; gap: 8px; padding: 10px 10px; background: #1C1C1C; margin-bottom: 4px; font-size: 11px; }
.p1-task-check { width: 14px; height: 14px; border: 1.5px solid var(--red); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.p1-task.done .p1-task-check { background: var(--red); }
.p1-task.done .p1-task-check::before { content: ""; width: 7px; height: 3px; border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(-45deg) translate(1px, -1px); }
.p1-task.done span { text-decoration: line-through; opacity: 0.5; }
.p1-cta { margin-top: 10px; padding: 12px; background: var(--red); text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.15em; }

/* Phone 2 — DM thread with Dalton */
.phone-screen.p2-screen {
  background: #0A0A0A;
  color: var(--off-white);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
}
.p2-hdbar {
  background: #141414;
  padding: 36px 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--rule);
}
.p2-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #8B1D1D 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.p2-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.03em; }
.p2-status { font-size: 9px; color: var(--red); font-family: var(--font-mono); letter-spacing: 0.15em; margin-top: 1px; }
.p2-status::before { content: "● "; font-size: 7px; }
.p2-call { margin-left: auto; color: var(--muted); font-size: 18px; }
.p2-body { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.p2-date { text-align: center; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.15em; color: var(--muted-low); text-transform: uppercase; margin: 4px 0; }
.p2-msg { max-width: 82%; padding: 10px 12px; font-size: 12px; line-height: 1.4; border-radius: 14px; word-wrap: break-word; }
.p2-msg.in { background: #1C1C1C; align-self: flex-start; border-bottom-left-radius: 4px; }
.p2-msg.out { background: var(--red); color: var(--off-white); align-self: flex-end; border-bottom-right-radius: 4px; }
.p2-msg.voice {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
}
.p2-voice-play {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.p2-voice-play::before { content: ""; width: 0; height: 0; border-left: 6px solid #fff; border-top: 4px solid transparent; border-bottom: 4px solid transparent; margin-left: 2px; }
.p2-voice-wave {
  display: flex; align-items: center; gap: 2px; height: 14px;
}
.p2-voice-wave span { display: block; width: 2px; background: #fff; border-radius: 1px; }
.p2-voice-wave span:nth-child(1) { height: 4px; }
.p2-voice-wave span:nth-child(2) { height: 9px; }
.p2-voice-wave span:nth-child(3) { height: 14px; }
.p2-voice-wave span:nth-child(4) { height: 7px; }
.p2-voice-wave span:nth-child(5) { height: 11px; }
.p2-voice-wave span:nth-child(6) { height: 5px; }
.p2-voice-wave span:nth-child(7) { height: 9px; }
.p2-voice-wave span:nth-child(8) { height: 12px; }
.p2-voice-wave span:nth-child(9) { height: 6px; }
.p2-voice-wave span:nth-child(10) { height: 10px; }
.p2-voice-wave span:nth-child(11) { height: 4px; }
.p2-voice-time { font-family: var(--font-mono); font-size: 9px; margin-left: auto; opacity: 0.85; }
.p2-input {
  padding: 8px 12px 12px;
  background: #141414;
  border-top: 1px solid var(--rule);
}
.p2-input-bar { background: #1C1C1C; padding: 8px 12px; border-radius: 20px; font-size: 11px; color: var(--muted-low); display: flex; align-items: center; justify-content: space-between; }
.p2-input-bar::after { content: "🎤"; opacity: 0.6; }

/* Phone 3 — Progress */
.phone-screen.p3-screen {
  background: var(--off-white);
  color: var(--black);
  padding: 56px 14px 16px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.p3-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 10px; border-bottom: 1.5px solid var(--black);
  margin-bottom: 12px;
}
.p3-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.02em; text-transform: uppercase; line-height: 1; }
.p3-tag { background: var(--red); color: var(--off-white); padding: 4px 6px; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.15em; font-weight: 700; }
.p3-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 10px; }
.p3-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #888, #444);
  position: relative;
}
.p3-photo.after { background: linear-gradient(160deg, #c6c6c6, #8a8a8a); }
.p3-photo-label { position: absolute; top: 6px; left: 6px; background: var(--black); color: var(--off-white); padding: 2px 5px; font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.2em; font-weight: 700; }
.p3-photo.after .p3-photo-label { background: var(--red); }
.p3-photo-weight { position: absolute; bottom: 6px; right: 6px; background: rgba(255,255,255,0.95); color: var(--black); padding: 3px 5px; font-family: var(--font-display); font-weight: 700; font-size: 9px; }
.p3-chart {
  background: var(--black); color: var(--off-white);
  padding: 12px;
  margin-bottom: 10px;
  position: relative;
}
.p3-chart-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.p3-chart-lbl { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.15em; opacity: 0.7; }
.p3-chart-delta { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--red); letter-spacing: -0.02em; }
.p3-chart-svg { width: 100%; height: 44px; display: block; }
.p3-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.p3-stat { background: var(--black); color: var(--off-white); padding: 8px 6px; text-align: center; }
.p3-stat-v { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--red); line-height: 1; }
.p3-stat-l { font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.15em; margin-top: 2px; opacity: 0.7; }

.phones-wrap { position: relative; }
.phones-label {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--off-white);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 3;
}

/* ---------------- VIDEO TESTIMONIALS ---------------- */
.vids { background: var(--black-2); padding: var(--s-9) 0; }
.vids-rail { display: grid; gap: var(--s-4); margin-top: var(--s-7); }
@media (min-width: 768px) { .vids-rail { grid-template-columns: repeat(3, 1fr); } }
.vid {
  aspect-ratio: 9/16;
  background: var(--black);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-med) var(--ease);
}
.vid:hover { transform: translateY(-4px); }
.vid::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.vid-thumb { position: absolute; inset: 0; background: linear-gradient(160deg, #2a2a2a, #0a0a0a); }
.vid-thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence baseFrequency='0.65' numOctaves='3' /></filter><rect width='300' height='300' filter='url(%23n)' opacity='0.35'/></svg>");
  mix-blend-mode: overlay;
}
.vid-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-med) var(--ease);
}
.vid-play::before {
  content: ""; width: 0; height: 0;
  border-left: 18px solid var(--off-white);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}
.vid:hover .vid-play { transform: translate(-50%, -50%) scale(1.1); }
.vid-meta {
  position: absolute;
  bottom: var(--s-4); left: var(--s-4); right: var(--s-4);
  z-index: 3;
}
.vid-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--off-white); letter-spacing: -0.01em; text-transform: uppercase; }
.vid-stat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--red); margin-top: 3px; font-weight: 700; }

/* ---------------- FAQ ---------------- */
.faq { background: var(--black); padding: var(--s-9) 0; }
.faq-list { margin-top: var(--s-7); }
.faq details {
  border-top: 1px solid var(--rule);
  padding: var(--s-4) 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: var(--s-3) 0;
  transition: color var(--t-fast) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 32px;
  font-weight: 400;
  color: var(--red);
  transition: transform var(--t-med) var(--ease), color var(--t-fast) var(--ease);
  line-height: 0.8;
}
.faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq summary:hover { color: var(--red); }
.faq-a {
  padding: var(--s-3) 0 var(--s-4);
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 70ch;
  animation: fade-in var(--t-med) var(--ease);
}
@keyframes fade-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------------- FINAL CTA ---------------- */
.final {
  position: relative;
  background: var(--black);
  padding: var(--s-10) 0;
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: "515";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(320px, 55vw, 900px);
  color: rgba(204, 45, 45, 0.06);
  letter-spacing: -0.05em;
  pointer-events: none; user-select: none;
  z-index: 0;
  line-height: 0.8;
}
.final-inner { position: relative; z-index: 1; }
.final h2 {
  font-size: clamp(44px, 9vw, 96px);
  line-height: 0.95;
  margin-bottom: var(--s-5);
}
.final h2 em { font-style: normal; color: var(--red); }
.final-sub {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto var(--s-6);
  line-height: 1.5;
}
.final-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: rgba(204, 45, 45, 0.1);
  border: 1px solid var(--red);
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: var(--fs-tick);
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 18px 32px;
  background: var(--red);
  color: var(--off-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  min-height: 56px;
}
.btn::after { content: "→"; transition: transform var(--t-fast) var(--ease); }
.btn:hover { background: var(--red-hot); transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 2px solid var(--off-white);
}
.btn.btn-outline:hover { background: var(--off-white); color: var(--black); transform: translateY(-2px); }
.btn.btn-dark { background: var(--black); color: var(--off-white); border: 2px solid var(--black); }
.btn.btn-dark:hover { background: var(--red); border-color: var(--red); }
.btn-sm { padding: 12px 20px; font-size: 13px; min-height: 42px; }
.btn-big { padding: 22px 40px; font-size: 18px; }
.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--rule-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--off-white); }

/* ---------------- FOOTER ---------------- */
.footer { background: #000; padding: var(--s-8) 0 var(--s-5); border-top: 1px solid var(--rule); font-family: var(--font-body); }
.footer-grid {
  display: grid;
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 40px; margin-bottom: var(--s-4); }
.footer-mantra { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; line-height: 1.1; text-transform: uppercase; margin-bottom: var(--s-3); }
.footer-mantra em { font-style: normal; color: var(--red); }
.footer-col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; font-weight: 700; margin-bottom: var(--s-3); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color var(--t-fast) var(--ease); }
.footer-links a:hover { color: var(--off-white); }
.footer-social { display: flex; gap: var(--s-3); margin-top: var(--s-4); }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--rule-strong);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { width: 18px; height: 18px; fill: var(--off-white); }
.footer-legal {
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  line-height: 1.5;
}
.footer-disclaim {
  font-size: 11px;
  color: var(--muted-low);
  max-width: 760px;
  line-height: 1.5;
  margin-top: var(--s-4);
}

/* ---------------- STICKY CTA ---------------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: var(--off-white);
  padding: 14px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  z-index: 80;
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease);
  border-top: 2px solid var(--black);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-text { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }
.sticky-cta-btn { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.15em; background: var(--black); color: var(--off-white); padding: 10px 18px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.sticky-cta-btn::after { content: "→"; }

/* ---------------- REDUCED MOTION ---------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- MOBILE TWEAKS ---------------- */
@media (max-width: 700px) {
  /* Tighter hero on mobile — was sprawling */
  .hero { padding: 78px var(--gutter) var(--s-5); min-height: 0; }
  .hero-grid { gap: var(--s-4); padding: var(--s-3) 0; }
  .scoreboard { gap: var(--s-3); margin-bottom: var(--s-3); }
  .sb-num { font-size: clamp(64px, 18vw, 100px); line-height: 0.85; }
  .sb-arrow { font-size: 28px; padding-bottom: 6px; }
  .sb-meta { padding-bottom: 6px; }
  .sb-meta-val { font-size: 9px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 42px); margin-bottom: var(--s-3); line-height: 1; }
  .hero-sub { font-size: 15px; margin-bottom: var(--s-3); }
  .hero-trust { font-size: 9px; gap: var(--s-3); padding-top: var(--s-3); }

  /* Hero photo: shorter on mobile so it doesn't dominate, give quiz more room */
  .hero-photo { aspect-ratio: 4 / 3; }
  .hero-photo img { object-position: center 25%; }
  .hero-photo-stat-num { font-size: 28px; }

  /* Quiz card: tighter padding so it fits better */
  .qcard { padding: var(--s-4); }
  .qcard-q { font-size: 18px; margin-bottom: var(--s-3); }
  .qcard-opt { font-size: 13px; min-height: 48px; padding: var(--s-3); }

  /* Sections: less vertical sprawl */
  .section { padding: var(--s-7) 0; }
  .section-title { font-size: clamp(28px, 9vw, 44px); }
  .section-sub { font-size: 15px; margin-bottom: var(--s-5); }

  /* Pillars */
  .pillar { min-height: auto; padding: var(--s-5); }
  .pillar-name { font-size: 22px; }
  .pillar-desc { font-size: 14px; }

  /* Steps */
  .step { min-height: auto; padding: var(--s-5); }
  .step-num { font-size: 72px; }
  .step-title { font-size: 24px; }

  /* Trust bar smaller */
  .trust-val { font-size: clamp(24px, 7vw, 36px); }
  .trust-lbl { font-size: 9px; }

  /* Problem cards tighter */
  .problem-item { font-size: 15px; padding: var(--s-3) var(--s-4); }

  /* Story timeline */
  .tl-weight { font-size: 28px; }
  .tl-event { font-size: 14px; }

  /* Offer section: phones FIRST then value-stack on mobile (visual hook before text) */
  .offer-grid { gap: var(--s-5); }
  .offer-left { order: 2; }
  .phones-wrap { order: 1; }

  /* Phones-stage tighter on mobile */
  .phones-stage { margin-top: var(--s-4); aspect-ratio: 5 / 4; }
  .phones-label { font-size: 9px; padding: 5px 12px; }

  /* Unified transformation: tighter stat row on mobile */
  .tcard-body-unified { padding: var(--s-5); }
  .tcard-body-unified .tcard-stat-v { font-size: 32px; }
  .tcard-body-unified .tcard-quote { font-size: 17px; }

  /* Final CTA */
  .final { padding: var(--s-8) 0; }
  .final h2 { font-size: clamp(36px, 11vw, 60px); }

  /* FAQ */
  .faq summary { font-size: 16px; }
  .faq-a { font-size: 14px; }

  /* Nav */
  .nav-live { display: none; }
  .nav { padding: var(--s-3) var(--gutter); }
  .nav-logo img { height: 26px; }
  .nav-logo-text { font-size: 12px; }

  /* Sticky CTA */
  .sticky-cta { padding: 12px var(--gutter); }
  .sticky-cta-text { font-size: 12px; }
  .sticky-cta-btn { font-size: 12px; padding: 8px 14px; }
}
