:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface2: #1c1c1c;
  --fg: #f5f5f0;
  --muted: #888;
  --accent: #c8f83a;
  --accent-dim: rgba(200, 248, 58, 0.12);
  --border: rgba(255,255,255,0.06);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 140px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-lede {
  font-size: 1.1rem;
  color: rgba(245,245,240,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  font-size: 0.8rem;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  background: var(--surface);
}
.hero-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-stat {
  background: var(--surface);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stat:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.stat-number {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Proof */
.proof {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.proof-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.proof-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.proof-item {
  padding: 0;
}
.proof-metric {
  display: block;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.proof-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.proof-note {
  max-width: 1200px;
  margin: 48px auto 0;
  font-size: 0.95rem;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  line-height: 1.6;
}

/* Services */
.services {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 64px;
}
.services-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.services-sub {
  font-size: 1.05rem;
  color: var(--muted);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.service-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.service-includes {
  list-style: none;
  margin-bottom: 28px;
}
.service-includes li {
  font-size: 0.875rem;
  color: rgba(245,245,240,0.75);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.service-includes li:last-child {
  border-bottom: none;
}
.service-pricing {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}
.service-pricing-note {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
}
.services-tech {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* How */
.how {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 72px;
}
.how-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.how-sub {
  font-size: 1.05rem;
  color: var(--muted);
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child {
  border-bottom: none;
}
.step-num {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-dim);
  letter-spacing: -0.05em;
  line-height: 1;
  padding-top: 6px;
}
.step-body {}
.step-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Closing */
.closing {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--fg);
}
.closing-body {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-body:last-child {
  color: rgba(245,245,240,0.6);
  font-style: italic;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right {
    order: -1;
  }
  .hero-stat-stack {
    flex-direction: row;
  }
  .hero-stat {
    flex: 1;
  }
  .hero-stat:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .how-step {
    grid-template-columns: 56px 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 120px 24px 80px;
  }
  .proof, .services, .how {
    padding: 64px 24px;
  }
  .closing {
    padding: 80px 24px;
  }
  .hero-stat-stack {
    flex-direction: column;
  }
  .hero-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .proof-metric {
    font-size: 1.8rem;
  }
  .navbar {
    padding: 0 24px;
  }
  .footer {
    padding: 24px;
  }
}