:root {
  --bg: #0B0B0E;
  --card: #141418;
  --card-2: #17171c;
  --border: #2A2A30;
  --gold: #C8A24A;
  --gold-bright: #E0BD63;
  --steel: #9BA0AD;
  --text: #ECECEE;
  --muted: #76767E;
  --r-card: 16px;
  --r-btn: 14px;
  --maxw: 1080px;
  --pad: 24px;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.wrap.narrow { max-width: 620px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--bg);
  padding: 10px 16px; border-radius: var(--r-btn); z-index: 100; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---- Top bar ---- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 14, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { border-radius: 8px; display: block; }
.brand-word {
  font-weight: 800; letter-spacing: 0.06em; font-size: 0.98rem;
  color: var(--gold); text-transform: uppercase;
}
.brand-word-light { color: var(--text); }
.topbar-cta {
  font-weight: 700; font-size: 0.9rem; color: var(--text);
  border: 1px solid var(--border); padding: 9px 16px; border-radius: 999px;
}
.topbar-cta:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Hero ---- */
.hero {
  padding: clamp(56px, 12vw, 132px) 0 clamp(40px, 8vw, 88px);
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(200,162,74,0.10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  color: var(--gold); font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 0.74rem; margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.1rem, 6.4vw, 4rem);
  line-height: 1.04; font-weight: 800; letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero-sub {
  color: var(--steel); font-size: clamp(1rem, 2.4vw, 1.22rem);
  margin: 22px 0 32px; max-width: 52ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; padding: 14px 26px;
  border-radius: var(--r-btn); border: 1px solid transparent;
  cursor: pointer; transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--gold); color: #16130A; }
.btn-primary:hover { background: var(--gold-bright); color: #16130A; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; margin-top: 8px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.metrics {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px;
}
.metrics li {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 999px; padding: 12px 20px;
  display: flex; flex-direction: column;
}
.metric-k { font-weight: 800; color: var(--gold); font-size: 0.98rem; letter-spacing: 0.01em; }
.metric-v { color: var(--muted); font-size: 0.8rem; }

/* ---- Sections ---- */
.section { padding: clamp(48px, 9vw, 96px) 0; }
.section-alt { background: #0d0d11; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.section-lead { color: var(--steel); max-width: 56ch; margin-bottom: 36px; font-size: 1.04rem; }

.grid { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 26px;
}
.pillar h3, .card h3 {
  font-size: 1.16rem; font-weight: 800; margin-bottom: 10px;
}
.pillar h3 { color: var(--gold); }
.card p { color: var(--steel); font-size: 0.97rem; }

.founding { padding: clamp(28px, 5vw, 44px); }
.founding .section-title { margin-bottom: 10px; }
.checklist {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px; margin-top: 18px;
}
.checklist li {
  position: relative; padding-left: 22px; color: var(--text); font-size: 0.98rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 2px; background: var(--gold);
}

/* ---- Sport-specific pathway ---- */
.sportbox { margin-top: 16px; padding: clamp(22px, 4vw, 32px); }
.sportbox-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 20px;
}
.sportbox-head h3 { font-size: 1.16rem; font-weight: 800; margin-bottom: 6px; }
.sportbox-head p { color: var(--steel); font-size: 0.95rem; max-width: 42ch; }
.sportbox-select { min-width: 220px; }
.focus-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.focus-list li {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-btn); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.focus-k { color: var(--gold); font-weight: 700; font-size: 0.98rem; }
.focus-v { color: var(--steel); font-size: 0.86rem; }
.sportbox-note { color: var(--muted); font-size: 0.84rem; margin-top: 16px; }

/* ---- Feature list ---- */
.feature-group { margin-bottom: 36px; }
.feature-group:last-child { margin-bottom: 0; }
.feature-head {
  color: var(--gold); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.feature-list { list-style: none; display: grid; gap: 14px; }
.feature-list li {
  position: relative; padding-left: 22px; color: var(--steel);
  font-size: 0.98rem; line-height: 1.55;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 2px; background: var(--gold);
}
.feature-list strong { color: var(--text); font-weight: 700; }

/* ---- Form ---- */
.form { display: grid; gap: 20px; }
textarea {
  width: 100%; background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r-btn);
  padding: 13px 14px; font-size: 1rem; font-family: inherit;
  resize: vertical; min-height: 120px;
}
textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,0.22);
}
.field { display: grid; gap: 8px; }
.field label, .field legend {
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.01em;
}
.optional { color: var(--muted); font-weight: 500; }
.field-help { color: var(--muted); font-size: 0.84rem; margin: -2px 0 4px; }

input[type="text"], input[type="email"], select {
  width: 100%; background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r-btn);
  padding: 13px 14px; font-size: 1rem; font-family: inherit;
  appearance: none;
}
select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: right 18px center, right 12px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
input:focus, select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,0.22);
}
input::placeholder { color: var(--muted); }

fieldset.field { border: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  position: relative; cursor: pointer;
  border: 1px solid var(--border); background: var(--bg);
  border-radius: 999px; padding: 10px 16px; font-size: 0.92rem;
  color: var(--steel); transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease;
}
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip:has(input:checked) {
  border-color: var(--gold); color: var(--gold);
  background: rgba(200,162,74,0.10);
}
.chip:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(200,162,74,0.22); }

.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--steel); cursor: pointer;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold); }

.safety-note {
  background: rgba(224,189,99,0.08); border: 1px solid rgba(224,189,99,0.3);
  color: var(--gold-bright); border-radius: var(--r-btn);
  padding: 14px 16px; font-size: 0.86rem; line-height: 1.5;
}

.form-error {
  color: #E98B7A; font-size: 0.9rem; font-weight: 600; margin-top: -4px;
}

.test-banner {
  background: rgba(233,139,122,0.12); border: 1px solid rgba(233,139,122,0.45);
  color: #E98B7A; border-radius: var(--r-card);
  padding: 14px 18px; font-size: 0.9rem; margin-bottom: 20px;
}

.success { text-align: center; }
.success h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 10px; }
.success p { color: var(--steel); }
.success-sub { margin-top: 14px; font-size: 0.88rem; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: grid; gap: 12px; }
.footer-inner > div { display: flex; align-items: center; gap: 10px; }
.footer-line { color: var(--muted); font-size: 0.86rem; max-width: 60ch; }
.footer-contact { font-size: 0.88rem; }

/* ---- Responsive ---- */
@media (max-width: 880px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .focus-list { grid-template-columns: 1fr; }
  .sportbox-select { width: 100%; }
}
@media (max-width: 560px) {
  :root { --pad: 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 auto; }
  .topbar-cta { display: none; }
  .metrics { width: 100%; }
  .metrics li { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
