:root {
  --green-deep: #1a3a2a;
  --green-mid: #245538;
  --amber: #e8972a;
  --amber-light: #f5c87a;
  --cream: #faf7f2;
  --cream-dark: #f0ece3;
  --ink: #1c1c1c;
  --ink-mid: #3d3d3d;
  --ink-light: #6b6b6b;
  --white: #ffffff;
}

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

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--ink-light);
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero-stat-col {
  background: var(--green-deep);
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
}
.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber-light);
  margin-bottom: 28px;
  font-weight: 600;
}
.stat-block { margin-bottom: 0; }
.stat-figure {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--amber);
}
.stat-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}
.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 32px 0;
}
.stat-money-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.stat-money-val {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-money-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.stat-footnote {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  line-height: 1.5;
}
.hero-copy-col { padding-top: 10px; }
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-lede {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  background: var(--cream-dark);
  color: var(--ink-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Proof */
.proof {
  background: var(--cream-dark);
  padding: 48px 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.proof-item { flex: 1; }
.proof-stat {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.proof-label {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.proof-sep {
  width: 1px;
  background: rgba(0,0,0,0.1);
  align-self: stretch;
}

/* How it works */
.how {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.how-header { margin-bottom: 52px; }
.section-title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-light);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.step-body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* Promo Banner */
.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 151, 42, 0.15);
  border: 1px solid var(--amber);
  border-radius: 30px;
  padding: 8px 18px;
  margin-bottom: 20px;
}
.promo-badge {
  background: var(--amber);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.promo-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Pricing */
.pricing {
  background: var(--green-deep);
  padding: 80px 40px;
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.pricing .section-title { color: var(--white); }
.pricing .section-sub { color: rgba(255,255,255,0.6); font-size: 16px; }
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
}
.pricing-card.featured {
  background: rgba(232, 151, 42, 0.15);
  border-color: var(--amber);
}
.card-tier {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.card-price {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}
.card-price span { font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.5); }
.price-promo {
  color: var(--amber) !important;
  text-decoration: none;
}
.price-regular {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.card-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.card-cta {
  display: block;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--amber);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.card-cta:hover {
  background: #d08820;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

/* Manifesto */
.manifesto {
  padding: 80px 40px;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 32px;
  line-height: 1.4;
}
.manifesto-body {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Closing */
.closing {
  padding: 80px 40px 100px;
  text-align: center;
  background: var(--cream);
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.closing-sub {
  font-size: 20px;
  color: var(--ink-mid);
}

/* Footer */
.footer {
  background: var(--green-deep);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { font-size: 36px; }
  .stat-figure { font-size: 48px; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 28px; }
  .proof-sep { width: 40px; height: 1px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing-headline { font-size: 36px; }
  .manifesto-quote { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero, .how, .pricing, .manifesto, .closing { padding: 60px 24px; }
  .hero-stat-col { padding: 28px; }
  .card-price { font-size: 40px; }
}