:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8b8b9e;
  --accent: #f5a623;
  --accent-glow: rgba(245, 166, 35, 0.15);
  --accent-subtle: #d4912a;
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', 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.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.lede strong {
  color: var(--accent);
  font-weight: 600;
}

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

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

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

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 24px;
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem h2,
.how h2,
.pricing h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 48px;
  text-align: center;
}

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

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

.problem-card:hover {
  border-color: rgba(245,166,35,0.3);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

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

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

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 64px;
  opacity: 0.6;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

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

.verticals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.vertical-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent-glow);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 24px;
}

.pricing-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.price-card {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 48px 36px;
  margin-bottom: 24px;
  box-shadow: 0 0 60px rgba(245,166,35,0.08);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

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

.price-tagline {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin: 8px 0 28px;
}

.price-features {
  list-style: none;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.95rem;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  margin-right: 12px;
}

.price-compare {
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(245,166,35,0.06) 0%, transparent 70%),
    var(--bg-elevated);
}

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

.closing h2 {
  margin-bottom: 20px;
}

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

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

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 20px 40px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 48px; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem, .how, .pricing, .closing { padding: 60px 20px; }
  .step { flex-direction: column; gap: 12px; }
  .step-num { font-size: 1.6rem; min-width: auto; }
  .price-card { padding: 36px 24px; }
  .price-amount { font-size: 3rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .lede { font-size: 1rem; }
  .badge { font-size: 11px; }
  .verticals { gap: 8px; }
  .vertical-tag { font-size: 0.75rem; padding: 6px 14px; }
}