:root {
  --bg: #0a0a0f;
  --bg-surface: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #00e676;
  --accent-glow: rgba(0, 230, 118, 0.15);
  --accent-dim: #00c853;
  --danger: #ff5252;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 10vw 80px;
  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;
  z-index: 0;
}

.hero-tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

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

.hero .lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

/* ---- STATS BAR ---- */
.stats-bar {
  display: flex;
  gap: 1px;
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  flex: 1;
  padding: 48px 10vw;
  text-align: center;
  background: var(--bg);
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 10vw;
  background: var(--bg-surface);
}

.problem .section-label {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}

.problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-bottom: 48px;
}

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

.problem-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
}

.problem-card .card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- HOW ---- */
.how-it-works {
  padding: 100px 10vw;
}

.how-it-works .section-label {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}

.how-it-works h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 600px;
  margin-bottom: 64px;
}

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

.step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--bg-card);
  line-height: 1;
  margin-bottom: 12px;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--fg-muted);
  font-size: 15px;
}

/* ---- PRICING COMPARE ---- */
.pricing-compare {
  padding: 100px 10vw;
  background: var(--bg-surface);
}

.pricing-compare .section-label {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-compare h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 48px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
}

.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.compare-table tr.voxrate-row {
  background: var(--accent-glow);
}

.compare-table tr.voxrate-row td {
  color: var(--fg);
  font-weight: 600;
}

.compare-table .price-cell {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.compare-table .check { color: var(--accent); }
.compare-table .cross { color: var(--danger); opacity: 0.6; }

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

.closing h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 700px;
  margin: 0 auto 28px;
}

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

/* ---- FOOTER ---- */
footer {
  padding: 40px 10vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--fg-muted);
}

footer .footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
  font-size: 18px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 80px 6vw 60px; min-height: 70vh; }
  .stats-bar { flex-direction: column; }
  .stat-item { padding: 28px 6vw; }
  .problem, .how-it-works, .pricing-compare { padding: 64px 6vw; }
  .closing { padding: 80px 6vw; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
  .steps { gap: 36px; }
}