:root {
  --bg: #FAF7F2;
  --bg-warm: #F3EDE4;
  --bg-dark: #2C2418;
  --fg: #2C2418;
  --fg-muted: #6B5D4F;
  --fg-light: #FAF7F2;
  --accent: #C4653A;
  --accent-soft: #E8A87C;
  --sage: #7B8F6B;
  --sage-soft: #B5C4A8;
  --border: #D9CFBF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 2rem;
  max-width: 800px;
}

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

.hero-sub {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
  font-weight: 300;
}

.hero-stat-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-dark);
  position: relative;
  z-index: 1;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-soft);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(250, 247, 242, 0.15);
}

/* PROBLEM */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-warm);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 3.5rem;
  max-width: 700px;
  letter-spacing: -0.02em;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-card {
  padding: 2.5rem 2rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
  background: var(--bg);
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

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

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-soft);
  opacity: 0.6;
  min-width: 60px;
  line-height: 1;
  padding-top: 0.15rem;
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.feature-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* HOW IT WORKS */
.how {
  padding: 6rem 2rem;
  background: var(--bg-warm);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--fg-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

.how-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.how-step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-dark);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--fg-light);
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.closing h2 em {
  color: var(--accent-soft);
  font-style: italic;
}

.closing-text {
  font-size: 1.15rem;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sage-soft);
  font-style: italic;
}

/* FOOTER */
.footer {
  padding: 2.5rem 2rem;
  background: var(--bg-dark);
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 1.5rem 2rem;
  }

  .hero-stat-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .problem {
    padding: 4rem 1.5rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .features {
    padding: 4rem 1.5rem;
  }

  .feature-row {
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .feature-number {
    font-size: 1.75rem;
  }

  .how {
    padding: 4rem 1.5rem;
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .step-connector {
    width: 2px;
    height: 30px;
    margin-top: 0;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .stat-num {
    font-size: 2rem;
  }
}
