/*
  CLIENT: B6 Fitness 360
  ART DIRECTION: Iron-temple bodybuilding aggression. Black void floor, brand
                 yellow as the heat signature, fire-orange for intensity.
                 Display type carved like dumbbell weights. Heavy grain.
                 Equinox + Gold's Gym + Akira poster — dialled to Kondotty.
  PALETTE: #050505 (void), #0e0e10 (steel), #f7c800 (B6 yellow), #ff4d00
           (fire), #f5f5f5 (chalk)
  TYPOGRAPHY: Bebas Neue (display, brutalist) + Clash Display (subheads) +
              General Sans (body)
  MOOD: aggressive, disciplined, regional, premium-but-raw, iron-cult
*/

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; max-width: 100vw; }
html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100dvh;
  width: 100%;
  position: relative;
}
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--brand-yellow); color: var(--color-void); }

/* ============ TOKENS ============ */
:root {
  --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-display-2: 'Clash Display', 'Inter', system-ui, sans-serif;
  --font-body: 'General Sans', 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --color-void: #050505;
  --color-bg: #050505;
  --color-surface: #0d0d10;
  --color-panel: #161618;
  --color-elev: #1f1f23;
  --color-text: #f5f5f5;
  --color-text-mute: #adadb1;
  --color-text-dim: #7c7c81;
  --color-line: rgba(255,255,255,0.08);
  --color-line-strong: rgba(255,255,255,0.18);

  /* BRAND COLORS */
  --brand-yellow: #f7c800;
  --brand-yellow-dark: #d4a700;
  --brand-yellow-glow: rgba(247,200,0,0.18);
  --brand-fire: #ff4d00;
  --brand-fire-glow: rgba(255,77,0,0.16);

  --color-accent: var(--brand-yellow);

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;

  --r-1: 4px; --r-2: 8px; --r-3: 12px; --r-4: 16px; --r-5: 20px;

  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 60px var(--brand-yellow-glow);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-transform: uppercase;
}
h1 { font-size: clamp(3.5rem, 12vw, 13rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 7vw, 6rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.4rem); }
h4 { font-size: 1.05rem; letter-spacing: 0.05em; }

em {
  font-style: normal;
  color: var(--brand-yellow);
}

p {
  font-size: 1rem;
  color: var(--color-text-mute);
  font-family: var(--font-body);
  text-transform: none;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.eyebrow .bar {
  width: 32px;
  height: 2px;
  background: var(--brand-yellow);
}
.eyebrow-light { color: rgba(255,255,255,0.7); }
.eyebrow-light .bar { background: var(--brand-yellow); }

.section-title { margin-bottom: var(--s-6); }
.section-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--color-text-mute);
  max-width: 620px;
  line-height: 1.55;
  font-family: var(--font-body);
  text-transform: none;
}

.lede {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: var(--s-6);
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 500;
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; padding: clamp(72px, 11vw, 160px) 0; overflow-x: clip; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 26px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-xl { padding: 18px 36px; font-size: 1.15rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brand-yellow);
  color: var(--color-void);
  border-color: var(--brand-yellow);
}
.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-line {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-line-strong);
}
.btn-line:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }

.btn-line-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-line-light:hover { background: var(--brand-yellow); color: var(--color-void); border-color: var(--brand-yellow); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-5) 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: var(--s-3) 0;
  border-bottom-color: var(--color-line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}
.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #050505;
  flex-shrink: 0;
}
.footer-brand .logo-mark { width: 64px; height: 64px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  color: var(--color-text);
}
.logo-text em {
  color: var(--brand-yellow);
  margin-left: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  position: relative;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--brand-yellow); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--brand-yellow);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-text-mute);
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--brand-yellow); }
.nav-phone svg { width: 14px; height: 14px; color: var(--brand-yellow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--brand-yellow); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--brand-yellow); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-void);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu-inner { text-align: center; width: 100%; padding: var(--s-12); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-12);
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.mobile-menu nav a:hover { color: var(--brand-yellow); }
.mobile-menu-foot { display: flex; flex-direction: column; gap: var(--s-4); align-items: center; }
.mobile-cta {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brand-yellow);
  letter-spacing: 0.05em;
}
.mobile-socials { display: flex; gap: var(--s-6); color: var(--color-text-mute); font-size: 0.9rem; }

@media (max-width: 1000px) {
  .nav-links, .nav-phone { display: none; }
}
@media (max-width: 700px) {
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: contrast(1.1) brightness(0.7) saturate(1.05);
  will-change: transform;
  transform: translateZ(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.45) 40%, rgba(5,5,5,0.85) 85%, var(--color-void) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.55) 0%, transparent 40%, transparent 60%, rgba(5,5,5,0.35) 100%),
    radial-gradient(ellipse 70% 60% at 80% 20%, var(--brand-yellow-glow), transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 100%, var(--brand-fire-glow), transparent 65%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--brand-yellow);
  margin-bottom: var(--s-6);
}
.pretitle-line {
  width: 40px;
  height: 2px;
  background: var(--brand-yellow);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14.5vw, 14rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--s-8);
  text-shadow: 0 8px 60px rgba(0,0,0,0.4);
}
.hero-title .line { display: block; }
.hero-title .line-3 { color: var(--brand-yellow); display: block; }
.hero-title .line-4 { display: block; }
.hero-title .dot { color: var(--brand-fire); }

.hero-tagline-strip {
  border-left: 3px solid var(--brand-yellow);
  padding: 6px 0 6px var(--s-5);
  margin-bottom: var(--s-10);
  max-width: 580px;
}
.hero-tagline-strip p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.hero-tagline-strip em {
  color: var(--brand-yellow);
  font-style: italic;
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-16);
}

.hero-foot {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 140px;
  padding: 0 var(--s-5);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-stat strong .unit {
  font-size: 0.5em;
  color: var(--brand-yellow);
  margin-left: 4px;
  letter-spacing: 0.05em;
}
.hero-stat > span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-mute);
}

.hero-scroll {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.hero-scroll svg {
  width: 16px; height: 16px;
  color: var(--brand-yellow);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 700px) {
  .hero-foot { gap: var(--s-3); }
  .hero-stat { min-width: 45%; border-right: none; padding: var(--s-3) 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ============ TICKER ============ */
.ticker {
  padding: var(--s-5) 0;
  background: var(--brand-yellow);
  color: var(--color-void);
  overflow: hidden;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.ticker-track {
  display: flex;
  gap: var(--s-6);
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ticker-track .sep { font-size: 1.5rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ STORY ============ */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
@media (max-width: 1000px) { .story-grid { grid-template-columns: 1fr; gap: var(--s-12); } }

.story-text .section-title { margin-bottom: var(--s-8); line-height: 0.9; }
.story-pillars {
  margin-top: var(--s-12);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-line);
}
.pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-6);
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--color-line);
  align-items: start;
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--brand-yellow);
  font-weight: 500;
  padding-top: 6px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--s-2);
  letter-spacing: 0.02em;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--color-text-mute);
  line-height: 1.55;
}

.story-visual {
  position: sticky;
  top: 120px;
}
.visual-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.vc {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  filter: contrast(1.05);
}
.vc-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.vc-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.vc-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.vc img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.92) saturate(1.05);
  transition: filter 0.5s, transform 0.6s var(--ease-out);
}
.vc:hover img { filter: contrast(1.08) brightness(1.05) saturate(1.1); transform: scale(1.04); }
.vc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.vc-tag {
  position: absolute;
  bottom: var(--s-3);
  left: var(--s-3);
  z-index: 2;
  background: var(--brand-yellow);
  color: var(--color-void);
  padding: 5px 10px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.visual-stat {
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--brand-yellow);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--color-surface);
  border-radius: 0 4px 4px 0;
}
.visual-stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1;
}
.visual-stat .stat-unit {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brand-yellow);
  letter-spacing: 0.1em;
}
.visual-stat .stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  margin-top: var(--s-2);
}

/* ============ FOUNDERS ============ */
.founders {
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
}
.founders-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--s-16);
  align-items: center;
}
.founders-visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.founders-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(35%) contrast(1.06) brightness(0.92);
  transition: filter 0.6s var(--ease-out), transform 0.8s var(--ease-out);
}
.founders-visual:hover img { filter: grayscale(0%) contrast(1.04) brightness(1); transform: scale(1.03); }
.founders-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,0.75) 100%);
  pointer-events: none;
}
.founders-badge {
  position: absolute;
  top: var(--s-5); left: var(--s-5);
  z-index: 2;
  background: var(--brand-yellow);
  color: var(--color-void);
  border-radius: 4px;
  padding: var(--s-2) var(--s-4);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.founders-badge .fb-line { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; }
.founders-badge .fb-place { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; }
.founders-cap {
  position: absolute;
  bottom: var(--s-4); left: var(--s-5); right: var(--s-5);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.founders-note .section-title { margin-bottom: var(--s-6); }
.founders-note .lede { margin-bottom: var(--s-4); }
.founders-note > p { margin-bottom: var(--s-5); }
.founders-pull {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem) !important;
  line-height: 1.4;
  color: var(--color-text) !important;
  border-left: 3px solid var(--brand-yellow);
  padding-left: var(--s-5);
  margin: var(--s-6) 0 !important;
}
.founders-sign {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--s-10);
}
.sign-name {
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brand-yellow);
}
.sign-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-mute);
  margin-top: var(--s-2);
}
.founders-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--color-line);
}
.fp {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--color-line);
  align-items: start;
}
.fp-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--brand-yellow);
  padding-top: 4px;
}
.fp h3 { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.02em; margin-bottom: 2px; }
.fp p { font-size: 0.95rem; color: var(--color-text-mute); line-height: 1.5; }
@media (max-width: 1000px) {
  .founders-grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .founders-visual img { aspect-ratio: 16/11; }
}

/* ============ STATS BAR ============ */
.stats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--s-16) 0;
  position: relative;
}
.stats::before, .stats::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--brand-yellow);
  opacity: 0.4;
}
.stats::before { top: -1px; }
.stats::after { bottom: -1px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: 0 var(--s-4);
  border-left: 1px solid var(--color-line);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--color-text);
  display: flex;
  align-items: baseline;
}
.stat-value > span:not(.stat-num) { color: var(--brand-yellow); margin-left: 2px; }
.stat-key {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-mute);
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ============ SECTION HEADS ============ */
.section-head { margin-bottom: var(--s-16); max-width: 800px; }

/* ============ PROGRAMS ============ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(420px, auto);
  gap: var(--s-3);
}
.program-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
  grid-column: span 2;
}
.program-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-yellow);
}
.program-hero { grid-column: span 4; grid-row: span 1; }

.program-img {
  position: relative;
  flex: 0 0 50%;
  overflow: hidden;
  min-height: 220px;
}
.program-card.program-hero .program-img { flex: 0 0 60%; min-height: 280px; }
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85) saturate(1.05);
  transition: filter 0.5s, transform 0.6s var(--ease-out);
}
.program-card:hover .program-img img {
  filter: contrast(1.08) brightness(1) saturate(1.1);
  transform: scale(1.06);
}
.program-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,5,5,0.65) 100%);
  pointer-events: none;
}

.program-body {
  padding: var(--s-6) var(--s-6) var(--s-8);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.program-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--brand-yellow);
  margin-bottom: var(--s-3);
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin-bottom: var(--s-3);
  letter-spacing: 0.01em;
  line-height: 0.95;
}
.program-card p {
  color: var(--color-text-mute);
  margin-bottom: var(--s-5);
  flex-grow: 1;
  line-height: 1.55;
  font-size: 0.95rem;
}
.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}
.program-tags li {
  padding: 5px 12px;
  border: 1px solid var(--brand-yellow);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  border-radius: 2px;
}
.program-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  transition: color 0.3s, gap 0.3s;
}
.program-link span { color: var(--brand-yellow); transition: transform 0.3s; }
.program-link:hover { color: var(--brand-yellow); gap: var(--s-3); }

@media (max-width: 1000px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card, .program-hero { grid-column: span 1; }
  .program-hero { grid-column: span 2; }
}
@media (max-width: 600px) {
  .program-grid { grid-template-columns: 1fr; }
  .program-hero { grid-column: span 1; }
}

/* ============ METHOD ============ */
.method {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  position: relative;
}
.method-head {
  text-align: center;
  margin: 0 auto var(--s-16);
  max-width: 800px;
}
.method-head .eyebrow { justify-content: center; }
.method-head .section-sub { margin: 0 auto; }
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  position: relative;
}
.step {
  position: relative;
  padding: var(--s-6);
  text-align: center;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.step:hover { border-color: var(--brand-yellow); transform: translateY(-4px); }
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--s-5);
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brand-yellow);
  letter-spacing: 0.05em;
  transition: all 0.4s;
}
.step:hover .step-num {
  background: var(--brand-yellow);
  color: var(--color-void);
  box-shadow: var(--shadow-glow);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--s-3);
  letter-spacing: 0.05em;
}
.step p { font-size: 0.92rem; line-height: 1.55; color: var(--color-text-mute); }
@media (max-width: 800px) { .method-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .method-steps { grid-template-columns: 1fr; } }

/* ============ GALLERY ============ */
.gallery { padding-bottom: 0; }
.gallery-head { text-align: center; margin: 0 auto var(--s-12); }
.gallery-head .eyebrow { justify-content: center; }

.gallery-strip {
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: var(--s-12);
}
.gallery-row {
  display: flex;
  gap: var(--s-3);
  padding: 0 var(--gutter);
  width: max-content;
}
.g-tile {
  position: relative;
  flex: 0 0 320px;
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-panel);
}
.g-tile.g-wide { flex: 0 0 600px; }
.g-tile.g-tall { height: 540px; }
.g-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.92) saturate(1.05);
  transition: filter 0.5s, transform 0.6s var(--ease-out);
}
.g-tile:hover img { filter: contrast(1.08) brightness(1.05) saturate(1.1); transform: scale(1.06); }
.g-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.85) 100%);
  pointer-events: none;
}
.g-tile figcaption {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-5);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.g-tile figcaption span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--brand-yellow);
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* ============ COACHES ============ */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.coach-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}
.coach-card:hover { transform: translateY(-6px); border-color: var(--brand-yellow); }

.coach-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.coach-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.85) saturate(1.05);
  transition: filter 0.5s, transform 0.6s var(--ease-out);
}
.coach-card:hover .coach-img img { filter: contrast(1.08) brightness(1) saturate(1.1); transform: scale(1.04); }
.coach-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,5,5,0.85) 100%);
  pointer-events: none;
}
.coach-cred {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  z-index: 3;
  background: var(--brand-yellow);
  color: var(--color-void);
  padding: 5px 10px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.coach-meta { padding: var(--s-5); }
.coach-meta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.coach-role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--color-text-mute);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--s-3);
}
.coach-tags { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.coach-tags li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--brand-yellow);
  padding: 4px 8px;
  border: 1px solid var(--color-line);
  border-radius: 2px;
}
@media (max-width: 1000px) { .coach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .coach-grid { grid-template-columns: 1fr; } }

/* ============ PROOF ============ */
.proof {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--s-16);
  align-items: center;
}
.proof-rating .section-title { margin-bottom: var(--s-8); }
.rating-big {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.rating-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.8;
  color: var(--brand-yellow);
  letter-spacing: 0.01em;
}
.rating-meta { display: flex; flex-direction: column; gap: var(--s-2); }
.rating-stars {
  color: var(--brand-yellow);
  font-size: 1.5rem;
  letter-spacing: 4px;
}
.rating-meta span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-mute);
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.proof-stats > div { display: flex; flex-direction: column; gap: 4px; }
.proof-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-text);
  letter-spacing: 0.01em;
  line-height: 1;
}
.proof-stats span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-mute);
}
.proof-quotes { display: flex; flex-direction: column; gap: var(--s-4); }
.pq {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--brand-yellow);
  border-radius: 4px;
  padding: var(--s-6);
}
.pq-stars { color: var(--brand-yellow); letter-spacing: 3px; font-size: 0.85rem; margin-bottom: var(--s-3); }
.pq p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: var(--s-3);
}
.pq cite {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  font-style: normal;
}
@media (max-width: 1000px) {
  .proof-grid { grid-template-columns: 1fr; gap: var(--s-10); }
}

/* ============ COMMUNITY / IG WALL ============ */
.community {
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
  overflow: hidden;
}
.community-head { text-align: center; margin: 0 auto var(--s-12); }
.community-head .eyebrow { justify-content: center; }
.community-head .section-sub { margin: 0 auto; }
.community-head strong { color: var(--brand-yellow); }
.ig-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ig-track {
  display: flex;
  gap: var(--s-3);
  width: max-content;
  animation: ig-scroll 48s linear infinite;
}
.community:hover .ig-track { animation-play-state: paused; }
.ig-tile {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 300px);
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-line);
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(55%) contrast(1.05) brightness(0.85);
  transition: filter 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.ig-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(247,200,0,0.0) 100%);
  opacity: 0; transition: opacity .4s;
}
.ig-tile:hover img { filter: grayscale(0%) contrast(1.05) brightness(1); transform: scale(1.05); }
.community-cta { text-align: center; margin-top: var(--s-12); }
@keyframes ig-scroll { to { transform: translateX(calc(-50% - var(--s-2) / 2)); } }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}
.price-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.price-card:hover { transform: translateY(-4px); border-color: var(--color-line-strong); }

.price-feature-card {
  background:
    linear-gradient(180deg, rgba(247,200,0,0.08) 0%, var(--color-surface) 100%);
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-glow);
}
.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-yellow);
  color: var(--color-void);
  padding: 6px 14px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-head h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: var(--s-2);
  letter-spacing: 0.02em;
}
.price-head p { font-size: 0.92rem; }
.price-amt {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--color-line);
}
.amt {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.strike {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-text-dim);
  text-decoration: line-through;
  text-decoration-color: var(--brand-fire);
  text-decoration-thickness: 2px;
}
.per { font-family: var(--font-mono); font-size: 0.85rem; color: var(--color-text-mute); }

.pricing-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.pricing-extras .extra {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s-4) var(--s-5);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--brand-yellow);
  border-radius: 4px;
}
.pricing-extras .extra strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
.pricing-extras .extra span {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--brand-yellow);
}
.pricing-extras .extra span small {
  color: var(--color-text-mute);
  font-size: 0.8rem;
}
.pricing-extras .extra span em {
  color: var(--color-text-mute);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 800px) { .pricing-extras { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pricing-extras { grid-template-columns: 1fr; } }

.price-feat {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex-grow: 1;
  margin-bottom: var(--s-2);
}
.price-feat li {
  font-size: 0.95rem;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  line-height: 1.4;
}
.price-feat li::before {
  content: '✓';
  font-family: var(--font-display);
  color: var(--brand-yellow);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0;
}

.pricing-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--color-text-dim);
}
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(80px, 12vw, 180px) 0;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.2) brightness(0.4);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.5) 100%),
    radial-gradient(ellipse 60% 50% at 80% 30%, var(--brand-yellow-glow), transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 100%, var(--brand-fire-glow), transparent 60%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.cta-text h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  color: #fff;
  margin-bottom: var(--s-6);
  line-height: 0.88;
}
.cta-text h2 em { color: var(--brand-yellow); }
.cta-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: var(--s-8);
  line-height: 1.5;
}
.cta-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.cta-stat { text-align: center; }
.cta-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(10rem, 22vw, 22rem);
  line-height: 0.84;
  color: var(--brand-yellow);
  letter-spacing: -0.02em;
  text-shadow: 0 0 100px var(--brand-yellow-glow);
}
.cta-cap {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: -10px;
}
.cta-cap em { color: var(--brand-yellow); }
@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; gap: var(--s-8); text-align: center; }
  .cta-tagline-strip, .cta-text p { margin-left: auto; margin-right: auto; }
  .cta-stat { order: -1; }
  .cta-actions { justify-content: center; }
}

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-16);
  align-items: start;
}
@media (max-width: 1000px) { .faq-grid { grid-template-columns: 1fr; gap: var(--s-8); } }

.faq-head .section-title { margin-bottom: var(--s-5); }
.faq-head p { margin-bottom: var(--s-6); }
.faq-call {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 20px;
  border: 1px solid var(--brand-yellow);
  border-radius: 2px;
  color: var(--brand-yellow);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: background 0.3s, color 0.3s;
}
.faq-call:hover { background: var(--brand-yellow); color: var(--color-void); }
.faq-call svg { width: 14px; height: 14px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-line);
}
.faq-item { border-bottom: 1px solid var(--color-line); padding: var(--s-6) 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover span:first-child { color: var(--brand-yellow); }
.plus {
  width: 28px; height: 28px;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s;
}
.plus::before, .plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--color-text);
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .plus { background: var(--brand-yellow); border-color: var(--brand-yellow); }
.faq-item[open] .plus::before, .faq-item[open] .plus::after { background: var(--color-void); }
.faq-item[open] .plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item p {
  margin-top: var(--s-4);
  font-size: 1rem;
  color: var(--color-text-mute);
  line-height: 1.6;
  max-width: 720px;
}

/* ============ CONTACT ============ */
.contact { background: var(--color-surface); border-top: 1px solid var(--color-line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
}
@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; gap: var(--s-12); } }

.contact-info .section-title { margin-bottom: var(--s-5); }
.contact-block { padding: var(--s-5) 0; border-bottom: 1px solid var(--color-line); }
.contact-block:last-child { border-bottom: none; }
.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: var(--s-2);
}
.contact-block p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.5;
}
.contact-block p a { color: var(--brand-yellow); transition: opacity 0.3s; }
.contact-block p a:hover { opacity: 0.7; }

.socials { display: flex; flex-direction: column; gap: var(--s-2); }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.3s;
}
.socials a:hover { color: var(--brand-yellow); }
.socials svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--brand-yellow);
  border-radius: 4px;
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
  overflow: hidden;
}
.form-head h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: var(--s-2);
  letter-spacing: 0.02em;
}
.form-head p { font-size: 0.95rem; color: var(--color-text-mute); }
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}
.field input, .field select {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 2px;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.3s;
  font-family: var(--font-body);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brand-yellow); }
.field input::placeholder { color: var(--color-text-dim); }

.form-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--color-text-dim);
  text-align: center;
}
.form-success {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  text-align: center;
  padding: var(--s-8);
}
.form-success svg {
  width: 56px; height: 56px;
  color: var(--color-void);
  background: var(--brand-yellow);
  border-radius: 50%;
  padding: 12px;
}
.form-success strong { font-family: var(--font-display); font-size: 1.6rem; }
.form-success span { color: var(--color-text-mute); }
.contact-form.submitted .form-success { display: flex; }

/* ============ FOOTER ============ */
.footer {
  background: var(--color-void);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: var(--s-20);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: var(--s-4); }
.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
  line-height: 1.5;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s, transform 0.3s;
  font-family: var(--font-body);
}
.footer-col a:hover { color: var(--brand-yellow); transform: translateX(4px); }

.footer-mega {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 22vw, 22rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-align: center;
  background: linear-gradient(180deg, rgba(247,200,0,0.18) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: var(--s-12) 0;
  -webkit-text-stroke: 1px rgba(247,200,0,0.15);
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-6) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.footer-bottom a { color: var(--brand-yellow); }
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: var(--s-2); text-align: center; }
}

/* ============ PREMIUM POLISH ============ */
/* Cursor spotlight on cards (desktop) */
.program-card, .coach-card, .price-card, .step {
  --mx: 50%; --my: 0%;
}
.program-card::after, .coach-card::after, .price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx) var(--my), var(--brand-yellow-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.program-card:hover::after, .coach-card:hover::after, .price-card:hover::after { opacity: 1; }
.program-card > *, .coach-meta { position: relative; z-index: 2; }

/* Hairline yellow top-edge that draws in on card hover */
.program-card, .coach-card, .price-card { will-change: transform; }

/* Animated heading underline on section titles inside light/dark heads */
.section-title { position: relative; }

/* Image kenburns idle on hero only */
@media (hover: hover) {
  .ig-tile:hover { z-index: 3; }
}

/* Focus-visible accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============ MOBILE READABILITY ============ */
@media (max-width: 600px) {
  .program-card p, .pillar p, .step p, .price-head p,
  .coach-role, .price-feat li, .program-tags li,
  .contact-block p, .faq-item p, .pq p, .fp p {
    font-size: 16px;
    line-height: 1.55;
  }
  .program-card h3 { font-size: 1.6rem; }
  .proof-stats { gap: var(--s-3); }
  .proof-stats strong { font-size: 1.5rem; }
  /* tap targets */
  .nav-links a, .footer-col a, .socials a { padding-top: 4px; padding-bottom: 4px; }
}

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track, .ig-track { animation: none !important; }
}
