:root {
  --green-deep: #1a4d2e;
  --green-mid: #255c3b;
  --green-light: #2f7049;
  --amber: #e8920a;
  --amber-light: #f5b83d;
  --bg: #f8f6f0;
  --bg-warm: #f2ede4;
  --ink: #1c1917;
  --ink-soft: #57534e;
  --ink-faint: #a8a29e;
  --white: #ffffff;
  --radius: 6px;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,246,240,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,25,23,0.07);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,77,46,0.12) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 80px 100px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

/* Stats */
.stats-row {
  display: flex;
  align-items: stretch;
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat {
  flex: 1;
  padding: 48px 48px;
}
.stat-number {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
  align-self: stretch;
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--white);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 520px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-card {
  padding: 32px;
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28,25,23,0.08);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.125rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Niches */
.niches {
  padding: 100px 0;
  background: var(--bg-warm);
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.niches-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 48px;
}
.niches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 48px;
}
.niche {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0625rem;
  color: var(--ink);
  font-weight: 500;
}
.niche-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.niches-note {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.5;
}

/* How it works */
.howitworks {
  padding: 100px 0;
  background: var(--white);
}
.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
}
.step-number {
  font-family: 'Instrument Serif', serif;
  font-size: 3.5rem;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.25;
}
.step h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-right: 32px;
}
.step-connector {
  width: 80px;
  height: 1px;
  background: var(--ink-faint);
  margin-top: 28px;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--green-deep);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.testimonials .section-title {
  color: var(--white);
  margin-bottom: 64px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  padding: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.testimonial-quote {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-name {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Closing */
.closing {
  padding: 120px 0;
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--ink);
  max-width: 760px;
  margin-bottom: 28px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--ink);
  padding: 60px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; margin: 0; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { width: 40px; height: 1px; margin-top: 0; }
  .hero-inner, .features-inner, .niches-inner, .howitworks-inner, .testimonials-inner, .closing-inner, .footer-inner { padding: 0 32px; }
  .hero-inner { padding-top: 120px; padding-bottom: 80px; }
  .stat { padding: 32px; }
}

@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .hero-inner, .features-inner, .niches-inner, .howitworks-inner, .testimonials-inner, .closing-inner, .footer-inner { padding: 0 20px; }
}