:root {
  --bg: #0a0a0f;
  --bg-surface: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e6e1;
  --fg-muted: #9a9890;
  --accent: #f5a623;
  --accent-glow: #ffcc5c;
  --accent-dim: #c47d0e;
  --gradient-warm: linear-gradient(135deg, #f5a623 0%, #ff6b35 100%);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.glow-text {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* === PROBLEM === */
.problem {
  padding: 120px 24px;
  background: var(--bg-surface);
}

.problem-inner {
  max-width: 960px;
  margin: 0 auto;
}

.problem-label,
.services-label,
.how-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2,
.services h2,
.how h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

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

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

.problem-icon {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent-dim);
  margin-bottom: 20px;
  opacity: 0.5;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* === SERVICES === */
.services {
  padding: 120px 24px;
}

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

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

.service-item {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease;
}

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

.service-number {
  color: var(--accent);
  font-size: 10px;
  margin-bottom: 16px;
}

.service-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* === HOW IT WORKS === */
.how {
  padding: 120px 24px;
  background: var(--bg-surface);
}

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

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.how-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  min-width: 60px;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 1rem;
}

/* === CLOSING === */
.closing {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  overflow: hidden;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.closing-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

/* === FOOTER === */
.site-footer {
  padding: 60px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 80vh;
    padding: 100px 20px 80px;
  }
  .hero-orb {
    width: 350px;
    height: 350px;
  }
  .how-step {
    flex-direction: column;
    gap: 12px;
  }
  .step-num {
    font-size: 2rem;
    min-width: auto;
  }
  .problem,
  .services,
  .how,
  .closing {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .lede {
    font-size: 1rem;
  }
  .service-item {
    padding: 28px 24px;
  }
}