/* ============================================================
   SOULTRAIN HYROX — TYPE 1 LANDING PAGE
   Aesthetic: editorial-brutalist sport
   Type: Bebas Neue (display) + Inter (text) + JetBrains Mono (utility)
   Palette: ink black / bone cream / Soultrain yellow
   ============================================================ */

:root {
  --ink: #0b0b0b;
  --ink-2: #161616;
  --ink-3: #222;
  --bone: #f4efe6;
  --bone-2: #e9e2d3;
  --paper: #ffffff;
  --yellow: #ffd60a; /* matches Soultrain logo */
  --yellow-deep: #f5c400;
  --rule: rgba(244, 239, 230, 0.14);
  --rule-dark: rgba(11, 11, 11, 0.12);
  --muted: rgba(244, 239, 230, 0.62);
  --muted-dark: rgba(11, 11, 11, 0.62);

  --maxw: 1240px;
  --gut: clamp(20px, 4vw, 56px);

  --display: "Bebas Neue", "Anton", Impact, sans-serif;
  --text: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.5;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--yellow);
  display: inline-block;
}
.rule { height: 1px; background: var(--rule); width: 100%; }
.rule-dark { height: 1px; background: var(--rule-dark); width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0; }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--ink);
  color: var(--bone);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
  gap: 16px;
}
.utility-bar .ticker {
  display: flex;
  gap: 28px;
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  color: var(--muted);
}
.utility-bar .ticker span::before { content: "◆ "; color: var(--yellow); }
.utility-bar .right { color: var(--yellow); white-space: nowrap; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a { color: var(--bone); text-decoration: none; opacity: 0.75; }
.nav-links a:hover { opacity: 1; color: var(--yellow); }
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 18px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}
.nav-cta:hover { background: var(--paper); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  padding: clamp(40px, 8vw, 96px) 0 clamp(48px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(255,214,10,0.08), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  gap: 16px;
}
.hero-meta .left { color: var(--muted); }
.hero-meta .right { color: var(--yellow); }

.hero h1 {
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.005em;
}
.hero h1 .accent { color: var(--yellow); display: inline-block; }
.hero h1 .strike {
  position: relative;
  display: inline-block;
  color: rgba(244, 239, 230, 0.35);
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; top: 52%;
  height: 6px;
  background: var(--yellow);
  transform: rotate(-2deg);
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 520px;
}
.hero-body {
  margin-top: 18px;
  max-width: 580px;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  color: var(--yellow);
  letter-spacing: -0.005em;
}
.hero-body-list {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.6;
}
.hero-body-tail {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--text);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  color: var(--bone);
  opacity: 0.8;
  letter-spacing: 0;
  text-transform: none;
}
.hero-microcopy {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-primary:hover { background: var(--paper); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--yellow); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--rule);
}
.btn-ghost:hover { border-color: var(--bone); }
.btn .arrow { font-family: var(--text); font-size: 16px; }

.hero-card {
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(255,214,10,0.04), transparent 80%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.hero-card .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-card h3 {
  font-size: 32px;
  line-height: 1;
}
.hero-card .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.hero-card .stat {
  padding: 18px 0 4px;
}
.hero-card .stat .num {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: var(--yellow);
}
.hero-card .stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}
.hero-card .imgph {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(45deg, rgba(244,239,230,0.04) 0 8px, rgba(244,239,230,0.08) 8px 16px);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-video-wrap {
  position: relative;
  aspect-ratio: 5/4;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: #000;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%),
    radial-gradient(circle at 90% 10%, rgba(255,214,10,0.08), transparent 40%);
  pointer-events: none;
}
.hero-video-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--bone);
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-video-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255,214,10,0.7);
  animation: pulseDot 1.6s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,214,10,0.7); }
  100% { box-shadow: 0 0 0 10px rgba(255,214,10,0); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--yellow);
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: scroll 32s linear infinite;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink);
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section { padding: clamp(72px, 10vw, 140px) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 56px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
}
.section-head .left { display: flex; flex-direction: column; gap: 14px; }
.section-head h2 {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.9;
}
.section-head .lead {
  margin-top: 56px;
  padding: 40px 0 0;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--muted);
  max-width: 560px;
  text-wrap: pretty;
}
.section-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* PROBLEM section — bone background */
.problem {
  background: var(--bone);
  color: var(--ink);
}
.problem .eyebrow { color: var(--ink); }
.problem .eyebrow::before { background: var(--ink); }
.problem .lead { color: var(--muted-dark); }

.problem-statements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-dark);
}
@media (max-width: 800px) { .problem-statements { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .problem-statements { grid-template-columns: 1fr; } }

.problem-statements .item {
  border-right: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}
.problem-statements .item:last-child { border-right: 0; }
.problem-statements .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted-dark);
  text-transform: uppercase;
}
.problem-statements .stmt {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}
.problem-statements .item:last-child .stmt { color: var(--ink); }
.problem-statements .item:last-child .num { color: var(--ink); }
.problem-statements .item.fail .stmt::after {
  content: " ✕";
  color: #c0392b;
  font-family: var(--text);
  font-size: 0.6em;
  vertical-align: top;
}

.problem-callout {
  margin-top: 56px;
  padding: 40px 0 0;
  text-wrap: balance;
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  max-width: 1000px;
}
.problem-callout .accent { color: var(--ink); background: var(--yellow); padding: 0 8px; }
.problem-callout-tail {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--text);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.6;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

/* ---------- Pillars (THE SHIFT) ---------- */
.pillars { background: var(--ink); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.pillars-grid-7 {
  grid-template-columns: repeat(7, 1fr);
}
@media (max-width: 1100px) { .pillars-grid-7 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .pillars-grid, .pillars-grid-7 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pillars-grid, .pillars-grid-7 { grid-template-columns: 1fr; } }

/* Method wheel */
.method-wheel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin: 0 auto clamp(48px, 7vw, 80px);
  max-width: 1100px;
}
@media (max-width: 800px) {
  .method-wheel-wrap { grid-template-columns: 1fr; text-align: center; }
}
.method-wheel {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.method-wheel-caption .eyebrow { color: var(--yellow); }
.method-wheel-caption .eyebrow::before { background: var(--yellow); }
.method-wheel-caption p {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.pillar {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
  position: relative;
  transition: background 200ms ease;
}
.pillar:hover { background: rgba(255,214,10,0.04); }
.pillar-photo {
  padding-top: 0;
}
.pillar-photo .pillar-img {
  position: relative;
  margin: 0 -28px 8px;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.pillar-photo .pillar-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}
.pillar-photo .pillar-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0) 50%, rgba(11,11,11,0.5) 100%);
  pointer-events: none;
}
.pillar-photo:hover .pillar-img img { transform: scale(1.05); filter: grayscale(0) contrast(1.05); }
.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--yellow);
}
.pillar h3 {
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 0.92;
}
.pillar .desc { color: var(--muted); font-size: 15px; line-height: 1.5; }
.pillar .tag {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase;
}

.no-guess {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.no-guess span {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  border: 1px solid var(--rule);
  padding: 12px 22px 8px;
  line-height: 1;
  color: var(--bone);
}
.no-guess span.cross { color: var(--yellow); border-color: var(--yellow); }

/* ---------- The Floor ---------- */
.floor {
  background: var(--ink);
  color: var(--bone);
  padding: 0 0 clamp(72px, 10vw, 140px);
}
.floor-hero {
  position: relative;
  height: clamp(420px, 70vh, 720px);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.floor-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floor-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.2) 40%, rgba(11,11,11,0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(32px, 5vw, 64px);
}
.floor-hero-overlay .eyebrow { color: var(--yellow); }
.floor-hero-overlay .eyebrow::before { background: var(--yellow); }
.floor-hero-overlay h2 {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.86;
  margin-top: 12px;
}
.floor-hero-overlay p {
  margin-top: 18px;
  max-width: 540px;
  color: var(--bone);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.5;
}
.floor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  margin-top: clamp(40px, 6vw, 72px);
}
.floor-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #000;
}
.floor-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.floor-tile:hover img { transform: scale(1.04); }
.floor-tile figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  display: flex; gap: 10px; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  border: 1px solid var(--rule);
}
.floor-tile figcaption .num { color: var(--yellow); }
.floor-tile-tall { grid-row: span 2; grid-column: span 2; }
.floor-tile-wide { grid-column: span 2; }
@media (max-width: 800px) {
  .floor-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .floor-tile-tall, .floor-tile-wide { grid-column: span 2; grid-row: auto; }
}

/* ---------- What you get (redesigned) ---------- */
.what {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.what::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--bone);
  opacity: 0.12;
}
.what .eyebrow { color: var(--bone); }
.what .eyebrow::before { background: var(--bone); }

/* HEAD */
.what-head {
  max-width: 980px;
  margin: 0 auto 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.what-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin: 0;
}
.what-meta {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  padding: 14px 22px;
  border: 1px solid rgba(244,239,230,0.18);
  border-radius: 999px;
  background: rgba(244,239,230,0.04);
}
.what-meta-num {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  color: var(--bone);
}
.what-meta-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
}
.what-meta-sep {
  color: rgba(244,239,230,0.3);
  font-family: var(--mono);
}
.what-lead {
  max-width: 640px;
  margin: 4px auto 0;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: rgba(244,239,230,0.86);
  text-wrap: pretty;
}

/* HERO SESSION — the HCT */
.hero-session {
  position: relative;
  margin: 0 0 56px;
  padding: 56px clamp(28px, 5vw, 72px);
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  overflow: hidden;
}
.hero-session::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(245,201,40,0.08), transparent 60%);
  pointer-events: none;
}
.hero-session-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
}
.hero-session-tag .dot {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.hero-session-grid {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 720px) {
  .hero-session-grid { grid-template-columns: 1fr; gap: 24px; }
}
.hero-session-num {
  font-family: var(--display);
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.8;
  color: var(--yellow);
  letter-spacing: -0.04em;
}
.hero-session-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.hero-session-meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.65);
  margin: 0 0 24px;
}
.hero-session-desc {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--bone);
  margin: 0 0 24px;
  max-width: 600px;
}
.hct-stations {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(244,239,230,0.14);
}
.hct-stations li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,239,230,0.14);
  font-size: 15px;
  color: var(--bone);
}
.hct-stations li:last-child { border-bottom: none; }
.hct-stations li span.mono {
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.hero-session-foot {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.65);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(244,239,230,0.14);
}
.hero-session-breakdown {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,239,230,0.85);
  margin: 16px 0 16px;
  max-width: 640px;
  text-wrap: pretty;
}

/* SESSIONS GRID — supporting 4 */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244,239,230,0.14);
  border: 1px solid rgba(244,239,230,0.14);
  margin-bottom: 56px;
}
@media (max-width: 1000px) { .sessions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sessions-grid { grid-template-columns: 1fr; } }
.session-card {
  background: rgba(244,239,230,0.04);
  border: 1px solid rgba(244,239,230,0.12);
  color: var(--bone);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  transition: background 0.18s ease;
}
.session-card:hover { background: rgba(245,201,40,0.06); border-color: rgba(245,201,40,0.28); }
.session-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.session-card-num {
  font-family: var(--display);
  color: var(--yellow);
  font-size: 44px;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.session-card-meta {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.78);
  text-align: right;
  max-width: 60%;
  line-height: 1.4;
}
.session-card-title {
  font-family: var(--display);
  color: var(--bone);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}
.session-card-desc {
  font-size: 14px;
  color: rgba(244,239,230,0.95);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

/* SCORE FORMULA */
.score-formula {
  background: var(--yellow);
  color: var(--ink);
  padding: 28px clamp(20px, 4vw, 56px);
  margin-bottom: 56px;
  text-align: center;
}
.score-formula-eq {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px 18px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.score-op {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.6;
}
.score-result {
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 14px;
}

/* WEEK STRIP */
.week-strip {
  background: var(--ink);
  color: var(--bone);
  padding: 36px clamp(24px, 4vw, 48px);
  margin-bottom: 56px;
}
.week-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.week-strip .eyebrow { color: var(--bone); }
.week-strip .eyebrow::before { background: var(--yellow); }
.week-strip-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.week-strip-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
@media (max-width: 800px) {
  .week-strip-grid { grid-template-columns: repeat(7, minmax(80px, 1fr)); overflow-x: auto; }
}
.week-day {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(244,239,230,0.04);
  border: 1px solid var(--rule);
  min-height: 120px;
  text-align: left;
}
.week-day.rest {
  background: transparent;
  opacity: 0.5;
}
.week-day-d {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--yellow);
}
.week-day.rest .week-day-d { color: var(--muted); }
.week-day-t {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.15;
  color: var(--bone);
  flex: 1;
}
.week-day.rest .week-day-t { color: var(--muted); }
.week-day-dur {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: auto;
}

/* CTA SLAB — redesigned */
.what-cta {
  background: var(--ink);
  color: var(--bone);
  border-top: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.what-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(900px 500px at 100% 100%, rgba(245,201,40,0.08), transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(245,201,40,0.04), transparent 60%);
  pointer-events: none;
}
.what-cta-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  padding: 14px clamp(20px, 3vw, 40px);
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0,0,0,0.4);
}
.what-cta-bar-l { display: inline-flex; align-items: center; gap: 10px; }
.what-cta-bar-l .dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.what-cta-bar-c { color: var(--bone); justify-self: center; }
.what-cta-bar-r { justify-self: end; }
@media (max-width: 700px) {
  .what-cta-bar { grid-template-columns: 1fr; text-align: center; gap: 6px; }
  .what-cta-bar-l { justify-content: center; }
  .what-cta-bar-r { justify-self: center; }
}

.what-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
  align-items: stretch;
}
@media (max-width: 880px) {
  .what-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.what-cta-divider {
  background: var(--rule);
  width: 1px;
}
@media (max-width: 880px) {
  .what-cta-divider { width: 100%; height: 1px; }
}

.what-cta-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.what-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  position: relative;
  padding-left: 22px;
}
.what-cta-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--yellow);
}
.what-cta-price-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.what-cta-dollar {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--yellow);
  margin-top: 14px;
}
.what-cta-amount {
  font-family: var(--display);
  font-size: clamp(120px, 16vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--bone);
}
.what-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
  padding-left: 4px;
}
.what-cta-aud {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.what-cta-strike {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 1.5px;
}
.what-cta-bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--rule);
}
.what-cta-bullets li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 18px;
  color: var(--bone);
}
.what-cta-bullets li .mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--yellow);
  min-width: 24px;
}

.what-cta-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-content: start;
}
.what-cta-next, .what-cta-spots {
  border: 1px solid var(--rule);
  padding: 18px;
  background: rgba(244,239,230,0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.what-cta-next-lbl, .what-cta-spots-lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.what-cta-next-date {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 0.9;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.what-cta-next-time {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-top: auto;
}
.what-cta-spots-num {
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0.85;
  color: var(--yellow);
  letter-spacing: -0.03em;
}
.what-cta-spots-bar {
  height: 4px;
  background: rgba(244,239,230,0.1);
  margin-top: auto;
  position: relative;
}
.what-cta-spots-bar span {
  display: block;
  height: 100%;
  background: var(--yellow);
}
.what-cta-btn {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}
.what-cta-micro {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ---------- Score Section (Output Sports) — Redesign ---------- */
.score-section {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  padding-top: clamp(64px, 7vw, 110px);
  padding-bottom: clamp(64px, 7vw, 110px);
}
.score-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 620px at 95% -5%, rgba(255,214,10,0.09), transparent 60%),
    radial-gradient(800px 440px at -5% 105%, rgba(255,214,10,0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.score-section .container { position: relative; z-index: 1; }
.score-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(244,239,230,0.045) 1px, transparent 1px);
  background-size: 8.333% 100%;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}
.score-section .eyebrow { color: var(--bone); }
.score-section .eyebrow::before { background: var(--yellow); }

/* Topbar */
.score-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(36px, 4.5vw, 56px);
  position: relative;
}
.score-topbar::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 64px; height: 2px;
  background: var(--yellow);
}
.score-topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
}
.score-topbar-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,214,10,0.14);
}
@media (max-width: 720px) {
  .score-topbar { flex-direction: column; align-items: flex-start; }
}

/* Display — editorial title + sample readout */
.score-display {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 960px) { .score-display { grid-template-columns: 1fr; } }
.score-display-l {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  padding-bottom: 6px;
}
.score-display-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.score-display-tag::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--yellow);
}
.score-display-title {
  font-family: var(--display);
  font-size: clamp(56px, 9.4vw, 152px);
  line-height: 0.84;
  letter-spacing: -0.025em;
  margin: 0;
}
.score-display-accent {
  color: var(--yellow);
  display: inline-block;
  position: relative;
}
.score-display-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 12%;
  bottom: 0.08em;
  height: 0.06em;
  background: var(--yellow);
  opacity: 0.32;
}
.score-display-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(244,239,230,0.86);
  margin: 0;
  max-width: 480px;
  line-height: 1.4;
  text-wrap: pretty;
}

/* Sample readout card */
.score-readout {
  position: relative;
  background: linear-gradient(180deg, rgba(255,214,10,0.04), rgba(0,0,0,0));
  border: 1px solid var(--rule);
  border-top: 2px solid var(--yellow);
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.score-readout::before {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--yellow);
  border-right: 1px solid var(--yellow);
}
.score-readout-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.score-readout-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bone);
}
.score-readout-livedot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.6s ease-in-out infinite;
}
.score-readout-num {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 0.85;
}
.score-readout-big {
  font-size: clamp(96px, 13vw, 168px);
  color: var(--yellow);
}
.score-readout-slash {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--muted);
  opacity: 0.5;
}
.score-readout-out {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--bone);
  opacity: 0.7;
}
.score-readout-pill {
  align-self: flex-start;
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.score-readout-track {
  position: relative;
  height: 8px;
  background: rgba(244,239,230,0.08);
  margin-top: 4px;
}
.score-readout-fill {
  position: absolute;
  inset: 0 25% 0 0;
  background: linear-gradient(to right, rgba(255,214,10,0.55), var(--yellow));
}
.score-readout-needle {
  position: absolute;
  top: -4px; bottom: -4px;
  left: 75%;
  width: 2px;
  background: var(--bone);
  transform: translateX(-50%);
}
.score-readout-scale {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Main split — figure + body */
.score-main {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  position: relative;
}
@media (max-width: 960px) { .score-main { grid-template-columns: 1fr; } }

.score-figure {
  margin: 0;
  position: relative;
  background: #000;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.score-figure::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 16px; height: 16px;
  border-top: 1px solid var(--yellow);
  border-left: 1px solid var(--yellow);
  z-index: 2;
}
.score-figure::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 16px; height: 16px;
  border-bottom: 1px solid var(--yellow);
  border-right: 1px solid var(--yellow);
  z-index: 2;
}
.score-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.score-figure-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  background: rgba(0,0,0,0.72);
  border: 1px solid var(--rule);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  z-index: 2;
  backdrop-filter: blur(6px);
}
.score-figure-tag .dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.score-figure-corner {
  position: absolute;
  bottom: 14px; right: 14px;
  display: inline-flex;
  gap: 12px;
  font-size: 10px;
  color: var(--muted);
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  border: 1px solid var(--rule);
  z-index: 2;
}

/* Body column */
.score-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.score-para {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244,239,230,0.86);
  margin: 0;
  text-wrap: pretty;
}
.score-para strong { color: var(--yellow); font-weight: 600; }

/* Score band — 4 levels visual */
.score-band {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
}
.score-band-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 36px;
}
.score-band-seg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  background: rgba(244,239,230,0.02);
  transition: all 0.2s;
}
.score-band-seg[data-level="beg"] {
  background: rgba(244,239,230,0.04);
}
.score-band-seg[data-level="int"] {
  background: rgba(244,239,230,0.06);
}
.score-band-seg[data-level="adv"] {
  background: rgba(255,214,10,0.12);
  border-color: rgba(255,214,10,0.4);
  color: var(--bone);
}
.score-band-seg[data-level="eli"] {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.score-band-seg[data-level="eli"] .mono { font-weight: 600; }
.score-band-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.score-band-scale span:nth-child(1) { text-align: left; }
.score-band-scale span:nth-child(2) { text-align: center; transform: translateX(-50%) translateX(calc(100%/2)); }
.score-band-scale span:nth-child(3) { text-align: center; }
.score-band-scale span:nth-child(4) { text-align: center; transform: translateX(50%) translateX(calc(-100%/2)); }
.score-band-scale span:nth-child(5) { text-align: right; }
/* Simpler scale alignment — override above */
.score-band-scale {
  display: flex;
  justify-content: space-between;
}
.score-band-scale span { transform: none !important; }

/* Credentials */
.score-credentials {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 4px;
}
.score-credentials-lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.score-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  background: rgba(244,239,230,0.02);
}
.score-logo { height: 26px; width: auto; object-fit: contain; }
.score-logo-output { height: 20px; }
.score-logos-sep { width: 1px; height: 20px; background: var(--rule); }
@media (max-width: 520px) {
  .score-credentials { flex-direction: column; align-items: flex-start; gap: 10px; }
  .score-logos { width: 100%; }
}

/* Stations — five action photos, editorial grid */
.score-stations {
  margin: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 56px);
  padding: clamp(28px, 3.5vw, 44px) 0 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.score-stations::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 64px; height: 2px;
  background: var(--yellow);
}
.score-stations-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(24px, 3vw, 36px);
}
@media (max-width: 800px) { .score-stations-head { grid-template-columns: 1fr; align-items: start; } }
.score-stations-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.score-stations-title {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--bone);
}
.score-stations-title span { color: var(--yellow); }
.score-stations-cap {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,239,230,0.78);
  margin: 0;
  max-width: 460px;
  text-wrap: pretty;
  padding-bottom: 4px;
}
.score-stations-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.score-station {
  display: flex;
  flex-direction: column;
}
.score-station-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(245,242,232,0.1);
}
.score-station-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.95);
  transition: transform 0.7s ease;
}
.score-station:hover .score-station-img img { transform: scale(1.05); }
.score-station-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.score-station-num {
  position: absolute;
  top: 10px; left: 12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: var(--yellow);
  padding: 5px 8px;
  font-weight: 600;
}
.score-station-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 2px 0;
  border-top: 1px solid transparent;
}
.score-station-name {
  font-family: var(--display);
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.02em;
  color: var(--bone);
  text-transform: uppercase;
}
.score-station-tick {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.score-station-tick::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
}
@media (max-width: 980px) {
  .score-stations-grid { grid-template-columns: repeat(3, 1fr); }
  .score-stations-grid .score-station:nth-child(n) { grid-column: auto; }
}
@media (max-width: 560px) {
  .score-stations-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* Stats — 4 cells, full width below the main split */
.score-stats {
  list-style: none;
  margin: clamp(40px, 5vw, 56px) 0 clamp(40px, 5vw, 56px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--yellow);
}
@media (max-width: 800px) { .score-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .score-stats { grid-template-columns: 1fr; } }
.score-stats li {
  background: var(--ink);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  min-height: 130px;
}
.score-stat-key {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
}
.score-stat-num {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.015em;
  margin-top: auto;
}
.score-stat-lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.78;
}

/* Closer */
.score-closer-block {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.score-closer-block::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 80px; height: 3px;
  background: var(--yellow);
}
.score-closer {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--bone);
  max-width: 1000px;
  text-wrap: pretty;
}
.score-closer-em { color: var(--yellow); }
.result {
  background: var(--ink);
}

/* ---------- Method lead small variant ---------- */
.section-head .lead .lead-small,
.method .lead .lead-small {
  display: inline-block;
  font-size: 16px !important;
  line-height: 1.6 !important;
  opacity: 0.92;
}

/* ---------- Guarantee (standalone) ---------- */
.guarantee {
  background: var(--bone);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 100% 100%, rgba(11,11,11,0.06), transparent 60%);
  pointer-events: none;
}
.guarantee-card {
  position: relative;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 0;
}
.guarantee-stamp {
  color: var(--ink);
  width: 120px;
  height: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  animation: stampSpin 22s linear infinite;
}
@keyframes stampSpin {
  to { transform: rotate(360deg); }
}
.guarantee-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.guarantee-eyebrow .seal {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.guarantee-headline {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.guarantee-headline-tail {
  display: inline-block;
  color: rgba(11,11,11,0.55);
}
.guarantee-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}
.guarantee-body p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.guarantee-body strong {
  font-weight: 700;
  background: var(--ink);
  color: var(--yellow);
  padding: 0 6px;
}
.guarantee-closer {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(11,11,11,0.78);
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(11,11,11,0.2);
  border-bottom: 1px solid rgba(11,11,11,0.2);
  max-width: 720px;
  text-wrap: pretty;
}
.guarantee-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}
.guarantee-cta .btn-xl { min-width: 280px; }
.guarantee-cta .btn-primary {
  background: var(--ink);
  color: var(--yellow);
}
.guarantee-cta .btn-primary:hover {
  background: #000;
  color: var(--yellow);
}
.guarantee-cta-micro {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.guarantee-cta-micro .dot {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 800px) { .result-grid { grid-template-columns: 1fr 1fr; } }

.result-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 24px 32px;
  text-align: left;
}
.result-cell .word {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  color: var(--yellow);
}
.result-cell .sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 10px;
}

/* ---------- Squad ---------- */
.squad {
  background: var(--ink);
  color: var(--bone);
}
.squad .section-head .lead { padding-top: 32px; }
.squad .section-head .lead p { margin: 0; }
.squad .section-head .lead p + p { margin-top: 18px; }
.squad-lead-line {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-wrap: balance;
}
.squad-lead-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.35;
  color: var(--bone);
  text-wrap: pretty;
}
.squad-body {
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.squad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 800px) { .squad-grid { grid-template-columns: 1fr; } }
.squad-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #000;
}
.squad-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.squad-tile:hover img { transform: scale(1.02); }
.squad-tile figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(0,0,0,0.65);
  padding: 8px 12px;
  border: 1px solid var(--rule);
}
.squad-tile figcaption .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
}
.squad-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  border-bottom: 0;
  border-right: 0;
}
@media (max-width: 700px) { .squad-stats { grid-template-columns: 1fr 1fr; } }
.squad-stats .stat {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 24px;
}
.squad-stats .num {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.9;
  color: var(--yellow);
}
.squad-stats .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Coaches ---------- */
.coaches {
  background: var(--bone);
  color: var(--ink);
}
.coaches .eyebrow { color: var(--ink); }
.coaches .eyebrow::before { background: var(--ink); }
.coaches .lead { color: var(--muted-dark); }

.coach-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .coach-row { grid-template-columns: 1fr; } }

.coach {
  border: 1px solid var(--rule-dark);
  background: var(--paper);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.coach .ph {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(45deg, rgba(11,11,11,0.04) 0 8px, rgba(11,11,11,0.08) 8px 16px);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.coach .ph .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted-dark);
  text-transform: uppercase;
}
.coach .body { padding: 22px; }
.coach .body h4 { font-size: 28px; }
.coach .body .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin: 6px 0 14px;
}
.coach .body p { font-size: 14px; line-height: 1.55; color: #333; }

/* ---------- Coach (editorial redesign) ---------- */

/* Masthead */
.coach-masthead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 56px;
}
@media (max-width: 800px) {
  .coach-masthead { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 36px; }
}
.masthead-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
}
.masthead-tag .tag-num {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0;
  color: var(--ink);
}
.masthead-tag .tag-rule {
  width: 32px;
  height: 1px;
  background: var(--ink);
}
.masthead-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.masthead-title em {
  font-style: normal;
  background: var(--yellow);
  padding: 0 10px;
  margin: 0 -2px;
}

/* Spread */
.coach-spread {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
}
@media (max-width: 900px) { .coach-spread { grid-template-columns: 1fr; } }

.coach-portrait {
  position: relative;
  background: #0e0e0e;
  overflow: hidden;
  min-height: 620px;
  align-self: stretch;
}
.coach-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.95);
}
.coach-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.portrait-plate {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
}
.plate-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.plate-name {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.portrait-corner {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.85;
}

/* Right column */
.coach-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 4px;
}
.coach-deck {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.deck-line {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.coach-display {
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.84;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 4px 0 8px;
}
.deck-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.coach-prose {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.coach-prose p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
}
.coach-prose .lead-p {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  text-wrap: pretty;
}

.coach-quote {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
  margin: 4px 0 0;
  padding: 28px 26px 30px;
  background: var(--ink);
  color: var(--bone);
}
.coach-quote .q-mark {
  font-family: var(--display);
  font-size: 88px;
  line-height: 0.7;
  color: var(--yellow);
  align-self: start;
  margin-top: -6px;
}
.coach-quote .q-line {
  grid-column: 2;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  color: rgba(244,239,230,0.85);
}
.coach-quote .q-punch {
  grid-column: 2;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: var(--bone);
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.coach-quote .q-punch::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  margin-top: 14px;
}

/* Stat ticker — unified band */
.coach-ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 56px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
@media (max-width: 900px) {
  .coach-ticker { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .coach-ticker { grid-template-columns: 1fr; }
}
.tick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px 24px;
  border-right: 1px solid var(--rule);
  background: var(--bone);
}
.tick:last-child { border-right: none; }
@media (max-width: 900px) {
  .tick:nth-child(2n) { border-right: none; }
  .tick { border-bottom: 1px solid var(--rule); }
  .tick:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .tick { border-right: none; border-bottom: 1px solid var(--rule); }
  .tick:last-child { border-bottom: none; }
}
.tick-pb {
  background: var(--ink);
  color: var(--bone);
  border-right-color: rgba(244,239,230,0.12);
}
.tick-pb:last-child { border-right: none; }
.t-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.tick-pb .t-key { color: rgba(244,239,230,0.55); }
.t-num {
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tick-pb .t-num { color: var(--yellow); }
.t-num small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted-dark);
}
.t-time { font-variant-numeric: tabular-nums; }
.t-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.tick-pb .t-lbl { color: rgba(244,239,230,0.65); }

/* Cinematic finish */
.coach-finish {
  position: relative;
  margin-top: 56px;
  background: #0a0a0a;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
@media (max-width: 700px) { .coach-finish { aspect-ratio: 4 / 5; } }
.coach-finish img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
}
.coach-finish::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.finish-overlay {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 48px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--bone);
}
.finish-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.finish-quote {
  font-family: var(--display);
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: 880px;
  text-wrap: balance;
}
.finish-accent {
  background: var(--yellow);
  color: var(--ink);
  padding: 0 10px;
}
.tick-pb .t-lbl { color: rgba(244,239,230,0.65); }

.offer {
  background: var(--yellow);
  color: var(--ink);
  position: relative;
}
.offer::before, .offer::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 12px, transparent 12px 24px);
}
.offer::before { top: 0; }
.offer::after  { bottom: 0; }

.offer-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 800px) { .offer-card { grid-template-columns: 1fr; } }

.offer h2 {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.86;
}
.offer .price-block {
  border: 2px solid var(--ink);
  background: var(--bone);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer .price-block .name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.offer .price-block .price {
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.9;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.offer .price-block .price .cur {
  font-size: 32px;
  margin-top: 14px;
}
.offer .price-block .price .strike {
  font-size: 28px;
  color: var(--muted-dark);
  text-decoration: line-through;
  margin-top: 16px;
  margin-left: 12px;
}
.offer .price-block .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.offer .btn-primary { background: var(--ink); color: var(--yellow); }
.offer .btn-primary:hover { background: var(--bone); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }

.offer-bullets {
  list-style: none;
  margin: 18px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.offer-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
}
.offer-bullets li::before {
  content: "→";
  font-family: var(--mono);
  color: var(--ink);
  font-weight: 700;
}

/* ---------- Offer redesign ---------- */
.offer-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .offer-card { grid-template-columns: 1fr; } }

.btn-xl { padding: 22px 32px; font-size: 14px; }
.offer-urgency { margin-top: 18px; color: var(--ink); }

/* Promise stripe — clean, integrated, not heavy */
.promise-stripe {
  margin-top: 36px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(11,11,11,0.25);
}
.promise-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.promise-eyebrow .seal {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.promise-body {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 540px;
}
.promise-headline {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 12px 0 4px;
  color: var(--ink);
}
.promise-headline-tail { color: var(--ink); opacity: 0.55; }
.promise-closer {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(11,11,11,0.78);
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(11,11,11,0.18);
  max-width: 600px;
  text-wrap: pretty;
}
.promise-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(11,11,11,0.18);
}
.promise-cta .btn-xl { min-width: 260px; }
.promise-cta-micro {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.promise-cta-micro .dot {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.promise-body strong { font-weight: 700; }
.promise-aside {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(11,11,11,0.65);
  font-style: italic;
}

/* Ticket card — proper "lead offer" stub */
.ticket {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 8px 0 rgba(11,11,11,0.15);
}
.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px dashed rgba(244,239,230,0.25);
}
.ticket-perf {
  height: 14px;
  background-image: radial-gradient(circle at 7px 7px, var(--yellow) 5px, transparent 6px);
  background-size: 14px 14px;
  background-repeat: repeat-x;
  background-position: center;
}
.ticket-body { padding: 26px 26px 28px; }
.ticket-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
}
.ticket-price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--display);
  line-height: 0.9;
}
.ticket-price .cur { font-size: 36px; color: var(--yellow); }
.ticket-price .num { font-size: 112px; color: var(--yellow); }
.ticket-price .strike {
  font-size: 26px;
  color: rgba(244,239,230,0.45);
  text-decoration: line-through;
  margin-left: 10px;
}
.ticket-sub {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.6);
}
.ticket-rows {
  list-style: none;
  margin: 22px 0 22px;
  padding: 0;
  border-top: 1px solid rgba(244,239,230,0.14);
}
.ticket-rows li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244,239,230,0.14);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ticket-rows li > span:first-child { color: rgba(244,239,230,0.6); }
.ticket-rows li > span:last-child { color: var(--bone); }
.ticket-cta { width: 100%; justify-content: center; background: var(--yellow); color: var(--ink); }
.ticket-cta:hover { background: var(--bone); color: var(--ink); box-shadow: 4px 4px 0 var(--yellow); }
.ticket-foot {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
}
.ticket-foot .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255,214,10,0.7);
  animation: pulseDot 1.6s ease-out infinite;
}
/* legacy .guarantee block removed — superseded by full-bleed design above */
.path { background: var(--ink); }
.path .lead { max-width: 640px; }

.path-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 800px) { .path-row { grid-template-columns: 1fr 1fr; } }

.path-step {
  border: 1px solid var(--rule);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  position: relative;
}
.path-step.active {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.path-step .step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.path-step h4 {
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 0.95;
}
.path-step .desc { font-size: 13px; line-height: 1.5; opacity: 0.75; }
.path-step.active .desc { opacity: 0.85; }

/* ---------- FAQ ---------- */
.faq { background: var(--bone); color: var(--ink); }
.faq .eyebrow { color: var(--ink); }
.faq .eyebrow::before { background: var(--ink); }

.faq-list { border-top: 1px solid var(--rule-dark); }
.faq-item { border-bottom: 1px solid var(--rule-dark); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 26px 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
}
.faq-q .plus {
  font-family: var(--mono);
  font-size: 18px;
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--ink); color: var(--yellow); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}
.faq-a-inner {
  padding: 0 0 26px;
  font-size: 16px;
  line-height: 1.55;
  max-width: 720px;
  color: #333;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ---------- Filter ---------- */
.filter {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.filter .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 800px) { .filter .container { grid-template-columns: 1fr; } }
.filter .label-warn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.filter h3 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  margin-top: 14px;
}
.filter p { color: var(--muted); margin-top: 0; max-width: 540px; font-size: 18px; line-height: 1.5; }
.filter .filter-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border: 1px solid var(--bone);
  color: var(--bone);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms, color 180ms;
}
.filter .filter-cta:hover { background: var(--bone); color: var(--ink); }
.filter .filter-micro {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.55);
}

/* ---------- Final CTA ---------- */
.final {
  background: var(--ink);
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
}
.final h2 {
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.86;
}
.final h2 .accent { color: var(--yellow); }
.final .final-sub-headline {
  margin-top: 28px;
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.15;
  color: var(--yellow);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.final p {
  margin-top: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.final .final-sub {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.6);
}
.final .final-urgency {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}
.final .btn { margin-top: 36px; padding: 22px 36px; font-size: 14px; }

/* ---------- Sticky CTA bar ---------- */
.stickycta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--ink);
  border-top: 1px solid var(--yellow);
  transform: translateY(110%);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.stickycta.visible { transform: translateY(0); }
.stickycta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.stickycta .left {
  display: flex; gap: 16px; align-items: baseline;
  min-width: 0;
}
.stickycta .name {
  font-family: var(--display);
  font-size: 22px; line-height: 1;
  color: var(--bone);
}
.stickycta .price {
  font-family: var(--mono); font-size: 12px;
  color: var(--yellow); letter-spacing: 0.14em; text-transform: uppercase;
}
.stickycta .btn { padding: 14px 22px; font-size: 12px; }
@media (max-width: 600px) {
  .stickycta .name { font-size: 18px; }
  .stickycta .price { display: none; }
  .stickycta .btn { padding: 12px 16px; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding: 40px 0 56px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
footer img { height: 28px; }

/* ---------- Tweaks: dark/light per section already wired; allow overrides via CSS vars ---------- */
.theme-acid { --yellow: #d6ff00; --yellow-deep: #c2e800; }
.theme-orange { --yellow: #ff5a1f; --yellow-deep: #e64500; }
.theme-classic { --yellow: #ffd60a; --yellow-deep: #f5c400; }

/* ---------- Animations ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in {
  animation: riseIn 700ms cubic-bezier(.2,.7,.2,1) both;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; }
  .marquee-track { animation: none; }
}
