/* ============================================================
   GVR Sports — Static CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --bg:              #050810;
  --bg-card:         rgba(12,17,32,0.85);
  --bg-section-alt:  rgba(12,17,32,0.4);
  --cyan:            #38BDF8;
  --indigo:          #818CF8;
  --purple:          #A78BFA;
  --amber:           #F59E0B;
  --pink:            #EC4899;
  --text:            #ffffff;
  --text-muted:      rgba(255,255,255,0.55);
  --text-secondary:  rgba(255,255,255,0.6);
  --border:          rgba(255,255,255,0.08);
  --border-subtle:   rgba(255,255,255,0.06);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

/* ── Gradient text ─────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #38BDF8, #818CF8, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  color: #050810;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #38BDF8; color: #38BDF8; }

/* ── Section label badge ───────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.section-badge span {
  font-size: 12px;
  font-weight: 600;
  color: #38BDF8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Neon card ─────────────────────────────────────────────── */
.neon-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.neon-card:hover { transform: translateY(-8px); }

/* ── Grid helpers ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* ── Grid background (hero) ────────────────────────────────── */
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── Scroll-reveal animation ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Visible by default — JS adds the animation class when in view.
   This ensures content is never stuck invisible if JS errors. */
.reveal { opacity: 1; }
.js-reveal { opacity: 0; }
.js-reveal.visible { animation: fadeUp 0.6s ease forwards; }

/* ── Pulse dot ─────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.4; }
}
.pulse-dot { animation: pulse 2s ease-in-out infinite; }

/* ── Ripple (roadmap live dot) ─────────────────────────────── */
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}
.ripple {
  position: absolute;
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s, border-bottom 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(5,8,16,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(56,189,248,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: #050810;
}
.nav-logo-text { font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -0.3px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links button {
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: color 0.2s; padding: 0;
}
.nav-links button:hover { color: #38BDF8; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-hamburger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
nav.menu-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: rgba(5,8,16,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(56,189,248,0.08);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer button {
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 16px; font-weight: 600; cursor: pointer;
  padding: 12px 0; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: inherit;
}
.nav-drawer-actions { display: flex; gap: 10px; margin-top: 12px; }
.nav-drawer-actions button { flex: 1; padding: 12px; border-radius: 10px; font-size: 14px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #38BDF8;
  display: inline-block;
}
.hero-badge span { font-size: 12px; font-weight: 600; color: #38BDF8; letter-spacing: 1.5px; text-transform: uppercase; }
.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-btns a { text-decoration: none; }
.hero-btns button { padding: 14px 28px; border-radius: 12px; font-size: 15px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-val { font-size: 24px; font-weight: 900; color: #38BDF8; }
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Before/After Slider */
.slider-wrap { text-align: center; }
.slider-hint {
  margin-bottom: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
.slider-track {
  border-radius: 16px;
  height: 320px;
  background: #0C1120;
  border: 1px solid rgba(56,189,248,0.15);
  cursor: ew-resize;
  position: relative;
  overflow: hidden;
  user-select: none;
}
/* After panel (full width, behind) */
.slider-after {
  position: absolute; inset: 0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.slider-after-label { font-size: 11px; color: #38BDF8; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.slider-after-stats { display: flex; gap: 16px; margin-top: 4px; }
.slider-after-stat { text-align: center; }
.slider-after-stat-key { font-size: 9px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.slider-after-stat-val { font-size: 13px; font-weight: 800; color: #38BDF8; }
/* Before panel (clipped) */
.slider-before {
  position: absolute; inset: 0;
  border-radius: 16px;
  background: #06080F;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.slider-before-label { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.slider-before-nodata { font-size: 11px; color: rgba(255,255,255,0.2); }
.slider-play {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.slider-play-arrow {
  width: 0; height: 0;
  border-left: 18px solid rgba(255,255,255,0.2);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
/* Corner labels */
.slider-corner-before {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 600;
  pointer-events: none;
}
.slider-corner-after {
  position: absolute; bottom: 12px; right: 12px;
  font-size: 10px; color: #38BDF8; font-weight: 600;
  pointer-events: none;
}
/* Divider + handle */
.slider-divider {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: rgba(56,189,248,0.6);
  pointer-events: none;
}
.slider-handle {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #38BDF8;
  border: 3px solid #fff;
  box-shadow: 0 0 16px rgba(56,189,248,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
  z-index: 10;
}
.slider-handle::before, .slider-handle::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
}
.slider-handle::before { border-right: 8px solid white; left: 4px; }
.slider-handle::after  { border-left:  8px solid white; right: 4px; }

.slider-cv-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(56,189,248,0.05);
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
#features .section-header { text-align: center; margin-bottom: 64px; }
#features h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; letter-spacing: -1.5px; margin: 0 0 16px; }
#features .section-sub { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }
.feature-card {
  border-radius: 20px;
  padding: 32px;
  cursor: default;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin: 0 0 14px; color: #fff; }
.feature-card p  { font-size: 14px; line-height: 1.75; color: var(--text-secondary); margin: 0 0 28px; }
.feature-stats { display: flex; gap: 20px; padding-top: 20px; }
.feature-stat-val   { font-size: 18px; font-weight: 900; }
.feature-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   DASHBOARD
   ============================================================ */
#dashboard {
  padding: 80px 24px 100px;
  background: rgba(12,17,32,0.4);
  border-top:    1px solid rgba(56,189,248,0.06);
  border-bottom: 1px solid rgba(56,189,248,0.06);
}
#dashboard .dash-inner { max-width: 1200px; margin: 0 auto; }
#dashboard .dash-header { text-align: center; margin-bottom: 40px; }
#dashboard h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; letter-spacing: -1.5px; margin: 0 0 14px; }
#dashboard .dash-sub { color: rgba(255,255,255,0.4); font-size: 16px; max-width: 500px; margin: 0 auto 28px; }

/* Sport tabs */
.sport-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.sport-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
  font-family: inherit;
}

/* Dashboard panel */
.dash-panel {
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(20px);
  transition: border-color 0.4s;
  border: 1px solid rgba(56,189,248,0.12);
  background: rgba(12,17,32,0.6);
}
.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.dash-topbar-title { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.dash-topbar-sport { font-size: 17px; font-weight: 800; margin-top: 2px; }

/* Period tabs */
.period-tabs { display: flex; gap: 8px; }
.period-tab {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid transparent;
  transition: all 0.2s;
  font-family: inherit;
}

/* KPI grid */
.kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
.kpi-card {
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.kpi-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.kpi-val   { font-size: 22px; font-weight: 900; margin: 6px 0 4px; }
.kpi-delta { font-size: 11px; font-weight: 600; }

/* Chart row */
.chart-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.chart-panel {
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  border: 1px solid rgba(56,189,248,0.08);
}
.chart-title { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }

/* Mini line chart */
.mini-chart {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mini-chart-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.mini-chart-val   { font-size: 20px; font-weight: 900; margin-bottom: 10px; }

/* Heat + insights row */
.bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.heat-panel {
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  border: 1px solid rgba(56,189,248,0.08);
}
.heat-grid { display: flex; gap: 4px; flex-direction: column; align-items: center; }
.heat-row  { display: flex; gap: 4px; }
.heat-cell {
  width: 22px; height: 22px;
  border-radius: 4px;
  transition: transform 0.2s;
  cursor: default;
}
.heat-cell:hover { transform: scale(1.3); }
.heat-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}
.insights-panel {
  padding: 20px;
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.insights-heading { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.insight-row { display: flex; gap: 10px; align-items: flex-start; }
.insight-icon { font-size: 16px; }
.insight-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.insight-body  { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  padding: 100px 24px;
  background: rgba(5,8,16,0.8);
  border-top: 1px solid rgba(255,255,255,0.04);
}
#products .prod-inner { max-width: 1200px; margin: 0 auto; }
#products .section-header { text-align: center; margin-bottom: 72px; }
#products h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; letter-spacing: -1.5px; margin: 0 0 14px; }
#products .section-sub { color: rgba(255,255,255,0.4); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* Featured TeeStats card */
.prod-featured {
  border-radius: 24px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(56,189,248,0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 24px;
}
.prod-featured-glow {
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.prod-feat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.prod-feat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.prod-feat-name    { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.prod-feat-tagline { font-size: 12px; color: #38BDF8; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.prod-live-badge {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(56,189,248,0.12);
  margin-left: auto;
}
.prod-live-badge span { font-size: 11px; font-weight: 700; color: #38BDF8; }
.prod-featured p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.prod-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.prod-chip {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.prod-dl-btn {
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  color: #050810;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.prod-dl-btn:hover { opacity: 0.88; }
.prod-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.prod-stat-card {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.prod-stat-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.prod-stat-val   { font-size: 26px; font-weight: 900; margin-bottom: 2px; }
.prod-stat-unit  { font-size: 11px; color: rgba(255,255,255,0.3); }

/* App card (non-featured) */
.app-card {
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.app-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.app-card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  pointer-events: none;
}
.app-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.app-card-logo-row { display: flex; align-items: center; gap: 12px; }
.app-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.app-card-name    { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.app-card-tagline { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; }
.app-status-badge {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 100px;
  flex-shrink: 0;
}
.app-status-dot { width: 5px; height: 5px; border-radius: 50%; }
.app-status-text { font-size: 10px; font-weight: 700; }
.app-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.app-mini-stats { display: flex; gap: 12px; margin-bottom: 20px; }
.app-mini-stat {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
}
.app-mini-stat-val   { font-size: 14px; font-weight: 900; }
.app-mini-stat-label { font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.8px; }
.app-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.app-chip {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
}
.app-cta {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px; font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
}

/* ============================================================
   AUDIENCES
   ============================================================ */
#audiences {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
#audiences .section-header { text-align: center; margin-bottom: 60px; }
#audiences h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; letter-spacing: -1.5px; margin: 0 0 14px; }
.audience-card {
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.audience-card:hover { transform: translateY(-6px); }
.audience-most-popular {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  color: #050810;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.audience-icon { font-size: 32px; margin-bottom: 16px; display: inline-block; }
.audience-subtitle { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.audience-card h3 { font-size: 22px; font-weight: 800; margin: 0 0 20px; letter-spacing: -0.5px; }
.audience-points { padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.audience-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.audience-check { font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.audience-cta-wrap { padding-top: 20px; }
.audience-cta {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: inherit;
}
.audience-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ============================================================
   ROADMAP
   ============================================================ */
#roadmap {
  padding: 100px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}
#roadmap .road-inner { max-width: 1200px; margin: 0 auto; }
#roadmap .section-header { text-align: center; margin-bottom: 72px; }
#roadmap h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; letter-spacing: -1.5px; margin: 0 0 14px; }
.road-pills { display: flex; justify-content: center; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.road-pill {
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.road-pill-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
/* Timeline */
.road-timeline { position: relative; }
.road-center-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #38BDF8, #818CF8, #A78BFA, #F59E0B, #EC4899);
  opacity: 0.2;
  transform: translateX(-50%);
}
.road-rows { display: flex; flex-direction: column; gap: 48px; }
.road-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
}
.road-left  { display: flex; justify-content: flex-end; padding-right: 32px; }
.road-right { padding-left: 32px; }
.road-dot-col { display: flex; justify-content: center; position: relative; }
.road-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  z-index: 1;
  position: relative;
}
.road-stub { /* text on the empty side */ }
.road-stub-quarter { font-size: 13px; font-weight: 700; }
.road-stub-emoji   { font-size: 28px; margin-top: 6px; }
.road-card {
  max-width: 420px;
  padding: 24px;
  background: rgba(12,17,32,0.85);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.road-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.road-card-topbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.road-card-quarter { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.road-status-badge {
  display: flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 100px;
  flex-shrink: 0;
}
.road-status-dot { width: 5px; height: 5px; border-radius: 50%; }
.road-status-text { font-size: 10px; font-weight: 700; }
.road-card-sport { font-size: 22px; margin-bottom: 8px; }
.road-card-title { font-size: 16px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; color: #fff; }
.road-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0 0 16px; }
.road-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.road-chip {
  padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 24px 40px;
  background: rgba(12,17,32,0.4);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-brand-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: #050810;
}
.footer-brand-name { font-weight: 800; font-size: 17px; }
.footer-tagline {
  font-size: 11px; font-weight: 700; color: #38BDF8;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social:hover { border-color: #38BDF8; color: #38BDF8; }
.footer-col-heading {
  font-size: 12px; font-weight: 700; color: #fff;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 14px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.footer-col-links a:hover { color: #38BDF8; }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { font-size: 13px; color: var(--text-muted); }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .kpi-grid { grid-template-columns: repeat(2,1fr); }
  .chart-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid-inner { grid-template-columns: 1fr; }
  .prod-featured { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-outline, .nav-actions .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .grid-3 { grid-template-columns: 1fr; }
  .bottom-row { grid-template-columns: 1fr; }
  .road-row { grid-template-columns: 1fr; }
  .road-center-line { display: none; }
  .road-left { justify-content: flex-start; padding-right: 0; }
  .road-right { padding-left: 0; }
  .road-dot-col { justify-content: flex-start; }
  .road-stub { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  #features, #audiences, #roadmap { padding: 60px 16px; }
  #dashboard { padding: 60px 16px 80px; }
  #products  { padding: 60px 16px; }
  .kpi-grid  { grid-template-columns: repeat(2,1fr); }
  .slider-track { height: 260px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
