:root {
  --bg: #0c0f0a;
  --bg-warm: #141810;
  --fg: #f4f1eb;
  --fg-muted: #a8a498;
  --accent: #e8b931;
  --accent-glow: #f0cc5a;
  --green: #4a8c5c;
  --green-light: #6aad7c;
  --coral: #e06c50;
  --blue-ocean: #2d6a8a;
  --sand: #d4c9a8;
  --card-bg: #1a1f16;
  --card-border: #2a3024;
  --radius: 16px;
  --radius-sm: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--green);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  top: 40%;
  left: 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  width: fit-content;
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}

/* === PROBLEM === */
.problem {
  padding: 120px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.problem-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  border: 1px solid var(--card-border);
  transition: transform 0.2s;
}

.problem-card:hover {
  transform: translateX(8px);
}

.card-1 {
  background: linear-gradient(135deg, #1a2030, #15192a);
  border-color: #2a3548;
}

.card-2 {
  background: linear-gradient(135deg, #201a18, #2a1f18);
  border-color: #3a2e24;
}

.card-3 {
  background: linear-gradient(135deg, #1a2418, #1e3018);
  border-color: var(--green);
  color: var(--accent-glow);
}

.card-icon {
  font-size: 1.5rem;
}

/* === HOW IT WORKS === */
.how {
  padding: 100px 0;
  background: var(--bg-warm);
}

.how h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

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

/* === FEATURES === */
.features {
  padding: 120px 0;
}

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

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.features-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--accent);
}

.feature-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, #1a2210 0%, #141810 100%);
  border-color: var(--green);
}

.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(232, 185, 49, 0.1);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-large h3 {
  font-size: 1.8rem;
}

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

/* === CLOSING === */
.closing {
  padding: 120px 0;
  background: var(--bg-warm);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.closing-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.location-tag {
  padding: 8px 20px;
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  transition: all 0.3s;
}

.location-tag:last-child {
  border-color: var(--accent);
  color: var(--accent);
}

.location-tag:hover {
  border-color: var(--accent);
  color: var(--fg);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

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

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
  }

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

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

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

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

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

  .feature-large {
    grid-row: auto;
  }

  .problem, .features, .closing {
    padding: 80px 0;
  }

  .how {
    padding: 80px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .closing-locations {
    gap: 8px;
  }

  .location-tag {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}