:root {
  --bg: #0d0d0d;
  --fg: #f0ede8;
  --accent: #f5e642;
  --muted: #6b6862;
  --border: #2a2825;
  --font-display: 'Syne', 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: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 32px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,230,66,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 36px;
  max-width: 700px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.65;
}

/* ── STATS ROW ── */
.stats-row {
  background: #111010;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 48px;
  flex: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── HOW ── */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.how-header {
  margin-bottom: 64px;
}
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.how-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 480px;
  color: var(--fg);
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: #0f0f0e;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--fg);
}
.step p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}
.step-arrow {
  width: 40px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 44px;
  position: relative;
}
.step-arrow::after {
  content: '→';
  position: absolute;
  right: -4px;
  top: -12px;
  font-size: 14px;
  color: var(--border);
}

/* ── MANIFESTO ── */
.manifesto {
  background: #0a0a09;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 36px;
}
.manifesto-quote em {
  font-style: normal;
  color: var(--accent);
}
.manifesto-aside p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.manifesto-aside p:last-child {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg);
  font-weight: 600;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 32px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--fg);
}
.closing-badge {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 400;
}
.badge-live {
  color: #4ade80;
  font-size: 10px;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.footer-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 48px; }
  .stats-row { flex-direction: column; gap: 32px; padding: 40px 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .how-steps { flex-direction: column; gap: 12px; }
  .step-arrow { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 44px; }
  .closing-text { font-size: 18px; }
}