:root {
  --bg: #FDFBF7;
  --bg-warm: #F7F0E6;
  --fg: #2D2A26;
  --fg-muted: #6B6560;
  --accent: #3A8A7C;
  --accent-light: #E8F5F2;
  --accent-warm: #D4956A;
  --accent-warm-light: #FFF3EB;
  --border: #E8E2D8;
  --radius: 16px;
  --radius-sm: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-circle {
  width: 400px;
  height: 400px;
  background: var(--accent-light);
  top: 15%;
  right: -5%;
}

.shape-ring {
  width: 250px;
  height: 250px;
  border: 3px solid var(--border);
  top: 55%;
  right: 20%;
}

.shape-dot {
  width: 60px;
  height: 60px;
  background: var(--accent-warm-light);
  top: 30%;
  right: 35%;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 40px;
  background: var(--bg-warm);
}

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

.problem-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}

.problem h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 600px;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.problem-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 12px;
}

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

.problem-card-highlight {
  background: var(--accent);
  border-color: var(--accent);
}

.problem-card-highlight p {
  color: #fff;
  font-weight: 500;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 40px;
}

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

.feature-block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 64px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-left {
  margin-right: 60px;
}

.feature-right {
  margin-left: 60px;
}

.feature-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.feature-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* ---- APPROACH ---- */
.approach {
  padding: 100px 40px;
  background: var(--accent);
  color: #fff;
}

.approach-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.approach-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.approach h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.approach p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.approach-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat {
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 40px;
  text-align: center;
}

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

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
}

.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

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

  .hero-shapes {
    display: none;
  }

  .problem {
    padding: 64px 24px;
  }

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

  .features {
    padding: 64px 24px;
  }

  .feature-left,
  .feature-right {
    margin-left: 0;
    margin-right: 0;
  }

  .feature-block {
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    margin-bottom: 24px;
  }

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

  .approach {
    padding: 64px 24px;
  }

  .approach-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .closing {
    padding: 80px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}