:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --fg: #f0ece4;
  --fg-muted: #8a8478;
  --accent: #c84b0e;
  --accent-2: #f2640a;
  --mono: 'DM Mono', monospace;
  --display: 'Syne', sans-serif;
  --border: #2a2a2a;
}

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

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

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { color: var(--accent); font-size: 20px; }
.logo-name { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--fg); }
.nav-tagline { font-family: var(--mono); font-size: 12px; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* HERO */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,75,14,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 860px; }
.hero-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.04em; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HOW */
.how {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 52px;
  max-width: 640px;
  line-height: 1.15;
}
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step {
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--border);
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* FEATURES */
.features {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature:nth-child(3n) { border-right: none; }
.feature:nth-child(n+4) { border-bottom: none; }
.feature-icon {
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 14px;
}
.feature-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 8px;
}
.feature-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.manifesto-quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.manifesto-attribution {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.manifesto-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.manifesto-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.8; }

/* CLOSING */
.closing {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 700px; }
.closing-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-copy { font-size: 12px; color: var(--fg-muted); }
.footer-slug { color: var(--accent); }
.footer-sep { color: var(--border); }

/* MOBILE */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-headline { font-size: 48px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .how { padding: 56px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 0; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .step:last-child { border-bottom: none; }
  .features { padding: 56px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .feature:nth-child(n+4) { border-bottom: 1px solid var(--border); }
  .feature:last-child { border-bottom: none; }
  .manifesto { padding: 56px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 56px 24px; }
  .footer { padding: 20px 24px; flex-direction: column; gap: 8px; }
}