:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6358;
  --accent: #E85D3A;
  --accent-light: #FFF0EB;
  --card-bg: #FFFFFF;
  --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.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 0;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  border-bottom: 1px solid rgba(26,26,26,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* HERO CARDS */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}
.hero-card:hover {
  transform: translateY(-2px);
}
.card-platform {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}
.card-preview {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 10px;
}
.card-status {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}
.card-1 { transform: rotate(-0.5deg); }
.card-2 { transform: rotate(0.3deg) translateX(12px); }
.card-3 { transform: rotate(-0.2deg) translateX(-8px); }

/* PROBLEM */
.problem {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 32px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 15px;
  color: rgba(250,247,242,0.65);
  line-height: 1.5;
}
.problem-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.45;
  color: var(--bg);
  max-width: 680px;
}

/* HOW IT WORKS */
.how {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1px;
  margin-bottom: 56px;
  line-height: 1.15;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}
.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.step-content p {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 520px;
}

/* FEATURES */
.features {
  background: var(--bg-alt);
  padding: 100px 32px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 1px 12px rgba(0,0,0,0.03);
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(26,26,26,0.08);
  padding: 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .card-1, .card-2, .card-3 {
    transform: none;
  }
  .problem {
    padding: 60px 20px;
  }
  .problem-stat-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how {
    padding: 60px 20px;
  }
  .step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .step-num {
    font-size: 36px;
  }
  .features {
    padding: 60px 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .closing {
    padding: 80px 20px;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}
/* NAV CTA */
.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  background: var(--accent-light);
  padding: 8px 18px;
  border-radius: 8px;
  letter-spacing: -0.2px;
  transition: background 0.15s, opacity 0.15s;
}
.nav-cta:hover { background: #fde3da; }

/* PRIMARY BUTTON */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  padding: 14px 28px;
  border-radius: 10px;
  transition: opacity 0.15s, transform 0.1s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary:active { transform: scale(0.98); }

.hero-ctas {
  margin-top: 32px;
}
