/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

/* ── Tokens ── */
:root {
  --bg: #faf8f3;
  --bg-alt: #f0ece0;
  --fg: #1a1a0e;
  --fg-muted: #6b6b52;
  --accent: #b8860b;
  --accent-light: #d4a017;
  --ink: #1c3a1c;
  --green: #1a4a32;
  --green-light: #2d6b4a;
  --white: #ffffff;
  --radius: 8px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; }

/* ── Layout helpers ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
  margin-bottom: 3rem;
}

/* ── Nav ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(26, 74, 50, 0.12);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,134,11,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(45,107,74,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #faf8f3;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: rgba(250, 248, 243, 0.7);
  line-height: 1.7;
  max-width: 38ch;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stat-card {
  background: rgba(250, 248, 243, 0.06);
  border: 1px solid rgba(250, 248, 243, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 7ch;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(250, 248, 243, 0.6);
  line-height: 1.4;
}

/* ── How It Works ── */
.howitworks {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(26,74,50,0.1);
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Proof ── */
.proof {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--ink);
}
.proof .section-eyebrow { color: var(--accent); }
.proof .section-title { color: #faf8f3; }
.proof-body {
  font-size: 1.1rem;
  color: rgba(250,248,243,0.65);
  max-width: 65ch;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.proof-stat {
  padding: 1.5rem;
  border: 1px solid rgba(250,248,243,0.12);
  border-radius: 10px;
}
.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.proof-text {
  font-size: 0.85rem;
  color: rgba(250,248,243,0.55);
  line-height: 1.5;
}

/* ── Niches ── */
.niches {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg-alt);
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.niche-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(26,74,50,0.1);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.niche-rank {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(26,74,50,0.35);
  letter-spacing: 0.08em;
  min-width: 2.5ch;
  padding-top: 0.25rem;
}
.niche-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.niche-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── Playbook ── */
.playbook {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg);
}
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.playbook-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.playbook-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.playbook-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.playbook-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--ink);
  text-align: center;
}
.closing-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #faf8f3;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: rgba(250,248,243,0.55);
  line-height: 1.7;
  max-width: 55ch;
  margin: 0 auto;
}

/* ── Footer ── */
.footer {
  padding: 2rem;
  border-top: 1px solid rgba(26,74,50,0.12);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}
.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1 1 calc(50% - 0.625rem); min-width: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .playbook-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stat-card { flex: 1 1 100%; }
}