@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #062f49;
  --navy-2: #031d2e;
  --crimson: #b00035;
  --ink: #10202d;
  --muted: #62717d;
  --paper: #fbfcfd;
  --line: #e6ebef;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,252,253,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,235,239,.85);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 205px; height: auto; display: block; }
nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: #41515d; }
nav a:hover { color: var(--navy); }
.nav-cta { border: 1px solid #cbd6dd; padding: 10px 16px; border-radius: 999px; color: var(--navy); font-weight: 600; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  background:
    radial-gradient(circle at 82% 20%, rgba(176,0,53,.08), transparent 30%),
    radial-gradient(circle at 68% 75%, rgba(6,47,73,.10), transparent 35%),
    var(--paper);
}
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,.5)); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 76px; align-items: center; }
.eyebrow { font-size: 12px; letter-spacing: .20em; font-weight: 700; color: var(--crimson); }
.eyebrow.light { color: #b8d1df; }
h1 { font-size: clamp(46px, 6vw, 78px); line-height: 1.02; letter-spacing: -.055em; margin: 18px 0 26px; max-width: 760px; }
h1 span { color: var(--navy); }
.hero-copy { font-size: 19px; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.primary { background: var(--navy); color: white; }
.primary:hover { background: #0a486d; }
.secondary { border: 1px solid #cbd6dd; background: white; color: var(--navy); }
.microcopy { font-size: 12px; color: #89959e; margin-top: 18px; }

.hero-card {
  border: 1px solid #dfe7ec;
  background: rgba(255,255,255,.82);
  box-shadow: 0 28px 70px rgba(5,31,47,.12);
  border-radius: 22px;
  padding: 24px;
}
.card-top { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--navy); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--crimson); }
.pill { margin-left: auto; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 9px; border-radius: 999px; background: #eef4f7; color: var(--navy); }
.analysis { margin-top: 34px; padding: 24px; border-radius: 16px; background: linear-gradient(145deg, #f7fafb, #eef4f7); }
.analysis-label { font-size: 10px; letter-spacing: .16em; color: #73818b; font-weight: 700; }
.score { font-size: 58px; font-weight: 800; letter-spacing: -.06em; color: var(--navy); margin: 10px 0; }
.score span { font-size: 18px; color: #8a979f; letter-spacing: 0; }
.progress { height: 8px; background: #d9e2e8; border-radius: 999px; overflow: hidden; }
.progress i { display: block; width: 92%; height: 100%; background: linear-gradient(90deg, var(--crimson), var(--navy)); border-radius: inherit; }
.checks { display: grid; gap: 12px; margin-top: 22px; font-size: 13px; color: #4d5e69; }
.checks b { color: var(--crimson); margin-right: 8px; }

.section { padding: 110px 0; }
.section-heading { max-width: 820px; }
h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.04em; margin: 14px 0 18px; color: var(--navy); }
.section-heading p, .split p { color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.feature { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 30px; min-height: 250px; }
.feature-number { font-size: 12px; color: var(--crimson); font-weight: 800; letter-spacing: .12em; }
.feature h3 { color: var(--navy); font-size: 22px; margin: 32px 0 10px; }
.feature p { color: var(--muted); margin: 0; }

.dark { background: var(--navy-2); color: white; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dark h2 { color: white; }
.dark p { color: #c3d1d9; }

.cta-section { padding: 0 0 100px; }
.cta-card {
  border-radius: 24px;
  padding: 52px 56px;
  color: white;
  background: linear-gradient(125deg, var(--navy-2), #0a4667);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-card h2 { color: white; max-width: 760px; }
.cta-card p { color: #c6d6df; }
.light-button { background: white; color: var(--navy); white-space: nowrap; }

footer { border-top: 1px solid var(--line); padding: 28px 0; font-size: 12px; color: #7b8992; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .split, .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 78px 0; }
  .hero-grid { gap: 44px; }
  .feature { min-height: auto; }
  .cta-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .nav { min-height: 68px; }
  .brand img { width: 165px; }
  h1 { font-size: 44px; }
  .hero-copy { font-size: 17px; }
}
