:root {
  color-scheme: light;
  --navy-950: #07111f;
  --navy-900: #0b1729;
  --navy-800: #12223a;
  --slate-950: #101827;
  --slate-800: #253249;
  --slate-700: #3a4961;
  --slate-600: #5a6980;
  --slate-500: #718096;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #eef3f8;
  --slate-50: #f7f9fc;
  --white: #ffffff;
  --blue-700: #1854d1;
  --blue-600: #2463eb;
  --blue-500: #3478f6;
  --blue-100: #dbeafe;
  --cyan-400: #24c8e5;
  --green-600: #16803c;
  --green-100: #dcfce7;
  --amber-600: #b45309;
  --amber-100: #fef3c7;
  --orange-600: #c2410c;
  --orange-100: #ffedd5;
  --red-600: #c52a2a;
  --red-100: #fee2e2;
  --border: rgba(117, 137, 164, 0.24);
  --shadow-sm: 0 12px 30px rgba(17, 32, 55, 0.08);
  --shadow-lg: 0 30px 80px rgba(5, 14, 29, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--slate-950);
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input {
  font: inherit;
}

button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 17, 31, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(82, 161, 255, 0.4);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(52, 120, 246, 0.2), rgba(36, 200, 229, 0.08));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.13);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #65b7ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-name {
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: #bfcbda;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
input:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(52, 120, 246, 0.38);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 13px;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(36, 99, 235, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(36, 99, 235, 0.3);
}

.button-secondary {
  border-color: var(--border);
  background: var(--white);
  color: var(--slate-950);
  box-shadow: 0 6px 18px rgba(17, 32, 55, 0.08);
}

.site-header .button-secondary {
  border-color: rgba(157, 185, 219, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  box-shadow: none;
}

.site-header .button-secondary:hover {
  border-color: rgba(157, 185, 219, 0.48);
  background: rgba(255, 255, 255, 0.11);
}

.button-light {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button-light svg,
.button-arrow {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-full {
  width: 100%;
}

.button-spinner {
  width: 18px;
  height: 18px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-top-color: currentColor;
  border-radius: 999px;
  animation: spin 800ms linear infinite;
}

.button.is-loading .button-arrow {
  display: none;
}

.button.is-loading .button-spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0) 80%, rgba(7, 17, 31, 0.55)),
    var(--navy-950);
  color: var(--white);
}

.hero-grid,
.dark-grid,
.final-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(130, 161, 200, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 161, 200, 0.11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 580px;
  height: 580px;
  top: -340px;
  right: 7%;
  background: radial-gradient(circle, rgba(36, 99, 235, 0.3), transparent 68%);
}

.hero-glow-two {
  width: 460px;
  height: 460px;
  bottom: -280px;
  left: -120px;
  background: radial-gradient(circle, rgba(36, 200, 229, 0.18), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 76px;
  padding-block: 94px 108px;
}

.eyebrow,
.section-kicker,
.scanner-kicker,
.result-label,
.coverage-label {
  margin: 0;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(82, 161, 255, 0.22);
  border-radius: 999px;
  background: rgba(31, 83, 148, 0.14);
  color: #91c7ff;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(36, 200, 229, 0.1);
}

.hero h1 {
  max-width: 760px;
  margin: 23px 0 24px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #8bc6ff, #65e3ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 640px;
  margin: 0;
  color: #b7c5d8;
  font-size: 18px;
  line-height: 1.75;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7e1ed;
  font-size: 13px;
  font-weight: 650;
}

.hero-assurances svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #5de0c0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.scanner-shell {
  border: 1px solid rgba(131, 165, 207, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(15, 31, 53, 0.76);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.scanner-window-bar {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(148, 177, 214, 0.13);
}

.scanner-window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a4b62;
}

.scanner-window-bar > span:first-child {
  background: #ed6a5e;
}

.scanner-window-bar > span:nth-child(2) {
  background: #f4bd4f;
}

.scanner-window-bar > span:nth-child(3) {
  background: #61c454;
}

.scanner-window-bar p {
  margin: 0 auto 0 8px;
  color: #7f91a8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.scanner-card {
  padding: 30px;
}

.scanner-heading,
.result-header,
.issues-heading,
.unlock-panel,
.report-title-row,
.finding-topline,
.trust-layout,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.scanner-heading h2 {
  margin: 4px 0 0;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.scanner-kicker {
  color: #7e9ab9;
  font-size: 10px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid rgba(69, 224, 174, 0.18);
  border-radius: 999px;
  background: rgba(22, 128, 60, 0.12);
  color: #7de5b8;
  font-size: 11px;
  font-weight: 700;
}

.live-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #59dfa8;
  box-shadow: 0 0 0 4px rgba(89, 223, 168, 0.1);
}

.scan-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 25px;
}

.domain-field {
  position: relative;
}

.domain-field svg {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #8193aa;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transform: translateY(-50%);
  pointer-events: none;
}

.domain-field input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 46px;
  border: 1px solid rgba(139, 170, 207, 0.2);
  border-radius: 11px;
  background: rgba(4, 14, 27, 0.58);
  color: var(--white);
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.domain-field input::placeholder {
  color: #687b94;
}

.domain-field input:focus {
  border-color: rgba(82, 161, 255, 0.62);
  background: rgba(4, 14, 27, 0.78);
  box-shadow: 0 0 0 4px rgba(52, 120, 246, 0.12);
}

.scan-submit {
  min-width: 154px;
}

.form-help,
.scan-progress,
.scan-error {
  margin: 10px 0 0;
  font-size: 12px;
}

.form-help {
  color: #788da7;
}

.form-help strong {
  color: #9cb1ca;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 600;
}

.scan-progress {
  color: #94bdf1;
}

.scan-progress::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(52, 120, 246, 0.1);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

.scan-error {
  padding: 11px 13px;
  border: 1px solid rgba(248, 113, 113, 0.24);
  border-radius: 9px;
  background: rgba(127, 29, 29, 0.16);
  color: #fdb7b7;
}

.scan-result {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 177, 214, 0.13);
}

.result-label {
  color: #758ba6;
  font-size: 9px;
}

.result-header h3 {
  max-width: 300px;
  margin: 3px 0 0;
  overflow: hidden;
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.risk-pill {
  padding: 5px 10px;
  border: 1px solid rgba(147, 165, 190, 0.2);
  border-radius: 999px;
  background: rgba(94, 112, 136, 0.14);
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.risk-pill.risk-low {
  border-color: rgba(74, 222, 128, 0.24);
  background: rgba(22, 128, 60, 0.14);
  color: #86efac;
}

.risk-pill.risk-medium {
  border-color: rgba(251, 191, 36, 0.24);
  background: rgba(180, 83, 9, 0.14);
  color: #fde68a;
}

.risk-pill.risk-high {
  border-color: rgba(251, 146, 60, 0.25);
  background: rgba(194, 65, 12, 0.14);
  color: #fdba74;
}

.risk-pill.risk-critical {
  border-color: rgba(248, 113, 113, 0.25);
  background: rgba(185, 28, 28, 0.14);
  color: #fca5a5;
}

.result-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 17px;
  border: 1px solid rgba(148, 177, 214, 0.12);
  border-radius: 13px;
  background: rgba(6, 18, 34, 0.42);
}

.score-ring {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
}

.score-ring > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring-track,
.score-ring-value {
  fill: none;
  stroke-linecap: round;
  stroke-width: 8;
}

.score-ring-track {
  stroke: rgba(139, 164, 196, 0.13);
}

.score-ring-value {
  stroke: var(--blue-500);
  transition: stroke-dashoffset 500ms ease;
}

.score-ring-inner {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  align-items: baseline;
  border-radius: 50%;
  background: var(--navy-900);
}

.score-ring-inner span {
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.score-ring-inner small {
  color: #73869e;
  font-size: 10px;
}

.result-score-title {
  margin: 0 0 3px;
  color: #8395ad;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.result-verdict {
  margin: 0;
  color: #c2cfde;
  font-size: 13px;
  line-height: 1.55;
}

.issues-panel {
  margin-top: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(148, 177, 214, 0.12);
  border-radius: 13px;
  background: rgba(6, 18, 34, 0.42);
}

.issues-heading h4 {
  margin: 0;
  font-size: 13px;
}

.issues-heading span {
  color: #72859c;
  font-size: 10px;
  font-weight: 650;
}

.result-issues {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 13px 0 0;
  list-style: none;
}

.result-issues li {
  position: relative;
  padding-left: 20px;
  color: #bdcad9;
  font-size: 12px;
  line-height: 1.5;
}

.result-issues li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #f59e0b;
  border-radius: 50%;
}

.unlock-panel {
  align-items: flex-end;
  margin-top: 13px;
  padding: 16px 17px;
  border: 1px solid rgba(82, 161, 255, 0.2);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(36, 99, 235, 0.12), rgba(36, 200, 229, 0.05));
}

.unlock-panel strong {
  font-size: 13px;
}

.unlock-panel p {
  max-width: 280px;
  margin: 4px 0 0;
  color: #8da0b7;
  font-size: 11px;
  line-height: 1.45;
}

.unlock-panel .button {
  flex-shrink: 0;
  min-height: 42px;
  padding: 9px 13px;
  font-size: 11px;
}

.scanner-coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.scanner-coverage span {
  padding: 5px 8px;
  border: 1px solid rgba(148, 177, 214, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: #7e91a9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.signal-strip {
  border-bottom: 1px solid var(--border);
  background: var(--slate-50);
}

.signal-strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.signal-strip-inner > p {
  flex-shrink: 0;
  margin: 0;
  color: var(--slate-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-strip-inner > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.signal-strip span {
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 720px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 12px 0 18px;
  color: var(--slate-950);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--slate-600);
  font-size: 17px;
  line-height: 1.75;
}

.proof-section {
  background: var(--white);
}

.report-preview {
  min-height: 590px;
  display: grid;
  grid-template-columns: 225px 1fr;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(31, 50, 79, 0.13);
}

.report-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  background: var(--navy-950);
  color: var(--white);
}

.report-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-logo {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(76, 158, 255, 0.34);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(52, 120, 246, 0.28), rgba(36, 200, 229, 0.12)),
    var(--navy-900);
}

.report-brand strong,
.report-brand small {
  display: block;
}

.report-brand strong {
  font-size: 14px;
}

.report-brand small {
  color: #73869e;
  font-size: 8px;
  text-transform: uppercase;
}

.report-sidebar nav {
  display: grid;
  gap: 7px;
  margin-top: 54px;
}

.report-sidebar nav span {
  padding: 9px 11px;
  border-radius: 7px;
  color: #8193aa;
  font-size: 11px;
  font-weight: 600;
}

.report-sidebar nav span.active {
  background: rgba(52, 120, 246, 0.15);
  color: #a9d4ff;
}

.report-format-badge {
  margin-top: auto;
  padding: 8px;
  border: 1px solid rgba(148, 177, 214, 0.12);
  border-radius: 7px;
  color: #70849d;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.report-content {
  background: #f6f8fb;
}

.report-toolbar {
  min-height: 47px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.report-toolbar > div {
  display: flex;
  gap: 5px;
}

.report-toolbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--slate-300);
}

.report-toolbar p {
  margin: 0;
  color: var(--slate-500);
  font-size: 10px;
}

.report-body {
  padding: 34px 38px 42px;
}

.report-title-row {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.report-title-row p {
  margin: 0;
  color: var(--slate-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-title-row h3 {
  margin: 4px 0 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.sample-score {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  text-align: right;
}

.sample-score strong {
  color: var(--orange-600);
  font-size: 34px;
  line-height: 1;
}

.sample-score span {
  color: var(--slate-500);
  font-size: 12px;
}

.sample-score small {
  grid-column: 1 / -1;
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-impact-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  background: #fff8ef;
}

.impact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--orange-100);
}

.impact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.business-impact-card span {
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-impact-card p {
  margin: 3px 0 0;
  color: var(--slate-700);
  font-size: 11px;
  line-height: 1.55;
}

.sample-finding {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.finding-topline {
  justify-content: flex-start;
}

.severity {
  padding: 4px 7px;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.severity-high {
  background: var(--orange-100);
  color: var(--orange-600);
}

.finding-category {
  color: var(--slate-500);
  font-size: 9px;
  font-weight: 700;
}

.sample-finding h4 {
  margin: 13px 0 7px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.sample-finding > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 11px;
}

.finding-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 12px;
  margin-top: 16px;
}

.finding-grid > div {
  padding: 12px;
  border-radius: 8px;
  background: var(--slate-50);
}

.finding-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-500);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.finding-grid code,
.finding-grid p {
  color: var(--slate-800);
  font-size: 10px;
}

.finding-grid code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.finding-grid p {
  margin: 0;
  line-height: 1.5;
}

.sample-finding > a {
  display: inline-flex;
  gap: 5px;
  margin-top: 15px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.report-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.report-benefits > div {
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.benefit-number {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.report-benefits h3 {
  margin: 8px 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.report-benefits p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.dark-section-content {
  position: relative;
  z-index: 1;
}

.section-heading-light h2 {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin: 58px 0 0;
  overflow: hidden;
  border: 1px solid rgba(139, 170, 207, 0.16);
  border-radius: 18px;
  background: rgba(139, 170, 207, 0.16);
  list-style: none;
}

.steps li {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 31px;
  background: rgba(11, 23, 41, 0.96);
}

.step-number {
  color: #5f7897;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.steps h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.steps p {
  margin: 0;
  color: #8fa1b8;
  font-size: 14px;
}

.coverage-section {
  background: var(--slate-50);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 55px;
}

.coverage-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 50, 74, 0.045);
}

.coverage-card-featured {
  border-color: rgba(52, 120, 246, 0.25);
  background:
    radial-gradient(circle at 100% 0, rgba(52, 120, 246, 0.09), transparent 38%),
    var(--white);
}

.coverage-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  background: #f0f6ff;
}

.coverage-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.coverage-label {
  font-size: 10px;
}

.coverage-card h3 {
  max-width: 480px;
  margin: 8px 0 10px;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.coverage-card > p:not(.coverage-label) {
  max-width: 540px;
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.coverage-card ul,
.price-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.coverage-card li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--slate-700);
  font-size: 13px;
}

.coverage-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--green-600);
  border-left: 2px solid var(--green-600);
  transform: rotate(-45deg);
}

.risk-section {
  background: var(--white);
}

.risk-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.risk-list {
  border-top: 1px solid var(--border);
}

.risk-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--border);
}

.risk-list article > span {
  color: var(--blue-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.risk-list h3 {
  margin: 0 0 5px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.risk-list p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.pricing-section {
  background: var(--slate-50);
}

.pricing-grid {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 18px;
  margin: 56px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 33px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-card-primary {
  border-color: rgba(52, 120, 246, 0.4);
  box-shadow: 0 23px 60px rgba(36, 99, 235, 0.13);
}

.recommended-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card-top > p {
  margin: 0;
  color: var(--slate-800);
  font-size: 14px;
  font-weight: 750;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}

.price strong {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price small,
.price-card-top > span {
  color: var(--slate-500);
  font-size: 12px;
}

.price-card-top > span {
  display: block;
  margin-top: 8px;
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card .button {
  margin-top: auto;
}

.payment-note {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  text-align: center;
}

.trust-section {
  background: var(--white);
}

.trust-layout {
  align-items: flex-start;
}

.trust-layout > div:first-child {
  max-width: 320px;
}

.trust-layout h2 {
  margin: 10px 0 0;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.trust-grid {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-grid article {
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.trust-grid svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.trust-grid h3 {
  margin: 17px 0 7px;
  font-size: 15px;
}

.trust-grid p {
  margin: 0;
  color: var(--slate-600);
  font-size: 12px;
}

.faq-section {
  background: var(--slate-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 740;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 14px;
  height: 2px;
  background: var(--slate-700);
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 23px;
  color: var(--slate-600);
  font-size: 14px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  background:
    radial-gradient(circle at 80% 50%, rgba(36, 200, 229, 0.15), transparent 35%),
    linear-gradient(135deg, #0a2246, var(--navy-950));
  color: var(--white);
}

.final-cta-grid {
  opacity: 0.13;
  mask-image: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta .section-kicker {
  color: #73c8ff;
}

.final-cta h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
}

.final-cta p:not(.section-kicker) {
  max-width: 670px;
  margin: 0 auto;
  color: #a9bbd0;
}

.final-cta .button {
  margin-top: 30px;
}

.site-footer {
  padding-block: 30px;
  border-top: 1px solid rgba(148, 177, 214, 0.1);
  background: var(--navy-950);
  color: #8496ad;
}

.footer-inner {
  font-size: 11px;
}

.footer-inner p {
  margin: 0;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  width: 29px;
  height: 29px;
}

.brand-footer .brand-name {
  font-size: 16px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 80px 92px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow,
  .hero-assurances {
    justify-content: center;
  }

  .scanner-shell {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .signal-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-block: 22px;
  }

  .signal-strip-inner > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .trust-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-layout > div:first-child {
    max-width: 700px;
  }

  .trust-grid {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 82px;
  }

  .report-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .report-sidebar {
    display: none;
  }

  .steps,
  .report-benefits,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 200px;
  }

  .coverage-grid,
  .pricing-grid,
  .risk-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .risk-layout,
  .faq-layout {
    gap: 46px;
  }

  .price-card-primary {
    order: -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header .button-small {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero-layout {
    padding-block: 62px 74px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-assurances {
    align-items: flex-start;
    flex-direction: column;
  }

  .scanner-card {
    padding: 23px 18px;
  }

  .scanner-heading h2 {
    font-size: 22px;
  }

  .scan-form {
    grid-template-columns: 1fr;
  }

  .scan-submit {
    width: 100%;
  }

  .result-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .score-ring {
    margin-inline: auto;
  }

  .unlock-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .unlock-panel .button {
    width: 100%;
  }

  .report-body {
    padding: 24px 18px 28px;
  }

  .report-title-row {
    align-items: flex-start;
  }

  .finding-grid {
    grid-template-columns: 1fr;
  }

  .coverage-card,
  .price-card {
    padding: 26px 22px;
  }

  .recommended-label {
    position: static;
    width: fit-content;
    margin-bottom: 16px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
