:root {
  --bg-deep: #0a0e1a;
  --bg-card: #111827;
  --bg-elevated: #1a2035;
  --gold: #d4a853;
  --gold-dim: #b8923e;
  --text: #e8e4dd;
  --text-muted: #8b8680;
  --text-faint: #5a5650;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.gold { color: var(--gold); }

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

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-slash {
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-dim);
}

.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

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

/* ===== FEATURES ===== */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.feature-block:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.feature-icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

/* ===== HOW ===== */
.how {
  padding: 100px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
  align-items: start;
}

.how-divider {
  background: rgba(255,255,255,0.08);
  height: 100%;
  min-height: 120px;
}

.how-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.how-label.old { color: var(--text-faint); }
.how-label.new { color: var(--gold); }

.how-compare p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(212, 168, 83, 0.03) 100%);
}

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

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

.closing-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.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-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-sep {
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 100px 20px 60px; }
  .hero h1 { font-size: 2.2rem; }
  
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .features-inner {
    grid-template-columns: 1fr;
  }
  
  .feature-block { padding: 32px 28px; }
  
  .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .how-divider {
    height: 1px;
    width: 100%;
    min-height: auto;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .stat-number { font-size: 3.5rem; }
  .closing h2 { font-size: 1.5rem; }
}