:root {
  --bg: #0A1628;
  --bg-surface: #0F2040;
  --bg-card: #132848;
  --fg: #F0F4FF;
  --fg-muted: #8899BB;
  --accent: #00D4AA;
  --accent-dim: rgba(0, 212, 170, 0.12);
  --border: rgba(0, 212, 170, 0.2);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-inner { display: flex; align-items: baseline; gap: 16px; }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.3px; color: var(--fg); text-decoration: none; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-dashboard-link { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; letter-spacing: 0.02em; padding: 7px 18px; border: 1px solid var(--border); border-radius: 8px; background: var(--accent-dim); transition: background 0.15s; }
.nav-dashboard-link:hover { background: rgba(0,212,170,0.22); }

/* HERO */
.hero {
  padding: 100px 48px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}
.hero-cta:hover { opacity: 0.88; }

/* STATS */
.stats {
  padding: 0 48px 80px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--border);
  max-width: 900px;
}
.stat {
  background: var(--bg-surface);
  padding: 28px 24px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-surface);
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.manifesto-inner { max-width: 700px; }
.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* STRATEGY */
.strategy { padding: 100px 48px; }
.strategy-header { max-width: 600px; margin-bottom: 64px; }
.strategy-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.strategy-sub { font-size: 18px; color: var(--fg-muted); }
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
}
.strategy-card {
  background: var(--bg-surface);
  padding: 40px 36px;
}
.strategy-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.strategy-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.strategy-card-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 100px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.closing-inner { max-width: 700px; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.footer-meta { font-size: 13px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .hero, .stats, .manifesto, .strategy, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding-top: 20px; padding-bottom: 20px; }
  .hero { padding-top: 64px; padding-bottom: 56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-grid { grid-template-columns: 1fr; }
  .manifesto, .strategy, .closing { padding-top: 72px; padding-bottom: 72px; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 42px; }
  .stats { padding-bottom: 56px; }
}