:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --fg-primary: #f0f0f5;
  --fg-secondary: #8a8a9a;
  --fg-muted: #5a5a6a;
  --accent: #00d4aa;
  --accent-dim: rgba(0, 212, 170, 0.15);
  --accent-glow: rgba(0, 212, 170, 0.3);
  --gold: #e8b84b;
  --gold-dim: rgba(232, 184, 75, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1140px;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  padding: 24px 0;
  position: relative;
  z-index: 10;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-primary);
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--accent);
}
.nav-tag {
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  text-align: left;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--fg-primary);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  color: var(--fg-secondary);
  line-height: 1.6;
  max-width: 520px;
}

/* Hero stats panel */
.hero-stats {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.hero-stats::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stat-row:last-child { border-bottom: none; }
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-primary);
}
.stat-value.accent { color: var(--accent); }
.stat-value.gold { color: var(--gold); }

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.problem-header {
  text-align: center;
  margin-bottom: 60px;
}
.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.problem-header p {
  font-size: 18px;
  color: var(--fg-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}
.pain-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
}
.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  background: var(--accent-dim);
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg-primary);
}
.pain-card p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.services h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 4px;
}
.service-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-primary);
  letter-spacing: -0.3px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.service-tag {
  font-size: 12px;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
}
.service-desc {
  font-size: 16px;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== VERTICALS ===== */
.verticals {
  padding: 100px 0;
}
.verticals h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.verticals > .container > p {
  font-size: 18px;
  color: var(--fg-secondary);
  margin-bottom: 48px;
  max-width: 560px;
}
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.vertical-chip {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-primary);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vertical-chip:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.vertical-emoji {
  font-size: 20px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0;
  text-align: center;
  position: relative;
  background: var(--bg-secondary);
}
.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.2;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
}
.closing h2 em {
  font-style: normal;
  color: var(--accent);
}
.closing p {
  font-size: 19px;
  color: var(--fg-secondary);
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-muted);
}
.footer-brand span { color: var(--accent); }
.footer-loc {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero { padding: 50px 0 60px; text-align: left; }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
  .service-num { display: none; }
  .vertical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .hero-stats { margin-top: 20px; }
}