:root {
  --bg: #0d0d0f;
  --surface: #141418;
  --surface-2: #1c1c22;
  --fg: #f0ebe3;
  --fg-muted: #7a7570;
  --fg-dim: #4a4540;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 235, 227, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body { background: var(--bg); }

/* ── Manifesto ── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(245,166,35,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 80%, rgba(245,166,35,0.03) 0%, transparent 70%),
    var(--bg);
}
.manifesto__inner {
  max-width: 820px;
}
.manifesto__bar {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}
.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto__headline em {
  font-style: normal;
  color: var(--accent);
}
.manifesto__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 40px;
}
.manifesto__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.manifesto__tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

/* ── Section label ── */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

/* ── What It Does ── */
.what-it-does {
  padding: 100px 48px;
  background: var(--surface);
}
.what-it-does__inner { max-width: 960px; margin: 0 auto; }
.what-it-does__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.what-card {
  background: var(--bg);
  padding: 36px 32px;
}
.what-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
}
.what-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.what-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── How It Works ── */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg);
}
.how-it-works__inner { max-width: 720px; margin: 0 auto; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.timeline__step:last-child { border-bottom: none; }
.timeline__marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline__marker span {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}
.timeline__content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.timeline__content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Workbook ── */
.workbook {
  padding: 100px 48px;
  background: var(--surface);
}
.workbook__inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.workbook__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.workbook__text p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.workbook__stats { display: flex; flex-direction: column; gap: 40px; }
.stat__number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ── Closing ── */
.closing-statement {
  padding: 100px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-statement__inner { max-width: 640px; margin: 0 auto; }
.closing-statement__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg-muted);
}
.closing-statement__text strong { color: var(--fg); }

/* ── Footer ── */
footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer__brand p {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer__tagline {
  font-size: 12px;
  color: var(--fg-dim);
  text-align: right;
  max-width: 220px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .manifesto { padding: 80px 24px; }
  .what-it-does { padding: 80px 24px; }
  .what-it-does__grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 80px 24px; }
  .workbook { padding: 80px 24px; }
  .workbook__inner { grid-template-columns: 1fr; gap: 60px; }
  .workbook__stats { flex-direction: row; flex-wrap: wrap; }
  .closing-statement { padding: 80px 24px; }
  .footer__inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer__tagline { text-align: left; }
}