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

:root {
  --blue:    #4a9eff;
  --purple:  #8b5cf6;
  --pink:    #e879f9;
  --orange:  #fb923c;
  --grad:    linear-gradient(135deg, #4a9eff 0%, #8b5cf6 35%, #e879f9 70%, #fb923c 100%);
  --grad-h:  linear-gradient(90deg, #4a9eff, #8b5cf6, #e879f9, #fb923c);
  --bg:      #06060f;
  --bg-2:    #0d0d1a;
  --bg-3:    #12121f;
  --card:    #0f0f1e;
  --card-b:  rgba(255,255,255,0.06);
  --text:    #f0f0ff;
  --muted:   #7878a0;
  --r:       16px;
  --r-lg:    24px;
  --shadow:  0 0 60px rgba(139,92,246,0.15);
}

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

html { scroll-behavior: smooth; }

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

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--card-b);
  background: rgba(139,92,246,0.1);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: var(--purple); text-transform: uppercase;
}
.badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--purple); display:block; animation: pulse 2s infinite; }

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.4); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all .25s ease; border: none; outline: none;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 30px rgba(139,92,246,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(139,92,246,0.6); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--card-b);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }

.btn-outline {
  background: transparent;
  border: 1px solid;
  border-image: var(--grad) 1;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content:''; position:absolute; inset:0;
  background: var(--grad); opacity:0; transition:.25s;
}
.btn-outline:hover::before { opacity:.15; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.section-header p { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto; }

/* ── Cards ── */
.card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r-lg);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139,92,246,0.12);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  background: rgba(6,6,15,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-b);
  transition: background .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 22px; font-weight: 900; letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-decoration: none;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139,92,246,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 50%, rgba(74,158,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232,121,249,0.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
}
.hero-left { max-width: 580px; }
.hero-eyebrow { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 24px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-b); border-radius: var(--r);
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #4a9eff, #8b5cf6); }
.av2 { background: linear-gradient(135deg, #8b5cf6, #e879f9); }
.av3 { background: linear-gradient(135deg, #e879f9, #fb923c); }
.av4 { background: linear-gradient(135deg, #fb923c, #4a9eff); }
.hero-trust-text { font-size: 13px; }
.hero-trust-text strong { display: block; font-weight: 700; font-size: 15px; }
.hero-trust-text span { color: var(--muted); }

/* Hero visual */
.hero-right { position: relative; }
.hero-dashboard {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.05);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }

.dash-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.dash-header h4 { font-size: 13px; font-weight: 600; color: var(--muted); }
.dash-live { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #4ade80; }
.dash-live::before { content:''; width:6px; height:6px; border-radius:50%; background:#4ade80; animation: pulse 2s infinite; }

.dash-chart {
  height: 120px; display: flex; align-items: flex-end; gap: 4px;
  margin-bottom: 20px; padding: 0 4px;
}
.dash-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(139,92,246,0.6), rgba(74,158,255,0.8));
  position: relative; overflow: hidden;
  animation: barGrow .8s ease backwards;
}
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } }
.dash-bar.up { background: linear-gradient(to top, rgba(74,222,128,0.4), rgba(74,222,128,0.8)); }
.dash-bar.down { background: linear-gradient(to top, rgba(248,113,113,0.4), rgba(248,113,113,0.8)); }

.dash-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.dash-stat { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 12px; }
.dash-stat-label { font-size: 10px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.dash-stat-val { font-size: 18px; font-weight: 800; margin-top: 4px; }
.dash-stat-val.green { color: #4ade80; }
.dash-stat-val.blue { background: linear-gradient(135deg, #4a9eff, #8b5cf6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.hero-float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.hero-float-1 { top: -20px; left: -40px; animation: float2 5s ease-in-out infinite; }
.hero-float-2 { bottom: 30px; right: -30px; animation: float3 7s ease-in-out infinite; }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(-2deg);} 50%{transform:translateY(-8px) rotate(2deg);} }
@keyframes float3 { 0%,100%{transform:translateY(0) rotate(1deg);} 50%{transform:translateY(-10px) rotate(-1deg);} }

.float-label { font-size: 10px; color: var(--muted); font-weight: 500; }
.float-val { font-size: 16px; font-weight: 800; }
.float-val.profit { color: #4ade80; }
.float-val.rank { background: var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ─────────────────────────────────────────
   PRODUCT ENGINE
───────────────────────────────────────── */
.product { padding: 100px 24px; background: var(--bg-2); }
.product-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.ptab {
  padding: 10px 24px; border-radius: 999px;
  border: 1px solid var(--card-b); background: transparent;
  color: var(--muted); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .25s;
}
.ptab.active, .ptab:hover {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 0 20px rgba(139,92,246,0.4);
}

.product-panels { position: relative; }
.product-panel { display: none; animation: fadeIn .4s ease; }
.product-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@keyframes fadeIn { from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:translateY(0); } }

.panel-info h3 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.panel-info p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.panel-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.panel-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
}
.panel-features li::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(74,222,128,0.15); color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

.panel-visual { position: relative; }
.trader-cards { display: flex; flex-direction: column; gap: 12px; }
.trader-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: all .25s;
}
.trader-card:hover { border-color: rgba(139,92,246,0.4); transform: translateX(4px); }
.trader-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; flex-shrink: 0;
}
.trader-info { flex: 1; }
.trader-name { font-size: 14px; font-weight: 700; }
.trader-sub { font-size: 12px; color: var(--muted); }
.trader-stats { text-align: right; }
.trader-return { font-size: 16px; font-weight: 800; color: #4ade80; }
.trader-followers { font-size: 11px; color: var(--muted); }

/* Strategy builder visual */
.strategy-builder { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--r-lg); padding: 20px; }
.sb-header { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.sb-blocks { display: flex; flex-direction: column; gap: 8px; }
.sb-block {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 600; border: 1px solid;
}
.sb-block.if { background: rgba(74,158,255,0.1); border-color: rgba(74,158,255,0.2); color: var(--blue); }
.sb-block.then { background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.2); color: #4ade80; }
.sb-block.stop { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.2); color: #f87171; }
.sb-tag {
  font-size: 10px; padding: 2px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.08); color: var(--muted);
  font-weight: 500; text-transform: uppercase;
}

/* Signals visual */
.signal-list { display: flex; flex-direction: column; gap: 10px; }
.signal-item {
  background: var(--card); border: 1px solid var(--card-b);
  border-radius: var(--r); padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
}
.signal-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.signal-info { flex: 1; }
.signal-name { font-size: 13px; font-weight: 700; }
.signal-meta { font-size: 11px; color: var(--muted); }
.signal-right { text-align: right; }
.signal-wr { font-size: 14px; font-weight: 800; color: #4ade80; }
.signal-price { font-size: 11px; color: var(--muted); }

/* ─────────────────────────────────────────
   LIVE STATS
───────────────────────────────────────── */
.stats { padding: 80px 24px; background: var(--bg); position: relative; overflow: hidden; }
.stats-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(139,92,246,0.08) 0%, transparent 70%);
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px;
}
.stat-item {
  background: var(--card);
  border: 1px solid var(--card-b);
  padding: 32px 24px; text-align: center;
  transition: background .25s;
}
.stat-item:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.stat-item:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.stat-item:hover { background: var(--bg-3); }
.stat-number {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; letter-spacing: -.02em;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 500; }

/* ─────────────────────────────────────────
   STRATEGIES & SIGNALS
───────────────────────────────────────── */
.strategies { padding: 100px 24px; background: var(--bg-2); }
.strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.strategy-card { padding: 24px; }
.strategy-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.strategy-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  border: 1px solid var(--card-b);
}
.strategy-name { font-size: 15px; font-weight: 700; }
.strategy-type { font-size: 12px; color: var(--muted); }
.strategy-chart-bar {
  height: 4px; border-radius: 2px;
  background: var(--card-b); margin-bottom: 20px; overflow: hidden;
}
.strategy-chart-fill {
  height: 100%; border-radius: 2px;
  background: var(--grad); transition: width 1s ease;
}
.strategy-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.s-metric-label { font-size: 11px; color: var(--muted); }
.s-metric-val { font-size: 16px; font-weight: 800; margin-top: 2px; }
.s-metric-val.profit { color: #4ade80; }
.risk-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
}
.risk-low { background: rgba(74,222,128,0.15); color: #4ade80; }
.risk-med { background: rgba(251,146,60,0.15); color: var(--orange); }
.risk-high { background: rgba(248,113,113,0.15); color: #f87171; }
.strategy-footer { display: flex; align-items: center; justify-content: space-between; }
.copy-btn {
  padding: 8px 18px; border-radius: 10px; font-size: 13px; font-weight: 700;
  background: var(--grad); color: #fff; border: none; cursor: pointer;
  transition: opacity .2s;
}
.copy-btn:hover { opacity: .85; }

/* ─────────────────────────────────────────
   LIVE COMPETITIONS
───────────────────────────────────────── */
.competitions { padding: 100px 24px; background: var(--bg); position: relative; overflow: hidden; }
.comp-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(251,146,60,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(232,121,249,0.08) 0%, transparent 60%);
}
.comp-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comp-card { padding: 28px; }
.comp-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.comp-title-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.comp-title-wrap p { font-size: 13px; color: var(--muted); }
.comp-prize {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 28px; font-weight: 900; text-align: right;
}
.comp-prize-label { font-size: 11px; color: var(--muted); text-align: right; font-weight: 500; }
.comp-timer { display: flex; gap: 8px; margin-bottom: 24px; }
.timer-block {
  background: rgba(255,255,255,0.05); border: 1px solid var(--card-b);
  border-radius: 10px; padding: 10px 14px; text-align: center; min-width: 56px;
}
.timer-num { font-size: 22px; font-weight: 900; line-height: 1; }
.timer-unit { font-size: 10px; color: var(--muted); font-weight: 500; text-transform: uppercase; }
.comp-leaderboard { margin-bottom: 20px; }
.leader-row {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--card-b);
}
.leader-row:last-child { border-bottom: none; }
.leader-rank {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.rank-1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000; }
.rank-2 { background: linear-gradient(135deg, #e2e8f0, #94a3b8); color: #000; }
.rank-3 { background: linear-gradient(135deg, #fb923c, #c2410c); color: #fff; }
.rank-other { background: var(--card-b); color: var(--muted); }
.leader-name { flex: 1; font-size: 13px; font-weight: 600; }
.leader-pnl { font-size: 14px; font-weight: 800; color: #4ade80; }

/* ─────────────────────────────────────────
   FUNDED CHALLENGES
───────────────────────────────────────── */
.funded { padding: 100px 24px; background: var(--bg-2); }
.funded-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.funded-card { padding: 28px; position: relative; overflow: hidden; }
.funded-card.featured {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 0 40px rgba(139,92,246,0.15);
}
.funded-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 16px; right: -28px;
  background: var(--grad); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .08em;
  padding: 4px 36px; transform: rotate(45deg);
}
.funded-tier { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.funded-amount { font-size: 36px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 4px; }
.funded-amount.grad { background: var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.funded-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.funded-rules { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.funded-rules li { display: flex; justify-content: space-between; font-size: 13px; }
.funded-rules li span:first-child { color: var(--muted); }
.funded-rules li span:last-child { font-weight: 700; }
.funded-divider { border: none; border-top: 1px solid var(--card-b); margin-bottom: 28px; }
.phase-track { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.phase-step {
  height: 4px; border-radius: 2px; flex: 1;
  background: var(--grad);
}
.phase-step.done { opacity: 1; }
.phase-step.pending { opacity: .2; }
.phase-arrow { font-size: 12px; color: var(--muted); }

/* ─────────────────────────────────────────
   LEARN & MISSIONS
───────────────────────────────────────── */
.learn { padding: 100px 24px; background: var(--bg); }
.learn-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.learn-missions { display: flex; flex-direction: column; gap: 12px; }
.mission-card {
  padding: 20px;
  display: flex; align-items: center; gap: 16px; cursor: pointer;
}
.mission-card.completed { border-color: rgba(74,222,128,0.25); }
.mission-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.mission-info { flex: 1; }
.mission-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.mission-meta { font-size: 12px; color: var(--muted); }
.mission-progress-wrap { width: 60px; }
.mission-progress-ring { position: relative; width: 44px; height: 44px; }
.mission-progress-ring svg { transform: rotate(-90deg); }
.mission-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(74,222,128,0.2); color: #4ade80;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.mission-xp {
  font-size: 12px; font-weight: 700; color: var(--purple);
  background: rgba(139,92,246,0.1); padding: 2px 8px; border-radius: 999px;
}

.learn-right {}
.learn-path { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--r-lg); padding: 28px; }
.learn-path h3 { font-size: 18px; font-weight: 800; margin-bottom: 24px; }
.path-steps { display: flex; flex-direction: column; gap: 0; }
.path-step { display: flex; gap: 16px; }
.path-step-line { display: flex; flex-direction: column; align-items: center; }
.path-dot {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.path-dot.done { background: var(--grad); color: #fff; }
.path-dot.active { background: rgba(139,92,246,0.2); border: 2px solid var(--purple); color: var(--purple); }
.path-dot.locked { background: var(--card-b); color: var(--muted); }
.path-connector { width: 2px; flex: 1; background: var(--card-b); margin: 4px 0; min-height: 24px; }
.path-dot.done + .path-connector { background: var(--grad); }
.path-content { padding-bottom: 24px; padding-left: 4px; }
.path-content h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.path-content p { font-size: 12px; color: var(--muted); }
.path-content .path-tag { display: inline-block; margin-top: 6px; font-size: 10px; padding: 2px 8px; border-radius: 4px; font-weight: 600; }
.path-tag.done-tag { background: rgba(74,222,128,0.15); color: #4ade80; }
.path-tag.active-tag { background: rgba(139,92,246,0.15); color: var(--purple); }
.path-tag.locked-tag { background: rgba(255,255,255,0.05); color: var(--muted); }

/* ─────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────── */
.final-cta {
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
  background: var(--bg-2);
}
.final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(139,92,246,0.15) 0%, transparent 70%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(32px, 5vw, 64px); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 20px; }
.final-cta p { color: var(--muted); font-size: 18px; margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--card-b);
  padding: 64px 24px 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 16px 0 20px; max-width: 240px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--card-b); background: var(--card);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--muted); font-size: 14px;
  transition: all .2s;
}
.social-link:hover { border-color: var(--purple); color: var(--purple); }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--card-b); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--text); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .product-panel.active { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:first-child, .stat-item:last-child { border-radius: 0; }
  .stats-grid { gap: 1px; }
  .strategy-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .funded-grid { grid-template-columns: 1fr; }
  .learn-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:first-child { border-radius: var(--r) 0 0 0; }
  .strategy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
