:root {
  --bg: #F7F6F3;
  --fg: #1A1A1A;
  --accent: #F5A623;
  --accent-dark: #D4891A;
  --ink: #2D2D2D;
  --muted: #6B6B6B;
  --surface: #FFFFFF;
  --border: #E4E2DC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ─── Navigation ─────────────────────────────── */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

/* ─── Shared ─────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-overline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ─── Problem ───────────────────────────────── */
.problem {
  padding: 5rem 2rem;
  background: var(--ink);
  color: var(--bg);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-header {
  max-width: 620px;
  margin-bottom: 3.5rem;
}
.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.problem-sub {
  color: #A8A8A8;
  font-size: 1rem;
  line-height: 1.7;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.problem-item {
  background: #3A3A3A;
  border: 1px solid #4A4A4A;
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.problem-x {
  font-size: 1.2rem;
  color: #FF6B6B;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.problem-check {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.problem-item strong {
  font-size: 0.95rem;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.4rem;
}
.problem-item p {
  font-size: 0.85rem;
  color: #B0B0B0;
  line-height: 1.6;
}

/* ─── Playbook ──────────────────────────────── */
.playbook {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.playbook-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.playbook .section-heading {
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.playbook-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Manifesto ──────────────────────────────── */
.manifesto {
  padding: 6rem 2rem;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 740px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  font-style: normal;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--accent);
}
.manifesto-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ─── Results ───────────────────────────────── */
.results {
  padding: 5rem 2rem;
  background: var(--ink);
}
.results-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.results .section-heading {
  color: #FFFFFF;
  margin-bottom: 3rem;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.result-card {
  background: #2D2D2D;
  border: 1px solid #3A3A3A;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.result-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.result-label {
  font-size: 0.82rem;
  color: #A8A8A8;
  line-height: 1.5;
}

/* ─── Closing ───────────────────────────────── */
.closing {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 660px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ─── Footer ─────────────────────────────────── */
.footer {
  padding: 2.5rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-legal {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .playbook-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .nav, .hero, .problem, .playbook, .manifesto, .results, .closing, .footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
}