:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE6;
  --fg: #1A1A18;
  --fg-muted: #6B6860;
  --accent: #1C3D2E;
  --accent-light: #2D5A44;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --border: #E2DDD5;
}

* { 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: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* MOCKUP */
.hero-mockup {
  max-width: 600px;
}
.mockup-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.mockup-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.mockup-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.mockup-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.mockup-excerpt {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.mockup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.mockup-tags span {
  background: var(--bg-alt);
  color: var(--fg-muted);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
}
.mockup-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
}
.mockup-bar-fill {
  height: 100%;
  width: 65%;
  background: var(--accent);
  border-radius: 2px;
}

/* SECTIONS */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--accent);
  padding: 80px 0;
}
.howitworks .section-eyebrow { color: #8CBFA3; }
.howitworks .section-headline { color: white; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: #8CBFA3;
  opacity: 0.5;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}
.step-body {
  font-size: 15px;
  color: #A8C5B0;
  line-height: 1.7;
}

/* FEATURES */
.features { padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: white;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing { padding: 80px 0; background: var(--bg-alt); }
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  max-width: 540px;
}
.pricing-header { margin-bottom: 32px; }
.pricing-plan-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.pricing-compare {
  background: var(--bg);
  border-radius: 6px;
  padding: 14px 16px;
}
.pricing-compare-text {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* TESTIMONIAL */
.testimonial { padding: 80px 0; }
.quote { border-left: 3px solid var(--accent); padding-left: 40px; }
.quote-text {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 32px;
}
.quote-attribution { display: flex; align-items: center; gap: 16px; }
.quote-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.quote-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.quote-role {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
}

/* CLOSING */
.closing { padding: 80px 0; background: var(--accent); }
.closing .section-headline { color: white; }
.closing-body {
  font-size: 18px;
  color: #A8C5B0;
  max-width: 600px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--fg); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 60px; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
  .hero-stat-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .section-inner { padding: 0 24px; }
  .section-headline { margin-bottom: 40px; }
  .quote { padding-left: 24px; }
  .quote-text { font-size: 18px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .pricing-price { font-size: 44px; }
}