@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --fg: #f0ece4;
  --fg-dim: #8a8580;
  --accent: #e8ff47;
  --accent-dim: rgba(232, 255, 71, 0.12);
  --border: #222;
  --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.6;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.nav-logo span {
  color: var(--accent);
}

.nav-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 600px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 255, 71, 0.06), transparent);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 20px;
  color: var(--fg-dim);
  max-width: 560px;
  line-height: 1.6;
}

/* ---- STATS BAR ---- */
.stats {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  background: var(--bg);
  padding: 48px;
  text-align: center;
}

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

.stat-label {
  font-size: 14px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- VERTICALS ---- */
.verticals {
  padding: 120px 48px;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 64px;
  max-width: 600px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.vertical-card {
  background: var(--bg-card);
  padding: 48px 36px;
  transition: background 0.3s;
}

.vertical-card:hover {
  background: #1a1a1a;
}

.vertical-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.vertical-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.vertical-desc {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* ---- SERVICES ---- */
.services {
  padding: 120px 48px;
  background: var(--bg-card);
}

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

.service-item {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--border);
}

.service-item:hover {
  border-left-color: var(--accent);
}

.service-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 120px 48px;
}

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

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

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 160px 48px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 400px;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(232, 255, 71, 0.04), transparent);
  pointer-events: none;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.footer-brand span { color: var(--accent); }

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 120px 24px 60px; }
  .verticals { padding: 80px 24px; }
  .services { padding: 80px 24px; }
  .how { padding: 80px 24px; }
  .closing { padding: 100px 24px; }
  .footer { padding: 24px; flex-direction: column; gap: 8px; }
  .stats { flex-direction: column; }
  .stat-item { padding: 32px 24px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 32px; }
}