:root {
  --navy: #0B1F3A;
  --navy-mid: #122B4F;
  --navy-light: #1A3A66;
  --teal: #00C9A7;
  --teal-dim: rgba(0, 201, 167, 0.15);
  --coral: #FF6B6B;
  --coral-dim: rgba(255, 107, 107, 0.12);
  --slate: #8FA3BC;
  --light: #F4F7FA;
  --white: #FFFFFF;
  --text: #1E2D45;
  --text-muted: #6B7F9A;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 201, 167, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 18px;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal); }
  50% { opacity: 0.6; box-shadow: 0 0 16px var(--teal); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 201, 167, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 201, 167, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 201, 167, 0.08) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 880px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 201, 167, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(0, 201, 167, 0.06);
}
.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.metric {
  padding: 0 32px;
}
.metric:first-child { padding-left: 0; }
.metric-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-label {
  display: block;
  font-size: 13px;
  color: var(--slate);
  max-width: 160px;
  line-height: 1.4;
}
.metric-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* ── SHARED ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── PROBLEM ── */
.problem {
  padding: 100px 48px;
  background: var(--light);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem .section-headline { margin-bottom: 16px; }
.problem .section-body { margin-bottom: 64px; }
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-stat {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 16px;
  padding: 32px;
}
.problem-stat-icon { margin-bottom: 20px; }
.problem-stat h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.problem-stat p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SOLUTION ── */
.solution {
  padding: 100px 48px;
  background: var(--white);
}
.solution-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-radar {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 201, 167, 0.15);
}
.radar-ring-1 { width: 120px; height: 120px; }
.radar-ring-2 { width: 200px; height: 200px; }
.radar-ring-3 { width: 300px; height: 300px; border-color: rgba(0, 201, 167, 0.08); }
.radar-center {
  position: relative;
  z-index: 2;
}
.radar-blip {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
}
.blip-score {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.blip-score.high { background: rgba(0, 201, 167, 0.15); color: var(--teal); }
.blip-score.medium { background: rgba(255, 196, 59, 0.15); color: #CC8800; }
.blip-score.critical { background: rgba(255, 107, 107, 0.2); color: var(--coral); }
.blip-score.low { background: rgba(0, 201, 167, 0.08); color: var(--slate); }
.radar-blip-1 { top: 18%; left: 82%; }
.radar-blip-2 { top: 40%; left: 95%; }
.radar-blip-3 { top: 70%; left: 90%; }
.radar-blip-4 { top: 88%; left: 55%; }
.radar-blip-5 { top: 15%; left: 25%; }

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.solution-features svg { flex-shrink: 0; margin-top: 2px; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 48px;
  background: var(--navy);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-it-works .section-headline { color: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}
.process-step {
  position: relative;
  padding: 0 40px 0 0;
}
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 201, 167, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}
.step-connector {
  position: absolute;
  top: 24px;
  right: 0;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,201,167,0.3), rgba(0,201,167,0.05));
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 48px;
  background: var(--light);
}
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.outcome-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.07);
  border-radius: 20px;
  padding: 40px;
}
.outcome-number {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.outcome-label {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.outcome-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── VISION ── */
.vision {
  padding: 100px 48px;
  background: var(--navy);
}
.vision-inner { max-width: 760px; margin: 0 auto; }
.vision-quote { text-align: center; }
.vision-mark { margin-bottom: 32px; }
.vision-quote blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 40px;
}
.vision-cta p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 24px;
}
.footer-meta {
  font-size: 12px;
  color: rgba(143, 163, 188, 0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 44px; }
  .hero-metrics { flex-direction: column; gap: 24px; align-items: flex-start; }
  .metric { padding: 0; }
  .metric-divider { display: none; }
  .problem, .solution, .how-it-works, .outcomes, .vision { padding: 60px 24px; }
  .problem-stats { grid-template-columns: 1fr; }
  .solution-inner { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-radar { width: 240px; height: 240px; }
  .radar-ring-1 { width: 80px; height: 80px; }
  .radar-ring-2 { width: 150px; height: 150px; }
  .radar-ring-3 { width: 220px; height: 220px; }
  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .process-step { padding-right: 0; padding-bottom: 40px; }
  .outcomes-grid { grid-template-columns: 1fr; }
}
