/* ════════════════════════════════════════════════
   MOOV — Design System & Stylesheet
   Brand: #F5C800 (Gold) on #0D0D0D (Dark)
   Font: Inter
════════════════════════════════════════════════ */

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

:root {
  --gold:       #F5C800;
  --gold-dark:  #D4A900;
  --gold-light: #FDE76A;
  --bg-dark:    #0D0D0D;
  --bg-mid:     #111111;
  --bg-card:    #181818;
  --bg-card2:   #1E1E1E;
  --border:     #2A2A2A;
  --text:       #FFFFFF;
  --text-muted: #888888;
  --text-dim:   #555555;
  --green:      #2ECC71;
  --red:        #FF5A5A;
  --blue:       #378ADD;
  --orange:     #EF9F27;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold:0 0 40px rgba(245,200,0,0.15);
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── Typography ── */
.text-gold  { color: var(--gold); }
.gold       { color: var(--gold); }
.green      { color: var(--green); }
.red-x      { color: var(--red); }
.check-gold { color: var(--gold); }
.gold-txt   { color: var(--gold) !important; }
.white      { color: #fff; }
.text-right { text-align: right; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0D0D0D;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,200,0,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm   { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg   { padding: 14px 28px; font-size: 1rem; }
.btn-xl   { padding: 16px 36px; font-size: 1.05rem; }

/* ── Section Shared ── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-mid); }
.section-label {
  display: inline-block;
  background: rgba(245,200,0,0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,200,0,0.25);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-align: center;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

/* ════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(13,13,13,0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(13,13,13,0.97);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 24px 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 0;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-menu.open { display: flex; }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,200,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,200,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,0,0.12) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(55,138,221,0.08) 0%, transparent 70%);
  bottom: -100px; right: 200px;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.25);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.8rem;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-sub strong { color: #fff; }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}
.hero-stat { text-align: left; padding: 0 28px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 28px;
}

/* ── Hero Phone ── */
.hero-phone-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 60px 80px 0;
}
.hero-phone {
  width: 280px;
  background: #0d0d0d;
  border-radius: 40px;
  border: 2px solid #2a2a2a;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05), var(--shadow-gold);
  overflow: hidden;
  position: relative;
  animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.phone-notch {
  width: 100px; height: 26px;
  background: #0d0d0d;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  border: 2px solid #2a2a2a;
  border-top: none;
  position: relative;
  z-index: 2;
}
.phone-screen {
  padding: 0;
  min-height: 550px;
  display: flex;
  flex-direction: column;
}
.app-status-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px 4px;
  font-size: 9px;
  color: #888;
}
.app-home { flex: 1; padding: 8px 12px 4px; display: flex; flex-direction: column; gap: 8px; }
.app-greeting {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-hello { color: #888; font-size: 9px; }
.app-name  { color: #fff; font-size: 12px; font-weight: 600; }
.app-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #222;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 9px; font-weight: 600;
}
.app-credit-card {
  background: #181818;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #252525;
}
.credit-row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.credit-label { color: #888; font-size: 8px; }
.credit-band  { color: var(--gold); font-size: 13px; font-weight: 700; }
.credit-amount { color: #fff; font-size: 12px; font-weight: 600; }
.credit-bar-wrap { background: #2a2a2a; border-radius: 999px; height: 4px; margin-bottom: 6px; }
.credit-bar { background: var(--gold); border-radius: 999px; height: 4px; transition: width 1s; }
.credit-sub { color: #666; font-size: 7px; }
.app-quick-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
}
.quick-btn {
  background: #181818;
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  font-size: 7px;
  color: #aaa;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border: 1px solid #252525;
}
.quick-btn i { color: var(--gold); font-size: 13px; }
.app-alert {
  background: rgba(255,90,90,0.1);
  border: 1px solid rgba(255,90,90,0.25);
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.alert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.alert-text { color: #fff; font-size: 8px; flex: 1; }
.alert-badge {
  background: var(--red);
  color: #fff;
  font-size: 6px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}
.app-spend-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.spend-block {
  background: #181818;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #252525;
}
.spend-label { color: #888; font-size: 7px; }
.spend-val   { font-size: 12px; font-weight: 600; margin: 2px 0; }
.spend-sub   { font-size: 7px; color: #888; }
.spend-sub.green { color: var(--green); }
.app-tab-bar {
  display: flex;
  background: #111;
  padding: 8px 0 12px;
  border-top: 1px solid #222;
}
.tab {
  flex: 1;
  text-align: center;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
.tab.active { color: var(--gold); }

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: floatCard 3.5s ease-in-out infinite;
}
.float-card span { color: var(--text-muted); font-size: 0.75rem; }
.float-card strong { color: #fff; font-size: 0.9rem; font-weight: 700; }
.float-card-1 {
  top: 15%;
  left: -70px;
  animation-delay: 0.5s;
}
.float-card-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1.2s;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════ */
.problem-section .container { text-align: center; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.problem-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.problem-card:hover {
  border-color: rgba(245,200,0,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.problem-icon {
  width: 48px; height: 48px;
  background: rgba(245,200,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.problem-icon i { color: var(--gold); font-size: 1.2rem; }
.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.problem-card p strong { color: #fff; }

/* ════════════════════════════════════════════════
   PRODUCT / FEATURE SHOWCASE
════════════════════════════════════════════════ */
.product-section { text-align: center; }
.feature-showcase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}
.feature-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.feature-tabs::-webkit-scrollbar { display: none; }
.feature-tab {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font);
}
.feature-tab i { font-size: 1.1rem; }
.feature-tab:hover { color: var(--text-muted); }
.feature-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(245,200,0,0.04);
}
.feature-panels { padding: 0; }
.feature-panel { display: none; }
.feature-panel.active { display: block; }
.panel-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  align-items: center;
}
.panel-text {
  padding: 3rem;
  text-align: left;
}
.panel-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.panel-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.panel-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.panel-list { display: flex; flex-direction: column; gap: 8px; }
.panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.panel-list li i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

/* ── Mini phone inside panel ── */
.panel-phone {
  background: var(--bg-mid);
  border-left: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.mini-phone {
  width: 220px;
  background: #0d0d0d;
  border-radius: 28px;
  border: 2px solid #2a2a2a;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}
.mini-screen {
  padding: 12px 10px;
  min-height: 400px;
  position: relative;
}
.ms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.ms-title { font-size: 11px; font-weight: 700; color: #fff; }
.ms-month { font-size: 8px; color: #888; }
.ms-badge {
  background: var(--gold);
  color: #0d0d0d;
  font-size: 7px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}

/* Fuel chart area */
.ms-chart-area { height: 90px; margin-bottom: 8px; }
.ms-tx { display: flex; flex-direction: column; gap: 6px; }
.tx-row {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #181818;
  border-radius: 7px;
  padding: 6px 7px;
}
.tx-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
}
.tx-icon.fuel { background: rgba(245,200,0,0.15); color: var(--gold); }
.tx-icon.fare { background: rgba(55,138,221,0.15); color: var(--blue); }
.tx-info { flex: 1; }
.tx-info span { font-size: 8px; color: #fff; display: block; }
.tx-info small { font-size: 7px; color: #888; }
.tx-amt { font-size: 8px; color: var(--red); font-weight: 600; white-space: nowrap; }
.ms-fab {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0d0d0d;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

/* Maintenance screen */
.ms-vehicle-card {
  background: #181818;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
}
.vc-row { display: flex; align-items: center; gap: 8px; }
.vc-row i { font-size: 16px; }
.vc-plate { font-size: 10px; font-weight: 700; color: #fff; }
.vc-model { font-size: 8px; color: #888; }
.vc-km { font-size: 9px; color: var(--gold); margin-left: auto; font-weight: 600; }
.ms-alerts { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
.alert-item {
  background: #181818;
  border-radius: 7px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-left: 2px solid transparent;
}
.alert-item.high { border-left-color: var(--red); }
.alert-item.med  { border-left-color: var(--orange); }
.alert-item.low  { border-left-color: var(--green); }
.ai-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink:0; }
.ai-dot.med { background: var(--orange); }
.ai-dot.low { background: var(--green); }
.ai-info { flex: 1; }
.ai-info span { font-size: 8px; color: #fff; display: block; }
.ai-info small { font-size: 7px; color: #888; }
.ai-badge {
  font-size: 6px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}
.ai-badge.red    { background: rgba(255,90,90,0.2); color: var(--red); }
.ai-badge.orange { background: rgba(239,159,39,0.2); color: var(--orange); }
.ai-badge.green  { background: rgba(46,204,113,0.2); color: var(--green); }
.ms-compliance {
  background: #181818;
  border-radius: 7px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: #888;
}
.ms-compliance strong { margin-left: auto; }
.comp-bar { flex: 1; height: 4px; background: #2a2a2a; border-radius: 999px; }
.comp-fill { height: 4px; background: var(--gold); border-radius: 999px; }

/* Credit screen */
.ms-credit-circle {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 6px 0;
  height: 90px;
}
.credit-ring { width: 90px; height: 90px; }
.credit-ring-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.cr-available { font-size: 11px; font-weight: 700; color: var(--gold); }
.cr-label { font-size: 7px; color: #888; }
.ms-credit-stats {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
.cs-item { text-align: center; }
.cs-item span { display: block; font-size: 7px; color: #888; }
.cs-item strong { font-size: 9px; color: #fff; }
.cs-item strong.gold { color: var(--gold); }
.cs-item strong.green { color: var(--green); }
.ms-credit-history {
  background: #181818;
  border-radius: 7px;
  padding: 6px 8px;
  margin-bottom: 7px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ch-row {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: #888;
}
.ch-row span { color: #aaa; }
.ch-row small { color: #666; }
.ch-row.gold-txt span { color: var(--gold); }
.ms-credit-btn {
  background: var(--gold);
  color: #0d0d0d;
  border-radius: 6px;
  padding: 6px;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* Analytics screen */
.ms-insight-total {
  background: #181818;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.it-label { font-size: 8px; color: #888; flex: 1; }
.it-val { font-size: 11px; font-weight: 700; color: #fff; }
.it-change { font-size: 7px; color: var(--red); }
.it-change.up { color: var(--red); }
.ms-donut-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.donut-legend { display: flex; flex-direction: column; gap: 4px; }
.dl-item { display: flex; align-items: center; gap: 5px; font-size: 8px; color: #aaa; }
.dl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dl-dot.gold { background: var(--gold); }
.dl-dot.blue { background: var(--blue); }
.ms-station-list { display: flex; flex-direction: column; gap: 5px; }
.station-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: #aaa;
}
.station-row span { width: 70px; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 7px; }
.st-bar-wrap { flex: 1; height: 4px; background: #2a2a2a; border-radius: 999px; }
.st-bar { height: 4px; background: var(--gold); border-radius: 999px; }

/* Map screen */
.ms-map-bg {
  height: 90px;
  background: #0f1f0f;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}
.map-you {
  position: absolute;
  bottom: 6px; left: 6px;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}
.ms-station-cards { display: flex; flex-direction: column; gap: 5px; }
.sc-station {
  background: #181818;
  border-radius: 7px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.scs-icon {
  width: 22px; height: 22px;
  background: rgba(245,200,0,0.1);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: var(--gold);
}
.scs-info { flex: 1; }
.scs-info span { font-size: 8px; color: #fff; display: block; }
.scs-info small { font-size: 7px; color: #888; }
.scs-badge { font-size: 7px; color: var(--green); font-weight: 600; }

/* ════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════ */
.how-section { text-align: center; }
.steps-wrap { position: relative; margin-bottom: 3rem; }
.step-connector {
  position: absolute;
  top: 64px; left: 50%;
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.step {
  padding: 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: var(--transition);
}
.step.visible { opacity: 1; transform: translateY(0); }
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(245,200,0,0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-icon {
  width: 56px; height: 56px;
  background: rgba(245,200,0,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border: 1px solid rgba(245,200,0,0.2);
}
.step-icon i { color: var(--gold); font-size: 1.4rem; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* Journey flow */
.journey-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}
.jf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
}
.jf-node i {
  width: 40px; height: 40px;
  background: rgba(245,200,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.jf-node span { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.jf-start i, .jf-end i { background: var(--gold); color: #0d0d0d; }
.jf-end span, .jf-start span { color: #fff; }
.jf-arrow { color: var(--text-dim); font-size: 1rem; padding: 0 4px; }

/* ════════════════════════════════════════════════
   USER SEGMENTS
════════════════════════════════════════════════ */
.users-section { text-align: center; }
.users-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  text-align: left;
}
.user-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
  position: relative;
  overflow: hidden;
}
.user-card.visible { opacity: 1; transform: translateY(0); }
.user-card:hover {
  border-color: rgba(245,200,0,0.3);
  transform: translateY(-4px);
}
.user-card.featured {
  border-color: rgba(245,200,0,0.4);
  background: linear-gradient(160deg, rgba(245,200,0,0.06) 0%, var(--bg-card) 60%);
}
.user-card.featured:hover { transform: translateY(-6px); }
.user-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.user-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.user-icon {
  width: 52px; height: 52px;
  background: rgba(245,200,0,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.user-icon i { color: var(--gold); font-size: 1.3rem; }
.user-title { font-size: 1rem; font-weight: 700; }
.user-stat  { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.user-pain {
  background: var(--bg-card2);
  border-left: 3px solid rgba(245,200,0,0.5);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
}
.pain-quote { font-size: 0.85rem; color: var(--text-muted); font-style: italic; line-height: 1.5; }
.user-benefits { display: flex; flex-direction: column; gap: 0.75rem; }
.ub-item { display: flex; gap: 10px; align-items: flex-start; }
.ub-icon {
  width: 30px; height: 30px;
  background: rgba(245,200,0,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.ub-item strong { font-size: 0.85rem; display: block; margin-bottom: 2px; }
.ub-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* ════════════════════════════════════════════════
   MARKET
════════════════════════════════════════════════ */
.market-section { text-align: center; }
.market-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
  margin-bottom: 3rem;
}
.mc-ring {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(245,200,0,0.3);
  background: rgba(245,200,0,0.04);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin: 0 auto 2rem;
}
.mc-tam-label {
  position: absolute;
  top: 14px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}
.mc-sam {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(55,138,221,0.4);
  background: rgba(55,138,221,0.06);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mc-sam-label {
  position: absolute;
  top: 12px;
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 600;
}
.mc-som {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(245,200,0,0.15);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.mc-text { text-align: center; }
.mc-text strong { display: block; font-size: 0.9rem; color: #fff; }
.mc-text span { display: block; font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.mc-text small { font-size: 0.7rem; color: #888; }
.market-stats-below {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.ms-stat { text-align: center; }
.ms-stat i { font-size: 1.2rem; display: block; margin-bottom: 4px; }
.ms-stat span { font-size: 1.3rem; font-weight: 800; color: #fff; display: block; }
.ms-stat small { font-size: 0.78rem; color: var(--text-muted); }
.market-details { display: flex; flex-direction: column; gap: 1rem; }
.md-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.md-card.highlight { border-color: rgba(245,200,0,0.3); }
.md-label { font-size: 0.75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.md-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.md-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.som-bars { display: flex; flex-direction: column; gap: 10px; margin-top: 0.5rem; }
.som-bar-row { display: flex; align-items: center; gap: 10px; }
.som-yr { width: 42px; font-size: 0.78rem; color: var(--text-muted); font-weight: 600; flex-shrink: 0; }
.som-bar-bg { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 999px; }
.som-bar-fill { height: 6px; background: var(--gold); border-radius: 999px; transition: width 1.5s ease; }
.som-val { font-size: 0.78rem; color: #fff; font-weight: 600; flex-shrink: 0; }
.data-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.dp-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.dp-item:hover { border-color: rgba(245,200,0,0.3); }
.dp-num { font-size: 1.5rem; font-weight: 900; color: var(--gold); margin-bottom: 0.3rem; }
.dp-lbl { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* ════════════════════════════════════════════════
   BUSINESS MODEL
════════════════════════════════════════════════ */
.business-section { text-align: center; }
.biz-flywheel {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto 3rem;
}
.flywheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.fw-inner { text-align: center; }
.fw-inner i { font-size: 1.2rem; display: block; margin-bottom: 4px; animation: spin 8s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.fw-inner span { font-size: 0.7rem; color: #888; line-height: 1.3; }
.flywheel-nodes {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(245,200,0,0.2);
}
.fw-node {
  position: absolute;
  top: 50%; left: 50%;
  --r: 130px;
}
.fw-node:nth-child(1) { transform: translate(-50%,-50%) rotate(0deg)   translateX(var(--r)) rotate(0deg); }
.fw-node:nth-child(2) { transform: translate(-50%,-50%) rotate(90deg)  translateX(var(--r)) rotate(-90deg); }
.fw-node:nth-child(3) { transform: translate(-50%,-50%) rotate(180deg) translateX(var(--r)) rotate(-180deg); }
.fw-node:nth-child(4) { transform: translate(-50%,-50%) rotate(270deg) translateX(var(--r)) rotate(-270deg); }
.fw-node-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #aaa;
  transform: translate(-50%, -50%);
}
.fw-node-box i { font-size: 0.9rem; }
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  transition: var(--transition);
}
.rev-card:hover { border-color: rgba(245,200,0,0.3); transform: translateY(-3px); }
.rev-card.primary { border-color: rgba(245,200,0,0.4); background: linear-gradient(160deg, rgba(245,200,0,0.06) 0%, var(--bg-card) 70%); }
.rev-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.rev-header i { color: var(--gold); font-size: 1.3rem; }
.rev-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #aaa;
}
.rev-badge.primary-badge { background: rgba(245,200,0,0.15); color: var(--gold); }
.rev-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.rev-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Competitive table */
.comp-table-wrap { margin-top: 3rem; }
.comp-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ct-header, .ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  border-bottom: 1px solid var(--border);
}
.ct-row:last-child { border-bottom: none; }
.ct-header {
  background: var(--bg-card2);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}
.ct-feature, .ct-col {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}
.ct-feature { color: var(--text-muted); }
.ct-col { justify-content: center; }
.moov-col { background: rgba(245,200,0,0.04); color: var(--gold) !important; font-weight: 700; }
.comp-caption { color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; font-style: italic; }

/* ════════════════════════════════════════════════
   ROADMAP
════════════════════════════════════════════════ */
.roadmap-section { text-align: center; }
.roadmap-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  text-align: left;
  margin-bottom: 4rem;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 20px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(245,200,0,0.2));
}
.rt-item {
  padding: 0 1.5rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.rt-item.visible { opacity: 1; transform: translateY(0); }
.rt-marker {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-mid);
  box-shadow: 0 0 0 2px var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.rt-period { font-size: 0.75rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.rt-title  { font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem; }
.rt-content ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.rt-content li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.rt-content li::before { content: '·'; position: absolute; left: 0; color: var(--gold); }
.rt-kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rt-kpi span {
  font-size: 0.78rem;
  background: rgba(245,200,0,0.08);
  color: var(--gold);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
}

/* Funding */
.funding-section {
  background: var(--bg-card);
  border: 1px solid rgba(245,200,0,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.funding-ask { text-align: center; }
.fa-label { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.fa-amount { font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.fa-sub { font-size: 0.85rem; color: var(--text-muted); }
.funding-bars { display: flex; flex-direction: column; gap: 1.2rem; }
.fb-item {}
.fb-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.88rem; font-weight: 600; }
.fb-pct { color: var(--gold); font-weight: 700; }
.fb-bar-bg { height: 8px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; margin-bottom: 4px; }
.fb-bar { height: 8px; background: var(--gold); border-radius: 999px; transition: width 1.5s ease; }
.fb-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════
   GTM
════════════════════════════════════════════════ */
.gtm-section { text-align: center; }
.gtm-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.gtm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: left;
  transition: var(--transition);
}
.gtm-card:hover { border-color: rgba(245,200,0,0.3); transform: translateY(-3px); }
.gtm-icon {
  width: 48px; height: 48px;
  background: rgba(245,200,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.gtm-icon i { color: var(--gold); font-size: 1.2rem; }
.gtm-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.gtm-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.launch-cities {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  gap: 0;
}
.city {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 2rem;
}
.city span { font-size: 0.9rem; font-weight: 700; }
.city small { font-size: 0.75rem; color: var(--text-muted); }
.city-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,200,0,0.2);
}
.city-dot.dim { background: #444; box-shadow: none; }
.city.active .city span { color: var(--gold); }
.city-line { width: 60px; height: 2px; background: var(--border); }

/* ════════════════════════════════════════════════
   CTA
════════════════════════════════════════════════ */
.cta-section { position: relative; overflow: hidden; }
.cta-wrap {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(245,200,0,0.2);
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,200,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin: 1rem 0;
  line-height: 1.15;
}
.cta-sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-tags { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 999px;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-tagline { color: var(--text-dim); font-size: 0.85rem; font-style: italic; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.fl-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.fl-col a { display: block; font-size: 0.83rem; color: var(--text-muted); margin-bottom: 0.5rem; transition: color 0.2s; }
.fl-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-pre-seed { color: var(--gold); font-weight: 600; }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 80px 24px 40px; max-width: 100%; }
  .hero-phone-wrap { padding: 0 24px 60px; }
  .market-layout { grid-template-columns: 1fr; }
  .mc-ring { width: 220px; height: 220px; }
  .mc-sam { width: 160px; height: 160px; }
  .mc-som { width: 90px; height: 90px; }
  .revenue-grid { grid-template-columns: repeat(2,1fr); }
  .data-points { grid-template-columns: repeat(2,1fr); }
  .gtm-grid { grid-template-columns: repeat(2,1fr); }
  .roadmap-timeline { grid-template-columns: repeat(2,1fr); }
  .roadmap-timeline::before { display: none; }
  .funding-section { grid-template-columns: 1fr; }
  .panel-content { grid-template-columns: 1fr; }
  .panel-phone { border-left: none; border-top: 1px solid var(--border); min-height: auto; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 68px; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero-stats { gap: 1rem; }
  .hero-stat { padding: 0 12px 0 0; }
  .hero-stat-divider { display: none; }
  .users-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .revenue-grid { grid-template-columns: 1fr; }
  .data-points { grid-template-columns: 1fr 1fr; }
  .gtm-grid { grid-template-columns: 1fr; }
  .roadmap-timeline { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .cta-wrap { padding: 3rem 1.5rem; }
  .biz-flywheel { width: 260px; height: 260px; }
  .fw-node { --r: 100px; }
  .journey-flow { gap: 4px; }
  .jf-arrow { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .hero-stat-divider { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
  .data-points { grid-template-columns: 1fr; }
  .comp-table { overflow-x: auto; }
  .launch-cities { flex-direction: column; }
  .city-line { width: 2px; height: 30px; }
}
