:root {
  --navy-950: #06111f;
  --navy-900: #0a1829;
  --navy-800: #10233a;
  --blue-500: #3f8de8;
  --blue-400: #70adf3;
  --mint: #5ed7b2;
  --paper: #f7f9fc;
  --paper-blue: #eef4fb;
  --card: #ffffff;
  --border: #dce5ef;
  --ink: #122035;
  --muted: #5d6b7c;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(20, 48, 80, 0.08);
  --shadow-dark: 0 34px 90px rgba(1, 10, 23, 0.42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1,
h2,
h3,
p,
ul,
ol { margin: 0; }
ul,
ol { padding: 0; list-style: none; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  border-radius: 8px;
  background: #fff;
  padding: 10px 14px;
  color: #173860;
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(143, 177, 214, 0.16);
  background: rgba(6, 17, 31, 0.92);
  color: #f4f8fc;
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f8fc;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(112, 173, 243, 0.24);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(63, 141, 232, 0.22), rgba(63, 141, 232, 0.08));
  color: #8cc2fb;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.read-only-tag {
  border: 1px solid rgba(112, 173, 243, 0.2);
  border-radius: 999px;
  background: rgba(63, 141, 232, 0.1);
  padding: 3px 8px;
  color: #8ec1f7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  color: #9caec2;
  font-size: 13px;
  font-weight: 560;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 9px;
  background: #347ed5;
  padding: 9px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(31, 104, 188, 0.24);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(151, 184, 222, 0.2);
  border-radius: 10px;
  background: rgba(16, 35, 58, 0.7);
  color: #fff;
}

.menu-lines {
  display: grid;
  width: 17px;
  gap: 4px;
}

.menu-lines i {
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
}

.mobile-nav {
  border-top: 1px solid rgba(143, 177, 214, 0.14);
  padding: 12px 20px 18px;
  background: #081725;
}

.mobile-nav a:not(.button) {
  display: block;
  padding: 12px 4px;
  color: #c0cedc;
  font-size: 14px;
  text-decoration: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(63, 141, 232, 0.24), transparent 34rem),
    radial-gradient(circle at 4% 82%, rgba(94, 215, 178, 0.09), transparent 28rem),
    linear-gradient(145deg, var(--navy-950), #09182a 62%, #0b1c31);
  color: #f7fbff;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(151, 184, 222, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 184, 222, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: -260px;
  right: -210px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(112, 173, 243, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(70, 142, 226, 0.022),
    0 0 0 160px rgba(70, 142, 226, 0.015);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
  padding-block: clamp(64px, 9vw, 110px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(145, 184, 228, 0.24);
  border-radius: 999px;
  background: rgba(13, 32, 54, 0.68);
  padding: 7px 12px;
  color: #b9d7f8;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(94, 215, 178, 0.1);
}

.hero h1 {
  max-width: 700px;
  margin-top: 24px;
  font-size: clamp(45px, 6.2vw, 82px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 span { color: var(--blue-400); }

.hero-lead {
  max-width: 620px;
  margin-top: 25px;
  color: #aebed1;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 17px;
  font-size: 14px;
  font-weight: 720;
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.button.large { min-height: 52px; padding-inline: 20px; }
.button.block { width: 100%; margin-top: 28px; }

.button.primary {
  background: #347ed5;
  color: #fff;
  box-shadow: 0 16px 38px rgba(35, 111, 200, 0.3);
}

.button.ghost {
  border-color: rgba(161, 195, 233, 0.25);
  background: rgba(14, 33, 56, 0.65);
  color: #dceafb;
}

.button.light {
  border-color: #cad9e9;
  background: #fff;
  color: #1d63ae;
  box-shadow: 0 10px 26px rgba(18, 50, 86, 0.08);
}

.button:hover { transform: translateY(-2px); }
.button.primary:hover { background: #2c73c5; box-shadow: 0 20px 44px rgba(35, 111, 200, 0.36); }
.button.ghost:hover { border-color: rgba(161, 195, 233, 0.44); background: rgba(26, 52, 83, 0.82); }

.button:focus-visible,
.brand:focus-visible,
.desktop-nav a:focus-visible,
.header-cta:focus-visible,
.menu-button:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid #82b9f6;
  outline-offset: 3px;
}

.assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  color: #c7d4e3;
  font-size: 12px;
}

.assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assurances li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(94, 215, 178, 0.09);
  content: "";
}

.report-wrap { position: relative; }

.preview-label {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  border: 1px solid rgba(116, 174, 237, 0.32);
  border-radius: 999px;
  background: rgba(7, 22, 38, 0.8);
  padding: 5px 8px;
  color: #cce2fa;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.report-preview {
  overflow: hidden;
  border: 1px solid rgba(151, 184, 222, 0.26);
  border-radius: 23px;
  background: #f7f9fc;
  color: #142135;
  box-shadow: var(--shadow-dark);
  transform: perspective(1400px) rotateY(-2.5deg) rotateX(1.4deg);
  transform-origin: center;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #dce5ee;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 15px;
  color: #607083;
  font-size: 10px;
  font-weight: 650;
}

.window-dots { display: flex; gap: 4px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #c5d1de; }

.report-content { padding: clamp(15px, 2.2vw, 22px); }

.report-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.report-heading small {
  display: block;
  color: #3379c4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-heading strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(17px, 2.2vw, 22px);
  letter-spacing: -0.025em;
}

.report-heading p {
  color: #718095;
  font-size: 9px;
  line-height: 1.55;
  text-align: right;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 17px;
}

.metric {
  min-width: 0;
  border: 1px solid #dce6f0;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.metric small {
  display: block;
  overflow: hidden;
  color: #728094;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.metric strong {
  display: block;
  margin-top: 5px;
  color: #14233a;
  font-size: clamp(17px, 2.4vw, 23px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.metric em {
  color: #168260;
  font-size: 9px;
  font-style: normal;
}

.metric > span {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #7d8999;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-panels {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 10px;
  margin-top: 10px;
}

.report-panel {
  min-width: 0;
  border: 1px solid #dce6f0;
  border-radius: 12px;
  background: #fff;
  padding: 11px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #344257;
  font-size: 9px;
}

.panel-title span { color: #8591a0; font-size: 8px; }

.events { display: grid; gap: 7px; margin-top: 10px; }
.events li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  border-radius: 9px;
  background: #f6f8fb;
  padding: 7px 8px;
}

.events i { width: 6px; height: 6px; border-radius: 50%; }
.events i.good { background: #28a37a; }
.events i.warn { background: #e09a35; }
.events i.risk { background: #d65d68; }
.events span { overflow: hidden; color: #425168; font-size: 8px; font-weight: 630; text-overflow: ellipsis; white-space: nowrap; }
.events b { border-radius: 99px; background: #e9f1fa; padding: 3px 5px; color: #3d709f; font-size: 7px; text-transform: uppercase; }

.bars {
  display: flex;
  height: 76px;
  align-items: flex-end;
  gap: 6px;
  margin-top: 13px;
  border-bottom: 1px solid #e7edf3;
  background: repeating-linear-gradient(to top, transparent 0 23px, #edf2f7 24px);
  padding-inline: 4px;
}

.bars i { flex: 1; min-width: 5px; border-radius: 4px 4px 0 0; background: linear-gradient(to top, #377ed0, #73b0f3); }
.bar-labels { display: flex; justify-content: space-between; margin-top: 6px; color: #8b96a5; font-size: 7px; }

.report-priority {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  border-radius: 10px;
  background: #eaf3fd;
  padding: 9px 11px;
  color: #285f9d;
  font-size: 8px;
  font-weight: 680;
}

.trust-rail {
  border-block: 1px solid rgba(144, 176, 211, 0.18);
  background: rgba(3, 12, 22, 0.28);
  backdrop-filter: blur(12px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-block: 20px;
}

.trust-grid > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.trust-grid > div > span {
  display: inline-flex;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(112, 173, 243, 0.2);
  border-radius: 10px;
  background: rgba(63, 141, 232, 0.1);
  color: var(--blue-400);
  font-size: 9px;
  font-weight: 800;
}

.trust-grid p { color: #aebed1; font-size: 11px; line-height: 1.45; }
.trust-grid b { display: block; color: #eef5fd; font-size: 12px; }

.section { padding-block: clamp(76px, 9vw, 112px); }
.soft-section { background: radial-gradient(circle at 86% 0%, rgba(63, 141, 232, 0.08), transparent 26rem), var(--paper-blue); }

.section-heading { max-width: 700px; }
.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: end;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2a6fb9;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.kicker::before { width: 28px; height: 2px; border-radius: 99px; background: #468edb; content: ""; }

.section-heading h2,
.final-inner h2 {
  max-width: 750px;
  margin-top: 13px;
  color: #102039;
  font-size: clamp(35px, 4.6vw, 56px);
  font-weight: 660;
  letter-spacing: -0.048em;
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading > p:not(.kicker),
.section-heading.split > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading.split > p { max-width: 620px; justify-self: end; }

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 23px;
  box-shadow: 0 18px 50px rgba(22, 51, 84, 0.055);
}

.feature-card::after {
  position: absolute;
  right: -45px;
  bottom: -58px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(63, 141, 232, 0.055);
  content: "";
}

.feature-card > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3e2f2;
  border-radius: 13px;
  background: #edf5fe;
  color: #2b71bc;
  font-size: 11px;
  font-weight: 800;
}

.feature-card small {
  display: block;
  margin-top: 19px;
  color: #2b6fb7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 { margin-top: 7px; font-size: 18px; line-height: 1.25; letter-spacing: -0.02em; }
.feature-card p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.sample-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  border: 1px solid #c8ddef;
  border-radius: 17px;
  background: #eaf4ff;
  padding: 20px 22px;
}

.sample-callout p { color: #56677a; font-size: 14px; line-height: 1.65; }
.sample-callout b { display: block; color: #13243a; }

.coverage-section {
  background: radial-gradient(circle at 88% 20%, rgba(63, 141, 232, 0.18), transparent 30rem), var(--navy-950);
  color: #f4f8fc;
}

.section-heading.inverse h2 { color: #f4f8fc; }
.section-heading.inverse > p { color: #93a5b9; }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 42px;
}

.coverage-grid article {
  border: 1px solid rgba(154, 188, 225, 0.16);
  border-radius: 16px;
  background: rgba(16, 35, 58, 0.72);
  padding: 20px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.coverage-grid article > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(112, 173, 243, 0.18);
  border-radius: 11px;
  background: rgba(63, 141, 232, 0.1);
  color: #75b2f4;
  font-size: 10px;
  font-weight: 800;
}

.coverage-grid h3 { margin-top: 15px; font-size: 14px; }
.coverage-grid p { margin-top: 7px; color: #93a5b9; font-size: 12px; line-height: 1.6; }
.coverage-note { margin-top: 22px; color: #718399; font-size: 12px; line-height: 1.65; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.steps li {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(22, 51, 84, 0.05);
}

.steps li > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe0f2;
  border-radius: 50%;
  background: #edf5fe;
  color: #2368b2;
  font-size: 11px;
  font-weight: 800;
}

.steps h3 { margin-top: 19px; font-size: 19px; letter-spacing: -0.02em; }
.steps p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.admin-note {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.admin-note b { color: var(--ink); }

.pricing-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 55px;
  align-items: start;
}

.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

.price-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 25px;
  box-shadow: var(--shadow);
}
.price-card.featured { border-color: #c4daf0; background: #edf6ff; }
.price-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-head h3 { font-size: 15px; }
.price-head span { border-radius: 99px; background: #ebf7f2; padding: 5px 8px; color: #177054; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.price-card.featured .price-head span { background: #fff; color: #2a6eb6; }
.price { margin-top: 22px; font-size: 40px; font-weight: 680; letter-spacing: -0.05em; line-height: 1; }
.price small { color: var(--muted); font-size: 15px; font-weight: 550; letter-spacing: 0; }
.price-note { margin-top: 7px; color: #748296; font-size: 11px; }
.price-card ul { display: grid; gap: 11px; margin-top: 24px; }
.price-card li { position: relative; padding-left: 22px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.price-card li::before { position: absolute; top: 1px; left: 0; color: #16825f; font-weight: 800; content: "✓"; }

.faq-container { max-width: 900px; }
.faq-list { margin-top: 36px; border-block: 1px solid #d5e0eb; }
.faq-list details { border-bottom: 1px solid #d5e0eb; }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  display: flex;
  min-height: 72px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  color: #15243a;
  font-weight: 680;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  display: inline-flex;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5e0eb;
  border-radius: 50%;
  color: #718095;
  font-size: 20px;
  font-weight: 300;
  transition: transform 170ms ease;
}
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { max-width: 750px; padding: 0 48px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-cta {
  background: radial-gradient(circle at 88% 15%, rgba(63, 141, 232, 0.2), transparent 30rem), var(--navy-950);
  color: #f4f8fc;
}
.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding-block: clamp(58px, 8vw, 82px);
}
.final-inner h2 { max-width: 760px; color: #fff; font-size: clamp(32px, 4.5vw, 48px); }
.final-inner > div > p:last-child { margin-top: 14px; color: #93a5b9; font-size: 14px; line-height: 1.7; }

.site-footer { border-top: 1px solid #dce5ef; background: #f7f9fc; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: end;
  padding-block: 38px 28px;
}
.footer-brand { color: var(--ink); }
.footer-brand .brand-mark { color: #2a6fb8; }
.footer-grid > div > p { max-width: 500px; margin-top: 13px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 19px; }
.footer-grid nav a { color: #647386; font-size: 12px; text-decoration: none; }
.footer-grid nav a:hover { color: #173860; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #dce5ef;
  padding-block: 19px 24px;
}
.footer-bottom p { color: #7a8797; font-size: 10px; line-height: 1.6; }

.mobile-sticky { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .report-preview { animation: settle 700ms cubic-bezier(0.22, 0.8, 0.3, 1) both; }
  .feature-card,
  .steps li,
  .coverage-grid article { transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
  .feature-card:hover,
  .steps li:hover { border-color: #c6d8ea; box-shadow: 0 24px 58px rgba(22, 51, 84, 0.085); transform: translateY(-3px); }
  .coverage-grid article:hover { border-color: rgba(112, 173, 243, 0.3); transform: translateY(-2px); }
  @keyframes settle {
    from { opacity: 0; transform: perspective(1400px) rotateY(-5deg) rotateX(3deg) translateY(18px); }
    to { opacity: 1; transform: perspective(1400px) rotateY(-2.5deg) rotateX(1.4deg); }
  }
}

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .report-wrap { max-width: 760px; margin-inline: auto; }
  .question-grid,
  .coverage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 16px; }
  .container { width: min(100% - 32px, var(--max)); }
  .site-header { position: relative; top: auto; }
  .read-only-tag,
  .header-cta { display: none; }
  .hero-grid { padding-block: 54px 66px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .report-preview { border-radius: 17px; transform: none; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric:nth-child(n + 3) { display: none; }
  .report-panels { grid-template-columns: 1fr; }
  .trend-panel { display: none; }
  .trust-grid,
  .question-grid,
  .coverage-grid,
  .steps,
  .price-grid,
  .section-heading.split { grid-template-columns: 1fr; }
  .section-heading.split { gap: 10px; }
  .section-heading.split > p { justify-self: start; }
  .sample-callout,
  .final-inner,
  .footer-grid,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .sample-callout { display: flex; }
  .sample-callout .button { width: 100%; }
  .final-inner { display: flex; }
  .final-inner .button { width: 100%; }
  .footer-grid { display: flex; }
  .footer-bottom { display: flex; }
  html.js .mobile-sticky[data-ready="true"] {
    position: fixed;
    z-index: 90;
    right: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 50%;
    display: grid;
    width: min(calc(100% - 24px), 370px);
    min-height: 64px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    overflow: hidden;
    border: 1px solid rgba(143, 194, 248, 0.26);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(20, 48, 80, 0.98), rgba(6, 17, 31, 0.98)),
      rgba(6, 17, 31, 0.97);
    box-shadow: 0 18px 52px rgba(1, 8, 19, 0.42), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
    padding: 10px 12px;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 28px));
    visibility: hidden;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  html.js .mobile-sticky.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }

  .mobile-sticky__signal {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(94, 215, 178, 0.1), 0 0 18px rgba(94, 215, 178, 0.52);
  }

  .mobile-sticky__copy {
    display: grid;
    gap: 1px;
    min-width: 0;
  }

  .mobile-sticky__copy small {
    color: #9fb8d3;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.055em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-sticky__copy strong {
    overflow: hidden;
    color: #f8fbff;
    font-size: 14px;
    font-weight: 760;
    letter-spacing: -0.012em;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-sticky__arrow {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(151, 199, 250, 0.2);
    border-radius: 12px;
    background: linear-gradient(145deg, #438fe6, #2d72c3);
    box-shadow: 0 8px 20px rgba(35, 111, 200, 0.28);
    font-size: 17px;
  }

  .mobile-sticky:focus-visible {
    outline: 3px solid #82b9f6;
    outline-offset: 3px;
  }
}

@media (max-width: 460px) {
  .question-grid,
  .coverage-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .report-heading p { display: none; }
  .events li:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .mobile-sticky {
    transition: opacity 180ms ease, transform 240ms cubic-bezier(0.22, 0.8, 0.3, 1), visibility 180ms ease;
  }

  .mobile-sticky:hover,
  .mobile-sticky:focus-visible { transform: translate(-50%, -2px); }
}

@media print {
  .site-header,
  .hero-actions,
  .mobile-sticky,
  .final-cta { display: none !important; }
  .hero { background: #fff; color: var(--ink); }
  .hero::before,
  .hero-orbit { display: none; }
  .hero h1,
  .hero-lead,
  .assurances,
  .trust-grid b { color: var(--ink); }
  .report-preview,
  .feature-card,
  .steps li,
  .price-card { box-shadow: none; transform: none; }
}
