:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #0b1220;
  --muted: #526075;
  --line: #dfe6f0;
  --soft: #eaf2ff;
  --brand: #0b1220;
  --accent: #0f766e;
  --accent2: #1e3a8a;
  --warn: #b45309;
  --danger: #b91c1c;
  --ok: #0f766e;
  --shadow: 0 24px 70px rgba(11, 18, 32, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.topbar {
  background: #08111f;
  color: #dbeafe;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
}
.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand img {
  height: 34px;
  width: auto;
}
.links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #263349;
  font-size: 14px;
}
.links a:hover {
  color: #000;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 750;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  transition: 0.2s;
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.16);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 40px rgba(11, 18, 32, 0.22);
}
.btn.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(11, 18, 32, 0.16);
  box-shadow: none;
}
.mobile-btn {
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 64px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 45%, #f8fafc 100%);
}
.hero:before {
  content: '';
  position: absolute;
  right: -170px;
  top: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--soft),
    rgba(15, 118, 110, 0.08),
    transparent 68%
  );
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e7f7f4;
  color: #0f5f58;
  border: 1px solid #bfebe3;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  margin: 20px 0 20px;
  letter-spacing: -0.06em;
}
.hero p.lead {
  font-size: 20px;
  color: #344154;
  max-width: 720px;
  margin: 0 0 26px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: #3c4a5e;
  font-size: 14px;
}
.trust span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}
.hero-card {
  background: #08111f;
  color: white;
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: '';
  position: absolute;
  right: -100px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.25);
}
.score {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 16px;
}
.score-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.score h3 {
  margin: 0;
  font-size: 18px;
}
.score .pill {
  background: #ecfeff;
  color: #134e4a;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.meter {
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}
.meter span {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, #14b8a6, #60a5fa);
  border-radius: 99px;
}
.risk-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}
.risk-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 11px 12px;
  color: #dbeafe;
  font-size: 14px;
}
.risk-item b {
  color: white;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mini {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.mini b {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.mini span {
  color: var(--muted);
  font-size: 13px;
}
section {
  padding: 72px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.04);
}
.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-weight: 900;
  color: #1e3a8a;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step h3 {
  margin: 0 0 4px;
  font-size: 17px;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.offer {
  background: #08111f;
  color: white;
  position: relative;
  overflow: hidden;
}
.offer .section-head p {
  color: #cbd5e1;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: white;
  color: var(--ink);
  transform: translateY(-10px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}
.price-card h3 {
  margin: 0 0 4px;
  font-size: 23px;
}
.price {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin: 18px 0 2px;
}
.price small {
  font-size: 15px;
  color: inherit;
  opacity: 0.72;
}
.price-card p {
  color: inherit;
  opacity: 0.75;
}
.list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}
.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.list li:before {
  content: '✓';
  font-weight: 900;
  color: #14b8a6;
}
.price-card .btn {
  margin-top: auto;
}
.calculator {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}
.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 7px;
  color: #344154;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd8e6;
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  background: white;
}
.field textarea {
  min-height: 118px;
  resize: vertical;
}
.result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.result-box {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px;
}
.result-box b {
  display: block;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.result-box span {
  font-size: 13px;
  color: var(--muted);
}
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industry {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.industry b {
  display: block;
  margin-bottom: 5px;
}
.industry span {
  color: var(--muted);
  font-size: 14px;
}
.proof {
  background: #f8fafc;
}
.quote {
  font-size: 20px;
  color: #263349;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.04);
}
.quote small {
  display: block;
  color: var(--muted);
  margin-top: 16px;
}
.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.faq p {
  color: var(--muted);
  margin: 12px 0 0;
}
.contact {
  background: linear-gradient(135deg, #08111f, #0f172a);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}
.contact p {
  color: #cbd5e1;
}
.form {
  background: white;
  color: var(--ink);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form .btn {
  width: 100%;
  margin-top: 12px;
}
.notice {
  font-size: 12px;
  color: #64748b;
  margin-top: 10px;
}
.footer {
  background: #060b14;
  color: #cbd5e1;
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.footer a {
  color: #e2e8f0;
}
.footer small {
  color: #94a3b8;
}
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 19;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}
.modal.open {
  display: flex;
}
.modal-card {
  background: white;
  border-radius: 28px;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  position: relative;
}
.close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}
.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  background: #eef6ff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 800;
}
.source-links {
  font-size: 13px;
  color: #5b6980;
  margin-top: 14px;
}
.source-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hidden {
  display: none !important;
}
@media (max-width: 920px) {
  .links {
    display: none;
  }
  .mobile-btn {
    display: block;
  }
  .nav.open .links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    display: grid;
    box-shadow: var(--shadow);
  }
  .hero-grid,
  .split,
  .contact-grid,
  .pricing {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .industries,
  .calc-grid,
  .result {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta {
    left: 12px;
    right: 12px;
    justify-content: center;
  }
  .hero {
    padding-top: 48px;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, var(--max));
  }
  .cards,
  .industries,
  .calc-grid,
  .result,
  .form-row,
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .topbar .container {
    display: block;
  }
  .nav-actions .secondary {
    display: none;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero p.lead {
    font-size: 17px;
  }
  .section-head h2 {
    font-size: 31px;
  }
  section {
    padding: 52px 0;
  }
  .sticky-cta span {
    display: none;
  }
}
