:root {
  --bg: #faf6f0;
  --bg-warm: #f3ede3;
  --fg: #1a1612;
  --fg-muted: #6b5e52;
  --accent: #0f6b5e;
  --accent-light: #e8f5f1;
  --accent-glow: #14917f;
  --sand: #d4c5a9;
  --sand-light: #ede6d8;
  --ocean: #1b4965;
  --coral: #e07a5f;
  --white: #ffffff;
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 0;
  position: relative;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 60%, var(--sand-light) 100%);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 560px;
  font-weight: 300;
}

.hero-stat-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 32px 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(26, 22, 18, 0.06);
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label { font-size: 14px; color: var(--fg-muted); font-weight: 400; }
.stat-divider { width: 1px; height: 40px; background: var(--sand); }

.problem {
  padding: 120px 40px;
  background: var(--ocean);
  color: var(--white);
}

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

.problem-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 56px;
  color: var(--white);
}

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

.problem-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.problem-icon { font-size: 28px; margin-bottom: 16px; opacity: 0.8; }
.problem-card p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); }
.problem-card em { color: var(--coral); font-style: normal; font-weight: 600; }

.features { padding: 120px 40px; background: var(--bg); }
.features-inner { max-width: 900px; margin: 0 auto; }

.features-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 64px;
}

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

.feature-item {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--sand-light);
  align-items: flex-start;
}

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

.feature-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--sand);
  flex-shrink: 0;
  padding-top: 4px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

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

.how { padding: 120px 40px; background: var(--bg-warm); }
.how-inner { max-width: 900px; margin: 0 auto; }

.how-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 64px;
}

.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.how-step { position: relative; }

.step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.how-step p { font-size: 15px; line-height: 1.7; color: var(--fg-muted); }

.closing {
  padding: 140px 40px;
  background: linear-gradient(175deg, var(--bg-warm) 0%, var(--sand-light) 100%);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.site-footer {
  padding: 40px;
  background: var(--fg);
  color: rgba(255,255,255,0.5);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-meta { font-size: 14px; }

@media (max-width: 768px) {
  .hero { padding: 60px 24px 0; min-height: 80vh; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stat-bar {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    align-items: flex-start;
    margin-top: 40px;
  }
  .stat-divider { width: 100%; height: 1px; }
  .problem { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 20px; }
  .features { padding: 80px 24px; }
  .feature-item { flex-direction: column; gap: 12px; }
  .how { padding: 80px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}