:root {
  --bg: #faf7f2;
  --bg-warm: #f3ede4;
  --fg: #2c2419;
  --fg-muted: #6b5d4d;
  --accent: #c8553d;
  --accent-light: #e8775f;
  --accent-bg: #fef0ec;
  --card-bg: #ffffff;
  --card-border: #e8dfd3;
  --vibe-bg: #2c2419;
  --vibe-fg: #faf7f2;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-width: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
}

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

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HERO ==================== */

.hero {
  position: relative;
  padding: 120px 24px 100px;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 60%, var(--accent-bg) 100%);
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-vibes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.vibe-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--vibe-fg);
  background: var(--vibe-bg);
  border-radius: 100px;
  padding: 8px 20px;
  transition: transform 0.2s ease;
}

.vibe-tag:hover {
  transform: translateY(-2px);
}

.hero-accent {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* ==================== HOW IT WORKS ==================== */

.how-it-works {
  padding: 100px 24px;
  background: var(--bg);
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}

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

.step {
  text-align: left;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

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

/* ==================== FEATURES ==================== */

.features {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.features-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.features-header p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(44, 36, 25, 0.08);
}

.feature-large {
  grid-column: span 2;
  background: var(--fg);
  color: var(--vibe-fg);
  border-color: transparent;
}

.feature-large h3 {
  color: var(--vibe-fg);
}

.feature-large p {
  color: rgba(250, 247, 242, 0.7);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

/* ==================== CLOSING ==================== */

.closing {
  padding: 110px 24px;
  background: var(--bg);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 48px;
}

.closing-stat-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 160px;
  text-align: center;
  line-height: 1.5;
}

/* ==================== FOOTER ==================== */

.site-footer {
  padding: 56px 24px;
  background: var(--fg);
  color: var(--vibe-fg);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.55);
  font-weight: 300;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 64px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step {
    text-align: center;
  }

  .features-header {
    text-align: center;
  }

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

  .feature-large {
    grid-column: span 1;
  }

  .closing-stat-row {
    gap: 32px;
  }

  .how-it-works,
  .features,
  .closing {
    padding: 72px 20px;
  }
}