:root {
  --bg: #050608;
  --bg-2: #0a0c10;
  --bg-3: #11141c;
  --card: #0f1219;
  --card-2: #161a24;
  --ink: #f8f9fb;
  --muted: #8b93a8;
  --line: rgba(255,255,255,.07);
  --line-2: rgba(255,255,255,.12);
  --gold: #ffc107;
  --gold-2: #ffdb4d;
  --gold-dim: rgba(255,193,7,.12);
  --gold-glow: rgba(255,193,7,.35);
  --orange: var(--gold);
  --orange-2: var(--gold-2);
  --violet: #8b6cff;
  --violet-dim: rgba(139,108,255,.15);
  --blue: #5eb3ff;
  --green: #34d399;
  --danger: #f87171;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --shadow: 0 24px 64px rgba(0,0,0,.55);
  --shadow-gold: 0 8px 32px rgba(255,193,7,.22);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --container: 1280px;
  --page-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.container { width: min(var(--container), calc(100% - (var(--page-gutter) * 2))); margin-inline: auto; }
.container.narrow { width: min(680px, calc(100% - (var(--page-gutter) * 2))); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: .75rem 1.35rem;
  font-weight: 600;
  font-size: .9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease, border-color .2s ease;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .5rem 1.1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 1.65rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-arrow { width: 1.1rem; height: 1.1rem; transition: transform .2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-play { width: 1.15rem; height: 1.15rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #f5a800 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 100%);
  box-shadow: 0 12px 40px rgba(255,193,7,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.22);
}
.btn-login {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
}
.btn-login:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}

.btn-glass {
  background: rgba(255,255,255,.06);
  color: var(--ink);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
}

.btn-dark {
  background: rgba(0,0,0,.45);
  color: var(--ink);
  border-color: rgba(255,255,255,.14);
}
.btn-white { background: #fff; color: #111; }

.btn-violet {
  background: linear-gradient(135deg, #9d7fff 0%, var(--violet) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(139,108,255,.3);
}
.btn-violet:hover {
  box-shadow: 0 12px 36px rgba(139,108,255,.4);
}

.btn-google {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,.08);
}
.btn-google:hover { background: #f5f5f5; }
.btn-google .g {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #fff;
  color: #ea4335;
  font-weight: 800;
  font-size: .8rem;
  border: 1px solid #e8e8e8;
}

.btn-danger {
  background: transparent;
  color: #fca5a5;
  border-color: rgba(248,113,113,.4);
}
.btn.is-disabled, .btn-ghost.is-disabled {
  opacity: .4;
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(5,6,8,.78);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border-bottom-color: rgba(255,255,255,.06);
}
.site-header-inner {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: .9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffe066 0%, var(--gold) 50%, #d49400 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 14px rgba(255,193,7,.28);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em; }
.brand-text small { color: rgba(255,255,255,.55); font-size: .65rem; font-weight: 500; letter-spacing: .02em; }

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .15rem;
  padding: .35rem;
  margin: 0 auto;
  width: fit-content;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.is-scrolled .site-nav {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.07);
}
.site-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,.62);
  font-size: .8125rem;
  font-weight: 600;
  padding: .55rem .95rem;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
  letter-spacing: -.005em;
  white-space: nowrap;
}
.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.site-nav a.is-active {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 4px 14px rgba(255,193,7,.28);
}

.header-actions { display: flex; align-items: center; gap: .55rem; }
.nav-user { color: var(--muted); font-size: .875rem; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .35rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  margin: .28rem 0;
  border-radius: 1px;
  transition: transform .2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  filter: brightness(1.22) contrast(1.06) saturate(1.08);
}
.hero-shade {
  position: absolute;
  inset: 0;
  /* Very light overlay — scooty / vehicles must stay clearly visible */
  background:
    linear-gradient(100deg,
      rgba(5,6,8,.45) 0%,
      rgba(5,6,8,.18) 30%,
      rgba(5,6,8,.04) 55%,
      transparent 75%,
      rgba(5,6,8,.12) 100%),
    linear-gradient(180deg,
      rgba(5,6,8,.22) 0%,
      transparent 22%,
      transparent 70%,
      rgba(5,6,8,.28) 100%);
}
.hero-glow {
  display: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  min-height: calc(100vh - 5rem);
  min-height: calc(100dvh - 5rem);
}
.hero-copy {
  max-width: 560px;
  padding: 0;
  margin-left: 0;
  border-radius: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,0,0,.4);
  color: var(--gold);
  border: 1px solid rgba(255,193,7,.4);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.hero-copy h1 {
  margin: 1.1rem 0 .9rem;
  font-size: clamp(2.5rem, 5.8vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.4);
}
.accent {
  color: #ffd54a;
  background: none;
  -webkit-text-fill-color: #ffd54a;
  text-shadow:
    0 0 12px rgba(255,213,74,.65),
    0 0 28px rgba(255,193,7,.45),
    0 0 48px rgba(255,193,7,.25),
    0 2px 8px rgba(0,0,0,.45);
}
.hero-lead {
  color: rgba(255,255,255,.95);
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  font-weight: 400;
  text-shadow: 0 1px 14px rgba(0,0,0,.55);
}
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem 1.5rem;
  max-width: 28rem;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.hf-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(0,0,0,.35);
  color: var(--gold);
  border: 1px solid rgba(255,193,7,.35);
  flex-shrink: 0;
  backdrop-filter: blur(6px);
}
.hf-icon svg { width: 1rem; height: 1rem; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.hero-guest {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}
.guest-icon { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; }
.hero-guest a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,193,7,.4);
  transition: border-color .2s ease;
}
.hero-guest a:hover { border-bottom-color: var(--gold); }

/* Hero right panel */
.hero-panel {
  justify-self: end;
  width: min(360px, 100%);
  background: rgba(10,12,18,.58);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 1.5rem 1.4rem 1.35rem;
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 28px 70px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1.15rem;
}
.hero-panel-live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(52,211,153,.12);
  border: 1px solid rgba(52,211,153,.3);
  border-radius: 999px;
  padding: .3rem .65rem;
}
.hero-panel-live .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(52,211,153,.7);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-panel-track {
  font-size: .875rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: -.01em;
}
.hero-panel-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.15rem;
}
.hero-panel-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 8;
}
.ring-fg {
  fill: none;
  stroke: url(#none);
  stroke: #ffc107;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 90;
  filter: drop-shadow(0 0 10px rgba(255,193,7,.55));
}
.ring-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.15;
}
.ring-label strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}
.ring-label span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-panel-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.hero-panel-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
}
.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: .85rem;
  height: .85rem;
  border-radius: 50%;
  background: rgba(255,193,7,.15);
  border: 1px solid rgba(255,193,7,.45);
  box-shadow: inset 0 0 0 2px transparent;
  background-image: radial-gradient(circle at center, #ffc107 0 35%, transparent 40%);
}
.hero-panel-note {
  margin: .85rem 0 0;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
}

/* Sections */
.section { padding: 5.5rem 0; }
.section-head { margin-bottom: 2.75rem; }
.section-kicker {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 .65rem;
}
.section-title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -.03em;
  font-weight: 800;
  line-height: 1.15;
}

.tracks-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  scroll-margin-top: 5.5rem;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.track-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.track-card:hover { transform: translateY(-6px); }
.track-card.is-live {
  border-color: rgba(139,108,255,.35);
  background: linear-gradient(165deg, rgba(139,108,255,.08) 0%, var(--card) 40%);
  box-shadow: 0 0 0 1px rgba(139,108,255,.15), 0 20px 50px rgba(139,108,255,.12);
}
.track-card.is-live:hover {
  box-shadow: 0 0 0 1px rgba(139,108,255,.25), 0 28px 60px rgba(139,108,255,.18);
}
.track-media {
  position: relative;
  aspect-ratio: 4/3;
  background: #000;
  overflow: hidden;
}
.track-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.track-card:hover .track-media img { transform: scale(1.05); }
.track-card.is-locked .track-media img {
  filter: grayscale(.9) brightness(.45);
}
.live-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(52,211,153,.2);
  color: var(--green);
  border: 1px solid rgba(52,211,153,.4);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.lock-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.35);
}
.lock-badge svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
.track-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.track-body h3 { margin: 0; font-size: 1.0625rem; font-weight: 700; letter-spacing: -.02em; }
.track-body p { margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.5; }
.track-body .soon { color: rgba(255,255,255,.55); font-weight: 600; font-size: .8125rem; letter-spacing: .04em; text-transform: uppercase; }
.track-body .btn { margin-top: auto; align-self: stretch; }

/* How it works */
.how-section {
  background: var(--bg-2);
  position: relative;
}
.how-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.how-steps li {
  position: relative;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.25rem 1.5rem;
  transition: border-color .3s ease, background .3s ease;
}
.how-steps li:hover {
  border-color: rgba(255,193,7,.2);
  background: var(--card-2);
}
.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #0a0a0a;
  font-size: .8125rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255,193,7,.3);
}
.step-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto .85rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(255,193,7,.2);
}
.step-icon svg { width: 1.35rem; height: 1.35rem; }
.how-steps h3 { margin: 0 0 .4rem; font-size: 1.0625rem; font-weight: 700; }
.how-steps p { margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.55; }

/* Trust bar */
.trust-bar {
  background: var(--bg-3);
  border-block: 1px solid var(--line);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-grid > div {
  display: flex;
  gap: .85rem;
  align-items: center;
}
.trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 1.2rem; height: 1.2rem; }
.trust-icon.orange { background: var(--gold-dim); color: var(--gold); }
.trust-icon.blue { background: rgba(94,179,255,.12); color: var(--blue); }
.trust-icon.green { background: rgba(52,211,153,.12); color: var(--green); }
.trust-icon.violet { background: var(--violet-dim); color: var(--violet); }
.trust-grid strong { display: block; font-size: .9375rem; font-weight: 700; letter-spacing: -.01em; }
.trust-grid small { color: var(--muted); font-size: .8125rem; }

/* Stats & CTA */
.stats-cta {
  padding: 4rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 50% at 90% 40%, rgba(139,108,255,.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(255,193,7,.06), transparent 50%),
    var(--bg);
}
.stats-cta-grid { display: grid; gap: 2.5rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stats-row > div {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .3s ease, background .3s ease;
}
.stats-row > div:hover {
  border-color: rgba(255,193,7,.15);
  background: rgba(255,193,7,.03);
}
.stats-row strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.75) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-row span { color: var(--muted); font-size: .8125rem; font-weight: 500; margin-top: .25rem; display: block; }

.cta-box {
  position: relative;
  background: linear-gradient(145deg, rgba(22,26,36,.95) 0%, rgba(15,18,25,.98) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  gap: 1rem;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,193,7,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  position: relative;
}
.cta-box p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .5rem;
  position: relative;
}

/* FAQ */
.faq-section { background: var(--bg-2); }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[open] { border-color: rgba(255,193,7,.2); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: .9375rem;
  padding: 1.1rem 1.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted);
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  font-size: .9375rem;
  line-height: 1.65;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #030405;
  padding: 4rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  margin: 0 0 1rem;
  font-size: .75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.footer-grid a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.7);
  margin: .45rem 0;
  font-size: .875rem;
  transition: color .2s ease;
}
.footer-grid a:hover { color: var(--gold); }
.footer-brand p { color: var(--muted); margin: .65rem 0; font-size: .875rem; }
.footer-note { font-size: .8125rem !important; opacity: .7; }
.socials { display: flex; gap: .5rem; margin-top: 1rem; }
.socials a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.socials a:hover {
  border-color: rgba(255,193,7,.3);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: .8125rem;
}

/* Practice / auth pages */
.rc-main { width: min(960px, calc(100% - 2rem)); margin: 0 auto; padding: 2rem 0 4rem; }
.rc-panel { padding: 1rem 0 2rem; }
.rc-panel h1 { font-size: 2rem; margin: 0 0 .75rem; letter-spacing: -.02em; }
.rc-eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; color: var(--gold); margin: 0 0 .5rem; font-weight: 700; }
.rc-lead { color: var(--muted); font-size: 1.05rem; max-width: 36rem; }
.rc-mode-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.rc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, #f5a800 100%);
  color: #111; font-weight: 600;
  border: none; border-radius: 999px; padding: .75rem 1.25rem;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-gold);
}
.rc-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.rc-btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}
.rc-btn-sm { padding: .45rem .9rem; font-size: .9rem; }
.rc-btn-danger {
  background: transparent; color: #fca5a5;
  border: 1px solid rgba(248,113,113,.4);
  box-shadow: none;
}
.rc-btn.is-disabled, .rc-btn-ghost.is-disabled { opacity: .4; pointer-events: none; }
.rc-alert {
  background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.3);
  color: #fecaca; padding: .75rem 1rem; border-radius: var(--radius-sm);
}
.rc-practice-meta {
  display: flex; flex-wrap: wrap; gap: .75rem; color: var(--muted); font-size: .9rem; margin-bottom: 1rem;
}
.rc-guest-chip {
  background: var(--gold-dim); color: var(--gold);
  padding: .15rem .55rem; border-radius: 999px;
}
.rc-scene {
  margin: 0 0 1.25rem; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #000; position: relative; min-height: 200px;
}
.rc-scene img {
  width: 100%; display: block; max-height: 420px; object-fit: cover;
  opacity: 0; transition: opacity .35s ease;
}
.rc-scene.is-loaded img { opacity: 1; }
.rc-scene-loader {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  background: linear-gradient(160deg, #151821, #08090d);
  color: var(--muted); z-index: 1;
}
.rc-scene-loader.is-hidden { display: none; }
.rc-spinner {
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 3px solid rgba(255,193,7,.2);
  border-top-color: var(--gold);
  animation: rc-spin .8s linear infinite;
}
@keyframes rc-spin { to { transform: rotate(360deg); } }
.rc-situation { color: var(--muted); line-height: 1.55; }
.rc-q { font-size: clamp(1.35rem, 3vw, 1.85rem); margin: .75rem 0 1.25rem; letter-spacing: -.02em; }
.rc-locked-banner {
  background: var(--gold-dim); border: 1px solid rgba(255,193,7,.3);
  color: var(--gold); padding: .65rem .9rem; border-radius: var(--radius-sm); margin-bottom: .85rem;
  font-size: .92rem;
}
.rc-options { display: grid; gap: .65rem; }
.rc-option {
  display: flex; gap: .85rem; align-items: flex-start; text-align: left;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  color: var(--ink); border-radius: var(--radius-sm); padding: .9rem 1rem;
  cursor: pointer; font: inherit;
  transition: border-color .2s ease, background .2s ease;
}
.rc-option:hover { border-color: rgba(255,193,7,.35); background: rgba(255,193,7,.06); }
.rc-options.is-locked .rc-option { cursor: default; }
.rc-options.is-locked .rc-option:hover { border-color: var(--line); background: rgba(255,255,255,.03); }
.rc-option.is-correct { border-color: rgba(52,211,153,.5); background: rgba(52,211,153,.1); }
.rc-option.is-wrong { border-color: rgba(248,113,113,.5); background: rgba(248,113,113,.08); }
.rc-opt-key {
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-dim); color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.rc-nav-bar {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  justify-content: space-between; margin-top: 1.75rem;
  padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.rc-end-form { display: inline; }
.rc-modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(8px);
}
.rc-modal-backdrop.is-hidden { display: none; }
.rc-modal {
  width: min(520px, 100%);
  background: linear-gradient(165deg, #1a1e28, #0f1219);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-height: min(88vh, 720px);
  overflow: auto;
}
.rc-modal.is-ok { border-color: rgba(52,211,153,.35); }
.rc-modal.is-bad { border-color: rgba(248,113,113,.35); }
.rc-modal-badge {
  display: inline-block; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; padding: .3rem .65rem; border-radius: 999px; margin-bottom: .75rem;
}
.rc-modal.is-ok .rc-modal-badge { background: rgba(52,211,153,.15); color: var(--green); }
.rc-modal.is-bad .rc-modal-badge { background: rgba(248,113,113,.15); color: #fca5a5; }
.rc-modal h2 { margin: 0 0 1rem; font-size: 1.5rem; font-weight: 800; }
.rc-modal-block { margin-bottom: .9rem; }
.rc-modal-label {
  font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .3rem; font-weight: 600;
}
.rc-modal-block p { margin: 0; line-height: 1.55; }
.rc-modal-actions {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: flex-end;
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line);
}
.rc-result-summary {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: .75rem; margin: 1.25rem 0 2rem;
}
.rc-stat {
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1rem; text-align: center;
}
.rc-stat-val { display: block; font-size: 1.6rem; font-weight: 800; }
.rc-stat-label { color: var(--muted); font-size: .8rem; }
.rc-review-title { font-size: 1.35rem; margin: 0 0 1rem; font-weight: 800; }
.rc-review-list { display: grid; gap: .85rem; margin-bottom: 2rem; }
.rc-review-card {
  border-radius: var(--radius-sm); padding: 1rem 1.1rem;
  background: rgba(255,255,255,.02); border: 1px solid var(--line);
}
.rc-review-card.is-ok { border-color: rgba(52,211,153,.3); }
.rc-review-card.is-bad { border-color: rgba(248,113,113,.3); }
.rc-review-card.is-skipped { border-color: rgba(255,193,7,.25); }
.rc-review-card header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem;
}
.rc-review-num { font-weight: 700; color: var(--muted); }
.rc-review-status { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.rc-review-card.is-ok .rc-review-status { color: var(--green); }
.rc-review-card.is-bad .rc-review-status { color: #fca5a5; }
.rc-review-card.is-skipped .rc-review-status { color: var(--gold); }
.rc-review-q { margin: 0 0 .55rem; font-weight: 500; }
.rc-review-ans { margin: .25rem 0; color: var(--muted); font-size: .95rem; }
.rc-review-note { margin: .45rem 0 0; font-size: .9rem; }
.rc-review-note span { color: var(--muted); }
.rc-form { display: grid; gap: .85rem; max-width: 24rem; margin: 1rem 0; }
.rc-form label { display: grid; gap: .35rem; color: var(--muted); font-size: .9rem; }
.rc-form input {
  background: rgba(0,0,0,.3); border: 1px solid var(--line);
  border-radius: var(--radius-xs); padding: .75rem .9rem; color: var(--ink);
}
.rc-muted { color: var(--muted); }
.rc-muted a { color: var(--gold); }
.rc-auth .rc-btn-ghost { margin-top: .75rem; }

main:has(.rc-practice),
main:has(.rc-panel),
main:has(.rc-auth) {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0 4rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .track-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header-inner { grid-template-columns: auto auto 1fr; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: var(--page-gutter);
    right: var(--page-gutter);
    top: 4.5rem;
    background: var(--card);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-sm);
    padding: .75rem;
    gap: .25rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open a { border-radius: var(--radius-xs); }
  .nav-toggle { display: block; justify-self: end; }
  .header-actions { grid-column: 1 / -1; justify-content: flex-end; }

  .site-nav.is-open {
    width: auto;
    border-radius: 16px;
    padding: .5rem;
  }
  .site-nav.is-open a.is-active {
    color: #0a0a0a;
  }

  .hero { min-height: auto; padding-top: 4.5rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 0 3rem;
    gap: 1.75rem;
  }
  .hero-media img { object-position: center 35%; filter: brightness(1.25) contrast(1.05) saturate(1.08); }
  .hero-shade {
    background:
      linear-gradient(180deg,
        rgba(5,6,8,.3) 0%,
        rgba(5,6,8,.12) 40%,
        rgba(5,6,8,.35) 100%),
      linear-gradient(100deg,
        rgba(5,6,8,.35) 0%,
        rgba(5,6,8,.1) 55%,
        rgba(5,6,8,.18) 100%);
  }
  .hero-copy {
    margin-left: 0;
    max-width: none;
    padding: 0;
  }
  .hero-panel {
    justify-self: stretch;
    width: 100%;
    max-width: 420px;
  }
  .hero-features { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(2.25rem, 8vw, 3rem); }

  .section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .track-grid,
  .how-steps,
  .trust-grid,
  .stats-row,
  .footer-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
