@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500&display=swap');

:root {
  --bg-primary: #0c0f14;
  --bg-secondary: #13171f;
  --bg-card: #191e28;
  --fg-primary: #f0f2f5;
  --fg-secondary: #8a919e;
  --fg-muted: #5c6370;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.25);
  --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;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.hero {
  padding: 120px 0 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;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 100px;
  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.8rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
  max-width: 720px;
  margin-bottom: 24px;
}

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

.hero-lede {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ── Problem ── */
.problem {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

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

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.problem p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.cost-comparison {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cost-row:last-child {
  border-bottom: none;
}

.cost-name {
  color: var(--fg-secondary);
  font-size: 0.95rem;
}

.cost-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg-muted);
}

.cost-row.highlight {
  background: var(--accent-dim);
  margin: 0 -16px;
  padding: 16px;
  border-radius: 8px;
  border-bottom: none;
}

.cost-row.highlight .cost-name {
  color: var(--fg-primary);
  font-weight: 500;
}

.cost-row.highlight .cost-price {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ── Features ── */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg-primary);
}

.feature-card p {
  color: var(--fg-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Audience ── */
.audience {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.audience h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.audience > .container > p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 48px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.audience-bullet {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.audience-item span {
  color: var(--fg-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ── Closing ── */
.closing {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse at center bottom, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto 20px;
}

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

/* ── Footer ── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg-primary);
  margin-bottom: 6px;
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero-stats {
    gap: 32px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }
}
