:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --fg: #f2f2f0;
  --fg-muted: #888888;
  --accent: #baff00;
  --accent-dim: rgba(186, 255, 0, 0.12);
  --border: rgba(255,255,255,0.08);
  --card-bg: #0f0f0f;
}

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

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 6px 8px;
  letter-spacing: 0.05em;
}

.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 48px 72px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* Proof section */
.proof {
  padding: 72px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-header {
  margin-bottom: 48px;
}

.proof-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.proof-card {
  background: var(--bg-alt);
  padding: 36px 32px;
}

.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.proof-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Services */
.services {
  padding: 80px 48px;
}

.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

.service-card {
  background: var(--card-bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.niches {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
}

.niches-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-right: 4px;
}

.niche-tag {
  background: var(--accent-dim);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  letter-spacing: 0.05em;
}

/* Pricing */
.pricing {
  padding: 80px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
}

.pricing-featured {
  border-color: var(--accent);
  background: rgba(186, 255, 0, 0.04);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 14px;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-note {
  font-size: 12px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.5;
}

.pricing-cta {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  font-style: italic;
}

/* Process */
.process {
  padding: 80px 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* Closing */
.closing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.closing-content {
  max-width: 680px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 6px;
  letter-spacing: 0.05em;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}

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

.footer-copy {
  margin-left: auto;
  font-size: 12px;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 56px 24px 48px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .proof { padding: 56px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .services { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 56px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process { padding: 56px 24px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; flex-wrap: wrap; }
  .footer-copy { margin-left: 0; }
}