:root {
  --bg: #0c0c0e;
  --bg-2: #111115;
  --fg: #f0ede8;
  --fg-muted: #8a8880;
  --accent: #f59e0b;
  --accent-dim: #7a5c08;
  --border: #2a2a2f;
  --card-bg: #141417;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Nav */
.nav { border-bottom: 1px solid var(--border); padding: 20px 48px; }
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag { font-size: 0.75rem; color: var(--fg-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* Manifesto */
.manifesto {
  position: relative;
  overflow: hidden;
  padding: 120px 48px 100px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 800px; }
.manifesto-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 28px;
}
.manifesto-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.manifesto-pill-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pill { font-size: 0.8rem; font-weight: 500; color: var(--fg); background: var(--card-bg); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; }
.pill-sep { color: var(--fg-muted); }

.manifesto-deco { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; pointer-events: none; }
.deco-ring { position: absolute; border-radius: 50%; border: 1px solid #f59e0b15; }
.deco-ring-1 { width: 420px; height: 420px; top: 0; right: -60px; }
.deco-ring-2 { width: 300px; height: 300px; top: 60px; right: 0; border-color: #f59e0b20; }
.deco-ring-3 { width: 180px; height: 180px; top: 120px; right: 60px; border-color: #f59e0b30; }
.deco-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--accent), 0 0 48px #f59e0b40;
}

/* Stats */
.stats {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
}
.stats-inner { display: flex; align-items: center; gap: 0; max-width: 860px; }
.stat { flex: 1; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; max-width: 180px; }
.stat-div { width: 1px; height: 64px; background: var(--border); margin: 0 40px; flex-shrink: 0; }

/* How */
.how { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.how-inner { max-width: 900px; }
.section-label { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 16px; }
.how-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 60px; max-width: 540px; }
.steps { display: flex; align-items: center; gap: 0; }
.step { flex: 1; }
.step-num { font-size: 0.7rem; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 16px; }
.step-name { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.65; }
.step-connector { flex-shrink: 0; color: var(--fg-muted); padding: 0 20px; }

/* Waste */
.waste { padding: 100px 48px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.waste-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1060px; align-items: center; }
.waste-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; }
.waste-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 36px; }
.waste-list { display: flex; flex-direction: column; gap: 14px; }
.waste-item { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; }
.waste-icon { color: var(--accent); flex-shrink: 0; }

.waste-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.waste-card-header { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 14px 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); }
.waste-card-content { padding: 20px; display: flex; flex-direction: column; gap: 20px; }
.req-block {}
.req-label { display: block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px; }
.req-text { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.6; }
.req-list { font-size: 0.8rem; color: var(--fg-muted); padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }

/* Closing */
.closing { padding: 120px 48px; }
.closing-inner { max-width: 720px; }
.closing-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 20px; }
.closing-headline { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 24px; }
.closing-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.8; max-width: 600px; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 28px 48px; }
.footer-inner { display: flex; align-items: center; gap: 16px; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1rem; }
.footer-copy { font-size: 0.78rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .nav, .manifesto, .stats, .how, .waste, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .manifesto-headline { font-size: 2.2rem; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-div { display: none; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .waste-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-deco { display: none; }
  .stat-label { max-width: 100%; }
}
@media (max-width: 480px) {
  .manifesto { padding-top: 80px; padding-bottom: 72px; }
  .manifesto-headline { font-size: 1.9rem; }
  .how, .waste, .closing { padding-top: 64px; padding-bottom: 64px; }
}