/* ═══════════════════════════════════════════════════════════════
   RunStrict Marketing Homepage — style.css
   Dark space aesthetic / Glassmorphism / Game marketing
   ═══════════════════════════════════════════════════════════════ */

/* ─── Accessibility: screen-reader / crawler only ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Custom Properties ─── */
:root {
  --black: #0A0A0F;
  --dark: #12121C;
  --dark2: #1A1A2E;
  --dark3: #22223A;
  --surface: rgba(255, 255, 255, 0.04);
  --surface2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #E8E8F0;
  --text-dim: rgba(232, 232, 240, 0.55);
  --text-faint: rgba(232, 232, 240, 0.28);

  /* Team colors */
  --red: #FF3B30;
  --red-glow: rgba(255, 59, 48, 0.35);
  --blue: #007AFF;
  --blue-glow: rgba(0, 122, 255, 0.35);
  --purple: #BF5AF2;
  --purple-glow: rgba(191, 90, 242, 0.35);

  /* Accent */
  --accent: #00E5FF;
  --accent-glow: rgba(0, 229, 255, 0.2);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --blur: blur(20px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  /* disable for scroll-driven effects */
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 200;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--blue));
  transition: width 0.08s linear;
  will-change: width;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.7), transparent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, padding 0.3s;
}

.nav.nav-scrolled {
  background: rgba(10, 10, 15, 0.85);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 48px;
}

.logo-icon {
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
}

.nav-links a:hover {
  color: var(--text);
  transition: var(--transition);
}

.nav-hex-link {
  color: var(--accent) !important;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: text-shadow var(--transition), opacity var(--transition);
}

.nav-hex-link:hover {
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.85);
  color: #5af0ff !important;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 15, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  transition: var(--transition);
}

.nav-mobile a:hover {
  color: var(--accent);
}

/* ─── Hex Background Pattern ─── */
.hex-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0-6l22-12.7V23.7L28 11 6 23.7V47.3L28 60z' fill='%23FFFFFF' fill-opacity='0.025'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Hero Runner Background Image ─── */
.hero-runner-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-runner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
  filter: saturate(0.6) brightness(0.7);
  mix-blend-mode: luminosity;
}

/* Fade left edge so text is clean */
.hero-runner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 40%),
    linear-gradient(to top, var(--black) 0%, transparent 30%);
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 150vh;
  /* extended for scroll-out parallax */
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.hero-parallax-layer {
  will-change: transform, opacity;
}

/* Ambient gradients */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Athlete Feature — HUD Card Style ─── */
.athlete-feature {
  background: var(--black);
}

.athlete-hud {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

/* HUD card wrapping the runner image */
.hud-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Neon corner brackets */
.hud-corners {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hud-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.9;
}

.hud-corner.tl {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.hud-corner.tr {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.hud-corner.bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.hud-corner.br {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

/* Animated scan line */
.hud-scan {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  overflow: hidden;
}

.hud-scan::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0, 229, 255, 0.6), transparent);
  animation: hud-scanline 3s linear infinite;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

@keyframes hud-scanline {
  0% {
    top: -2px;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* The runner photo itself */
.hud-runner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.9) brightness(0.9);
  animation: runner-stride 0.55s ease-in-out infinite alternate;

  /* ── Runner stride bob: subtle body movement ── */
  @keyframes runner-stride {
    0% {
      transform: translateY(0px) rotate(-0.3deg) scaleX(1);
    }

    100% {
      transform: translateY(-6px) rotate(0.3deg) scaleX(1.003);
    }
  }

  /* ── Speed lines behind the runner ── */
  .hud-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      repeating-linear-gradient(-15deg,
        transparent 0px,
        transparent 18px,
        rgba(0, 229, 255, 0.025) 18px,
        rgba(0, 229, 255, 0.025) 19px);
    animation: speed-lines 0.4s linear infinite;
    mix-blend-mode: screen;
  }

  @keyframes speed-lines {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 60px 0;
    }
  }

  /* ── Ground impact ripple (footstep pulse) ── */
  .hud-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(ellipse at bottom, rgba(255, 59, 48, 0.18) 0%, transparent 70%);
    animation: ground-pulse 0.55s ease-in-out infinite alternate;
    mix-blend-mode: screen;
  }

  @keyframes ground-pulse {
    0% {
      opacity: 0.3;
      transform: translateX(-50%) scaleX(0.85);
    }

    100% {
      opacity: 0.85;
      transform: translateX(-50%) scaleX(1.1);
    }
  }

  transform-origin: center bottom;
  will-change: transform;
}

/* HUD top status bar */
.hud-overlay-top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
}

.hud-tag {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 4px;
  padding: 2px 8px;
  backdrop-filter: blur(8px);
}

.hud-tag-pace {
  border-color: rgba(0, 229, 255, 0.6);
  color: #00E5FF;
  margin-left: 4px;
  font-weight: 600;
}

.hud-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF3B30;
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.9);
  animation: heartbeat 0.35s ease-in-out infinite;
  margin-left: auto;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(255, 59, 48, 0.8);
  }

  14% {
    transform: scale(1.5);
    box-shadow: 0 0 16px rgba(255, 59, 48, 1), 0 0 30px rgba(255, 59, 48, 0.5);
  }

  28% {
    transform: scale(0.9);
    box-shadow: 0 0 4px rgba(255, 59, 48, 0.6);
  }

  42% {
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255, 59, 48, 0.9);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(255, 59, 48, 0.8);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(255, 59, 48, 0.8);
  }
}

/* HUD bottom metrics */
.hud-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  padding: 32px 16px 16px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.hud-metric {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.hud-metric-val {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hud-metric-unit {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.7);
}

.hud-bar-wrap {
  flex: 1;
}

.hud-bar-label {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.hud-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.hud-bar-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(to right, var(--red), var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.5);
  animation: hud-fill-pulse 2.5s ease-in-out infinite;
}

@keyframes hud-fill-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* ── Rain glint shimmer overlay ── */
.hud-glint {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(135deg,
      transparent 30%,
      rgba(255, 255, 255, 0.04) 50%,
      transparent 70%);
  background-size: 200% 200%;
  animation: glint-sweep 2.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes glint-sweep {
  0% {
    background-position: 200% 200%;
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  60% {
    background-position: -50% -50%;
    opacity: 1;
  }

  100% {
    background-position: -50% -50%;
    opacity: 0;
  }
}

/* ── Footstep impact ripple (DOM element, JS-triggered) ── */
.hud-footstep {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 120px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 59, 48, 0.6);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
}

.hud-footstep.impact {
  animation: footstep-ripple 0.45s ease-out forwards;
}

@keyframes footstep-ripple {
  0% {
    transform: translateX(-50%) scale(0.2);
    opacity: 0.9;
    border-color: rgba(255, 59, 48, 0.9);
  }

  100% {
    transform: translateX(-50%) scale(2.5);
    opacity: 0;
    border-color: rgba(255, 59, 48, 0);
  }
}

/* ── HUD corner pulse on stride ── */
.hud-corner {
  animation: corner-flicker 1.1s ease-in-out infinite alternate;
}

@keyframes corner-flicker {
  0% {
    opacity: 0.9;
  }

  100% {
    opacity: 0.4;
  }
}

/* Copy side */
.athlete-copy {
  min-width: 0;
}

.hud-eyebrow {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  margin-bottom: 20px;
}

.athlete-headline {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.athlete-sub {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 100%;
}

.hud-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.hud-stat-box {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.hud-stat-box:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.4);
}

.hud-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hud-stat-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.athlete-cta {
  gap: 10px;
  padding: 15px 32px;
  font-size: 0.95rem;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.25s, box-shadow 0.25s;
}

.athlete-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 255, 255, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Responsive */
@media (max-width: 900px) {
  .athlete-hud {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hud-card {
    max-width: 340px;
    max-height: 460px;
    margin: 0 auto;
    aspect-ratio: 9 / 14;
  }
}

@media (max-width: 600px) {
  .hud-card {
    max-height: 380px;
    aspect-ratio: 9 / 13;
  }

  .athlete-headline {
    font-size: 2rem;
  }

  .hud-stats-row {
    gap: 8px;
  }

  .hud-stat-num {
    font-size: 1.5rem;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  padding: 140px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  will-change: transform, opacity;
}

/* Hero text side */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FF6B64;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
}

.title-gradient {
  background: linear-gradient(135deg, var(--red) 0%, var(--purple) 50%, var(--blue) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: white;
  color: var(--black);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─── Map Container ─── */
.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 122, 255, 0.08);
}

#map {
  width: 100%;
  height: 100%;
}

.map-overlay-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.season-selector {
  display: flex;
  gap: 6px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  pointer-events: all;
}

.season-btn {
  padding: 6px 14px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.02em;
}

.season-btn:hover {
  color: var(--text);
}

.season-btn.active {
  background: white;
  color: var(--black);
}

.map-legend {
  display: flex;
  gap: 12px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.flame {
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

.legend-dot.wave {
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
}

.legend-dot.chaos {
  background: var(--purple);
  box-shadow: 0 0 6px var(--purple);
}

.map-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
  padding: 32px 24px 16px;
  pointer-events: none;
}

.map-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

#statRed {
  color: var(--red);
  text-shadow: 0 0 12px var(--red-glow);
}

#statBlue {
  color: var(--blue);
  text-shadow: 0 0 12px var(--blue-glow);
}

#statPurple {
  color: var(--purple);
  text-shadow: 0 0 12px var(--purple-glow);
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.map-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.map-tooltip {
  position: absolute;
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--text);
  pointer-events: none;
  z-index: 20;
  backdrop-filter: var(--blur);
  white-space: nowrap;
  transform: translate(-50%, -100%);
  margin-top: -8px;
}

/* ─── Scroll hint ─── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  will-change: opacity;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@keyframes scroll-fade {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

/* ─── Sections ─── */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── How It Works ─── */
.how-it-works {
  background: var(--dark);
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s, background 0.4s, border-color 0.4s;
}

.step-card:hover {
  background: var(--surface2);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Void banner */
.void-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.void-banner::before {
  content: 'THE VOID';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
}

.void-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.void-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.void-text p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 380px;
}

.void-countdown {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.count-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  min-width: 70px;
  text-align: center;
}

.count-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ─── Teams ─── */
.teams {
  background: var(--black);
}

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

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.1s;
  cursor: default;
}

.team-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.team-card:hover .team-glow {
  opacity: 1;
}

.team-red {
  border-color: rgba(255, 59, 48, 0.2);
}

.team-red:hover {
  border-color: rgba(255, 59, 48, 0.4);
  box-shadow: 0 24px 80px rgba(255, 59, 48, 0.12);
}

.team-red .team-glow {
  background: radial-gradient(circle, rgba(255, 59, 48, 0.2), transparent 70%);
}

.team-red .team-name {
  color: var(--red);
}

.team-blue {
  border-color: rgba(0, 122, 255, 0.2);
}

.team-blue:hover {
  border-color: rgba(0, 122, 255, 0.4);
  box-shadow: 0 24px 80px rgba(0, 122, 255, 0.12);
}

.team-blue .team-glow {
  background: radial-gradient(circle, rgba(0, 122, 255, 0.2), transparent 70%);
}

.team-blue .team-name {
  color: var(--blue);
}

.team-purple {
  border-color: rgba(191, 90, 242, 0.2);
}

.team-purple:hover {
  border-color: rgba(191, 90, 242, 0.4);
  box-shadow: 0 24px 80px rgba(191, 90, 242, 0.12);
}

.team-purple .team-glow {
  background: radial-gradient(circle, rgba(191, 90, 242, 0.2), transparent 70%);
}

.team-purple .team-name {
  color: var(--purple);
}

.team-emblem {
  margin-bottom: 16px;
  display: block;
}

.team-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.team-card:hover .team-icon {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.32));
}

.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.team-color-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── Team Buff Visuals ── */
.team-buff-visual {
  margin-bottom: 28px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 16px;
}

/* FLAME COMPARISON */
.flame-comparison {
  display: flex;
  gap: 24px;
  width: 100%;
  height: 100%;
  justify-content: center;
  padding: 4px 0;
}

.f-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 90px;
  height: 100%;
}

.f-bar-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
}

.f-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 3px;
  text-align: center;
  line-height: 1.1;
}

.f-base-elite {
  height: 50%;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.8), rgba(255, 0, 60, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 59, 48, 0.3);
  color: #fff;
}

.f-base-common {
  height: 25%;
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
}

.f-bonus-elite {
  height: 50%;
  background: rgba(255, 59, 48, 0.15);
  border: 1px dashed rgba(255, 59, 48, 0.5);
  color: #FF3B30;
}

.f-bonus-common {
  height: 25%;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: #888;
}

.f-empty {
  height: 50%;
}

.f-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* WAVE RIPPLE */
.wave-visual .ripple-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.wave-visual .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 141, 255, 0.4);
  font-size: 0.65rem;
  font-weight: 700;
  color: #008DFF;
}

.wave-visual .ripple-1 {
  width: 44px;
  height: 44px;
  background: rgba(0, 141, 255, 0.8);
  color: #fff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 141, 255, 0.5);
}

.wave-visual .ripple-2 {
  width: 82px;
  height: 82px;
  background: rgba(0, 141, 255, 0.15);
  z-index: 2;
}

.wave-visual .ripple-3 {
  width: 120px;
  height: 120px;
  background: rgba(0, 141, 255, 0.05);
  z-index: 1;
}

.wave-visual .ripple-2 .ripple-label,
.wave-visual .ripple-3 .ripple-label {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

/* CHAOS GAUGE */
.chaos-visual .gauge-container {
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chaos-visual .gauge-track {
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.chaos-visual .gauge-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #8B5CF6, #BF5AF2);
  border-radius: 9px;
  box-shadow: 0 0 12px rgba(191, 90, 242, 0.5);
  transition: width 1s ease-out;
}

.chaos-visual .gauge-threshold {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chaos-visual .t-30 {
  left: 30%;
}

.chaos-visual .t-60 {
  left: 60%;
}

.chaos-visual .gauge-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

.team-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.team-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
}

.team-red .team-stat-val {
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
}

.team-red .team-stat-val-common {
  color: #888;
  text-shadow: none;
  font-size: 1.5rem;
}

.team-stat-separator {
  color: var(--text-faint);
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 -2px;
}

.hud-stat-num-sub {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-left: 4px;
  vertical-align: baseline;
}

.team-blue .team-stat-val {
  color: var(--blue);
  text-shadow: 0 0 20px var(--blue-glow);
}

.team-purple .team-stat-val {
  color: var(--purple);
  text-shadow: 0 0 20px var(--purple-glow);
}

.team-stat-label {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ─── Season Stats ─── */
.season-stats {
  background: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: var(--surface2);
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.stat-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* Season timeline */
.season-timeline {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}

.timeline-dates {
  color: var(--text-faint);
}

.timeline-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  position: relative;
  margin-bottom: 10px;
  overflow: visible;
}

.timeline-fill {
  height: 100%;
  background: linear-gradient(to right, var(--red), var(--purple));
  border-radius: 100px;
  transition: width 1s ease;
}

.timeline-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ─── Features ─── */
.features {
  background: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-item {
  padding: 40px 32px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s;
  animation-delay: var(--delay);
}

.feature-item:hover {
  background: var(--surface2);
  transform: translateY(-6px) scale(1.02);
}

.feature-item:nth-child(3n) {
  border-right: none;
}

.feature-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── Download ─── */
.download {
  background: var(--dark);
}

.download-card {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(191, 90, 242, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.download-hex-decoration {
  font-size: 6rem;
  opacity: 0.05;
  position: absolute;
  top: 20px;
  right: 40px;
  pointer-events: none;
  font-family: 'Space Grotesk', sans-serif;
}

.download-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 16px;
}

.download-card>p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 44px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: var(--transition);
  min-width: 190px;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.store-btn-icon {
  flex-shrink: 0;
}

.store-btn-text {
  text-align: left;
}

.store-sub {
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.store-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

/* ─── Google Play Coming Soon ─── */
.store-btn-coming-soon {
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(0,240,255,0.06) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  overflow: hidden;
}

.store-btn-coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,240,255,0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}

.store-btn-coming-soon:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(0,240,255,0.1) 100%);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
}

.store-btn-coming-soon .store-btn-icon svg {
  opacity: 0.5;
}

.store-btn-coming-soon .store-sub {
  color: rgba(0, 240, 255, 0.7);
  font-weight: 600;
}

.coming-soon-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, #00f0ff, #0080ff);
  color: #0A0A0F;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 0 var(--radius, 8px) 0 var(--radius, 8px);
  text-transform: uppercase;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.btn-coming-soon-hero {
  position: relative;
  border-color: rgba(0, 240, 255, 0.2) !important;
  color: rgba(232, 232, 240, 0.6) !important;
}

.btn-coming-soon-hero::after {
  content: 'SOON';
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #00f0ff, #0080ff);
  color: #0A0A0F;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.footer-coming-soon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: inherit;
}

.coming-soon-tag {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0A0A0F;
  background: linear-gradient(135deg, #00f0ff, #0080ff);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ─── Footer ─── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer-quote {
  font-size: 0.78rem;
  font-style: italic;
  max-width: 400px;
  text-align: right;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

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

/* ── Scroll-driven parallax reveals ── */
.reveal-scale {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

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

/* ── Letter-by-letter hero reveal ── */
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-40deg);
  animation: charReveal 0.6s forwards;
  animation-delay: var(--d);
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* ── Hero badge entrance ── */
.hero-badge {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero sub entrance ── */
.hero-sub,
.hero-tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s 1s forwards;
}

.hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s 1.2s forwards;
}

/* ── Scroll hint line ── */
.scroll-hint .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(0.6);
    opacity: 0.3;
  }

  50% {
    transform: scaleY(1);
    opacity: 0.7;
  }
}

/* ── Section header scroll reveal ── */
.section-header.reveal h2 {
  transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.section-header.reveal p {
  transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

/* ── Staggered card reveals ── */
.step-card.reveal,
.team-card.reveal,
.feature-item.reveal,
.testimonial-card.reveal {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

/* ── Proof bar count-up animation ── */
.proof-num {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-bar.visible .proof-num {
  animation: countPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes countPop {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── Side section indicators ── */
.section-indicators {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.sec-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.sec-indicator-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 232, 240, 0);
  transition: color 0.3s, transform 0.3s;
  transform: translateX(8px);
}

.sec-indicator:hover .sec-indicator-label,
.sec-indicator.active .sec-indicator-label {
  color: rgba(232, 232, 240, 0.5);
  transform: translateX(0);
}

.sec-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  transition: all 0.4s ease;
}

.sec-indicator.active .sec-indicator-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

@media (max-width: 900px) {
  .section-indicators {
    display: none;
  }
}

/* ─── Directional reveals (athlete section) ─── */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Stagger reveal for stat boxes ─── */
.reveal-stagger {
  opacity: 0;
  transform: translateY(24px) scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

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

/* ─── Step cards: slide-up with scale + connecting progress bar ─── */
.reveal-step {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

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

/* Step card number glow on visible */
.reveal-step.visible .step-number {
  animation: numGlow 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes numGlow {
  from {
    color: rgba(255, 255, 255, 0.06);
  }

  to {
    color: rgba(255, 255, 255, 0.12);
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
  }
}

/* Step card icon bounce on visible */
.reveal-step.visible .step-icon {
  animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--delay, 0s) + 0.2s);
}

@keyframes iconBounce {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Step progress bar (visual connector at bottom of each card) */
.step-progress {
  margin-top: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.step-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), rgba(0, 229, 255, 0.3));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--delay, 0s) + 0.4s);
}

.reveal-step.visible .step-progress-fill {
  width: 100%;
}

/* ─── Team cards: 3D tilt + shine + reveal ─── */
.reveal-tilt {
  opacity: 0;
  transform: translateY(60px) rotateX(8deg);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
  perspective: 800px;
}

.reveal-tilt.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* Mouse-tracking shine overlay */
.team-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  transition: opacity 0.3s;
  z-index: 1;
}

.team-card:hover .team-shine {
  opacity: 1;
}

/* Team card hover tilt via JS */
.team-card[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Team perks stagger animation */
.reveal-tilt.visible .team-perks li {
  opacity: 0;
  animation: perkSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-tilt.visible .team-perks li:nth-child(1) {
  animation-delay: calc(var(--delay, 0s) + 0.4s);
}

.reveal-tilt.visible .team-perks li:nth-child(2) {
  animation-delay: calc(var(--delay, 0s) + 0.5s);
}

.reveal-tilt.visible .team-perks li:nth-child(3) {
  animation-delay: calc(var(--delay, 0s) + 0.6s);
}

@keyframes perkSlide {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Team stat value count-up pop */
.reveal-tilt.visible .team-stat-val {
  animation: statPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--delay, 0s) + 0.5s);
}

@keyframes statPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Void banner reveal */
.void-banner.reveal.visible {
  animation: voidPulse 3s ease-in-out infinite 1s;
}

@keyframes voidPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.03), inset 0 0 30px rgba(255, 255, 255, 0.02);
  }
}

/* ─── Mapbox overrides ─── */
.mapboxgl-ctrl-logo,
.mapboxgl-ctrl-attrib {
  display: none !important;
}

.mapboxgl-canvas-container {
  cursor: default;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 120px 32px 64px;
  }

  .map-container {
    height: 440px;
  }

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

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

  .teams-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .feature-item:nth-child(2n) {
    border-right: none;
  }

  .feature-item:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .feature-item:nth-child(3n):nth-child(2n) {
    border-right: none;
  }
}

/* Hero runner bg: hide on mobile (too busy) */
@media (max-width: 768px) {
  .hero-runner-bg {
    display: none;
  }
}



@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-content {
    padding: 100px 24px 48px;
  }

  .map-container {
    height: 360px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

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

  .void-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  .void-countdown {
    gap: 16px;
  }

  .count-num {
    font-size: 2.2rem;
  }

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

  .season-timeline {
    padding: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
  }

  .feature-item {
    border-right: 1px solid var(--border) !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .download-card {
    padding: 48px 24px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-quote {
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .map-overlay-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    gap: 12px;
  }

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

  .void-countdown {
    justify-content: center;
  }

  .season-selector {
    padding: 4px;
  }

  .season-btn {
    padding: 5px 10px;
    font-size: 0.72rem;
  }

  .map-legend {
    display: none;
  }
}

/* ─── App Showcase ─── */
.showcase {
  background: var(--black);
  overflow: hidden;
}

.showcase-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

/* Central phone with video */
.phone-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone-frame {
  width: 240px;
  height: 490px;
  background: #1A1A1A;
  border-radius: 44px;
  border: 6px solid #2E2E2E;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 120px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(255, 59, 48, 0.08);
  position: relative;
  overflow: hidden;
  animation: phone-float 4s ease-in-out infinite;
}

@keyframes phone-float {

  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #1A1A1A;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  overflow: hidden;
  background: #000;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  z-index: 10;
}

.phone-label {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Side screenshot gallery */
.phone-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.phone-thumb {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--surface);
  position: relative;
}

.phone-thumb:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.phone-thumb img {
  width: 160px;
  height: auto;
  display: block;
  aspect-ratio: 390/844;
  object-fit: cover;
  object-position: top;
}

.phone-thumb-label {
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

/* Highlight state when thumbnail clicked */
.phone-thumb.active {
  border-color: rgba(255, 59, 48, 0.5);
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.15);
}

/* Responsive showcase */
@media (max-width: 1000px) {
  .showcase-layout {
    flex-direction: column;
    gap: 40px;
  }

  .phone-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .phone-thumb img {
    width: 130px;
  }
}

@media (max-width: 600px) {
  .phone-frame {
    width: 200px;
    height: 410px;
    border-radius: 38px;
  }

  .phone-notch {
    width: 70px;
    height: 20px;
  }

  .phone-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .phone-thumb img {
    width: 140px;
  }
}

/* ─── FAQ Accordion ─── */
.faq {
  background: var(--dark);
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.faq-item.open {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--surface2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-q:hover {
  color: white;
}

.faq-chevron {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  user-select: none;
}

.faq-item.open .faq-chevron {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  max-height: 320px;
}

.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.72;
  margin: 0;
}

.faq-a p strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-q {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-a p {
    padding: 0 20px 18px;
  }
}

/* ─── Social Proof Bar ─── */
.proof-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.proof-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}

.proof-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.proof-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-live {
  color: #34C759;
}

.proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 8px rgba(52, 199, 89, 0.9);
  animation: heartbeat 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .proof-stat {
    padding: 12px 24px;
  }

  .proof-bar-inner {
    gap: 0;
  }

  .proof-divider {
    height: 28px;
  }

  .proof-num {
    font-size: 1.1rem;
  }
}

/* ─── Testimonials ─── */
.testimonials {
  background: var(--black);
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  background: var(--surface2);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testimonial-avatar--red {
  background: rgba(255, 59, 48, 0.15);
  color: var(--red);
  border: 1px solid rgba(255, 59, 48, 0.3);
}

.testimonial-avatar--blue {
  background: rgba(0, 122, 255, 0.15);
  color: var(--blue);
  border: 1px solid rgba(0, 122, 255, 0.3);
}

.testimonial-avatar--purple {
  background: rgba(191, 90, 242, 0.15);
  color: var(--purple);
  border: 1px solid rgba(191, 90, 242, 0.3);
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-detail {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-team-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.team-badge--red {
  background: rgba(255, 59, 48, 0.12);
  color: var(--red);
  border: 1px solid rgba(255, 59, 48, 0.25);
}

.team-badge--blue {
  background: rgba(0, 122, 255, 0.12);
  color: var(--blue);
  border: 1px solid rgba(0, 122, 255, 0.25);
}

.team-badge--purple {
  background: rgba(191, 90, 242, 0.12);
  color: var(--purple);
  border: 1px solid rgba(191, 90, 242, 0.25);
}

@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 28px 24px 22px;
  }

  .testimonial-detail {
    white-space: normal;
  }
}


/* ─── Waitlist Form ────────────────────────────────────────────────────── */
.waitlist-form {
  margin: 32px auto 8px;
  max-width: 480px;
  text-align: center;
}

.waitlist-label {
  font-size: 0.85rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.55));
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.waitlist-input-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.waitlist-email {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-email::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.waitlist-email:focus {
  border-color: var(--cyan, #00f5ff);
}

.waitlist-submit {
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  background: var(--cyan, #00f5ff);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.waitlist-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.waitlist-privacy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}

@media (max-width: 480px) {
  .waitlist-input-row {
    flex-direction: column;
  }

  .waitlist-email,
  .waitlist-submit {
    width: 100%;
  }
}