:root {
  --bg: #F8F6F2;
  --fg: #1A1A18;
  --fg-muted: #6B6B63;
  --accent: #D97706;
  --accent-dark: #B45309;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --surface: #FFFFFF;
  --border: #E5E2DA;
  --radius: 8px;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green-deep);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--green-deep);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px;
}
.hero-stat {
  background: var(--green-deep);
  border-radius: var(--radius);
  padding: 28px 32px;
  color: #fff;
}
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* PROOF */
.proof {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 24px;
}
.proof-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-logo-block {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
}
.proof-icon { font-size: 20px; }

/* FEATURES */
.features {
  padding: 80px 0;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.features-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green-deep);
  margin-bottom: 48px;
  max-width: 520px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 36px 36px;
}
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.feature-card h3 {
  font-size: 19px;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* NICHES */
.niches {
  padding: 80px 0;
  background: var(--green-deep);
}
.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.niches-title {
  font-size: clamp(26px, 3.5vw, 38px);
  color: #fff;
  margin-bottom: 16px;
}
.niches-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  max-width: 520px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.niche-card {
  background: rgba(255,255,255,0.06);
  padding: 32px 28px;
  transition: background 0.2s;
}
.niche-card:hover { background: rgba(255,255,255,0.10); }
.niche-emoji { font-size: 28px; display: block; margin-bottom: 14px; }
.niche-card h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.niche-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* PLAYBOOK */
.playbook {
  padding: 80px 0;
}
.playbook-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.playbook-title {
  font-size: 38px;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.playbook-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.playbook-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  padding-top: 2px;
}
.step h3 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 80px 0 100px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--green-deep);
  max-width: 680px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--green-deep);
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer-links {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 140px; }
  .features-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .playbook-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-logos { gap: 20px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .niches-grid { grid-template-columns: 1fr; }
  .hero-stat { min-width: 100%; }
}