:root {
  --bg: #111110;
  --surface: #1c1c1a;
  --border: #2e2e2b;
  --text: #f5f0e6;
  --text-muted: #8a8680;
  --accent: #d4f73d;
  --accent-dim: #a8c82e;
  --font-head: '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(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17,17,16,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 32px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  margin-bottom: 28px;
}
.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,247,61,0.08);
  border: 1px solid rgba(212,247,61,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 140px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PROBLEM */
.problem {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 64px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.problem-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* SERVICES */
.services {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 64px;
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 64px;
}
.service-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  background: var(--surface);
}
.service-card:last-child { border-right: none; }
.service-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.services-pricing {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  gap: 40px;
  flex-wrap: wrap;
}
.pricing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-left h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-left p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
}
.pricing-right {
  flex-shrink: 0;
  text-align: right;
}
.pricing-number {
  display: block;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.pricing-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* HOW */
.how {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 580px;
  margin-bottom: 64px;
  line-height: 1.2;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.step {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-marker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-content { max-width: 800px; }
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--text);
  font-style: normal;
}
.manifesto-quote em {
  color: var(--accent);
  font-style: normal;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* FOOTER */
.footer {
  padding: 60px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 120px 24px 64px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .pricing-inner { padding: 32px 28px; }
  .pricing-right { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .how-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .problem-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-inner { padding: 14px 24px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero-headline { font-size: 36px; }
  .stat-number { font-size: 28px; }
}