:root {
  --navy: #15395d;
  --navy-deep: #071018;
  --navy-mid: #0b2238;
  --navy-soft: #1e4a73;
  --gold: #ffc700;
  --gold-dim: #e6b300;
  --gold-light: #ffe08a;
  --gold-glow: rgba(255, 199, 0, 0.35);
  --gold-soft: rgba(255, 199, 0, 0.12);
  --white: #f7f9fc;
  --muted: #9eb4c9;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(10, 28, 48, 0.78);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: var(--navy-deep);
  overflow-x: hidden;
}

/* Animated ambient background */
.ambient-bg {
  position: fixed;
  inset: -8% 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}

.ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb-drift 18s ease-in-out infinite;
}

.ambient-orb-1 {
  width: 520px;
  height: 520px;
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.18), transparent 70%);
}

.ambient-orb-2 {
  width: 480px;
  height: 480px;
  top: 35%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.22), transparent 70%);
  animation-delay: -6s;
}

.ambient-orb-3 {
  width: 400px;
  height: 400px;
  bottom: -8%;
  left: 30%;
  background: radial-gradient(circle, rgba(21, 57, 93, 0.8), transparent 70%);
  animation-delay: -12s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.06); }
  66% { transform: translate(-30px, 24px) scale(0.94); }
}

h1, h2, h3, .eyebrow, .track-tab, .league-step-label {
  font-family: "Montserrat", sans-serif;
}

a { color: inherit; text-decoration: none; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

main {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 100;
  background: rgba(7, 16, 24, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 24, 0.92);
  border-color: rgba(255, 199, 0, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  height: 42px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, #ffd633, var(--gold) 50%, #e6b300);
  color: var(--navy-deep);
  box-shadow: 0 10px 32px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-gold:hover::after {
  transform: translateX(120%);
}

.btn-gold:hover { background: linear-gradient(135deg, #ffe566, #ffda47); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-soft);
}

.text-gold { color: var(--gold); }

.text-shimmer {
  background: linear-gradient(
    120deg,
    var(--gold) 0%,
    #fff4b8 25%,
    var(--gold) 50%,
    #ff9f1c 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 4s linear infinite;
}

@keyframes text-shimmer {
  to { background-position: 200% center; }
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 20px 72px;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow-glow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 0, 0.35);
  background: rgba(255, 199, 0, 0.08);
  box-shadow: 0 0 24px var(--gold-soft);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.btn-sm { padding: 10px 18px; font-size: 0.82rem; }

.hero-lede {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.league-ticker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 199, 0, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 199, 0, 0.08);
}

.ticker-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.ticker-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--gold);
  min-width: 6ch;
}

/* Hero proof card */
.proof-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(10, 28, 48, 0.65);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
}

.proof-card-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 199, 0, 0.55),
    rgba(255, 228, 138, 0.35),
    rgba(255, 199, 0, 0.2)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-glow 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes border-glow {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.proof-kicker {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.proof-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  color: var(--muted);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-list li:last-child { border-bottom: 0; }

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.proof-leagues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.proof-badge {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 0, 0.35);
  background: rgba(255, 199, 0, 0.08);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.proof-quote {
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 20px;
}

.section-dark {
  max-width: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(255, 199, 0, 0.02), rgba(0, 0, 0, 0.22));
  border-block: 1px solid var(--line);
}

.section-dark > * {
  max-width: 1180px;
  margin-inline: auto;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  background: linear-gradient(135deg, var(--white) 20%, rgba(255, 255, 255, 0.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head .eyebrow {
  position: relative;
  padding-bottom: 10px;
}

.section-head .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
}

.section-lede {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}

/* Track tabs */
.track-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.track-tab {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.track-tab.is-active,
.track-tab:hover {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.track-panel {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(10, 28, 48, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s;
}

.track-panel.is-active {
  display: grid;
  animation: panel-in 0.45s ease;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.track-panel h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.track-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.topic-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.topic-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.meter-card {
  height: 100%;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meter-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.meter-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.meter-caption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Program */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-step {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(10, 28, 48, 0.72);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.program-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 199, 0, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), 0 0 40px var(--gold-soft);
}

.program-num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.program-step h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.program-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Pro cards */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pro-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  perspective: 1200px;
  cursor: pointer;
}

.pro-card-front,
.pro-card-back {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backface-visibility: hidden;
  transition: transform 0.55s ease;
  overflow: hidden;
}

.pro-card-front img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pro-card-meta {
  padding: 18px;
}

.pro-card-meta h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.pro-role {
  margin: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
}

.pro-clients {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.pro-hint {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pro-card-back {
  transform: rotateY(180deg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pro-leagues {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 12px;
}

.pro-card-back p:last-of-type {
  color: var(--muted);
  line-height: 1.7;
}

.pro-card.is-flipped .pro-card-front { transform: rotateY(-180deg); }
.pro-card.is-flipped .pro-card-back { transform: rotateY(0); }

.pro-close {
  margin-top: 18px;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

/* League ladder */
.league-ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.league-step {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.league-step.is-active,
.league-step:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.league-step-label {
  font-weight: 800;
  font-size: 0.95rem;
}

.league-panel {
  display: none;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.league-panel.is-active { display: block; }

.league-panel h3 {
  margin: 0 0 10px;
  color: var(--gold);
}

.league-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(10, 28, 48, 0.72);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 199, 0, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 800;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* Join */
.join-section { padding-bottom: 100px; }

.join-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 36px;
  border: 1px solid rgba(255, 199, 0, 0.3);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at top right, rgba(255, 199, 0, 0.14), transparent 42%),
    radial-gradient(circle at bottom left, rgba(255, 199, 0, 0.06), transparent 40%),
    rgba(10, 28, 48, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 80px rgba(255, 199, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.join-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 199, 0, 0.06), transparent 30%);
  animation: join-spin 12s linear infinite;
  pointer-events: none;
}

@keyframes join-spin {
  to { transform: rotate(360deg); }
}

.join-copy,
.join-form {
  position: relative;
  z-index: 1;
}

.join-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.join-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.join-form {
  display: grid;
  gap: 12px;
}

.join-form input,
.join-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  font: inherit;
}

.join-form input:focus,
.join-form select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-message {
  margin: 0;
  font-size: 0.88rem;
}

.form-message.is-success { color: #6dffb0; }
.form-message.is-error { color: #ff8a8a; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.12s; }

/* Responsive */
@media (max-width: 1100px) {
  .pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .track-panel,
  .program-grid,
  .benefit-grid,
  .join-card {
    grid-template-columns: 1fr;
  }

  .league-ladder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: rgba(11, 34, 56, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a:not(.btn) {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .pro-card { min-height: 380px; }

  .pro-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ambient-orb,
  .text-shimmer,
  .proof-card-glow::before,
  .join-card::before,
  .track-panel.is-active {
    animation: none;
  }
  .text-shimmer {
    background: none;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
  }
  .ambient-canvas { display: none; }
}
