:root {
  --bg: #0D0D0D;
  --surface: #161616;
  --surface-2: #1F1F1F;
  --fg: #F2F2F2;
  --fg-muted: #A0A0A0;
  --accent: #B8FF00;
  --accent-dim: rgba(184, 255, 0, 0.12);
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* Section label */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* Hero */
.hero {
  padding: 100px 40px 80px;
  max-width: 1100px;
}
.hero-eyebrow {
  margin-bottom: 32px;
}
.eyebrow-pill {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(184,255,0,0.25);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--fg);
  margin-bottom: 32px;
}
.highlight {
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  flex: 1;
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stat-label em {
  font-style: normal;
  color: #555;
  font-size: 11px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 40px;
}

/* Problem */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.problem-inner { max-width: 1100px; }
.problem-header { margin-bottom: 64px; }
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 640px;
}
.problem-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  margin-bottom: 56px;
}
.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.pain-point p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.pain-icon {
  color: #FF4D4D;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.solution-callout {
  background: var(--accent-dim);
  border: 1px solid rgba(184,255,0,0.2);
  border-radius: 12px;
  padding: 28px 32px;
}
.solution-callout p {
  font-size: 17px;
  color: var(--fg);
  font-weight: 400;
  line-height: 1.6;
}

/* Services */
.services {
  padding: 100px 40px;
  max-width: 1100px;
}
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 64px;
  max-width: 540px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
}
.service-icon {
  color: var(--accent);
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Process */
.process {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.process-inner { max-width: 1100px; }
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 72px;
  max-width: 520px;
}
.process-steps {
  display: flex;
  gap: 48px;
}
.step {
  flex: 1;
  border-top: 2px solid var(--accent);
  padding-top: 28px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Pricing */
.pricing {
  padding: 100px 40px;
  max-width: 1100px;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(184,255,0,0.25);
  border-radius: 16px;
  padding: 48px;
  max-width: 560px;
  margin-bottom: 80px;
}
.pricing-header { margin-bottom: 40px; }
.pricing-tier {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-dollar {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-muted);
}
.price-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
}
.price-period {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
}
.pricing-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.pricing-includes { margin-bottom: 32px; }
.includes-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}
.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.includes-list li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.pricing-note {
  background: var(--accent-dim);
  border: 1px solid rgba(184,255,0,0.15);
  border-radius: 8px;
  padding: 20px 24px;
}
.pricing-note p {
  font-size: 15px;
  color: var(--fg);
}
.pricing-note strong { color: var(--accent); }

.breakdown-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.breakdown-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.breakdown-row:last-child { border-bottom: none; }
.breakdown-row.header {
  background: var(--surface-2);
  font-weight: 600;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breakdown-row:not(.header) span:first-child { color: var(--fg-muted); }
.breakdown-row:not(.header) span:nth-child(2) { color: var(--fg); }
.breakdown-row:not(.header) span:last-child { color: var(--fg-muted); }
.check { color: var(--accent) !important; }

/* Testimonials */
.testimonials {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 40px;
}
.testimonials-inner { max-width: 1100px; }
.testimonials-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 600px;
}
.testimonials-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.client-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.client-type {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.client-note {
  background: var(--accent-dim);
  border: 1px solid rgba(184,255,0,0.15);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 640px;
}
.client-note p {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 120px 40px;
  max-width: 1100px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 32px;
  max-width: 800px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-bottom {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 64px 24px 60px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-stats { flex-direction: column; gap: 28px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .problem { padding: 80px 24px; }
  .problem-columns { grid-template-columns: 1fr; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process { padding: 80px 24px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .pricing { padding: 80px 24px; }
  .pricing-card { padding: 32px 24px; }
  .includes-list { grid-template-columns: 1fr; }
  .breakdown-row { grid-template-columns: 1fr; gap: 4px; }
  .breakdown-row.header { display: none; }
  .testimonials { padding: 80px 24px; }
  .client-types { gap: 8px; }
  .client-type { font-size: 12px; padding: 8px 14px; }
  .closing { padding: 80px 24px; }
  .closing-headline { letter-spacing: -1px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}