/* ============================================================
   SOULTRAIN — HYROX BASECAMP WEEK
   Design system: dark arena theme
   ============================================================ */

:root {
  --ink:        #0b0b0b;
  --ink-panel:  #131313;
  --ink-card:   #161616;
  --ink-raise:  #1c1c1c;
  --bone:       #f4efe6;
  --bone-dim:   rgba(244, 239, 230, 0.60);
  --bone-faint: rgba(244, 239, 230, 0.40);
  --bone-ghost: rgba(244, 239, 230, 0.16);
  --yellow:     #ffd60a;
  --yellow-deep: #f5c400;
  --red:        #ff4d3d;
  --line:       rgba(244, 239, 230, 0.14);
  --line-soft:  rgba(244, 239, 230, 0.08);

  --nav-h: 68px;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --sec-pad: clamp(72px, 10vw, 152px);

  --font-head: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
section { position: relative; }
.sec { padding: var(--sec-pad) 0; }
.sec--tight { padding: clamp(56px, 7vw, 104px) 0; }

.divline { height: 1px; background: var(--line-soft); border: 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 10px var(--yellow); }
.eyebrow--yellow { color: var(--yellow); }
.eyebrow { align-items: center; }
.eyebrow::before { content: ""; display: inline-block; width: 18px; height: 1px; background: var(--yellow); flex: none; }
.eyebrow--nodash::before { display: none; }
.light .eyebrow::before { background: var(--ink); }

h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone);
}
.h1 { font-size: clamp(58px, 9.2vw, 156px); }
.h2 { font-size: clamp(44px, 6.6vw, 108px); }
.h3 { font-size: clamp(28px, 3.8vw, 56px); }
.h4 { font-family: var(--font-head); font-weight: 400; text-transform: uppercase; font-size: clamp(22px, 2.6vw, 34px); line-height: 0.95; letter-spacing: 0.01em; }

.accent { color: var(--yellow); }
.lead { font-size: clamp(18px, 2vw, 23px); line-height: 1.5; color: var(--bone); max-width: 60ch; }
.lead-sm { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.6; color: var(--bone-dim); max-width: 64ch; }
.body { color: var(--bone-dim); max-width: 60ch; }
.body strong, .lead strong { color: var(--bone); font-weight: 600; }

.label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.num {
  font-family: var(--font-head);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.8;
  color: var(--yellow);
  display: inline-flex;
  align-items: baseline;
}
.num .den { font-size: 0.4em; color: var(--bone-faint); margin-left: 2px; letter-spacing: 0.05em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(.2,.7,.3,1), box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  will-change: transform;
}
.btn .arw { transition: transform 0.18s ease; }
.btn:hover .arw { transform: translateX(4px); }

.btn--primary { background: var(--yellow); color: var(--ink); box-shadow: 0 0 0 rgba(255,214,10,0); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(255,214,10,0.55); }

.btn--ghost { background: transparent; color: var(--bone); border-color: var(--bone-ghost); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--bone); box-shadow: 0 14px 30px -16px rgba(0,0,0,0.7); }

/* light-section button variants */
.btn--ink { background: transparent; color: var(--ink); border-color: rgba(11,11,11,0.32); }
.btn--ink:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: 0 14px 30px -16px rgba(11,11,11,0.35); }
.btn--yellow-onlight { background: var(--ink); color: var(--bone); }
.btn--yellow-onlight:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -14px rgba(11,11,11,0.5); }

.btn--lg { padding: 22px 38px; font-size: 15px; }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, #141414 0 14px, #181818 14px 28px);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--bone-faint);
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,214,10,0.04), transparent 60%);
}
.ph .ph-tag {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
  background: rgba(11,11,11,0.72);
  border: 1px solid var(--line);
  padding: 6px 10px;
  margin: 14px;
}
.ph--light {
  background: repeating-linear-gradient(135deg, #e7e0d2 0 14px, #ece6da 14px 28px);
  border-color: rgba(11,11,11,0.12);
}
.ph--light .ph-tag { color: rgba(11,11,11,0.5); background: rgba(244,239,230,0.7); border-color: rgba(11,11,11,0.12); }

/* ---------- Cards ---------- */
.card {
  background: var(--ink-card);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 40px);
}
.card--raise { background: var(--ink-raise); }

/* ---------- Tags / chips ---------- */
.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--line);
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip--yellow { color: var(--yellow); border-color: rgba(255,214,10,0.4); }

/* ============================================================
   NAV — markup styled by MASTER CHROME block (end of file)
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(48px, 6vw, 88px); padding-bottom: var(--sec-pad); overflow: hidden; }
.hero__eyebrows { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--line-soft); padding-bottom: 22px; margin-bottom: clamp(36px, 5vw, 64px); }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 72px); align-items: end; }
.hero__h1 { margin-bottom: 30px; max-width: 14ch; }
.hero__sub { font-size: clamp(18px, 1.9vw, 23px); line-height: 1.45; color: var(--bone); max-width: 40ch; margin-bottom: 24px; }
.hero__detail { font-family: var(--font-mono); font-size: 13px; line-height: 1.8; letter-spacing: 0.02em; color: var(--bone-dim); margin-bottom: 34px; }
.hero__detail b { color: var(--bone); font-weight: 600; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero__micro { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-faint); }

.herocard { border: 1px solid var(--line); background: var(--ink-panel); }
.herocard__head { padding: 18px 20px; border-bottom: 1px solid var(--line); }
.herocard__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); }
.herocard__h3 { font-family: var(--font-head); font-size: clamp(26px, 2.6vw, 36px); line-height: 0.96; text-transform: uppercase; color: var(--bone); margin-top: 12px; }
.herocard__h3 span { color: var(--bone-faint); }
.herocard__media { aspect-ratio: 4 / 3; }
video.herocard__media { width: 100%; height: auto; display: block; object-fit: cover; border: 1px solid var(--line); background: #141414; }
.herocard__mediawrap { position: relative; }
.herocard__playtag { position: absolute; left: 14px; bottom: 14px; }
.herocard__stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.herocard__stat { padding: 18px 16px; text-align: center; border-right: 1px solid var(--line); }
.herocard__stat:last-child { border-right: 0; }
.herocard__stat .v { font-family: var(--font-head); font-size: 30px; color: var(--yellow); line-height: 1; }
.herocard__stat .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim); margin-top: 6px; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; align-items: stretch; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--yellow); padding: 16px 0; overflow: hidden; }
.marquee__track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marq 38s linear infinite; }
.marquee__track span { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); padding: 0 24px; display: inline-flex; align-items: center; gap: 48px; line-height: 1; }
.marquee__track span img.item { height: clamp(20px, 3vw, 34px); width: auto; display: block; }
.marquee__track span::after { content: ""; display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   SECTION HEADER pattern
   ============================================================ */
.shead { margin-bottom: clamp(36px, 5vw, 64px); }
.shead .eyebrow { margin-bottom: 22px; }
.shead .h2 { max-width: 16ch; }
.shead--center { text-align: center; }
.shead--center .h2 { margin-inline: auto; }
.shead--center .lead { margin-inline: auto; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem__top { display: grid; grid-template-columns: 1fr 2.1fr; gap: clamp(28px,4vw,60px); align-items: start; }
.problem__head { font-family: var(--font-head); font-weight: 400; font-size: clamp(54px, 7vw, 116px); line-height: 0.86; letter-spacing: 0.005em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.problem__intro { padding-top: clamp(8px, 5vw, 70px); }
.problem__intro p { font-size: clamp(18px, 1.9vw, 26px); line-height: 1.45; color: rgba(11,11,11,0.55); max-width: 27em; }

.problem__statements { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(11,11,11,0.2); border-bottom: 1px solid rgba(11,11,11,0.2); margin: clamp(56px,8vw,120px) 0 clamp(44px,5vw,76px); }
.pstate { border-left: 1px solid rgba(11,11,11,0.14); padding: clamp(28px,2.6vw,40px) clamp(22px,2.4vw,40px) clamp(34px,3.4vw,52px); min-height: clamp(170px,18vw,220px); display: flex; flex-direction: column; }
.pstate:first-child { border-left: 0; padding-left: clamp(2px,1vw,12px); }
.pstate__num { font-family: var(--font-mono); font-weight: 400; font-size: 14px; letter-spacing: 0.18em; color: rgba(11,11,11,0.4); }
.pstate__t { font-family: var(--font-head); font-weight: 400; font-size: clamp(26px, 2.8vw, 38px); text-transform: uppercase; line-height: 1.0; color: var(--ink); margin-top: auto; }
.pstate__t .x { color: var(--red); margin-left: 8px; font-size: 0.8em; }
.pstate--fail { background: transparent; border-left-color: rgba(11,11,11,0.14); }
.pstate--fail .pstate__num { color: rgba(11,11,11,0.4); }
.pstate--fail .pstate__t { color: var(--ink); }

.problem__callout { max-width: none; }
.problem__callout h3 { font-family: var(--font-head); font-weight: 400; font-size: clamp(32px, 4.8vw, 68px); text-transform: uppercase; line-height: 0.98; color: var(--ink); }
.problem__callout mark { background: var(--yellow); color: var(--ink); padding: 0 0.12em; }
.problem__callout p { font-family: var(--font-body); font-size: clamp(15px, 1.4vw, 19px); letter-spacing: 0; color: rgba(11,11,11,0.5); margin-top: 28px; }
@media (max-width: 860px) { .problem__top { grid-template-columns: 1fr; align-items: start; } .problem__intro { padding-top: 4px; } .problem__intro p { max-width: 42ch; } .problem__statements { grid-template-columns: 1fr 1fr; } .pstate { padding-left: clamp(22px,2.4vw,40px); } .pstate:first-child { padding-left: clamp(22px,2.4vw,40px); } .pstate:nth-child(odd) { border-left: 0; padding-left: 4px; } }
@media (max-width: 520px) { .problem__statements { grid-template-columns: 1fr; } .pstate, .pstate:nth-child(odd) { border-left: 0; padding-left: 4px; border-top: 1px solid rgba(11,11,11,0.12); min-height: 0; padding-top: 24px; padding-bottom: 28px; } .pstate:first-child { border-top: 0; } .pstate__t { margin-top: 16px; } }

/* ============================================================
   METHOD
   ============================================================ */
.method__top { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px,5vw,64px); align-items: center; margin-bottom: clamp(48px,6vw,80px); }
.wheel { aspect-ratio: 1; border-radius: 50%; }
img.wheel { width: 100%; height: auto; display: block; }
.wheel-cap { margin-top: 24px; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.wheel-cap .eyebrow { justify-content: flex-end; }
.wheel-cap p { font-family: var(--font-body); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; color: var(--bone); letter-spacing: 0; max-width: 36ch; }
@media (max-width: 900px) { .method__top { grid-template-columns: 1fr; } }

/* full-bleed 7-column photo strip + pillar grid */
.method-pillars { width: 100vw; margin-left: calc(-50vw + 50%); margin-top: clamp(48px,6vw,80px); }
.pgrid { display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pcol { display: flex; flex-direction: column; }
.pcol__photo { aspect-ratio: 4/5; border: 0; overflow: hidden; }
.pcol__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15); transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 400ms ease; }
.pcol { transition: background 200ms ease; }
.pcol:hover { background: rgba(255,214,10,0.04); }
.pcol:hover .pcol__photo img { transform: scale(1.05); filter: grayscale(0); }
.pcol__body { border-left: 1px solid var(--line); padding: clamp(18px,1.5vw,26px) clamp(14px,1.2vw,22px) clamp(20px,1.8vw,30px); display: flex; flex-direction: column; gap: 12px; flex: 1; min-height: clamp(220px,18vw,260px); }
.pcol:first-child .pcol__body { border-left: 0; }
.pcol__num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--yellow); }
.pcol__num span { color: rgba(255,214,10,0.45); }
.pcol__title { font-family: var(--font-head); font-weight: 400; font-size: clamp(22px, 1.9vw, 30px); text-transform: uppercase; line-height: 0.95; color: var(--bone); }
.pcol__desc { font-size: 13px; color: var(--bone-dim); line-height: 1.5; }
.pcol__tag { margin-top: auto; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-faint); padding-top: 16px; }
@media (max-width: 1080px) { .method-pillars { overflow-x: auto; -webkit-overflow-scrolling: touch; } .pgrid { grid-template-columns: repeat(7, 230px); width: max-content; } }

.mbadges { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,1.5vw,18px); margin: clamp(48px,6vw,80px) 0 clamp(40px,5vw,56px); }
.mbadge { border: 1px solid var(--yellow); color: var(--yellow); font-family: var(--font-head); font-weight: 400; font-size: clamp(24px,2.6vw,40px); text-transform: uppercase; text-align: center; line-height: 0.95; padding: clamp(26px,3.2vw,44px) 16px; }
@media (max-width: 680px) { .mbadges { grid-template-columns: 1fr; } }

.mpayoff { font-family: var(--font-head); font-weight: 400; font-size: clamp(34px, 5.4vw, 82px); text-transform: uppercase; line-height: 0.96; color: var(--bone); max-width: 22ch; }
.mpayoff .faded { color: rgba(244,239,230,0.3); }
.mpayoff .arw-ink { color: var(--bone); }
.mpayoff mark { background: var(--yellow); color: var(--ink); padding: 0 0.12em; }

/* ============================================================
   FLOOR
   ============================================================ */
/* hero — full bleed image + overlaid copy */
.floorhero { position: relative; height: 60vh; min-height: 440px; width: 100%; overflow: hidden; }
.floorhero__img { position: absolute; inset: 0; border: 0; }
img.floorhero__img { width: 100%; height: 100%; object-fit: cover; }
.floorhero__grad { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.72) 32%, rgba(11,11,11,0.25) 62%, rgba(11,11,11,0.05) 100%); }
.floorhero__inner { position: absolute; inset: 0; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: flex-end; }
.floorhero__copy { padding-bottom: clamp(40px,6vw,72px); }
.floorhero__h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(58px, 8.4vw, 132px); line-height: 0.84; text-transform: uppercase; color: var(--bone); margin: 20px 0 22px; }
.floorhero__body { font-size: clamp(14px,1.4vw,16px); line-height: 1.6; color: var(--bone-dim); max-width: 500px; }

/* asymmetric photo grid */
.floorgrid { background: var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 8px var(--gutter); max-width: var(--maxw); margin: 0 auto; grid-template-areas: "tall tall a b" "tall tall wide wide"; }
.ftile { position: relative; overflow: hidden; min-height: 0; }
.ftile--tall { grid-area: tall; }
.ftile--a { grid-area: a; }
.ftile--b { grid-area: b; }
.ftile--wide { grid-area: wide; }
.ftile__img { position: absolute; inset: 0; border: 0; }
.ftile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.ftile:hover .ftile__img img { transform: scale(1.04); }
.ftile--tall { min-height: 560px; }
.ftile--a, .ftile--b { min-height: 276px; }
.ftile--wide { min-height: 276px; }
.ftile__label { position: absolute; left: 14px; bottom: 14px; z-index: 2; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone); background: rgba(11,11,11,0.72); padding: 8px 12px; display: inline-flex; gap: 9px; align-items: baseline; }
.ftile__label b { color: var(--yellow); font-weight: 600; }
@media (max-width: 760px) {
  .floorgrid { grid-template-columns: 1fr 1fr; grid-template-areas: "tall tall" "a b" "wide wide"; }
  .ftile--tall { min-height: 360px; }
}
@media (max-width: 480px) {
  .floorgrid { grid-template-columns: 1fr; grid-template-areas: "tall" "a" "b" "wide"; }
  .ftile--tall { min-height: 300px; }
}

/* ============================================================
   WHAT YOU GET (centrepiece)
   ============================================================ */
.wyg__meta { display: flex; gap: 18px; flex-wrap: wrap; margin: 8px 0 24px; }
.metapill { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; border: 1px solid rgba(244,239,230,0.18); border-radius: 999px; background: rgba(244,239,230,0.04); padding: 9px 22px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-dim); }
.metapill .dot { color: var(--bone-faint); }
.mp-item { display: inline-flex; align-items: baseline; gap: 7px; }
.mp-item b { font-family: var(--font-head); font-weight: 400; font-size: 28px; line-height: 0.7; letter-spacing: 0.02em; color: var(--bone); }
.metapill__score { color: var(--yellow); border: 1px solid rgba(255,214,10,0.5); border-radius: 999px; padding: 5px 13px; margin: -4px -8px -4px 0; }
.metapill__score b { color: var(--yellow); }

.hct {
  border: 1px solid var(--yellow);
  background: linear-gradient(180deg, rgba(255,214,10,0.05), rgba(255,214,10,0.01));
  margin: clamp(32px,4vw,48px) 0;
}
.hct__head { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; padding: clamp(24px,3vw,40px); border-bottom: 1px solid rgba(255,214,10,0.25); }
.hct__head .tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag-solid { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; background: var(--yellow); color: var(--ink); padding: 8px 13px; font-weight: 600; }
.tag-outline { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-dim); border: 1px solid var(--line); padding: 8px 13px; }
.hct__centrelbl { color: var(--bone-faint); }
.hct__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; }
.hct__left { padding: clamp(24px,3vw,40px); border-right: 1px solid rgba(255,214,10,0.18); }
.hct__bignum { font-family: var(--font-head); font-weight: 400; font-size: clamp(120px,16vw,220px); color: var(--yellow); line-height: 0.8; margin-bottom: 6px; }
.hct__title { font-family: var(--font-head); font-size: clamp(30px, 3.4vw, 50px); text-transform: uppercase; line-height: 0.94; }
.hct__powered { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin: 14px 0 18px; }
.hct__desc { color: var(--bone-dim); font-size: 16px; line-height: 1.6; max-width: 48ch; }
.hct__right { padding: clamp(24px,3vw,40px); display: flex; flex-direction: column; gap: 0; }
.hct__stationlbl { margin-bottom: 8px; }
.hct__station { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.hct__station:last-of-type { border-bottom: 0; }
.hct__station .s-n { font-family: var(--font-mono); font-size: 12px; color: var(--yellow); width: 24px; }
.hct__station .s-t { font-family: var(--font-head); font-size: clamp(20px,2vw,26px); text-transform: uppercase; line-height: 1; }
.hct__foot { padding: 18px clamp(24px,3vw,40px); border-top: 1px solid rgba(255,214,10,0.25); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim); }
.hct__foot b { color: var(--yellow); font-weight: 400; }
@media (max-width: 820px) { .hct__grid { grid-template-columns: 1fr; } .hct__left { border-right: 0; border-bottom: 1px solid rgba(255,214,10,0.18); } }

.sessions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(244,239,230,0.14); border: 1px solid var(--line); }
.sesh { background: rgba(244,239,230,0.04); border: 1px solid rgba(244,239,230,0.12); padding: 32px 28px; min-height: 260px; display: flex; flex-direction: column; gap: 12px; transition: background 0.18s ease, border-color 0.18s ease; }
.sesh:hover { background: rgba(245,201,40,0.06); border-color: rgba(245,201,40,0.28); }
.sesh__top { display: flex; align-items: baseline; gap: 14px; }
.sesh .sn { font-family: var(--font-head); font-size: 34px; color: var(--yellow); line-height: 0.8; }
.sesh .sn--plus { font-size: 38px; }
.sesh .st { font-family: var(--font-head); font-size: clamp(24px,2.4vw,32px); text-transform: uppercase; line-height: 0.98; }
.sesh .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-faint); }
.sesh .d { font-size: 14.5px; color: var(--bone-dim); line-height: 1.55; }
@media (max-width: 920px) { .sessions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .sessions { grid-template-columns: 1fr; } }

.formula { display: flex; align-items: center; gap: clamp(14px,2vw,28px); flex-wrap: wrap; justify-content: center; text-align: center; background: var(--yellow); padding: clamp(28px,3.5vw,44px) 28px; margin: clamp(28px,4vw,40px) 0; }
.formula .seg { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); line-height: 1.3; }
.formula .op { font-family: var(--font-head); font-size: clamp(20px,2.2vw,30px); color: var(--ink); }
.formula .res { background: var(--ink); color: var(--yellow); padding: 8px 14px; }

.week { border: 1px solid var(--line); margin: clamp(28px,4vw,40px) 0; }
.week__head { padding: 16px 22px; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-dim); display: flex; gap: 10px 20px; flex-wrap: wrap; }
.week__head b { color: var(--yellow); font-weight: 400; }
.week__days { display: grid; grid-template-columns: repeat(7, 1fr); }
.wday { padding: 20px 14px 24px; border-right: 1px solid var(--line); min-height: 130px; display: flex; flex-direction: column; gap: 10px; }
.wday:last-child { border-right: 0; }
.wday .dd { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--bone-faint); }
.wday .da { font-family: var(--font-head); font-size: clamp(17px,1.5vw,21px); text-transform: uppercase; line-height: 1; }
.wday--rest { background: rgba(244,239,230,0.02); }
.wday--rest .da { color: var(--bone-faint); }
.wday--test { background: rgba(255,214,10,0.07); }
.wday--test .da { color: var(--yellow); }
.wday--test .dd { color: var(--yellow); }
@media (max-width: 820px) { .week__days { grid-template-columns: 1fr 1fr; } .wday { border-bottom: 1px solid var(--line); } .wday:nth-child(odd) { border-right: 1px solid var(--line); } }

.ctaslab { border: 1px solid var(--yellow); border-top: 4px solid var(--yellow); background: linear-gradient(180deg, rgba(255,214,10,0.07), rgba(255,214,10,0.01)); padding: clamp(32px,4vw,52px); display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.ctaslab__left .l { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); }
.ctaslab__left .big { font-family: var(--font-head); font-size: clamp(40px,5vw,72px); line-height: 0.9; text-transform: uppercase; margin: 10px 0 12px; }
.ctaslab__left .big .pr { color: var(--yellow); }
.ctaslab__left .inc { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bone-dim); }
.ctamicro { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-faint); margin-top: 18px; text-align: center; }

/* ============================================================
   SCORE
   ============================================================ */
.score__display { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,64px); align-items: center; margin-top: clamp(28px,3vw,40px); }
.score__lead .h2 { line-height: 0.88; }
.score__sub { font-size: clamp(16px,1.6vw,20px); line-height: 1.45; color: var(--bone-dim); max-width: 30ch; margin-top: 18px; }

/* readout card */
.readout { position: relative; border: 1px solid rgba(244,239,230,0.14); border-top: 2px solid var(--yellow); background: linear-gradient(180deg, rgba(255,214,10,0.04), rgba(0,0,0,0)); padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.readout__bracket { position: absolute; right: 0; bottom: 0; width: 14px; height: 14px; border-bottom: 1px solid var(--yellow); border-right: 1px solid var(--yellow); }
.readout__head { display: flex; align-items: center; justify-content: space-between; }
.readout__lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-faint); }
.readout__live { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-dim); display: inline-flex; align-items: center; gap: 7px; }
.rdot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px var(--yellow); animation: pulse 1.8s ease-in-out infinite; }
.readout__num { display: flex; align-items: baseline; font-family: var(--font-head); font-size: clamp(96px,13vw,168px); line-height: 0.85; }
.readout__num .rn { color: var(--yellow); }
.readout__num .rs { color: var(--bone-faint); opacity: 0.5; margin: 0 2px; }
.readout__num .rt { color: var(--bone); opacity: 0.7; }
.readout__pill { align-self: flex-start; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; background: var(--yellow); color: var(--ink); padding: 6px 12px; }
.readout__track { position: relative; height: 8px; background: rgba(244,239,230,0.08); margin-top: 4px; }
.readout__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 75%; background: linear-gradient(90deg, rgba(255,214,10,0.55), var(--yellow)); }
.readout__needle { position: absolute; top: -3px; bottom: -3px; left: 75%; width: 2px; background: var(--bone); }
.readout__scale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--bone-faint); }

/* body copy */
.score__body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); margin: clamp(40px,5vw,68px) 0 clamp(36px,4vw,52px); }
.score__body p { font-size: 16px; line-height: 1.65; color: rgba(244,239,230,0.86); }
.score__body b { color: var(--yellow); font-weight: 600; }

/* score band */
.scoreband { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; margin-bottom: clamp(40px,5vw,64px); }
.scoreband__bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; height: 36px; }
.scoreband .seg { display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-faint); }
.scoreband .seg--1 { background: rgba(244,239,230,0.04); border: 1px solid var(--line); }
.scoreband .seg--2 { background: rgba(244,239,230,0.06); border: 1px solid var(--line); }
.scoreband .seg--3 { background: rgba(255,214,10,0.12); border: 1px solid rgba(255,214,10,0.4); color: var(--bone); }
.scoreband .seg--4 { background: var(--yellow); border: 1px solid var(--yellow); color: var(--ink); font-weight: 600; }
.scoreband__scale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--bone-faint); margin-top: 12px; }

/* trusted by */
.trustedby { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(48px,6vw,80px); }
.trustedby__lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-faint); }
.trustedby__logo { border: 1px solid var(--line); padding: 12px 20px; background: rgba(244,239,230,0.03); }
.trustedby__ph { width: 150px; height: 36px; border: 0; }
.trustedby__img { display: block; height: 30px; width: auto; }
.trustedby__ph .ph-tag { margin: 0; font-size: 9px; padding: 3px 6px; }
.score__sixhead { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,56px); align-items: end; margin: clamp(40px,5vw,64px) 0 clamp(24px,3vw,36px); }
.score__sixhead .h2 { line-height: 0.9; }
.score__sixcap { font-size: clamp(15px,1.5vw,18px); line-height: 1.55; color: var(--bone-dim); max-width: 46ch; }
.score__stations { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: clamp(20px,3vw,32px) 0 clamp(28px,4vw,40px); }
.sstile { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.sstile__img { position: absolute; inset: 0; border: 0; }
.sstile__img img { width: 100%; height: 100%; object-fit: cover; }
.sstile__num { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; background: var(--yellow); color: var(--ink); padding: 4px 7px; }
.sstile__name { position: absolute; left: 10px; bottom: 10px; z-index: 2; font-family: var(--font-head); font-size: clamp(15px,1.4vw,20px); text-transform: uppercase; line-height: 0.95; color: var(--bone); max-width: 80%; text-shadow: 0 1px 8px rgba(11,11,11,0.8); }
.sstile__scored { position: absolute; right: 10px; bottom: 12px; z-index: 2; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.sstile::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(11,11,11,0.78) 0%, rgba(11,11,11,0.1) 45%, rgba(11,11,11,0.2) 100%); }
.score__stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(244,239,230,0.14); margin: clamp(28px,4vw,44px) 0; }
.sstat { display: flex; flex-direction: column; gap: 8px; padding: 28px 32px; border-left: 1px solid rgba(244,239,230,0.14); }
.sstat:first-child { border-left: 0; }
.score__stats .sstat--accent { border-left: 2px solid var(--yellow); }
.sstat__n { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--bone-faint); }
.sstat__v { font-family: var(--font-head); font-weight: 400; font-size: clamp(36px,4vw,56px); color: var(--yellow); line-height: 1; }
.sstat__k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-faint); margin-top: 4px; }
@media (max-width: 720px) { .score__stats { grid-template-columns: 1fr 1fr; } .sstat:nth-child(3) { border-left: 0; } .sstat:nth-child(3), .sstat:nth-child(4) { border-top: 1px solid rgba(244,239,230,0.14); } }

.score__closer { margin-top: clamp(48px,6vw,80px); padding: clamp(8px,1vw,16px) 0 clamp(8px,1vw,16px); }
.score__closer-rule { display: block; width: 48px; height: 2px; background: var(--yellow); margin-bottom: 32px; }
.score__closer p { font-family: var(--font-head); font-weight: 400; font-size: clamp(28px,3.5vw,48px); text-transform: uppercase; line-height: 1.1; color: var(--bone); max-width: none; text-wrap: balance; }
.score__closer p .accent { color: var(--yellow); }
@media (max-width: 920px) { .score__stations { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .score__display { grid-template-columns: 1fr; } .score__body { grid-template-columns: 1fr; } .score__sixhead { grid-template-columns: 1fr; align-items: start; } }
@media (max-width: 520px) { .score__stations { grid-template-columns: repeat(2, 1fr); } .scoreband .seg { font-size: 8px; letter-spacing: 0.06em; } }

/* ============================================================
   GUARANTEE — LIGHT BREATH SECTION
   ============================================================ */
.light { background: var(--bone); color: var(--ink); }
.light .eyebrow { color: rgba(11,11,11,0.6); }
.light .h2 { color: var(--ink); }
.light .body { color: rgba(11,11,11,0.72); }
.light .lead { color: var(--ink); }
.guarantee { background: var(--bone); color: var(--ink); position: relative; overflow: hidden; padding: clamp(72px,10vw,140px) 0; }
.guarantee::before { content: ""; position: absolute; right: 0; bottom: 0; width: 700px; height: 400px; background: radial-gradient(700px 400px at 100% 100%, rgba(11,11,11,0.06), transparent 60%); pointer-events: none; }
.guarantee .wrap { position: relative; z-index: 1; }
.guarantee-card { display: flex; flex-direction: column; gap: 24px; padding: 12px 0; margin: 0; max-width: none; }

.guarantee-stamp { width: 120px; height: 120px; color: var(--ink); animation: stampSpin 22s linear infinite; }
.guarantee-stamp svg { display: block; }
@keyframes stampSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .guarantee-stamp { animation: none; } }

.guarantee-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }

.guarantee-headline { font-family: var(--font-head); font-weight: 400; font-size: clamp(40px,6vw,88px); line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; 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-family: var(--font-body); font-size: clamp(16px,1.5vw,19px); line-height: 1.55; 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(--font-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; }
.btn-primary-light { background: var(--ink); color: var(--yellow); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 18px 26px; border: 0; border-radius: 0; min-width: 280px; text-align: center; cursor: pointer; transition: background 0.18s ease; }
.btn-primary-light:hover { background: #000; color: var(--yellow); }
.guarantee-cta-micro { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); 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; flex: none; }

/* ============================================================
   RESULT
   ============================================================ */
.result__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.rcell { background: var(--ink); padding: clamp(32px,4vw,52px) 24px; text-align: center; }
.rcell .w { font-family: var(--font-head); font-size: clamp(34px,4vw,58px); text-transform: uppercase; line-height: 0.92; }
.rcell:nth-child(2) .w, .rcell:nth-child(4) .w { color: var(--yellow); }
@media (max-width: 720px) { .result__row { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SQUAD
   ============================================================ */
.squad__montage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: clamp(32px,4vw,48px) 0; }
.squad__montage .ph { aspect-ratio: 4/3; }
.squad__montage img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.squad__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.qstat { background: var(--ink); padding: 26px 20px; }
.qstat .v { font-family: var(--font-head); font-size: clamp(28px,3vw,44px); color: var(--yellow); line-height: 0.9; }
.qstat .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-dim); margin-top: 10px; line-height: 1.4; }
@media (max-width: 820px) { .squad__montage { grid-template-columns: 1fr; } .squad__stats { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   COACHES
   ============================================================ */
.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; }
.masthead-tag { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.masthead-tag .tag-num { font-family: var(--font-head); font-weight: 400; font-size: 22px; line-height: 1; color: var(--ink); }
.masthead-tag .tag-rule { width: 32px; height: 1px; background: var(--ink); }
.masthead-title { font-family: var(--font-head); font-weight: 400; font-size: clamp(40px,5.4vw,72px); line-height: 0.96; letter-spacing: -0.01em; text-transform: uppercase; color: var(--ink); }
.masthead-title em { font-style: normal; background: var(--yellow); color: var(--ink); padding: 0 10px; margin: 0 -2px; }

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

.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 rgba(11,11,11,0.16); }
.deck-line { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(11,11,11,0.62); }
.coach-display { font-family: var(--font-head); font-weight: 400; font-size: clamp(64px,8vw,112px); line-height: 0.84; letter-spacing: -0.015em; text-transform: uppercase; color: var(--ink); }
.deck-meta { font-family: var(--font-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 .lead-p { font-family: var(--font-body); font-size: 19px; line-height: 1.5; color: var(--ink); font-weight: 500; }
.coach-prose p { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: #1a1a1a; }
.coach-quote { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; align-items: start; padding: 28px 26px 30px; background: var(--ink); color: var(--bone); margin-top: auto; }
.coach-quote .q-mark { font-family: var(--font-head); font-size: 88px; line-height: 0.7; color: var(--yellow); margin-top: -6px; }
.coach-quote .q-line { grid-column: 2; font-family: var(--font-head); font-weight: 400; font-size: clamp(22px,2.4vw,30px); line-height: 1.15; text-transform: uppercase; color: rgba(244,239,230,0.85); }
.coach-quote .q-punch { grid-column: 2; font-family: var(--font-head); font-weight: 400; font-size: clamp(34px,4vw,52px); line-height: 1; letter-spacing: -0.01em; text-transform: uppercase; color: var(--bone); margin-top: 8px; }
.coach-quote .q-punch::after { content: ""; display: block; width: 56px; height: 4px; background: var(--yellow); margin-top: 14px; }

.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); }
.tick { display: flex; flex-direction: column; gap: 10px; padding: 26px 22px 24px; border-right: 1px solid rgba(11,11,11,0.14); background: var(--bone); }
.tick:last-child { border-right: 0; }
.tick .t-key { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(11,11,11,0.62); }
.tick .t-num { font-family: var(--font-head); font-weight: 400; font-size: clamp(34px,3.6vw,48px); line-height: 1; letter-spacing: -0.01em; color: var(--ink); display: flex; align-items: baseline; gap: 6px; }
.tick .t-num small { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: rgba(11,11,11,0.62); }
.tick .t-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(11,11,11,0.62); }
.tick-pb { background: var(--ink); color: var(--bone); border-right-color: rgba(244,239,230,0.12); }
.tick-pb .t-key { color: rgba(244,239,230,0.55); }
.tick-pb .t-num { color: var(--yellow); }
.tick-pb .t-lbl { color: rgba(244,239,230,0.65); }

.coach-finish { position: relative; margin-top: 56px; background: #0a0a0a; overflow: hidden; aspect-ratio: 21/9; }
.coach-finish-img { position: absolute; inset: 0; border: 0; filter: contrast(1.04) saturate(0.95); }
img.coach-finish-img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.coach-finish::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, rgba(0,0,0,0.85) 100%); }
.finish-overlay { position: absolute; z-index: 2; left: clamp(20px,4vw,56px); right: clamp(20px,4vw,56px); bottom: clamp(24px,4vw,48px); display: flex; flex-direction: column; gap: 18px; }
.finish-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); }
.finish-quote { font-family: var(--font-head); font-weight: 400; font-size: clamp(28px,4.4vw,60px); line-height: 1; letter-spacing: -0.01em; text-transform: uppercase; max-width: 880px; color: var(--bone); }
.finish-quote .finish-accent { font-style: normal; background: var(--yellow); color: var(--ink); padding: 0 10px; }
@media (max-width: 820px) {
  .coach-masthead { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .coach-spread { grid-template-columns: 1fr; }
  .coach-portrait { min-height: 440px; }
  .coach-ticker { grid-template-columns: 1fr 1fr; }
  .tick { border-bottom: 1px solid rgba(11,11,11,0.14); }
  .tick-pb { border-bottom-color: rgba(244,239,230,0.12); }
  .coach-finish { aspect-ratio: 4/5; }
}
@media (max-width: 480px) { .coach-ticker { grid-template-columns: 1fr; } }

/* ============================================================
   OFFER (ticket)
   ============================================================ */
.offer { background: var(--yellow); color: var(--ink); position: relative; padding: clamp(72px,10vw,140px) 0; }
.offer::before, .offer::after { content: ""; position: absolute; left: 0; right: 0; height: 12px; background: repeating-linear-gradient(90deg, #0b0b0b 0 12px, transparent 12px 24px); }
.offer::before { top: 0; }
.offer::after { bottom: 0; }
.offer-card { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px,5vw,72px); align-items: start; }

.offer-left { display: flex; flex-direction: column; }
.offer-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.offer-h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(56px,9vw,132px); line-height: 0.86; text-transform: uppercase; color: var(--ink); margin-top: 14px; }
.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-family: var(--font-body); font-size: 16px; line-height: 1.5; color: var(--ink); }
.offer-bullets li::before { content: "→"; font-family: var(--font-mono); color: var(--ink); font-weight: 700; flex: none; }
.btn-offer-xl { align-self: flex-start; background: var(--ink); color: var(--yellow); font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 22px 32px; border: 0; border-radius: 0; cursor: pointer; transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease; }
.btn-offer-xl:hover { background: var(--bone); color: var(--ink); box-shadow: 4px 4px 0 #0b0b0b; }
.offer-urgency { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-top: 18px; }

.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(--font-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, #ffd60a 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(--font-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(--font-head); line-height: 0.9; }
.ticket-price .cur { font-size: 36px; color: var(--yellow); }
.ticket-price .num { font-size: 112px; color: var(--yellow); }
.ticket-sub { margin-top: 4px; font-family: var(--font-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; padding: 0; border-top: 1px solid rgba(244,239,230,0.14); }
.ticket-rows li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(244,239,230,0.14); font-family: var(--font-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); text-align: right; }
.ticket-cta { display: flex; width: 100%; justify-content: center; align-items: center; background: var(--yellow); color: var(--ink); border-radius: 0; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 18px 26px; cursor: pointer; transition: background 0.18s ease, box-shadow 0.18s ease; }
.ticket-cta:hover { background: var(--bone); color: var(--ink); box-shadow: 4px 4px 0 #ffd60a; }
.ticket-foot { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-family: var(--font-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); flex: none; animation: pulse 1.6s ease-out infinite; }
@media (max-width: 820px) { .offer-card { grid-template-columns: 1fr; } }

/* ============================================================
   PATH (ladder)
   ============================================================ */
.path { background: var(--ink); color: var(--bone); padding: clamp(72px,10vw,140px) 0; }
.path-head { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px,5vw,80px); margin-bottom: 56px; }
.path-h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(44px,7vw,96px); line-height: 0.9; text-transform: uppercase; color: var(--bone); margin-top: 22px; }
.path-lead { margin-top: 56px; padding-top: 40px; font-family: var(--font-body); font-size: clamp(18px,1.8vw,22px); line-height: 1.5; color: rgba(244,239,230,0.62); max-width: 640px; }

.path-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.path-step { border: 1px solid rgba(244,239,230,0.14); 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(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.path-step__h { font-family: var(--font-head); font-weight: 400; font-size: clamp(26px,2.6vw,32px); line-height: 0.95; text-transform: uppercase; }
.path-step .desc { font-family: var(--font-body); font-size: 13px; line-height: 1.5; opacity: 0.75; }
.path-step.active .desc { opacity: 0.85; }
@media (max-width: 860px) { .path-head { grid-template-columns: 1fr; } .path-lead { margin-top: 0; padding-top: 0; } .path-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .path-row { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bone); color: var(--ink); padding: clamp(72px,10vw,140px) 0; }
.faq-head { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px,5vw,80px); margin-bottom: 56px; }
.faq-h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(44px,7vw,96px); line-height: 0.9; text-transform: uppercase; color: var(--ink); margin-top: 22px; }
.faq-lead { margin-top: 56px; padding-top: 40px; font-family: var(--font-body); font-size: clamp(18px,1.8vw,22px); line-height: 1.5; color: rgba(11,11,11,0.62); max-width: 560px; }

.faq .eyebrow { color: var(--ink); }
.faq-list { border-top: 1px solid rgba(11,11,11,0.12); }
.faq-item { border-bottom: 1px solid rgba(11,11,11,0.12); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 26px 0; font-family: var(--font-head); font-weight: 400; 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(--font-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.active .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-item.active .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 0 26px; font-family: var(--font-body); font-size: 16px; line-height: 1.55; max-width: 720px; color: #333; }

/* ============================================================
   FILTER
   ============================================================ */
.filter { background: var(--ink); color: var(--bone); padding: clamp(56px,8vw,96px) 0; border-top: 1px solid rgba(244,239,230,0.14); border-bottom: 1px solid rgba(244,239,230,0.14); }
.filter .container { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px,5vw,80px); align-items: center; }
.label-warn { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); display: inline-flex; gap: 10px; align-items: center; }
.label-warn .warn-icon { font-size: 11px; line-height: 1; color: var(--yellow); font-variant-emoji: text; }
.filter-right p { color: rgba(244,239,230,0.62); margin-top: 0; max-width: 540px; font-family: var(--font-body); font-size: 18px; line-height: 1.5; }
.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; border-radius: 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; transition: background 180ms, color 180ms; }
.filter-cta:hover { background: var(--bone); color: var(--ink); }
.filter-right .filter-micro { margin-top: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,239,230,0.55); line-height: 1.5; max-width: none; }
@media (max-width: 760px) { .filter .container { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { background: var(--ink); text-align: center; padding: clamp(80px,12vw,160px) 0; }
.final-h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(64px,12vw,200px); line-height: 0.86; text-transform: uppercase; color: var(--bone); max-width: 16ch; margin: 0 auto; }
.final-h2 .accent { color: var(--yellow); }
.final-body { font-family: var(--font-body); margin: 18px auto 0; color: rgba(244,239,230,0.62); max-width: 520px; line-height: 1.5; }
.final-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,239,230,0.6); margin-top: 10px; }
.btn-final { display: inline-flex; align-items: center; margin-top: 36px; padding: 22px 36px; font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; background: var(--yellow); color: var(--ink); border: 0; border-radius: 0; cursor: pointer; transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
.btn-final:hover { background: #ffffff; transform: translate(-2px,-2px); box-shadow: 4px 4px 0 #ffd60a; }
.final-urgency { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); margin-top: 18px; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================================================
   STICKY MOBILE CTA — styled by MASTER CHROME block (end of file)
   ============================================================ */

/* ============================================================
   FOOTER — markup styled by MASTER CHROME block (end of file)
   ============================================================ */

/* ============================================================
   MASTER CHROME — homepage gold standard
   ============================================================ */

/* Buttons (chrome) — scoped so body .btn/.btn--lg buttons are untouched */
.utility .btn, .nav .btn, .m-menu .btn, .sticky-cta .btn{
  display:inline-flex;align-items:center;gap:10px;
  font-family:"JetBrains Mono",monospace;
  text-transform:uppercase;letter-spacing:.14em;font-size:13px;font-weight:500;
  padding:15px 24px;border:1px solid transparent;cursor:pointer;
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease, border-color .14s ease;
  white-space:nowrap;line-height:1;
}
.btn-primary{background:var(--yellow);color:var(--ink);border-color:var(--yellow)}
.btn-primary:hover{
  background:var(--yellow-deep);border-color:var(--yellow-deep);
  transform:translate(-2px,-2px);
  box-shadow:4px 4px 0 0 var(--yellow);
}

/* Utility bar */
.utility{
  background:var(--ink);border-bottom:1px solid var(--line-soft);
  font-family:"JetBrains Mono",monospace;font-size:11px;letter-spacing:.14em;text-transform:uppercase;
}
.utility .wrap{display:flex;align-items:center;justify-content:space-between;gap:16px;height:38px}
.utility .u-left{color:var(--bone-dim);display:flex;align-items:center;gap:9px;min-width:0}
.utility .dot{width:6px;height:6px;border-radius:50%;background:var(--yellow);flex:none}
.utility .u-left span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.utility .u-right{color:var(--bone);flex:none;display:inline-flex;align-items:center;gap:7px;transition:color .14s}
.utility .u-right:hover{color:var(--yellow)}
.utility .u-right b{color:var(--yellow);font-weight:500}

/* Nav */
.nav{
  position:sticky;top:0;z-index:60;height:var(--nav-h);
  background:rgba(11,11,11,.82);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  transition:background .2s, border-color .2s;
}
.nav.scrolled{background:rgba(11,11,11,.96)}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;height:100%;gap:24px}
.logo{display:inline-flex;align-items:center;flex:none;line-height:0}
.logo-img{display:block;height:38px;width:auto}
.nav-links{display:flex;align-items:center;gap:26px}
.nav-links a{
  font-family:"JetBrains Mono",monospace;font-size:12px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--bone-dim);transition:color .14s;position:relative;
}
.nav-links a:hover{color:var(--bone)}
.nav-links a.active{color:var(--yellow)}
.nav-right{display:flex;align-items:center;gap:22px}
.nav .btn{padding:11px 18px;font-size:12px}
.burger{display:none;background:none;border:0;cursor:pointer;flex-direction:column;gap:5px;padding:8px}
.burger span{width:22px;height:2px;background:var(--bone);display:block;transition:.2s}

/* Mobile menu */
.m-menu{
  position:fixed;inset:0;z-index:80;background:var(--ink);
  transform:translateX(100%);transition:transform .3s ease;
  display:flex;flex-direction:column;padding:24px var(--gutter);
}
.m-menu.open{transform:translateX(0)}
.m-menu-top{display:flex;align-items:center;justify-content:space-between;height:var(--nav-h)}
.m-menu .close{background:none;border:0;color:var(--bone);font-size:30px;cursor:pointer;line-height:1}
.m-menu nav{display:flex;flex-direction:column;gap:4px;margin-top:24px}
.m-menu nav a{
  font-family:"Bebas Neue",sans-serif;font-size:34px;letter-spacing:.02em;text-transform:uppercase;
  color:var(--bone);padding:10px 0;border-bottom:1px solid var(--line-soft);
}
.m-menu nav a:hover{color:var(--yellow)}
.m-menu .btn{margin-top:28px;justify-content:center;font-size:14px;padding:18px}

/* Footer */
.footer{border-top:1px solid var(--line);background:var(--ink);padding-block:clamp(56px,7vw,88px) 0}
.footer .top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.3fr;gap:40px}
.footer .logo .logo-img{height:56px}
.footer .f-tag{font-size:13px;color:var(--bone-faint);margin-top:16px;max-width:24ch;
  font-family:"JetBrains Mono",monospace;letter-spacing:.06em;line-height:1.7;text-transform:uppercase}
.footer h5{
  font-family:"JetBrains Mono",monospace;font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--bone-faint);margin-bottom:18px;
}
.footer .col a, .footer .col p{display:block;color:var(--bone-dim);font-size:15px;padding:5px 0;transition:color .14s}
.footer .col a:hover{color:var(--yellow)}
.footer .col.contact p{font-size:14px;line-height:1.6}
.footer .col.contact a{padding:0}
.footer .hours-line{display:block;color:var(--bone-faint);font-size:13px;line-height:1.7}
.footer .rating-line{display:inline-flex;align-items:center;gap:6px}
.footer .rating-line .stars{color:var(--yellow)}
.footer .bottom{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  margin-top:clamp(48px,6vw,72px);padding-block:26px;border-top:1px solid var(--line);
  font-family:"JetBrains Mono",monospace;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--bone-faint);
}
.footer .bottom a{color:var(--bone-faint);transition:color .14s}
.footer .bottom a:hover{color:var(--yellow)}
.footer .legal-links a{display:inline}

/* Sticky CTA */
.sticky-cta{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  background:var(--ink);border-top:1px solid var(--line);
  transform:translateY(110%);transition:transform .3s ease;
}
.sticky-cta.show{transform:translateY(0)}
.sticky-cta .wrap{display:flex;align-items:center;justify-content:space-between;gap:20px;height:78px}
.sticky-cta .sc-left{display:flex;align-items:baseline;gap:18px;min-width:0}
.sticky-cta .sc-title{
  font-family:"Bebas Neue",sans-serif;text-transform:uppercase;letter-spacing:.02em;
  font-size:26px;line-height:1;color:var(--bone);white-space:nowrap;
}
.sticky-cta .sc-meta{
  font-family:"JetBrains Mono",monospace;text-transform:uppercase;letter-spacing:.14em;
  font-size:13px;color:var(--yellow);white-space:nowrap;
}
.sticky-cta .btn{padding:15px 26px;font-size:13px}

/* Chrome responsive */
@media (max-width:1180px){
  .nav-links{display:none}
  .burger{display:flex}
  .nav .nav-right > .btn{display:none}
}
@media (max-width:720px){
  .utility .u-left span{font-size:10px}
  .sticky-cta .wrap{height:64px}
  .sticky-cta .sc-meta{display:none}
  .sticky-cta .sc-title{font-size:22px}
  .sticky-cta .btn{padding:13px 18px}
}
@media (max-width:920px){ .footer .top{grid-template-columns:1fr 1fr} }
@media (max-width:520px){ .footer .top{grid-template-columns:1fr} }
@media (min-width:1181px){ .m-menu{display:none} }
