:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-alt: #1a1a1a;
  --fg-primary: #f0ece4;
  --fg-secondary: #a09a8e;
  --fg-muted: #6b6560;
  --accent: #e8913a;
  --accent-dim: #c47a2e;
  --accent-glow: rgba(232, 145, 58, 0.15);
  --border: #2a2520;
  --border-light: #332e28;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ——— HERO ——— */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 145, 58, 0.06) 0%, transparent 60%);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 2.5rem;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--accent);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: background 0.15s, transform 0.1s;
}

.hero-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--fg-muted);
  font-size: 0.85rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.stat-line {
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

/* ——— PROBLEM ——— */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.problem-text p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.problem-comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.compare-card.new {
  border-color: var(--accent-dim);
  background: linear-gradient(135deg, rgba(232, 145, 58, 0.05), var(--bg-card));
}

.compare-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  color: var(--fg-muted);
}

.compare-card.new .compare-label {
  color: var(--accent);
}

.compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compare-card ul li {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  padding-left: 1.2rem;
  position: relative;
}

.compare-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg-muted);
}

.compare-card.new ul li::before {
  background: var(--accent);
}

.compare-card.new ul li {
  color: var(--fg-primary);
}

/* ——— FEATURES ——— */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 3.5rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.features-header p {
  color: var(--fg-secondary);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.feature-card:hover {
  border-color: var(--border-light);
}

.feature-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

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

/* ——— NUMBERS ——— */
.numbers {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.number-block {
  text-align: center;
  flex: 1;
}

.number-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.number-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-primary);
  margin-bottom: 0.3rem;
}

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

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

/* ——— CLOSING ——— */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

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

/* ——— FOOTER ——— */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

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

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

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

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .problem {
    padding: 4rem 1.5rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features {
    padding: 4rem 1.5rem;
  }

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

  .numbers {
    padding: 3rem 1.5rem;
  }

  .numbers-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .number-divider {
    width: 40px;
    height: 1px;
  }

  .number-value {
    font-size: 2.5rem;
  }

  .closing {
    padding: 4rem 1.5rem;
  }

  .closing h2 {
    font-size: 1.6rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero-stat {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-line {
    display: none;
  }
}