:root {
  --ink: #0b1b2b;
  --ink-soft: #16334d;
  --paper: #f4f0e6;
  --paper-deep: #e9e3d5;
  --white: #fffdf8;
  --orange: #ff6438;
  --orange-deep: #e94719;
  --lime: #d8ff53;
  --mint: #70e7be;
  --sky: #8ed5ff;
  --muted: #64717d;
  --line: rgba(11, 27, 43, 0.16);
  --shadow: 0 24px 80px rgba(7, 21, 34, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: min(1160px, calc(100vw - 40px));
}

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

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

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.23;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 27, 43, 0.9);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  overflow: visible;
}

.brand-mark circle,
.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.brand-mark .brand-ping {
  fill: var(--orange);
  stroke: var(--orange);
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 88px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease;
}

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

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

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

.button svg {
  width: 18px;
  height: 18px;
}

.button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-large {
  min-height: 58px;
  padding-inline: 28px;
}

.button-compact {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(255, 100, 56, 0.28);
}

.button-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 13px 34px rgba(255, 100, 56, 0.36);
}

.button-bright {
  color: var(--ink);
  background: var(--lime);
}

.button-bright:hover {
  background: #e4ff7e;
  box-shadow: 0 12px 30px rgba(216, 255, 83, 0.2);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover {
  background: var(--paper);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 22%, rgba(54, 147, 178, 0.18), transparent 29%),
    linear-gradient(143deg, #081521 0%, #0b1b2b 60%, #102c41 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 64px;
  align-items: center;
  min-height: 760px;
  padding-top: 106px;
  padding-bottom: 85px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--orange-deep);
}

.eyebrow-light {
  color: var(--lime);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(216, 255, 83, 0.5);
  animation: pulse 2s infinite;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.4vw, 96px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--lime);
  font-weight: inherit;
}

.hero-lede {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.text-link {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 5px;
  font-size: 14px;
  font-weight: 750;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 33px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  list-style: none;
  font-size: 12px;
  font-weight: 650;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list svg {
  width: 15px;
  height: 15px;
}

.trust-list path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.radar-stage {
  position: relative;
  min-height: 545px;
  display: grid;
  place-items: center;
}

.radar-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(57, 171, 174, 0.15);
  filter: blur(65px);
}

.radar-card {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  overflow: hidden;
  background: rgba(9, 28, 43, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.radar-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 21px;
  color: rgba(255, 255, 255, 0.67);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: var(--lime);
  background: rgba(216, 255, 83, 0.08);
  border: 1px solid rgba(216, 255, 83, 0.16);
  border-radius: 999px;
  font-size: 9px;
}

.status-chip i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.radar-face {
  position: relative;
  width: 330px;
  height: 330px;
  margin: 26px auto 20px;
  overflow: hidden;
  border: 1px solid rgba(112, 231, 190, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(112, 231, 190, 0.1), transparent 36%),
    radial-gradient(circle at center, rgba(44, 114, 125, 0.22), rgba(5, 19, 31, 0.8) 72%);
  box-shadow: inset 0 0 45px rgba(67, 207, 172, 0.06);
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(112, 231, 190, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 32%; height: 32%; }
.ring-two { width: 63%; height: 63%; }
.ring-three { width: 94%; height: 94%; }

.radar-axis {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(112, 231, 190, 0.11);
  transform: translate(-50%, -50%);
}

.axis-h { width: 100%; height: 1px; }
.axis-v { width: 1px; height: 100%; }

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 305deg, rgba(112, 231, 190, 0.02) 322deg, rgba(112, 231, 190, 0.45) 358deg, transparent 360deg);
  animation: radarSweep 4s linear infinite;
}

.radar-sweep::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 50%;
  background: linear-gradient(to top, rgba(112, 231, 190, 0.65), transparent);
  transform-origin: bottom;
}

.radar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--mint);
  border: 3px solid rgba(11, 27, 43, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(112, 231, 190, 0.14);
  transform: translate(-50%, -50%);
}

.radar-blip {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 100, 56, 0.5);
  animation: blip 2.3s ease-out infinite;
}

.radar-blip::after {
  content: attr(data-label);
  position: absolute;
  top: -10px;
  left: 15px;
  padding: 4px 7px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 18, 29, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.blip-one { top: 23%; left: 61%; animation-delay: 0.4s; }
.blip-two { top: 63%; left: 72%; animation-delay: 1.3s; }
.blip-three { top: 72%; left: 30%; animation-delay: 2s; }

.signal-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-strip > div {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 18px;
  background: #0b2133;
}

.signal-strip p {
  margin: 0;
  line-height: 1.2;
}

.signal-strip strong,
.signal-strip small {
  display: block;
}

.signal-strip strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.signal-strip small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.signal-icon {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 900;
}

.signal-orange { color: var(--orange); background: rgba(255, 100, 56, 0.12); }
.signal-lime { color: var(--lime); background: rgba(216, 255, 83, 0.1); }

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.23);
  font-size: 11px;
  font-weight: 800;
  animation: float 5s ease-in-out infinite;
}

.floating-note span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 7px;
}

.note-one { top: 17%; right: -22px; }
.note-two { bottom: 13%; left: -26px; animation-delay: -2.1s; }
.note-two span { color: var(--ink); background: var(--lime); }

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 15px 0;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-1.25deg) scale(1.02);
  transform-origin: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  animation: ticker 27s linear infinite;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.proof-band {
  padding: 62px 0 22px;
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 0.75fr) 1.75fr;
  align-items: center;
  gap: 30px;
}

.proof-grid > div {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.proof-grid span,
.proof-grid p {
  color: var(--muted);
  font-size: 12px;
}

.proof-grid span { margin-top: 8px; }
.proof-grid p { max-width: 310px; margin: 0 0 0 auto; line-height: 1.65; }

.section {
  padding: 116px 0;
}

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

.section-heading h2,
.coverage-copy h2,
.closing-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.coverage-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.scan-section {
  padding-top: 90px;
}

.scan-heading {
  max-width: 760px;
  margin-bottom: 43px;
}

.scanner {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 600px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.scanner-rail {
  display: flex;
  flex-direction: column;
  padding: 33px 28px;
  color: #fff;
  background: var(--ink);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-track {
  height: 4px;
  margin: 13px 0 35px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 33%;
  height: 100%;
  background: var(--lime);
  border-radius: inherit;
  transition: width 300ms ease;
}

.step-list {
  display: grid;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 750;
}

.step-list li span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 11px;
}

.step-list li.is-active {
  color: #fff;
}

.step-list li.is-active span {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.step-list li.is-complete span {
  color: var(--mint);
  border-color: var(--mint);
}

.privacy-note {
  display: flex;
  gap: 11px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-note svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.privacy-note path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-note strong {
  font-size: 11px;
}

.privacy-note p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.55;
}

.scanner-content {
  min-width: 0;
  padding: 46px 48px 42px;
}

.scan-panel[hidden] {
  display: none;
}

.scan-panel.is-active {
  animation: panelIn 300ms ease both;
}

.step-kicker {
  margin: 0 0 10px;
  color: var(--orange-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scan-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(33px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.step-intro {
  margin: 12px 0 27px;
  color: var(--muted);
  font-size: 14px;
}

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

.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 95px;
  padding: 15px;
  background: #fbf9f3;
  border: 1px solid rgba(11, 27, 43, 0.13);
  border-radius: 15px;
  cursor: pointer;
  transition: border 150ms ease, background 150ms ease, transform 150ms ease;
}

.choice-card:hover {
  border-color: rgba(11, 27, 43, 0.3);
  transform: translateY(-1px);
}

.choice-card:has(input:checked) {
  background: rgba(216, 255, 83, 0.17);
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.choice-card input,
.signal-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card:has(input:focus-visible),
.signal-choice:has(input:focus-visible) {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.choice-icon {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--paper-deep);
  border-radius: 12px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.choice-card:has(input:checked) .choice-icon {
  background: var(--lime);
}

.choice-card strong {
  align-self: end;
  padding-right: 20px;
  font-size: 13px;
}

.choice-card small {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.choice-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: transparent;
  border: 1px solid rgba(11, 27, 43, 0.18);
  border-radius: 50%;
  font-size: 11px;
}

.choice-card:has(input:checked) .choice-check {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.field-error {
  min-height: 20px;
  margin: 10px 0 0;
  color: #a32b0b;
  font-size: 12px;
  font-weight: 700;
}

.panel-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.panel-actions-end {
  justify-content: flex-end;
}

.signal-groups {
  display: grid;
  gap: 22px;
}

.signal-group h4 {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signal-choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--ink-soft);
  background: #fbf9f3;
  border: 1px solid rgba(11, 27, 43, 0.13);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.signal-choice::before {
  content: "+";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--muted);
  border: 1px solid rgba(11, 27, 43, 0.18);
  border-radius: 50%;
  line-height: 1;
}

.signal-choice:has(input:checked) {
  color: var(--ink);
  background: rgba(216, 255, 83, 0.21);
  border-color: var(--ink);
}

.signal-choice:has(input:checked)::before {
  content: "✓";
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.optional-details {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.optional-details label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

.optional-details label span {
  color: var(--muted);
  font-weight: 500;
}

.optional-details input {
  width: 100%;
  height: 43px;
  padding: 9px 12px;
  color: var(--ink);
  background: #fbf9f3;
  border: 1px solid rgba(11, 27, 43, 0.17);
  border-radius: 10px;
  font-size: 12px;
}

.money-field {
  position: relative;
}

.money-field > span {
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--muted);
  transform: translateY(-50%);
  font-size: 12px;
}

.money-field input {
  padding-left: 25px;
}

.results-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.complete-dot {
  display: inline-grid;
  width: 19px;
  height: 19px;
  margin-right: 6px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 10px;
}

.result-overview {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.45fr;
  gap: 1px;
  margin: 25px 0 18px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.result-overview > * {
  margin: 0;
  padding: 15px 17px;
  background: #f7f4ec;
}

.result-overview div {
  display: flex;
  flex-direction: column;
}

.result-overview strong {
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.result-overview span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.result-overview p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
}

.result-overview p span {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin: 0;
  background: var(--orange);
  border-radius: 50%;
}

.results-list {
  display: grid;
  gap: 10px;
  max-height: 540px;
  padding-right: 5px;
  overflow: auto;
}

.result-card {
  padding: 17px 18px;
  background: #fbf9f3;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.result-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.result-card h4 {
  margin: 0;
  font-size: 14px;
}

.priority-badge {
  flex: 0 0 auto;
  padding: 5px 7px;
  color: var(--orange-deep);
  background: rgba(255, 100, 56, 0.1);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.priority-badge.standard {
  color: var(--ink-soft);
  background: var(--paper-deep);
}

.result-card > p {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.result-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 13px;
}

.result-meta div {
  padding: 10px;
  background: #f0ece2;
  border-radius: 9px;
}

.result-meta strong,
.result-meta span {
  display: block;
}

.result-meta strong {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-meta span {
  font-size: 9px;
  line-height: 1.45;
}

.result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
}

.result-actions button,
.result-actions a {
  padding: 0;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(11, 27, 43, 0.25);
  text-underline-offset: 3px;
  font-size: 10px;
  font-weight: 800;
}

.result-disclaimer {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 13px 15px;
  color: var(--ink-soft);
  background: rgba(142, 213, 255, 0.14);
  border-left: 3px solid var(--sky);
  border-radius: 6px 10px 10px 6px;
}

.result-disclaimer strong {
  flex: 0 0 auto;
  font-size: 10px;
}

.result-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.how-card {
  position: relative;
  min-height: 340px;
  padding: 25px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.how-card:nth-child(2) { background: #e8f4ed; }
.how-card:nth-child(3) { color: #fff; background: var(--ink); }

.step-number {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.how-card:nth-child(3) .step-number,
.how-card:nth-child(3) p { color: rgba(255, 255, 255, 0.57); }

.how-icon {
  position: relative;
  display: grid;
  width: 132px;
  height: 132px;
  margin: 18px auto 25px;
  place-items: center;
}

.mini-radar,
.mini-radar::before,
.mini-radar::after {
  position: absolute;
  border: 1px solid rgba(11, 27, 43, 0.24);
  border-radius: 50%;
}

.mini-radar { width: 118px; height: 118px; }
.mini-radar::before { content: ""; inset: 22px; }
.mini-radar::after { content: ""; inset: 45px; background: var(--orange); border: 5px solid var(--paper); box-shadow: 0 0 0 9px rgba(255, 100, 56, 0.15); }

.doc-icon {
  width: 100px;
  height: 120px;
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(11, 27, 43, 0.08);
}

.doc-icon::before {
  content: "✓";
  position: absolute;
  top: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.doc-icon i {
  position: absolute;
  left: 20px;
  width: 60px;
  height: 4px;
  background: var(--paper-deep);
  border-radius: 99px;
}

.doc-icon i:nth-child(1) { top: 66px; }
.doc-icon i:nth-child(2) { top: 80px; width: 47px; }
.doc-icon i:nth-child(3) { top: 94px; width: 54px; }

.send-icon {
  color: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 62px;
}

.send-icon::before,
.send-icon::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(216, 255, 83, 0.13);
  border-radius: 50%;
}

.send-icon::before { inset: -17px; }
.send-icon::after { inset: -34px; }

.how-card h3 {
  margin: 0;
  font-size: 18px;
}

.how-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.coverage-section {
  color: #fff;
  background: var(--ink);
}

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

.coverage-copy {
  position: sticky;
  top: 120px;
}

.coverage-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.58);
}

.coverage-copy .button {
  margin-top: 30px;
}

.coverage-list {
  display: grid;
}

.coverage-item {
  display: grid;
  grid-template-columns: 40px 1fr 42px;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.coverage-item > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.coverage-item h3 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.coverage-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.coverage-item > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
}

.source-section {
  background: #e8f4ed;
}

.source-heading {
  max-width: 740px;
}

.source-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 46px;
}

.source-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.source-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(11, 27, 43, 0.1);
}

.source-card > span {
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.source-card h3 {
  margin: 25px 0 10px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.source-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.source-card b {
  margin-top: auto;
  padding-top: 25px;
  font-size: 10px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

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

.faq-list details p {
  max-width: 620px;
  margin: -5px 50px 23px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.closing-section {
  padding: 38px 0 98px;
  background: var(--white);
}

.closing-card {
  position: relative;
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  padding: 52px 60px;
  color: #fff;
  background: var(--orange);
  border-radius: var(--radius-lg);
}

.closing-card > div:first-child,
.closing-card > a {
  position: relative;
  z-index: 2;
}

.closing-card .eyebrow {
  color: #fff;
}

.closing-card h2 {
  max-width: 610px;
}

.closing-rings {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 520px;
  height: 520px;
  transform: translate(50%, -50%);
}

.closing-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.closing-rings span:nth-child(1) { width: 180px; height: 180px; }
.closing-rings span:nth-child(2) { width: 340px; height: 340px; }
.closing-rings span:nth-child(3) { width: 500px; height: 500px; }

.site-footer {
  padding: 75px 0 25px;
  color: #fff;
  background: #07131e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.35fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand {
  margin-bottom: 17px;
}

.footer-grid > div:first-child > p,
.footer-note p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.6;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-decoration: none;
}

.footer-grid a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 10px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 17px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-header {
  height: 76px;
  color: #fff;
  background: var(--ink);
}

.legal-header .nav-wrap { height: 76px; }

.legal-main {
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-main h1 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.legal-main .updated {
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 12px;
}

.legal-main h2 {
  margin: 42px 0 12px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}

.legal-main p,
.legal-main li {
  color: #465563;
  font-size: 14px;
  line-height: 1.8;
}

.legal-main a { text-underline-offset: 3px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short { transition-delay: 90ms; }
.reveal-delay { transition-delay: 170ms; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 255, 83, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(216, 255, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 255, 83, 0); }
}

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

@keyframes blip {
  0%, 35% { box-shadow: 0 0 0 0 rgba(255, 100, 56, 0.5); }
  70%, 100% { box-shadow: 0 0 0 13px rgba(255, 100, 56, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes ticker { to { transform: translateX(-50%); } }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 25px; padding-top: 150px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { max-width: 780px; }
  .hero-actions, .trust-list { justify-content: center; }
  .radar-stage { min-height: 520px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid p { grid-column: 1 / -1; max-width: none; margin: 5px 0 0; text-align: center; }
  .scanner { grid-template-columns: 220px minmax(0, 1fr); }
  .scanner-content { padding-inline: 30px; }
  .coverage-grid { gap: 50px; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 620px); }
  .site-header { height: 68px; }
  .site-header .button-small { display: none; }
  .hero-grid { min-height: auto; padding-top: 132px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .trust-list { gap: 11px 18px; }
  .radar-stage { min-height: 440px; margin-inline: auto; width: 100%; }
  .radar-card { width: min(390px, calc(100vw - 38px)); }
  .radar-face { width: 270px; height: 270px; }
  .floating-note { display: none; }
  .signal-strip > div { padding: 13px 11px; }
  .proof-band { padding-top: 50px; }
  .proof-grid { grid-template-columns: 1fr; gap: 20px; }
  .proof-grid > div { flex-direction: row; justify-content: space-between; align-items: baseline; padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid strong { font-size: 34px; }
  .proof-grid p { text-align: left; }
  .section { padding: 82px 0; }
  .section-heading h2, .coverage-copy h2, .closing-card h2 { font-size: 46px; }
  .scanner { display: block; border-radius: 22px; }
  .scanner-rail { padding: 20px 20px 17px; }
  .progress-track { margin-bottom: 16px; }
  .step-list { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .step-list li { justify-content: center; font-size: 0; }
  .privacy-note { display: none; }
  .scanner-content { padding: 32px 20px 26px; }
  .category-grid { grid-template-columns: 1fr; }
  .optional-details { grid-template-columns: 1fr; }
  .panel-actions { flex-direction: column-reverse; }
  .panel-actions .button { width: 100%; }
  .results-top { display: block; }
  .results-top .button { margin-top: 4px; }
  .result-overview { grid-template-columns: 1fr 1fr; }
  .result-overview > p { grid-column: 1 / -1; }
  .steps-grid { grid-template-columns: 1fr; }
  .how-card { min-height: 320px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 45px; }
  .coverage-copy { position: static; }
  .coverage-item { grid-template-columns: 28px 1fr 38px; gap: 12px; }
  .source-cards { grid-template-columns: 1fr; }
  .source-card { min-height: 220px; }
  .closing-card { flex-direction: column; align-items: flex-start; min-height: 350px; padding: 40px 25px; }
  .closing-card .button { width: 100%; }
  .closing-rings { right: 0; bottom: -250px; top: auto; transform: translateX(50%); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-grid > div:first-child, .footer-note { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 50px; }
  .radar-face { width: 238px; height: 238px; }
  .signal-strip { grid-template-columns: 1fr; }
  .signal-strip > div:last-child { display: none; }
  .result-meta { grid-template-columns: 1fr; }
  .result-disclaimer { display: block; }
  .result-disclaimer p { margin-top: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-note { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
