:root {
  --bg: #0a0a0f;
  --bg-alt: #111118;
  --fg: #f0ede8;
  --fg-muted: #8a8580;
  --accent: #F59E0B;
  --accent-dim: #b47408;
  --border: #1e1e28;
  --card: #14141c;
}

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

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

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: var(--card);
}
.stat {
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

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

/* PROBLEM */
.problem {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-quote {
  padding-top: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.quote-text {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}
.quote-source {
  font-size: 13px;
  color: var(--fg-muted);
}
.problem-heading {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 32px;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.problem-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-closing {
  font-size: 15px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
  line-height: 1.6;
}
.problem-closing em {
  color: var(--fg);
  font-style: normal;
}

/* SERVICES */
.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}
.services-header {
  margin-bottom: 56px;
}
.services-heading {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.15;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.service-card {
  background: var(--card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.services-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.manifesto-heading {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 56px;
  line-height: 1.15;
}
.manifesto-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.manifesto-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.manifesto-item:last-child { border-bottom: none; }
.manifesto-num {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 28px;
}
.manifesto-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.manifesto-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* COVERAGE */
.coverage {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}
.coverage-heading {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.coverage-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 500px;
}
.coverage-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.zone {
  padding: 8px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: all 0.2s;
}
.zone:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.coverage-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-heading {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.closing-promise {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-legal {
  font-size: 12px;
  color: #4a4845;
}

/* MOBILE */
@media (max-width: 768px) {
  .problem-inner,
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-headline { letter-spacing: -1.5px; }
  .hero-stats { flex-wrap: wrap; width: 100%; }
  .stat { padding: 16px 20px; flex: 1; }
  .stat-divider { display: none; }
  .manifesto-item { gap: 20px; }
  .services-heading, .manifesto-heading, .coverage-heading { font-size: 30px; }
  .closing-heading { font-size: 28px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 24px 80px; }
}