:root {
  --bg: #faf8f5;
  --fg: #1a1a1a;
  --accent: #e8a838;
  --green: #1a3a2a;
  --green-light: #2d5a40;
  --muted: #6b6b6b;
  --border: #e2ddd6;
  --card-bg: #ffffff;
  --section-pad: 80px 24px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green);
}

.brand-leaf { display: flex; align-items: center; }

.nav-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Sections base */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green);
  margin-bottom: 48px;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 2px;
}

.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--green);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 420px;
  line-height: 1.7;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

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

/* Site mockup */
.hero-right { display: flex; flex-direction: column; align-items: center; }

.site-mockup {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 58, 42, 0.12);
}

.mockup-topbar {
  background: #f0ede8;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  display: block;
}

.mockup-body { padding: 16px; }

.mockup-search-bar {
  background: #f4f1ec;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.mockup-result {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 8px;
}

.mockup-result-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a0dab;
  margin-bottom: 2px;
}

.mockup-result-url {
  font-size: 0.72rem;
  color: #006621;
  margin-bottom: 4px;
}

.mockup-result-snippet {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

.badge-star { font-size: 0.8rem; }

.mockup-result-2 { opacity: 0.6; }

.mockup-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

/* How */
.how {
  padding: var(--section-pad);
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how .section-title { margin-bottom: 56px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.how-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}

.how-step:last-child { border-right: none; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Niches */
.niches {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
}

.niches-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: -36px;
  margin-bottom: 48px;
  max-width: 520px;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.niche-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 28px 32px;
  position: relative;
  transition: box-shadow 0.2s;
}

.niche-card:hover {
  box-shadow: 0 4px 20px rgba(26, 58, 42, 0.08);
}

.niche-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.niche-card h3 {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Proof */
.proof {
  background: var(--green);
  padding: var(--section-pad);
  color: #fff;
}

.proof .section-label { color: var(--accent); }

.proof .section-title {
  color: #fff;
  margin-bottom: 56px;
}

.proof-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.proof-fact { margin-bottom: 40px; }

.proof-stat {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.proof-fact p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.proof-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}

.proof-card-icon { margin-bottom: 16px; }

.proof-card-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 16px;
}

.proof-card-attr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.proof-col-note {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--green);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
}

.pricing-per {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.pricing-footer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Closing */
.closing {
  background: #f0ece4;
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--green);
  line-height: 1.5;
  margin-bottom: 48px;
  font-style: italic;
}

.closing-founder {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.founder-avatar {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.founder-info {
  text-align: left;
}

.founder-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.founder-role {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-legal {
  font-size: 0.75rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
  .niches-grid { grid-template-columns: 1fr; }
  .proof-columns { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .navbar { padding: 16px 20px; }
  .hero { padding: 48px 20px 60px; }
  .niches { padding: 60px 20px; }
  .how { padding: 60px 20px; }
  .pricing { padding: 60px 20px; }
  .closing { padding: 60px 20px; }
  .proof { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .hero-stat-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stat-divider { display: none; }
  .hero-lede { font-size: 1rem; }
  .stat-number { font-size: 1.6rem; }
}