:root {
  --bg: #0D1117;
  --bg-elevated: #161B22;
  --fg: #E6EDF3;
  --fg-muted: #8B949E;
  --accent: #F59E0B;
  --accent-dim: #D97706;
  --border: #21262D;
}

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

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

h1, h2, h3 { font-family: 'Bebas Neue', Impact, sans-serif; letter-spacing: 0.05em; }

/* Nav */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--bg);
}
.hero-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline br { display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stats */
.stats {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat { text-align: center; flex: 1; min-width: 120px; }
.stat-number {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Features */
.features { padding: 5rem 2rem; }
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}
.feature-block { }
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.feature-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Manifesto */
.manifesto {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}
.manifesto-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.manifesto-stripe {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2.5rem;
}
.stripe-seg {
  display: block;
  width: 32px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}
.stripe-seg--accent { background: var(--accent); }
.manifesto-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* Closing */
.closing { padding: 6rem 2rem; background: var(--bg); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.footer-note { font-size: 0.85rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .features-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}