:root {
  --bg: #0C0C0E;
  --bg-elevated: #161619;
  --bg-card: #1C1C20;
  --fg: #E8E6E1;
  --fg-muted: #9B9A97;
  --fg-dim: #6B6A68;
  --accent: #E8872A;
  --accent-glow: #F5A623;
  --accent-dim: rgba(232, 135, 42, 0.15);
  --border: #2A2A2E;
  --radius: 8px;
  --radius-lg: 16px;
  --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);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ========== HERO ========== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 40px;
  position: relative;
  background: 
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(232, 135, 42, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(245, 166, 35, 0.04) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.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;
  margin-bottom: 28px;
}

.hero .lede {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

.hero-stat-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 60px;
  padding: 28px 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

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

/* ========== PROBLEM ========== */
.problem {
  padding: 120px 24px;
  border-top: 1px solid var(--border);
}

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

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 80px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-item {
  padding: 28px 32px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  position: relative;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

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

/* ========== SERVICES ========== */
.services {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

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

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

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ========== HOW / AUDIENCE ========== */
.how {
  padding: 120px 24px;
  border-top: 1px solid var(--border);
}

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

.how-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.how-item {
  padding: 36px 32px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.how-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== CLOSING ========== */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: 
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(232, 135, 42, 0.06) 0%, transparent 70%),
    var(--bg);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-location {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .hero-stat-bar {
    gap: 20px;
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

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

  .problem-left h2 {
    position: static;
  }

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

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

  .problem,
  .services,
  .how {
    padding: 80px 20px;
  }

  .closing {
    padding: 100px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-badge {
    font-size: 0.6rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-stat-bar {
    gap: 16px;
  }
}
/* ========== CTA BUTTON ========== */
.hero-cta {
  margin-top: 40px;
}

.btn-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0C0C0E;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.1s;
}

.btn-cta:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta-closing {
  margin-bottom: 0;
}
