/* ═══════════════════════════════════════════════════════════════
   Obsidian — site styles
   Tokens mirror obsidian-hq/lib/tokens.ts (locked design system):
   dark surfaces, gold is the single accent, 13px card radius.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #09090B;
  --surface: #0F0F12;
  --card: #17171C;
  --border: #252529;
  --gold: #C8A96E;
  --gold-bg: rgba(200, 169, 110, 0.08);
  --gold-border: rgba(200, 169, 110, 0.28);
  --text: #F4F4F5;
  --muted: #71717A;
  --dim: #3F3F46;
  --green: #4ADE80;
  --purple: #A78BFA;
  --radius: 13px;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: 84px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(200, 169, 110, 0.35); color: #fff; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
.section-surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── Type ────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; color: var(--text); }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }
h1 em, h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gold); letter-spacing: -0.01em; }
p { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-bg); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px var(--gold-bg); } 50% { box-shadow: 0 0 0 7px rgba(200,169,110,0.14); } }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-sub { font-size: 1.05rem; margin-top: 18px; max-width: 560px; }
.section-sub a { color: var(--gold); border-bottom: 1px solid var(--gold-border); }

/* ── Ambient layers ──────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.cursor-glow {
  position: fixed; width: 520px; height: 520px; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(200,169,110,0.09) 0%, rgba(200,169,110,0) 62%);
  transform: translate(-50%, -50%); left: 50vw; top: 30vh;
  transition: opacity 0.6s; opacity: 0;
}
.site-header, main, .site-footer { position: relative; z-index: 2; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; font-size: 0.92rem; font-weight: 600; letter-spacing: -0.005em;
  border-radius: 10px; border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn-lg { padding: 16px 28px; font-size: 1rem; border-radius: 12px; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-gold { background: var(--gold); color: #0B0A07; box-shadow: 0 0 0 0 rgba(200,169,110,0); }
.btn-gold:hover { background: #D8BB84; transform: translateY(-2px); box-shadow: 0 12px 34px -8px rgba(200,169,110,0.55); }
.btn-ghost { border-color: var(--border); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--gold-border); background: var(--gold-bg); transform: translateY(-2px); }
.btn-outline { border-color: var(--gold-border); color: var(--gold); background: var(--gold-bg); }
.btn-outline:hover { background: var(--gold); color: #0B0A07; transform: translateY(-2px); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(9, 9, 11, 0.82); }
.header-inner { display: flex; align-items: center; gap: 36px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand-mark { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; transition: transform 0.6s var(--ease); }
.brand:hover .brand-mark { transform: rotate(180deg); }
.brand-word { font-weight: 700; font-size: 1.02rem; letter-spacing: 0.32em; padding-left: 0.1em; }
.site-nav { display: flex; gap: 30px; margin-left: auto; }
.site-nav a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--gold); transition: right 0.3s var(--ease); }
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { right: 0; }
.site-nav .nav-apply { display: none; }
.header-cta { padding: 10px 18px; font-size: 0.85rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 10px; width: 44px; height: 44px; margin-left: auto; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; width: 1100px; height: 700px; left: 50%; top: -280px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.16) 0%, rgba(200,169,110,0.05) 35%, rgba(200,169,110,0) 65%);
  filter: blur(10px);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(244,244,245,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(244,244,245,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%);
}
.hero-mark {
  position: absolute; right: -8vw; top: 40px; width: 52vw; max-width: 720px; height: auto; aspect-ratio: 1;
  color: var(--gold); opacity: 0.055;
  animation: spin 90s linear infinite;
  mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-inner { max-width: 820px; position: relative; }
.hero h1 { margin-bottom: 28px; }
.hero-sub { font-size: 1.15rem; max-width: 600px; margin-bottom: 40px; color: #A1A1AA; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.stat-strip {
  margin-top: 96px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.stat { background: var(--card); padding: 24px 22px; transition: background 0.3s; }
.stat:hover { background: #1B1B21; }
.stat-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.stat-value { font-size: 1.9rem; font-weight: 750; letter-spacing: -0.03em; margin: 6px 0 4px; color: var(--text); display: flex; align-items: baseline; gap: 6px; }
.stat-unit { font-size: 0.85rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.stat-sub { font-size: 0.82rem; color: var(--muted); }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; align-items: center; gap: 36px; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: block; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ── Cards (shared) ──────────────────────────────────────── */
.card-hover { transition: border-color 0.25s ease, transform 0.35s var(--ease), box-shadow 0.35s; }
.card-hover:hover { border-color: var(--gold-border) !important; transform: translateY(-4px); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7); }

/* ── Pillars ─────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; position: relative; overflow: hidden; }
.pillar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 200px at 0% 0%, var(--gold-bg), transparent 70%); opacity: 0; transition: opacity 0.4s; }
.pillar:hover::before { opacity: 1; }
.pillar-num { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 22px; opacity: 0.9; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 0.95rem; margin-bottom: 20px; }
.mini-list { list-style: none; border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.mini-list li { font-size: 0.85rem; color: #A1A1AA; padding-left: 18px; position: relative; }
.mini-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--gold); }

/* ── Bento ───────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; }
.bento-wide { grid-column: span 2; }
.bento-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--gold-bg); border: 1px solid var(--gold-border); display: grid; place-items: center; color: var(--gold); margin-bottom: 22px; }
.bento-icon svg { width: 22px; height: 22px; }
.bento-item h3 { margin-bottom: 10px; }
.bento-item p { font-size: 0.95rem; }
.bento-visual { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 80px 1fr 64px; align-items: center; gap: 14px; font-size: 0.8rem; }
.bar-row span { color: var(--muted); font-weight: 500; }
.bar-row b { color: var(--green); font-weight: 600; text-align: right; }
.bar { height: 6px; border-radius: 99px; background: var(--surface); border: 1px solid var(--border); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, rgba(200,169,110,0.55), var(--gold)); transition: width 1.4s var(--ease); }
.in-view .bar i { width: var(--w); }

/* ── Tracks ──────────────────────────────────────────────── */
.tracks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.track { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 30px; }
.track-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.track p { font-size: 0.95rem; margin-bottom: 22px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 0.9rem; color: #D4D4D8; padding-left: 26px; position: relative; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 15px; height: 15px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
}
.check-list li::after {
  content: ""; position: absolute; left: 5px; top: 8px; width: 5px; height: 3px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg);
}
.chip { display: inline-flex; align-items: center; padding: 3px 11px; border-radius: 99px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; border: 1px solid; }
.chip-gold { color: var(--gold); background: var(--gold-bg); border-color: var(--gold-border); }
.chip-green { color: var(--green); background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.3); }
.chip-purple { color: var(--purple); background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.3); }
.tiers { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 20px 24px; border: 1px dashed var(--border); border-radius: var(--radius); }
.tiers-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.tiers-note { font-size: 0.85rem; color: var(--muted); margin-left: auto; max-width: 460px; }

/* ── Quotes ──────────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 30px; display: flex; flex-direction: column; }
.quote-mark { font-family: var(--serif); font-size: 4rem; line-height: 0.6; color: var(--gold); margin-bottom: 20px; }
.quote blockquote { font-size: 1.05rem; line-height: 1.55; color: #E4E4E7; letter-spacing: -0.01em; margin-bottom: 26px; }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote figcaption div { display: flex; flex-direction: column; line-height: 1.3; }
.quote figcaption strong { font-size: 0.9rem; }
.quote figcaption span:not(.avatar) { font-size: 0.78rem; color: var(--muted); }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-bg); border: 1px solid var(--gold-border); color: var(--gold); display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

/* ── Coach ───────────────────────────────────────────────── */
.coach-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.coach-portrait { position: relative; }
.portrait-frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 5;
  background: var(--card); position: relative;
}
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,9,11,0.85)); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); transition: transform 1.2s var(--ease); }
.coach-portrait:hover .portrait-frame img { transform: scale(1.03); }
.portrait-badge {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(15,15,18,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border); border-radius: 11px; padding: 12px 14px;
}
.badge-mark { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
.portrait-badge div { display: flex; flex-direction: column; line-height: 1.3; }
.portrait-badge strong { font-size: 0.92rem; }
.portrait-badge span { font-size: 0.75rem; color: var(--muted); }
.coach-text h2 { margin-bottom: 22px; }
.coach-text p { margin-bottom: 16px; }
.coach-text .check-list { margin: 26px 0 32px; }

/* ── Timeline ────────────────────────────────────────────── */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; counter-reset: step; }
.timeline::before { content: ""; position: absolute; left: 20px; right: 20px; top: 22px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-border) 15%, var(--gold-border) 85%, transparent); }
.timeline li { position: relative; padding-top: 68px; }
.tl-num {
  position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--gold-border); color: var(--gold);
  display: grid; place-items: center; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 0 0 8px var(--surface);
}
.timeline h4 { margin-bottom: 8px; }
.timeline p { font-size: 0.92rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.faq-grid .section-head { margin-bottom: 0; position: sticky; top: 110px; }
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em;
  position: relative; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before, .faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 1.5px; background: var(--gold); transition: transform 0.3s var(--ease);
}
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-item[open] summary { color: var(--gold); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p { padding: 0 44px 24px 0; font-size: 0.95rem; }

/* ── Apply ───────────────────────────────────────────────── */
.apply { overflow: hidden; border-top: 1px solid var(--border); background: var(--surface); }
.apply-glow { position: absolute; width: 900px; height: 900px; right: -300px; bottom: -500px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,110,0.14), transparent 60%); pointer-events: none; }
.apply-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; position: relative; }
.apply-text h2 { margin-bottom: 22px; }
.apply-text p { font-size: 1.02rem; margin-bottom: 32px; }
.apply-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.apply-meta div { background: var(--card); padding: 16px 18px; display: flex; flex-direction: column; gap: 2px; }
.apply-meta strong { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.apply-meta span { font-size: 0.85rem; color: #D4D4D8; }

.apply-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 40px 100px -40px rgba(0,0,0,0.8); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.apply-form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.apply-form input, .apply-form select, .apply-form textarea {
  font: inherit; font-size: 0.95rem; font-weight: 400; letter-spacing: 0; text-transform: none;
  background: var(--surface); color: var(--text); border: 1px solid var(--border); border-radius: 9px; padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.apply-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.apply-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.apply-form input::placeholder, .apply-form textarea::placeholder { color: var(--dim); }
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-bg); }
.apply-form .is-invalid { border-color: #F87171 !important; }
.form-fineprint { font-size: 0.78rem; color: var(--muted); text-align: center; }
.form-fineprint.ok { color: var(--green); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); background: var(--bg); padding: 64px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-brand p { margin-top: 18px; font-size: 0.9rem; max-width: 320px; }
.footer-links { display: flex; gap: 64px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; font-weight: 600; }
.footer-links a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 0.78rem; color: var(--dim); }
.footer-disclaimer { max-width: 520px; }

/* ── Reveal animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .in-view .bar i { width: var(--w); }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 96px 0; }
  .pillars, .tracks, .quotes, .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .coach-grid, .faq-grid, .apply-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid .section-head { position: static; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
  .tiers-note { margin-left: 0; max-width: none; }
  .coach-portrait { max-width: 460px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 80px 0; }
  .header-inner { height: 66px; gap: 16px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-word { font-size: 0.92rem; letter-spacing: 0.28em; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 66px; left: 0; right: 0; height: calc(100vh - 66px); height: calc(100dvh - 66px); z-index: 49; overflow-y: auto;
    background: rgba(9,9,11,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    flex-direction: column; gap: 0; padding: 12px 16px 32px; margin: 0;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.3s var(--ease);
  }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { font-size: 1.2rem; font-weight: 600; color: var(--text); padding: 18px 4px; border-bottom: 1px solid var(--border); }
  .site-nav a::after { display: none; }
  .site-nav .nav-apply { display: block; color: var(--gold); border-bottom: none; }
  .hero { padding: 72px 0 56px; }
  .hero-mark { width: 90vw; right: -30vw; top: -20px; opacity: 0.045; }
  .hero-sub { font-size: 1.02rem; }
  .hero-actions .btn { width: 100%; }
  .stat-strip { margin-top: 56px; grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px 16px; }
  .stat-value { font-size: 1.5rem; }
  .section-head { margin-bottom: 36px; }
  .pillars, .tracks, .quotes, .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento-wide { grid-column: auto; }
  .pillar, .track, .quote, .bento-item { padding: 26px 22px; }
  .timeline { grid-template-columns: 1fr; row-gap: 28px; }
  .timeline li { padding-top: 0; padding-left: 62px; }
  .form-row { grid-template-columns: 1fr; }
  .apply-form { padding: 22px 18px; }
  .apply-meta { grid-template-columns: 1fr; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; }
}
