:root {
  --bg: #0c0b09;
  --bg-warm: #141210;
  --fg: #f0ebe3;
  --fg-muted: #a89f91;
  --accent: #c8a96e;
  --accent-glow: rgba(200, 169, 110, 0.15);
  --green: #7a9e7e;
  --green-muted: rgba(122, 158, 126, 0.12);
  --card-bg: #1a1816;
  --card-border: rgba(200, 169, 110, 0.08);
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.hero-texture {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 169, 110, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
}

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

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

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #0c0b09;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero-cta:hover { opacity: 0.88; }

.hero-cta-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 10vw;
  background: var(--bg-warm);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--fg-muted);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

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

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

.problem-highlight {
  color: var(--fg) !important;
  font-weight: 500;
  font-style: italic;
}

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

.features-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
}

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

.feature-card:hover {
  border-color: rgba(200, 169, 110, 0.2);
}

.feature-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(200, 169, 110, 0.04) 100%);
}

.feature-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 20px;
}

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

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

/* ===== HOW ===== */
.how {
  padding: 120px 10vw;
  background: var(--bg-warm);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how-inner h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.how-step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
  width: 60px;
  letter-spacing: -0.04em;
}

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

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

/* ===== CLOSING ===== */
.closing {
  padding: 140px 10vw;
  text-align: center;
}

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

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

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

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

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

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

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

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

  .hero-texture {
    width: 300px;
    height: 300px;
    top: -10%;
    right: -20%;
  }

  .problem { padding: 80px 7vw; }

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

  .stat-number {
    font-size: 4.5rem;
  }

  .features { padding: 80px 7vw; }

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

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

  .how { padding: 80px 7vw; }

  .how-step {
    gap: 20px;
  }

  .step-num {
    font-size: 1.8rem;
    width: 40px;
  }

  .closing { padding: 80px 7vw; }

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