:root {
  --navy: #0a0f24;
  --navy-2: #050814;
  --cyan: #2ed9ff;
  --lime: #a5ff0a;
  --light: #f5f7fa;
  --white: #ffffff;
  --muted: #c6cedc;
  --soft: #8f9bb7;
  --grey: #5b646a;
  --danger: #ff4b6a;
  --warning: #ffd166;
  --panel: rgba(10, 17, 47, 0.86);
  --panel-strong: rgba(8, 15, 39, 0.96);
  --line: rgba(102, 129, 187, 0.42);
  --line-strong: rgba(46, 217, 255, 0.32);
  --shadow: 0 24px 65px rgba(0, 0, 0, 0.52);
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 217, 255, 0.13), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(165, 255, 10, 0.06), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(46, 217, 255, 0.08), transparent 35%),
    linear-gradient(180deg, #10183a 0%, var(--navy-2) 58%, #03050e 100%);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(135deg, transparent 0 24%, rgba(46, 217, 255, 0.18) 24.2% 24.6%, transparent 24.8% 100%),
    linear-gradient(0deg, transparent 0 74%, rgba(46, 217, 255, 0.16) 74.2% 74.55%, transparent 74.7% 100%);
  background-size: 320px 320px, 480px 280px;
  background-position: -80px 80px, 120px -30px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; position: relative; }

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 20, 0.78);
  border-bottom: 1px solid rgba(88, 111, 164, 0.42);
}

.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 6px 0; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.brand small { display: block; color: var(--muted); font-weight: 700; letter-spacing: 0; text-transform: none; }

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 4px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(46, 217, 255, 0.08);
  border: 1px solid rgba(46, 217, 255, 0.18);
}
.brand-mark span { width: 10px; height: 10px; border-radius: 3px; background: var(--cyan); display: block; }
.brand-mark span:nth-child(3) { background: var(--lime); }

.nav-links { display: flex; align-items: center; gap: 22px; color: #c2cad5; font-size: 0.92rem; }
.nav-links a:hover { color: var(--white); }
.nav-cta { border: 1px solid rgba(46, 217, 255, 0.4); border-radius: 999px; padding: 8px 13px; color: var(--white); background: rgba(46, 217, 255, 0.06); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(46, 217, 255, 0.34);
  border-radius: 12px;
  background: rgba(46, 217, 255, 0.06);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; border-radius: 999px; background: var(--white); transition: transform 0.18s ease, opacity 0.18s ease; }
.nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; font-weight: 800; font-size: 0.95rem; transition: transform 0.14s ease, border-color 0.18s ease, filter 0.18s ease, background 0.18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-primary { color: #06111d; background: linear-gradient(135deg, var(--cyan), var(--lime)); box-shadow: 0 15px 30px rgba(46, 217, 255, 0.12); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-secondary, .btn-ghost { border-color: rgba(199, 211, 227, 0.36); color: #e5ebf7; background: rgba(255, 255, 255, 0.02); }
.btn-secondary:hover, .btn-ghost:hover { border-color: rgba(46, 217, 255, 0.8); }

.hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr); gap: 42px; align-items: center; padding: 64px 0 34px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--lime)); box-shadow: 0 0 18px rgba(46, 217, 255, 0.5); }
.scan-eyebrow { margin-bottom: 12px; }

h1 { font-size: clamp(2rem, 4vw, 4.1rem); line-height: 1.03; letter-spacing: -0.055em; margin-bottom: 20px; max-width: 13ch; }
h2 { font-size: clamp(1.75rem, 3vw, 2.45rem); line-height: 1.12; letter-spacing: -0.04em; margin-bottom: 10px; }
h3 { font-size: 1.14rem; margin-bottom: 10px; letter-spacing: -0.012em; }
p { color: var(--muted); }
.lead { font-size: clamp(1rem, 1.4vw, 1.22rem); color: #d7deef; max-width: 660px; margin-bottom: 16px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.trust-row { margin-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 720px; }
.trust-card, .mini-card, .report-card { border: 1px solid rgba(102, 129, 187, 0.45); background: rgba(8, 15, 39, 0.86); border-radius: 20px; padding: 18px; color: #c5cde0; font-size: 0.9rem; }
.trust-card strong, .mini-card strong, .report-card strong { display: block; color: var(--white); margin-bottom: 5px; font-size: 0.98rem; line-height: 1.3; }
.mini-card small, .report-card small { display: block; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 900; margin-bottom: 9px; }

/* Tightened reference-style radar */
.radar-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border: 1px solid rgba(102, 129, 187, 0.55);
  border-radius: 26px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 255, 191, 0.08), transparent 44%),
    radial-gradient(circle at top left, rgba(46, 217, 255, 0.06), transparent 34%),
    rgba(3, 22, 22, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.radar-face {
  position: relative;
  width: min(82%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 191, 0.74);
  background:
    radial-gradient(circle, transparent 0 19%, rgba(0,255,191,0.54) 19.25% 19.8%, transparent 20.05% 38%, rgba(0,255,191,0.46) 38.25% 38.8%, transparent 39.05% 58%, rgba(0,255,191,0.38) 58.25% 58.8%, transparent 59.05%),
    radial-gradient(circle at center, rgba(0, 255, 191, 0.08), rgba(0, 36, 38, 0.94) 72%);
  box-shadow: 0 0 0 1px rgba(46, 217, 255, 0.14), 0 0 34px rgba(0, 255, 191, 0.16), inset 0 0 40px rgba(0, 255, 191, 0.10);
}

.radar-face::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(0,255,191,0.82) calc(50% - 1px), rgba(0,255,191,0.82) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(0,255,191,0.82) calc(50% - 1px), rgba(0,255,191,0.82) calc(50% + 1px), transparent calc(50% + 1px));
}

.radar-face::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: repeating-conic-gradient(from 0deg, rgba(0,255,191,0.92) 0deg 1.3deg, transparent 1.3deg 15deg);
  -webkit-mask: radial-gradient(circle, transparent 0 76%, #000 77% 82%, transparent 83% 100%);
  mask: radial-gradient(circle, transparent 0 76%, #000 77% 82%, transparent 83% 100%);
  opacity: 0.85;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
  transform-origin: 50% 50%;
  animation: radar-spin 5.8s linear infinite;
}

.radar-sweep::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -38deg, transparent 0deg, transparent 306deg, rgba(255,255,255,0.92) 312deg, rgba(0,255,191,0.66) 321deg, rgba(0,255,191,0.34) 337deg, rgba(0,255,191,0.10) 353deg, transparent 360deg);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.24)) drop-shadow(0 0 28px rgba(0,255,191,0.28));
}

.radar-sweep::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 3px;
  transform-origin: 0 50%;
  transform: rotate(-38deg);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(0,255,191,0.88) 45%, rgba(0,255,191,0));
  box-shadow: 0 0 16px rgba(255,255,255,0.55), 0 0 30px rgba(0,255,191,0.42);
}

@keyframes radar-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.radar-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(3, 20, 22, 0.72);
  border: 1px solid rgba(0, 255, 191, 0.42);
  box-shadow: 0 0 34px rgba(0, 255, 191, 0.14), inset 0 0 24px rgba(0, 255, 191, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-align: center;
  z-index: 6;
  text-transform: uppercase;
}
.radar-center span { display: block; line-height: 0.95; letter-spacing: -0.05em; font-weight: 900; color: var(--white); }
.radar-center span:nth-child(1) { font-size: 1.16rem; color: #eafffb; }
.radar-center span:nth-child(2) { font-size: 0.94rem; color: #bffff0; }
.radar-center span:nth-child(3) { font-size: 0.8rem; color: rgba(191,255,240,0.78); }

.hotspot { position: absolute; z-index: 7; width: 22px; height: 22px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; box-shadow: none; cursor: help; }
.dot { width: 12px; height: 12px; border-radius: 999px; background: #5dffd7; border: 1px solid rgba(221, 255, 247, 0.75); box-shadow: 0 0 0 5px rgba(0, 255, 191, 0.14), 0 0 16px rgba(0, 255, 191, 0.88), 0 0 30px rgba(0, 255, 191, 0.36); transition: transform 0.16s ease, box-shadow 0.16s ease; }
.hotspot::after { content: attr(data-label); position: absolute; left: 50%; bottom: calc(100% + 13px); transform: translateX(-50%) translateY(5px) scale(0.96); opacity: 0; pointer-events: none; white-space: nowrap; padding: 8px 11px; border-radius: 12px; border: 1px solid rgba(0, 255, 191, 0.28); background: linear-gradient(180deg, rgba(5, 28, 29, 0.96), rgba(2, 15, 17, 0.96)); color: #eafffb; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), 0 0 22px rgba(0,255,191,0.10); transition: opacity 0.16s ease, transform 0.16s ease; }
.hotspot::before { content: ""; position: absolute; left: 50%; bottom: calc(100% + 5px); transform: translateX(-50%) translateY(5px); opacity: 0; pointer-events: none; width: 1px; height: 11px; background: linear-gradient(180deg, rgba(0,255,191,0.58), transparent); transition: opacity 0.16s ease, transform 0.16s ease; }
.hotspot:hover .dot, .hotspot:focus-visible .dot { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(0, 255, 191, 0.18), 0 0 20px rgba(0, 255, 191, 1), 0 0 42px rgba(0, 255, 191, 0.48); }
.hotspot:hover::after, .hotspot:focus-visible::after, .hotspot:hover::before, .hotspot:focus-visible::before { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
.hotspot.one { left: 49%; top: 11%; }
.hotspot.two { left: 29%; top: 28%; }
.hotspot.three { right: 22%; bottom: 34%; }
.hotspot.four { right: 37%; bottom: 17%; }

section { padding: 56px 0; }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 12px 38px rgba(0, 0, 0, 0.28); overflow: hidden; }
.intro-panel { padding: 28px; }
.section-head { max-width: 800px; margin-bottom: 24px; }
.section-label { color: var(--cyan); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.76rem; font-weight: 900; margin-bottom: 8px; }
.section-subtitle { color: var(--muted); font-size: 1rem; max-width: 780px; }
.mini-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.scan-shell { display: none; margin-bottom: 80px; }
.scan-shell.active { display: block; }
.scan-head { padding: 26px; border-bottom: 1px solid var(--line); display: flex; gap: 18px; justify-content: space-between; align-items: flex-start; background: rgba(5, 9, 24, 0.35); }
#scanSubtitle { margin-top: 8px; }
.progress-wrap { flex: 1; min-width: 180px; max-width: 360px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--soft); margin-bottom: 8px; }
.progress { width: 100%; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; border: 1px solid rgba(102, 129, 187, 0.32); }
.progress > span { display: block; height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--lime)); transition: width 0.25s ease; }
.scan-body { display: grid; grid-template-columns: 260px minmax(0, 1fr); min-height: 650px; }
.steps { padding: 20px; border-right: 1px solid var(--line); background: rgba(5, 9, 24, 0.34); }
.step-item { display: flex; gap: 10px; align-items: center; padding: 11px 10px; border-radius: 14px; color: #9ca8c4; font-size: 0.88rem; margin-bottom: 4px; }
.step-index { width: 25px; height: 25px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,0.06); color: #9ca8c4; font-size: 0.72rem; font-weight: 900; flex: 0 0 auto; }
.step-item.active { color: var(--white); background: rgba(46, 217, 255, 0.08); border: 1px solid rgba(46, 217, 255, 0.22); }
.step-item.active .step-index { background: linear-gradient(135deg, var(--cyan), var(--lime)); color: #06111d; }
.step-item.done .step-index { background: rgba(165,255,10,0.16); color: var(--lime); }
.question-area { padding: 30px; display: flex; flex-direction: column; }
.question-kicker { color: var(--cyan); font-size: 0.76rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.17em; margin-bottom: 10px; }
.question-title { font-size: clamp(1.75rem, 3vw, 2.45rem); line-height: 1.12; letter-spacing: -0.04em; margin-bottom: 10px; }
.question-help { max-width: 780px; margin-bottom: 26px; color: var(--muted); font-size: 1rem; }
.question-group { margin: 20px 0 26px; }
.question-label { display: block; color: var(--white); font-weight: 800; margin-bottom: 11px; font-size: 0.98rem; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { width: 100%; min-height: 48px; border-radius: 13px; border: 1px solid rgba(126, 150, 206, 0.7); background: rgba(3, 8, 26, 0.92); color: #f2f5ff; padding: 12px 13px; font-size: 0.92rem; outline: none; }
.field:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(46, 217, 255, 0.08); }
.field::placeholder { color: #8f9bb7; }
select.field { color-scheme: dark; }
textarea.field { min-height: 94px; resize: vertical; }
.option-card { position: relative; display: flex; gap: 12px; align-items: flex-start; padding: 15px; border-radius: 16px; border: 1px solid rgba(102, 129, 187, 0.46); background: rgba(5, 9, 24, 0.68); cursor: pointer; transition: border 0.16s ease, background 0.16s ease, transform 0.16s ease; min-height: 62px; }
.option-card:hover { border-color: rgba(46, 217, 255, 0.54); background: rgba(46, 217, 255, 0.055); transform: translateY(-1px); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.fake-control { width: 20px; height: 20px; border-radius: 7px; border: 1px solid rgba(199, 211, 227, 0.36); background: rgba(255,255,255,0.04); margin-top: 1px; flex: 0 0 auto; }
.option-card.radio .fake-control { border-radius: 50%; }
.option-card:has(input:checked) { border-color: rgba(165, 255, 10, 0.52); background: rgba(165, 255, 10, 0.07); box-shadow: inset 0 0 0 1px rgba(165, 255, 10, 0.10); }
.option-card:has(input:checked) .fake-control { background: linear-gradient(135deg, var(--cyan), var(--lime)); border-color: transparent; box-shadow: 0 0 18px rgba(165,255,10,0.28); }
.option-text strong { display: block; font-size: 0.94rem; color: var(--white); line-height: 1.2; }
.insight-box { margin-top: 18px; padding: 16px; border-radius: 18px; border: 1px solid rgba(46, 217, 255, 0.26); background: rgba(46, 217, 255, 0.055); color: #d7f6ff; display: none; }
.insight-box.show { display: block; }
.scan-actions { margin-top: auto; padding-top: 28px; display: flex; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid rgba(88, 111, 164, 0.42); }
.scan-button-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.error { color: #ffd6df; font-size: 0.84rem; display: none; }
.error.show { display: block; }
.teaser-results { display: none; padding: 30px; }
.teaser-results.active { display: block; }
.result-hero { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 22px; align-items: stretch; }
#teaserTitle { margin-top: 16px; }
.result-copy { margin-top: 12px; font-size: 18px; }
.score-orb { border-radius: 26px; border: 1px solid rgba(102, 129, 187, 0.55); background: radial-gradient(circle at top left, rgba(46, 217, 255, 0.12), transparent 32%), rgba(6, 12, 32, 0.9); display: grid; place-items: center; min-height: 260px; text-align: center; padding: 26px; box-shadow: var(--shadow); }
.score-number { font-size: 4.5rem; font-weight: 950; letter-spacing: -0.08em; line-height: 0.95; }
.score-label { color: var(--muted); font-weight: 800; margin-top: 8px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.score-badges { justify-content: center; }
.badge { display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; padding: 8px 11px; border: 1px solid rgba(102, 129, 187, 0.45); background: rgba(5, 9, 24, 0.52); color: #d6deed; font-size: 0.78rem; font-weight: 800; }
.badge.hot { border-color: rgba(255, 75, 106, 0.42); color: #ffd6df; background: rgba(255,75,106,0.08); }
.badge.warn { border-color: rgba(255, 209, 102, 0.42); color: #ffe5ad; background: rgba(255,209,102,0.08); }
.badge.good { border-color: rgba(165,255,10,0.36); color: #dfffc3; background: rgba(165,255,10,0.06); }
.lead-gate { margin-top: 24px; padding: 26px; border-radius: 26px; border: 1px solid rgba(165, 255, 10, 0.36); background: radial-gradient(circle at top left, rgba(165, 255, 10, 0.09), transparent 32%), rgba(8, 15, 39, 0.94); box-shadow: 0 16px 45px rgba(0, 0, 0, 0.32); }
.lead-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.full { grid-column: 1 / -1; }
.form-foot { display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-top: 2px; }
.report { display: none; padding: 30px; }
.report.active { display: block; }
.report-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.report-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.route-box { margin-top: 22px; padding: 22px; border-radius: 24px; border: 1px solid rgba(46, 217, 255, 0.34); background: radial-gradient(circle at top left, rgba(46, 217, 255, 0.12), transparent 34%), rgba(7, 14, 36, 0.93); }
.route-flow { margin-top: 14px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.route-step { padding: 14px; border-radius: 16px; background: rgba(5, 9, 24, 0.68); border: 1px solid rgba(102, 129, 187, 0.46); color: var(--white); font-size: 0.82rem; font-weight: 800; text-align: center; }
ul.clean { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
ul.clean li { margin: 8px 0; }
.meter { margin-top: 12px; }
.meter-row { display: grid; grid-template-columns: 160px 1fr 48px; gap: 12px; align-items: center; margin: 12px 0; color: var(--muted); font-size: 0.88rem; }
.meter-track { height: 9px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.meter-fill { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--danger), var(--warning), var(--lime)); }
.disclaimer { margin-top: 12px; color: #8d98b3; font-size: 0.82rem; padding: 16px; border-radius: 18px; border: 1px solid rgba(102, 129, 187, 0.32); background: rgba(5, 9, 24, 0.46); }
.loading { display: none; align-items: center; gap: 8px; color: var(--muted); font-size: 0.84rem; }
.loading.show { display: flex; }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); border-top-color: var(--cyan); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.footer { border-top: 1px solid rgba(88, 111, 164, 0.55); margin-top: 46px; padding: 18px 0 42px; color: #7f8aa5; font-size: 0.82rem; }
.footer strong { color: var(--white); }

@media (max-width: 980px) {
  .hero { grid-template-columns: minmax(0, 1fr); }
  h1 { max-width: 16ch; }
  .scan-body { grid-template-columns: 1fr; }
  .steps { display: none; }
  .scan-head { flex-direction: column; }
  .progress-wrap { max-width: none; width: 100%; }
  .result-hero, .report-grid, .report-grid.three { grid-template-columns: 1fr; }
  .route-flow { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .nav { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: 58px; right: 0; width: min(280px, calc(100vw - 32px)); padding: 12px; border: 1px solid rgba(102, 129, 187, 0.55); border-radius: 18px; background: rgba(5, 8, 20, 0.98); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45); z-index: 20; flex-direction: column; align-items: stretch; gap: 4px; }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 10px 12px; border-radius: 12px; }
  .nav-links a:hover { background: rgba(46, 217, 255, 0.07); }
  .nav-cta { text-align: center; margin-top: 4px; }
  .hero { gap: 26px; padding-top: 42px; }
  h1 { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.08; max-width: 14ch; }
  section { padding: 42px 0; }
  .trust-row, .grid, .grid.three, .mini-cards, .lead-form { grid-template-columns: minmax(0, 1fr); }
  .question-area, .scan-head, .teaser-results, .report { padding: 20px; }
  .scan-actions { flex-direction: column-reverse; align-items: stretch; }
  .scan-button-row, .btn { width: 100%; }
  .meter-row { grid-template-columns: 1fr; gap: 6px; }
  .radar-card { min-height: 420px; }
  .radar-center { width: 96px; height: 96px; }
  .radar-center span:nth-child(1) { font-size: 1rem; }
  .radar-center span:nth-child(2) { font-size: 0.78rem; }
  .radar-center span:nth-child(3) { font-size: 0.68rem; }
}
