:root {
  --bg-dark: #0a0a0f;
  --bg-section: #111118;
  --bg-card: #1a1a24;
  --fg: #e8e8ef;
  --fg-muted: #8888a0;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.15);
  --accent-light: #ff8f5c;
  --success: #2dd4a0;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

/* HERO */
.hero {
  padding: 120px 24px 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--fg);
  margin-bottom: 24px;
}
.highlight {
  color: var(--accent);
  position: relative;
}
.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 180px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* PROBLEM */
.problem {
  padding: 100px 24px;
  background: var(--bg-section);
}
.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-left h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 20px;
  color: var(--fg);
}
.problem-left p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.problem-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border-left: 3px solid var(--fg-muted);
  transition: transform 0.2s ease;
}
.problem-card.fire {
  border-left-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(255,107,43,0.08));
}
.problem-card.success {
  border-left-color: var(--success);
  background: linear-gradient(135deg, var(--bg-card), rgba(45,212,160,0.08));
}
.card-icon {
  font-size: 1.4rem;
  width: 40px;
  text-align: center;
}
.card-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
}

/* FEATURES */
.features {
  padding: 100px 24px;
  background: var(--bg-dark);
}
.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.features-inner > h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 56px;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-item {
  padding: 32px 28px;
  background: var(--bg-section);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s ease;
}
.feature-item:hover {
  border-color: rgba(255,107,43,0.2);
}
.feature-icon {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.7;
}
.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* VERTICALS */
.verticals {
  padding: 100px 24px;
  background: var(--bg-section);
}
.verticals-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.verticals-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}
.verticals-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.verticals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.vertical-pill {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.2s ease;
}
.vertical-pill:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
}
.closing-inner p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* FOOTER */
.site-footer {
  padding: 48px 24px;
  background: var(--bg-section);
  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-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero-stat-row { gap: 20px; }
  .stat-divider { display: none; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .closing { padding: 80px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-stat-row { flex-direction: column; align-items: flex-start; }
  .stat-number { font-size: 2rem; }
}