:root {
  --bg: #0f0f14;
  --surface: #17171f;
  --surface-2: #1e1e28;
  --fg: #f0f0f5;
  --fg-muted: #8b8b9e;
  --accent: #a3ff12;
  --accent-dim: rgba(163, 255, 18, 0.12);
  --border: rgba(255,255,255,0.07);
  --glow: rgba(163, 255, 18, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Outfit', system-ui, sans-serif; font-weight: 700; line-height: 1.1; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(15,15,20,0.92);
  backdrop-filter: blur(16px);
}
.nav-inner { width: 100%; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.nav-logo { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.03em; color: var(--fg); }
.nav-badge { margin-left: auto; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(163,255,18,0.2); padding: 4px 10px; border-radius: 20px; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-bg-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); }
.hero-headline {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 700px;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 400;
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 40px;
}
.stats-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* MANIFESTO */
.manifesto { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.manifesto-headline {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 560px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 20px;
}

/* FUNCTIONS */
.functions { padding: 0 40px 100px; max-width: 1100px; margin: 0 auto; }
.functions-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.functions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.fn-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
}
.fn-card:hover { background: var(--surface-2); }
.fn-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.fn-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.2;
}
.fn-card-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  border-top: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.closing-signal {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.closing-signal::before, .closing-signal::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 28px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.footer-brand { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px; color: var(--fg); }
.footer-sep { color: var(--border); }
.footer-meta { font-size: 13px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .hero { padding: 60px 20px 60px; }
  .stats { padding: 32px 20px; }
  .stats-row { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; flex-basis: 40%; }
  .manifesto { padding: 60px 20px; }
  .functions { padding: 0 20px 60px; }
  .functions-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 20px; }
  .footer { padding: 24px 20px; }
  .footer-meta:last-child { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .stat-value { font-size: 32px; }
}