:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e6e3;
  --fg-muted: #8a8892;
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-glow: rgba(108, 92, 231, 0.15);
  --green: #00b894;
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
  --max-width: 1120px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-glow) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  max-width: var(--max-width);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-verticals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.vert-tag {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ---- PROOF ---- */
.proof {
  padding: 60px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 200px;
  display: block;
}

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

/* ---- SERVICES ---- */
.services {
  padding: 100px 24px;
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
  max-width: 520px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.25s;
}

.service-card:hover {
  border-color: rgba(108, 92, 231, 0.3);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--fg);
}

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

/* ---- VERTICALS ---- */
.verticals {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.verticals-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.verticals-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.vertical-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.vertical-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.vertical-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ---- HOW ---- */
.how {
  padding: 100px 24px;
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.how-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, var(--accent-glow) 0%, transparent 70%),
    var(--bg-elevated);
}

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

.closing h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

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

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

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

.footer-email {
  font-size: 0.85rem;
  color: var(--accent-light);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proof-inner {
    flex-direction: column;
    gap: 32px;
  }
  .proof-divider {
    width: 60px;
    height: 1px;
  }
  .hero {
    padding: 80px 20px 60px;
    min-height: auto;
  }
  .services, .verticals, .how {
    padding: 64px 20px;
  }
  .closing {
    padding: 80px 20px;
  }
}