:root {
  --bg: #0a0e14;
  --bg-alt: #0f1520;
  --bg-card: #111827;
  --fg: #f0ede6;
  --fg-muted: #8a8a8a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --border-accent: rgba(245, 158, 11, 0.25);
}

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

html { scroll-behavior: smooth; }

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;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-diagram {
  position: relative;
  width: 160px;
  height: 180px;
}
.shield-outer { width: 100%; height: 100%; }
.shield-outer svg { width: 100%; height: 100%; }
.shield-check {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-check svg { width: 20px; height: 20px; }

/* STATS */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}
.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 200px;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* SERVICES */
.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.services-header {
  margin-bottom: 56px;
}
.services-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.services-header p {
  color: var(--fg-muted);
  font-size: 17px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--border-accent); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.frameworks-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.frameworks-label {
  font-size: 14px;
  color: var(--fg-muted);
}
.frameworks-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.framework-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

/* PROCESS */
.process {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.process-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.process-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.process-header p {
  color: var(--fg-muted);
  font-size: 17px;
}
.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 0 28px;
  border-left: 1px solid var(--border);
}
.process-step:first-child { border-left: none; padding-left: 0; }
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-cta {}
.closing-note {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.closing-email {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}
.closing-email:hover { border-color: var(--accent); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
  }
  .hero-visual { display: none; }
  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }
  .stat-divider { display: none; }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-step {
    border-left: none;
    padding-left: 0;
  }
  .nav-links { display: none; }
  .frameworks-row { flex-direction: column; align-items: flex-start; }
  .closing h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .services-header h2, .process-header h2 { font-size: 28px; }
}