:root {
  --bg: #faf9f6;
  --bg-warm: #f5f0e8;
  --fg: #2c2416;
  --fg-soft: #6b5d4d;
  --accent: #3d7c47;
  --accent-light: #e8f5e9;
  --accent-glow: rgba(61, 124, 71, 0.15);
  --gold: #c49b3c;
  --gold-light: #fdf6e3;
  --border: #e8dfd2;
  --card-bg: #ffffff;
  --radius: 12px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 50%, var(--gold-light) 100%);
}

.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(120px);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.15;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--accent);
  font-style: italic;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-soft);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── How It Works ── */
.how {
  padding: 100px 0;
  background: var(--bg);
}

.how h2,
.features h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--fg-soft);
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 480px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--fg);
}

.step-content p {
  color: var(--fg-soft);
  max-width: 520px;
  line-height: 1.8;
}

/* ── Features ── */
.features {
  padding: 100px 0;
  background: var(--bg-warm);
}

.features-header {
  margin-bottom: 56px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.feature-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--accent) 0%, #2d5e34 100%);
  color: #fff;
  border: none;
}

.feature-large .feature-icon { color: rgba(255,255,255,0.6); }
.feature-large h3 { color: #fff; }
.feature-large p { color: rgba(255,255,255,0.85); }

.feature-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--fg-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Closing ── */
.closing {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  margin-bottom: 24px;
  line-height: 1.3;
}

.closing p {
  color: var(--fg-soft);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  font-style: italic;
  margin-top: 32px;
}

/* ── Footer ── */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg-soft);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-divider {
  opacity: 0.3;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .step {
    flex-direction: column;
    gap: 16px;
  }
  .step-number {
    font-size: 2rem;
    width: auto;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .how, .features, .closing {
    padding: 60px 0;
  }
}