:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --fg: #e8e8ec;
  --fg-muted: #8b8b9e;
  --accent: #6366f1;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --success: #22c55e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
  --radius: 16px;
}

* {
  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.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 60px;
}

.hero-inner {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--success);
}

.hero-visual {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-shield {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.2);
  animation: pulse 3s ease-in-out infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.ring-2 {
  width: 160px;
  height: 160px;
  animation-delay: 1s;
}

.ring-3 {
  width: 200px;
  height: 200px;
  animation-delay: 2s;
}

.shield-icon {
  font-size: 48px;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* Problem */
.problem {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

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

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

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

.problem-truth {
  text-align: center;
  font-size: 1.15rem;
  color: var(--fg);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

/* How */
.how {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
}

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

.step {
  padding: 32px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* Pricing */
.pricing {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 48px;
}

.price-card {
  display: inline-block;
  background: var(--bg);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius);
  padding: 48px 56px;
  text-align: left;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-features {
  list-style: none;
  margin-top: 28px;
}

.price-features li {
  padding: 8px 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
  position: relative;
  padding-left: 24px;
}

.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
}

.price-compare {
  margin-top: 32px;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* Closing */
.closing {
  padding: 120px 40px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
}

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

/* Footer */
.site-footer {
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

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

/* Mobile */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 60px 24px;
    text-align: center;
    gap: 40px;
  }

  .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    flex: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .problem,
  .how,
  .pricing,
  .closing {
    padding: 60px 24px;
  }

  .price-card {
    padding: 36px 32px;
  }

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