:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --fg-dim: #55556a;
  --accent: #7c5cff;
  --accent-glow: rgba(124, 92, 255, 0.15);
  --accent-bright: #9b7fff;
  --ghost: rgba(124, 92, 255, 0.08);
  --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;
}

html {
  scroll-behavior: smooth;
}

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

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

/* ---- HERO ---- */

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

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: var(--accent-glow);
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--fg);
  margin-bottom: 28px;
}

.ghost-text {
  background: linear-gradient(135deg, var(--accent-bright), #c084fc, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-btn-primary {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #6441f0 100%);
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(124, 92, 255, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124, 92, 255, 0.45);
}

.hero-btn-ghost {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.15);
}

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

/* ---- PROBLEM ---- */

.problem {
  padding: 100px 24px;
  background: var(--bg);
}

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

.problem h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 56px;
  color: var(--fg);
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: rgba(124, 92, 255, 0.25);
}

.problem-icon {
  font-size: 20px;
  color: var(--fg-dim);
  margin-bottom: 12px;
}

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

.problem-kicker {
  text-align: center;
  font-size: 1.15rem;
  color: var(--fg);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.problem-kicker em {
  color: var(--accent-bright);
  font-style: italic;
}

/* ---- SERVICES ---- */

.services {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

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

.services h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 64px;
}

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

.service-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.3s;
}

.service-block:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 92, 255, 0.25);
}

.service-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--ghost);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  color: rgba(124, 92, 255, 0.12);
}

.service-block h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* ---- HOW ---- */

.how {
  padding: 100px 24px;
  background: var(--bg);
}

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

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 64px;
}

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

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

.step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(124, 92, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-bright);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--fg);
}

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

/* ---- NICHES ---- */

.niches {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.niches-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.niches h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 48px;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.niche-tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  transition: all 0.3s;
}

.niche-tag:hover {
  color: var(--accent-bright);
  border-color: rgba(124, 92, 255, 0.3);
  background: var(--accent-glow);
}

.niches-note {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- CLOSING ---- */

.closing {
  padding: 120px 24px;
  background: var(--bg);
  text-align: center;
  position: relative;
}

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

.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--fg), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing-statement {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

/* ---- FOOTER ---- */

.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

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

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .hero {
    min-height: 80vh;
    padding: 100px 20px 80px;
  }

  .how-step {
    gap: 20px;
  }

  .step-marker {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 16px 60px;
  }

  .problem,
  .services,
  .how,
  .niches,
  .closing {
    padding: 72px 16px;
  }

  .service-block {
    padding: 28px 20px;
  }

  .niche-tag {
    font-size: 13px;
    padding: 8px 16px;
  }
}