:root {
  --color-bg: #07111f;
  --color-bg-soft: #0b1b2e;
  --color-surface: #ffffff;
  --color-surface-dark: #0f2338;
  --color-primary: #1d7cff;
  --color-accent: #31e6b0;
  --color-text: #0d1724;
  --color-muted: #607083;
  --color-line: #dbe6ee;
  --radius-lg: 8px;
  --shadow-card: 0 18px 55px rgba(4, 18, 32, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--color-text);
  background: #f6f9fc;
}
a { color: inherit; }
img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(7, 17, 31, .9);
  color: #fff;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #031222;
  font-size: 13px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  padding: 10px 12px;
  color: #d8e7f7;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(255, 255, 255, .09); color: #fff; }
.site-nav .nav-cta {
  background: #fff;
  color: #061426;
}
.nav-toggle { display: none; }

.section {
  padding: 92px max(22px, calc((100vw - 1180px) / 2));
}
.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-head.center { text-align: center; margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px;
  color: #1974ef;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
p { line-height: 1.65; color: var(--color-muted); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 65px);
  padding-top: 74px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(49, 230, 176, .16), transparent 28%),
    radial-gradient(circle at 8% 8%, rgba(29, 124, 255, .22), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b2137 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(246, 249, 252, .04));
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; }
.hero .eyebrow { color: #61f0c1; }
.hero-lede {
  max-width: 680px;
  margin-bottom: 28px;
  color: #c3d4e7;
  font-size: 19px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  background: linear-gradient(135deg, var(--color-primary), #41e0b5);
  color: #031222;
  box-shadow: 0 16px 38px rgba(29, 124, 255, .32);
}
.button.secondary {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
}
.pricing .button.secondary, .contact .button.secondary, .price-card .button.secondary { color: var(--color-text); border-color: var(--color-line); }
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}
.trust-strip span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  color: #dce9f7;
  background: rgba(255, 255, 255, .055);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}
.network {
  position: absolute;
  inset: 30px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, transparent 42%, rgba(49,230,176,.18) 43%, transparent 44%),
    linear-gradient(45deg, transparent 52%, rgba(29,124,255,.18) 53%, transparent 54%);
  border: 1px solid rgba(255,255,255,.12);
}
.dashboard-card, .shield-badge, .floating-report, .agency-card, .safety-visual {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(14, 34, 54, .9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.dashboard-card {
  position: absolute;
  inset: 72px 16px auto 0;
  padding: 18px;
  color: #fff;
}
.window-bar { display: flex; gap: 6px; margin-bottom: 20px; }
.window-bar span { width: 10px; height: 10px; border-radius: 999px; background: #4f6a83; }
.score-panel {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 18px;
  align-items: center;
}
.score-ring {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: conic-gradient(var(--color-accent) 0 82%, rgba(255,255,255,.12) 82% 100%);
  color: #05111f;
}
.score-ring strong { font-size: 38px; }
.score-ring span {
  grid-row: 2;
  margin-top: -34px;
  color: #163047;
  font-size: 12px;
  font-weight: 900;
}
.mini-title { margin-bottom: 4px; color: #80f4cb; font-size: 13px; font-weight: 900; }
.score-panel h2 { margin-bottom: 18px; color: #fff; font-size: 29px; }
.meter { height: 10px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.meter span { display: block; width: 68%; height: 100%; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); }
.alert-list { display: grid; gap: 10px; margin-top: 20px; }
.alert-list span {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: #dce9f7;
  font-weight: 800;
}
.alert-list span::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 9px; border-radius: 50%; background: var(--color-accent); }
.alert-list .warn::before { background: #ffce73; }
.alert-list .info::before { background: #60a5ff; }
.shield-badge {
  position: absolute;
  right: 0;
  top: 24px;
  width: 178px;
  padding: 18px;
  color: #fff;
}
.shield-shape {
  display: block;
  width: 58px;
  height: 70px;
  margin-bottom: 12px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
  clip-path: polygon(50% 0, 93% 16%, 84% 72%, 50% 100%, 16% 72%, 7% 16%);
}
.floating-report {
  position: absolute;
  right: 34px;
  bottom: 38px;
  width: 210px;
  padding: 18px;
  color: #fff;
}
.floating-report span {
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.floating-report span:nth-child(2) { width: 72%; }
.floating-report span:nth-child(3) { width: 48%; background: rgba(49,230,176,.5); }

.problem { background: #fff; }
.risk-grid, .service-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.risk-grid article, .service-card, .price-card, .faq details {
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.risk-grid span, .icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #e8f4ff;
  color: #0b62ce;
  font-size: 12px;
  font-weight: 900;
}
.risk-grid p, .service-card p, .price-card p { margin-bottom: 0; }

.service-card ul, .price-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.service-card li, .price-card li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: #35475b;
  line-height: 1.45;
}
.service-card li::before, .price-card li::before, .checklist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.audience, .process, .faq { background: #eef5f9; }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-grid span {
  padding: 10px 14px;
  border: 1px solid #cfe0ec;
  border-radius: 8px;
  background: #fff;
  color: #22364a;
  font-weight: 800;
}

.checks {
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, #081626, #0f2c43);
  background-size: 44px 44px, 44px 44px, auto;
}
.checks .section-head p, .checks .section-head h2 { color: #fff; }
.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.checklist span {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: #edf7ff;
  font-weight: 750;
}
.checklist span::before { left: 18px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.timeline article {
  position: relative;
  min-height: 225px;
  padding: 22px;
  border: 1px solid #cfe0ec;
  border-radius: 8px;
  background: #fff;
}
.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--color-bg);
  color: #fff;
  font-weight: 900;
}

.pricing { background: #fff; }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.price-card {
  display: flex;
  flex-direction: column;
}
.price-card strong {
  display: block;
  margin: 20px 0 4px;
  font-size: 30px;
}
.price-card .button { margin-top: auto; }
.price-card.featured {
  border-color: #58dcb7;
  background: linear-gradient(180deg, #ffffff, #edfdf7);
}
.tag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #0b1d31;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.fine-print { margin-top: 18px; font-size: 14px; }

.agency, .safety, .contact, .final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 460px);
  gap: 42px;
  align-items: center;
}
.agency {
  background:
    radial-gradient(circle at 90% 40%, rgba(49,230,176,.18), transparent 32%),
    linear-gradient(135deg, #07111f, #10304a);
  color: #fff;
}
.agency p, .agency h2 { color: #fff; }
.agency-card {
  display: grid;
  gap: 12px;
  padding: 26px;
}
.agency-card span {
  padding: 15px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #e9f5ff;
  font-weight: 850;
}

.safety { background: #fff; }
.safety-visual {
  min-height: 320px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(135deg, #0a1c30, #133754);
  background-size: 38px 38px, 38px 38px, auto;
}
.compact { grid-template-columns: 1fr; gap: 8px; }
.compact span {
  border-color: #dbe6ee;
  background: #f5fafc;
  color: #1b2d41;
}
.disclaimer {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--color-primary);
  background: #eef6ff;
  color: #274057;
}

.faq-list {
  display: grid;
  gap: 10px;
}
.faq summary {
  cursor: pointer;
  color: #0d1724;
  font-weight: 900;
}
.faq details p { margin: 14px 0 0; }

.final-cta {
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(135deg, #06111e, #0e2d45);
  background-size: 44px 44px, 44px 44px, auto;
}
.final-cta h2, .final-cta p { color: #fff; }
.final-cta .actions { justify-content: flex-end; }

.contact { background: #fff; align-items: start; }
.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #203349;
  font-weight: 850;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #c9d8e4;
  border-radius: 8px;
  color: #0d1724;
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-status { min-height: 20px; margin: 0; font-size: 14px; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 34px;
  padding: 42px max(22px, calc((100vw - 1180px) / 2));
  background: #06101d;
  color: #fff;
}
.site-footer p { max-width: 560px; margin: 12px 0 0; color: #b6c8d8; }
.site-footer nav {
  display: grid;
  gap: 10px;
}
.site-footer a { color: #eaf4ff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }
  .site-nav {
    position: absolute;
    top: 65px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: #07111f;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px; }
  .hero, .agency, .safety, .contact, .final-cta {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-visual { min-height: 470px; }
  .trust-strip, .risk-grid, .service-grid, .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .final-cta .actions { justify-content: flex-start; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 68px 18px; }
  .site-header { padding-inline: 18px; }
  .hero { padding-top: 56px; }
  h1 { font-size: 43px; }
  .hero-visual { min-height: 420px; }
  .dashboard-card { inset: 54px 0 auto 0; }
  .score-panel { grid-template-columns: 1fr; }
  .score-ring { width: 118px; height: 118px; }
  .shield-badge { width: 150px; top: 4px; }
  .floating-report { right: 0; bottom: 12px; }
  .trust-strip, .risk-grid, .service-grid, .timeline, .checklist {
    grid-template-columns: 1fr;
  }
  .actions, .button { width: 100%; }
  .button { min-width: 0; }
}
