:root {
  color-scheme: light;
  --navy: #0b1f35;
  --navy-2: #102b49;
  --blue: #1769e0;
  --blue-dark: #0e4fa8;
  --blue-soft: #eaf2ff;
  --green: #16855b;
  --green-soft: #e7f6ef;
  --orange: #b75c13;
  --orange-soft: #fff1e5;
  --red: #b42318;
  --red-soft: #fff0ee;
  --ink: #122033;
  --muted: #5d6b7a;
  --line: #dbe3ea;
  --line-strong: #c5d0da;
  --surface: #fff;
  --surface-soft: #f4f7fa;
  --surface-blue: #eff5fb;
  --shadow-sm: 0 8px 22px rgba(11, 31, 53, .08);
  --shadow-md: 0 20px 55px rgba(11, 31, 53, .13);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shell: 1260px;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
a { color: inherit; }
img, svg { display: block; }

.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  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: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .16s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #66a4ff; outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(197, 208, 218, .8);
  background: rgba(255, 255, 255, .98);
  transition: box-shadow .2s ease;
}
.site-header.is-compact { box-shadow: 0 8px 28px rgba(11, 31, 53, .09); }
.utility-bar {
  min-height: 32px;
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}
.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.utility-inner p { margin: 0; display: flex; align-items: center; gap: 8px; }
.utility-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55d39b;
  box-shadow: 0 0 0 4px rgba(85, 211, 155, .15);
}
.nav-shell {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  transition: min-height .2s ease;
}
.is-compact .nav-shell { min-height: 76px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 250px; height: auto; transition: width .2s ease; }
.is-compact .brand img { width: 212px; }
.main-nav { display: flex; align-items: center; gap: clamp(15px, 1.65vw, 26px); }
.main-nav a, .text-button {
  position: relative;
  padding: 10px 0;
  background: transparent;
  color: #344256;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.main-nav a::after, .text-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .18s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after,
.text-button:hover::after, .text-button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav a[aria-current="page"] { color: var(--blue-dark); }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.main-nav .mobile-report { display: none; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(23, 105, 224, .18);
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 10px 25px rgba(14, 79, 168, .24);
  transform: translateY(-1px);
}
.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-small { min-height: 44px; padding-inline: 17px; font-size: 14px; }
.button-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}
.button-secondary:hover { border-color: var(--navy); background: var(--surface-soft); color: var(--navy); }
.button-dark { border-color: var(--navy); background: var(--navy); box-shadow: 0 10px 28px rgba(11, 31, 53, .18); }
.button-dark:hover { border-color: var(--navy-2); background: var(--navy-2); }
.button-light { border-color: #fff; background: #fff; color: var(--navy); box-shadow: none; }
.button-light:hover { border-color: var(--blue-soft); background: var(--blue-soft); color: var(--blue-dark); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 650px;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(112deg, #f9fbfd 0%, #eef4fa 53%, #e7f0f8 100%);
}
.hero-search-anchor { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-one {
  width: 420px;
  height: 420px;
  top: -240px;
  left: -80px;
  background: radial-gradient(circle, rgba(23, 105, 224, .15), transparent 68%);
}
.hero-glow-two {
  width: 620px;
  height: 620px;
  right: -180px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(22, 133, 91, .13), transparent 66%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(450px, .96fr);
  align-items: center;
  gap: clamp(48px, 6vw, 94px);
  padding-block: 74px 82px;
}
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--blue-dark); }
.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 730;
  letter-spacing: -.055em;
  line-height: .96;
}
.hero-intro {
  max-width: 670px;
  margin: 26px 0 30px;
  color: #405066;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}
.search-card {
  position: relative;
  z-index: 5;
  max-width: 690px;
  padding: 17px;
  border: 1px solid rgba(197, 208, 218, .95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-md);
}
.vehicle-search { position: relative; }
.vehicle-search > label { display: block; margin-bottom: 8px; color: var(--ink); font-size: 14px; font-weight: 720; }
.search-control {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 64px;
  overflow: hidden;
  border: 2px solid #aebdca;
  border-radius: 9px;
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.search-control:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23, 105, 224, .12); }
.plate-country {
  align-self: stretch;
  display: grid;
  place-items: center;
  background: #1459ad;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.search-control input {
  min-width: 0;
  height: 60px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.search-control input::placeholder { color: #8996a4; opacity: 1; }
.clear-search {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.clear-search[hidden] { display: none; }
.clear-search:hover { background: var(--surface-soft); color: var(--ink); }
.clear-search svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.search-button {
  align-self: stretch;
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 20px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  transition: background .16s ease;
}
.search-button:hover { background: var(--blue-dark); }
.search-button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; }
.search-button.is-loading span { opacity: .7; }
.search-button.is-loading svg { animation: search-pulse .7s ease-in-out infinite alternate; }
@keyframes search-pulse { to { transform: scale(.82); opacity: .45; } }
.search-meta {
  min-height: 28px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.search-meta p { margin: 0; color: var(--muted); font-size: 12px; }
.demo-search {
  padding: 5px 0;
  background: transparent;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.hero-trust { margin: 25px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 13px 22px; list-style: none; }
.hero-trust li { display: inline-flex; align-items: center; gap: 7px; color: #536274; font-size: 12px; font-weight: 650; }
.hero-trust svg {
  width: 18px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; isolation: isolate; }
.visual-grid {
  position: absolute;
  inset: 4% -5% 3% 1%;
  opacity: .5;
  background-image:
    linear-gradient(rgba(72, 111, 146, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 111, 146, .11) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, #000 24%, transparent 72%);
}
.visual-orbit { position: absolute; border: 1px solid rgba(23, 105, 224, .18); border-radius: 50%; }
.visual-orbit-one { width: 480px; height: 480px; }
.visual-orbit-two { width: 350px; height: 350px; border-color: rgba(22, 133, 91, .18); }
.inspection-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(25, 56, 87, .98), rgba(8, 27, 47, .99));
  color: #fff;
  box-shadow: 0 34px 75px rgba(11, 31, 53, .28);
}
.inspection-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -110px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 136, 255, .3), transparent 68%);
}
.panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel-header div { display: grid; gap: 3px; }
.panel-kicker { color: rgba(255, 255, 255, .56); font-size: 11px; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; }
.panel-header strong { font-size: 19px; }
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(85, 211, 155, .25);
  border-radius: 999px;
  background: rgba(85, 211, 155, .12);
  color: #83e5b6;
  font-size: 11px;
  font-weight: 730;
}
.verified-pill svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.vehicle-identity { position: relative; z-index: 1; margin-top: 30px; display: flex; align-items: center; gap: 18px; }
.plate {
  min-width: 146px;
  min-height: 54px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 3px solid #111;
  border-radius: 7px;
  background: #f8fafc;
  color: #10151c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}
.plate span { display: grid; place-items: center; background: #1257aa; color: #fff; font-size: 10px; font-weight: 800; }
.plate strong {
  display: grid;
  place-items: center;
  padding: 0 8px;
  font-family: "Segoe UI", sans-serif;
  font-size: 21px;
  letter-spacing: .08em;
  white-space: nowrap;
}
.vehicle-identity > div:last-child { display: grid; gap: 2px; }
.vehicle-identity > div:last-child span { color: rgba(255, 255, 255, .58); font-size: 12px; }
.vehicle-identity > div:last-child strong { font-size: 16px; }
.signal-card {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .075);
}
.signal-icon { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 10px; }
.signal-high { background: rgba(255, 125, 105, .14); color: #ff9c8b; }
.signal-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.signal-card > div:last-child { display: grid; gap: 3px; }
.signal-card span { color: rgba(255, 255, 255, .55); font-size: 11px; }
.signal-card strong { font-size: 14px; line-height: 1.4; }
.evidence-row { position: relative; z-index: 1; margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.evidence-row > div { display: grid; gap: 2px; padding: 12px; border-left: 1px solid rgba(255, 255, 255, .12); }
.evidence-row > div:first-child { border-left: 0; }
.evidence-row span:last-child { color: rgba(255, 255, 255, .5); font-size: 10px; font-weight: 650; text-transform: uppercase; }
.evidence-number { color: #fff; font-size: 18px; font-weight: 740; }
.floating-proof {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(197, 208, 218, .9);
  border-radius: 12px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow-sm);
}
.floating-proof > span:last-child { display: grid; color: var(--muted); font-size: 10px; }
.floating-proof strong { color: var(--ink); font-size: 12px; }
.proof-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 9px; background: var(--blue-soft); color: var(--blue); }
.proof-icon-green { background: var(--green-soft); color: var(--green); }
.proof-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.proof-photo { right: -26px; bottom: 36px; }
.proof-email { top: 38px; left: -36px; }

.quick-links { border-bottom: 1px solid var(--line); background: #fff; }
.quick-grid { display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; }
.quick-grid a, .quick-grid button {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  font-weight: 680;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, text-decoration-color .16s ease;
}
.quick-grid a:first-child, .quick-grid button:first-child { border-left: 1px solid var(--line); }
.quick-grid a:hover, .quick-grid button:hover { background: var(--surface-soft); color: var(--blue-dark); text-decoration-color: currentColor; }
.quick-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--navy-2); }
.quick-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.commercial-section { padding-block: 42px 48px; }
.commercial-label { display: block; margin-bottom: 7px; color: #778493; font-size: 10px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.commercial-placeholder {
  border: 1px dashed #aebdca;
  background: linear-gradient(135deg, rgba(238, 243, 247, .75), rgba(248, 250, 252, .95));
  color: #687687;
}
.commercial-wide { min-height: 150px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 30px; text-align: left; }
.commercial-wide > div:nth-child(2) { display: grid; gap: 3px; }
.commercial-placeholder strong { color: #536274; font-size: 15px; }
.commercial-placeholder span, .commercial-placeholder small { font-size: 12px; }
.commercial-wide small { margin-left: 18px; padding-left: 18px; border-left: 1px solid var(--line-strong); }
.commercial-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #b8c5d0;
  border-radius: 9px;
  color: #718091;
  font-weight: 800;
}

.search-result-section { padding-block: 76px 92px; border-top: 1px solid var(--line); background: var(--surface-soft); }
.search-result-section[hidden] { display: none; }
.search-result-section.is-entering { animation: result-enter .36s ease both; }
.empty-result-section { padding-block: 76px 92px; border-top: 1px solid var(--line); background: var(--surface-soft); }
.empty-result-section[hidden] { display: none; }
.empty-result-section.is-entering { animation: result-enter .36s ease both; }
@keyframes result-enter { from { opacity: 0; transform: translateY(14px); } }
.empty-result-card {
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.empty-result-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 21px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.empty-result-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.empty-result-card .eyebrow { justify-content: center; }
.empty-result-card h2 {
  max-width: 720px;
  margin: 12px auto 14px;
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 720;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.empty-result-lead { max-width: 640px; margin: 0 auto; color: var(--muted); font-size: 17px; }
.empty-result-caveat {
  max-width: 640px;
  margin: 28px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid #cbd9e6;
  border-radius: 10px;
  background: #edf5fc;
  color: #38526d;
  text-align: left;
}
.empty-result-caveat svg { flex: 0 0 auto; width: 21px; fill: none; stroke: var(--blue-dark); stroke-width: 1.8; stroke-linecap: round; }
.empty-result-caveat p { margin: 0; font-size: 12px; }
.empty-result-actions { margin-top: 26px; display: flex; justify-content: center; gap: 10px; }
.section-heading { margin-bottom: 38px; display: flex; align-items: end; justify-content: space-between; gap: 54px; }
.section-heading h2, .evidence-copy h2, .cta-card h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 720;
  letter-spacing: -.045em;
  line-height: 1.06;
}
.section-heading > p, .result-heading > div > p:last-child { max-width: 480px; margin: 0; color: var(--muted); font-size: 17px; }
.result-heading { align-items: start; }
.result-heading h2 { font-size: clamp(38px, 4.5vw, 58px); }
.close-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
  cursor: pointer;
}
.close-result:hover { color: var(--ink); }
.close-result svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.vehicle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.vehicle-summary-main { display: flex; align-items: center; gap: 20px; }
.plate-light { flex: 0 0 auto; }
.demo-badge {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 3px 7px;
  border-radius: 5px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.vehicle-summary h3 { margin: 0; color: var(--navy); font-size: 24px; }
.vehicle-summary p { margin: 2px 0 0; color: var(--muted); }
.summary-stats { margin: 0; display: flex; align-items: stretch; }
.summary-stats > div { min-width: 102px; padding: 4px 17px; border-left: 1px solid var(--line); }
.summary-stats dt { color: var(--muted); font-size: 11px; }
.summary-stats dd { margin: 2px 0 0; color: var(--navy); font-size: 18px; font-weight: 750; }
.summary-stats > div:last-child { min-width: 184px; }
.inspection-fact {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border: 1px solid #c9d8e6;
  border-radius: 10px;
  background: #edf5fc;
}
.inspection-fact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
}
.inspection-fact-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.inspection-fact > div { display: grid; gap: 1px; }
.inspection-fact > div span { color: var(--blue-dark); font-size: 10px; font-weight: 770; letter-spacing: .06em; text-transform: uppercase; }
.inspection-fact > div strong { color: var(--navy); font-size: 14px; }
.inspection-fact > p { max-width: 410px; margin: 0; color: #587087; font-size: 11px; text-align: right; }
.result-layout { margin-top: 22px; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 22px; align-items: start; }
.observations { display: grid; gap: 15px; }
.observation-list { display: grid; gap: 15px; }
.result-toolbar { padding: 4px 4px 8px; display: flex; align-items: center; justify-content: space-between; }
.result-toolbar h3 { margin: 0; font-size: 18px; }
.result-toolbar span { color: var(--muted); font-size: 13px; }
.observation-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(11, 31, 53, .055);
}
.severity-line { min-height: 34px; display: flex; align-items: center; gap: 8px; padding: 0 20px; font-size: 11px; font-weight: 720; }
.severity-line span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.severity-high { background: var(--red-soft); color: var(--red); }
.severity-medium { background: var(--orange-soft); color: var(--orange); }
.severity-low { background: var(--blue-soft); color: var(--blue-dark); }
.observation-body { padding: 23px 24px 15px; display: flex; justify-content: space-between; gap: 24px; }
.category { color: var(--blue-dark); font-size: 11px; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; }
.observation-body h4 { max-width: 650px; margin: 5px 0 8px; color: var(--navy); font-size: 20px; line-height: 1.25; }
.observation-body p { max-width: 690px; margin: 0; color: var(--muted); font-size: 14px; }
.observation-body time { flex: 0 0 auto; color: var(--muted); font-size: 12px; font-weight: 650; }
.observation-meta { padding: 0 24px 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.observation-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: #546476;
  font-size: 11px;
  font-weight: 650;
}
.observation-meta svg { width: 15px; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.resolution-update {
  margin: 0 24px 19px;
  overflow: hidden;
  border: 1px solid #b9ddce;
  border-radius: 10px;
  background: #f2faf6;
}
.resolution-header {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border-bottom: 1px solid #cce7dc;
  background: #e3f5ed;
}
.resolution-status { display: inline-flex; align-items: center; gap: 7px; color: #0b6b47; font-size: 11px; font-weight: 780; }
.resolution-status svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.resolution-header time { color: #4d725f; font-size: 11px; font-weight: 650; }
.resolution-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
}
.resolution-body > div { display: grid; gap: 3px; }
.resolution-body strong { color: #124c38; font-size: 14px; }
.resolution-body p { margin: 0; color: #567366; font-size: 12px; }
.attachment-chip {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #9fcfbb;
  border-radius: 7px;
  background: #fff;
  color: #0b6b47;
  font-size: 11px;
  font-weight: 720;
  cursor: pointer;
}
.attachment-chip:hover { border-color: #5fa98a; background: #edf8f3; }
.attachment-chip svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.resolution-caveat { margin: 0; padding: 10px 14px; border-top: 1px solid #d7ebe2; color: #698074; font-size: 10px; }

.report-media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 0 24px 18px;
}
.report-media-gallery figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #f5f8fa; }
.report-media-gallery img,
.report-media-gallery video { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--navy); }
.report-media-gallery figcaption { padding: 8px 10px; color: var(--muted); font-size: 11px; }
.report-timeline { margin: 0 24px 18px; border-top: 1px solid var(--line); padding-top: 16px; }
.report-timeline h5 { margin: 0 0 10px; font-size: 14px; }
.report-timeline article { border-left: 3px solid var(--teal); padding: 11px 12px; background: #f3f7f9; margin-bottom: 9px; }
.report-timeline article > div { display: flex; justify-content: space-between; gap: 16px; font-size: 12px; }
.report-timeline article p,
.observation-odometer { margin: 7px 0 0; color: #42596b; font-size: 12px; line-height: 1.55; }
.observation-odometer { margin: 0 24px 18px; }
.report-response-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 24px 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.report-response-actions a { border: 1px solid #b8c6cf; border-radius: 7px; padding: 8px 11px; color: #0b536c; font-size: 12px; font-weight: 760; text-decoration: none; }
.report-response-actions a:hover { border-color: var(--teal); background: #eef6f8; }
.served-ad { display: grid; width: 100%; height: 100%; color: var(--navy); text-decoration: none; background: #fff; }
.served-ad img { width: 100%; height: 190px; object-fit: cover; }
.served-ad span { display: grid; gap: 3px; padding: 10px 12px; text-align: left; }
.served-ad small { color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.served-ad strong { font-size: 13px; line-height: 1.3; }
.legal-details { display: grid; gap: 0; margin: 24px 0 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.legal-details div { display: grid; grid-template-columns: minmax(160px, .65fr) 1.35fr; gap: 20px; padding: 14px 18px; background: #fff; }
.legal-details div + div { border-top: 1px solid var(--line); }
.legal-details dt { color: var(--muted); font-weight: 700; }
.legal-details dd { margin: 0; color: var(--navy); }
.legal-details a { color: var(--blue); }
@media (max-width: 640px) {
  .legal-details div { grid-template-columns: 1fr; gap: 4px; }
}
.action-page { min-height: 100vh; background: #edf2f5; }
.action-main { width: min(760px, calc(100% - 32px)); margin: 0 auto; padding: 140px 0 64px; }
.action-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 55px rgba(11, 31, 53, .1); padding: clamp(24px, 5vw, 48px); }
.action-card h1 { margin: 8px 0 14px; color: var(--navy); font-size: clamp(28px, 5vw, 42px); line-height: 1.1; }
.action-card > p { color: var(--muted); line-height: 1.65; }
.case-submission-form,
[data-admin-setup-form] { display: grid; gap: 18px; margin-top: 28px; }
.case-submission-form .form-field,
[data-admin-setup-form] .form-field { display: grid; gap: 7px; }
.case-submission-form input,
.case-submission-form select,
.case-submission-form textarea,
[data-admin-setup-form] input { width: 100%; border: 1px solid #b8c6cf; border-radius: 8px; padding: 12px 13px; font: inherit; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.action-summary { display: grid; gap: 8px; margin: 20px 0; }
.action-summary div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 10px 12px; background: #f3f7f9; }
.action-summary dt { color: var(--muted); }
.action-summary dd { margin: 0; font-weight: 700; }
.secure-setup-key { display: grid; gap: 10px; padding: 16px; border: 1px solid #c7dce3; border-radius: 10px; background: #f1f8fa; }
.secure-setup-key p { margin: 0; }
.secure-setup-key code { overflow-wrap: anywhere; color: var(--navy); font-size: 18px; font-weight: 800; letter-spacing: .08em; }
.policy-document h2 { margin: 30px 0 8px; color: var(--navy); font-size: 21px; }
.policy-document p { color: #42596b; line-height: 1.7; }
.card-link {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}
.card-link:hover { background: var(--blue-soft); }
.result-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #cbd9e6;
  border-radius: 10px;
  background: #edf5fc;
  color: #38526d;
}
.result-notice svg { flex: 0 0 auto; width: 21px; fill: none; stroke: var(--blue-dark); stroke-width: 1.8; stroke-linecap: round; }
.result-notice p { margin: 0; font-size: 12px; }
.result-sidebar { display: grid; gap: 22px; }
.owner-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.owner-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 10px; background: var(--blue-soft); color: var(--blue-dark); }
.owner-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.owner-card h3 { margin: 17px 0 7px; color: var(--navy); font-size: 19px; }
.owner-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.owner-card .button { width: 100%; min-height: 44px; padding-inline: 14px; font-size: 13px; }
.commercial-sidebar .commercial-label { margin-left: 2px; }
.commercial-square { aspect-ratio: 6 / 5; display: grid; place-items: center; align-content: center; gap: 8px; text-align: center; }

.trust-section { padding-block: 100px; }
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-cards article {
  position: relative;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 31, 53, .055);
}
.trust-cards article::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: var(--blue-soft);
}
.step-number { position: absolute; top: 22px; right: 25px; color: #ced8e1; font-size: 28px; font-weight: 760; }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-soft); color: var(--blue-dark); }
.feature-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-cards article:nth-child(2) .feature-icon { background: var(--green-soft); color: var(--green); }
.trust-cards article:nth-child(3) .feature-icon { background: #eeeafb; color: #6552a8; }
.trust-cards h3 { margin: 40px 0 10px; color: var(--navy); font-size: 22px; }
.trust-cards p { margin: 0; color: var(--muted); }

.evidence-section { padding-block: 100px; background: var(--surface-blue); }
.evidence-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(60px, 8vw, 120px); }
.evidence-copy > p:not(.eyebrow) { max-width: 520px; margin: 24px 0 30px; color: var(--muted); font-size: 17px; }
.evidence-list { display: grid; gap: 12px; }
.evidence-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 19px;
  border: 1px solid rgba(197, 208, 218, .85);
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 24px rgba(11, 31, 53, .05);
}
.evidence-item-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 10px; background: var(--blue-soft); color: var(--blue-dark); }
.evidence-item-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.evidence-item > div { display: grid; gap: 2px; }
.evidence-item strong { color: var(--navy); }
.evidence-item > div span { color: var(--muted); font-size: 13px; }
.status-check { padding: 5px 9px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 10px; font-weight: 760; text-transform: uppercase; }
.status-strong { background: var(--navy); color: #fff; }

.categories-section { padding-block: 100px; }
.category-strip { display: flex; flex-wrap: wrap; gap: 9px; }
.category-strip span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #46566a;
  font-size: 12px;
  font-weight: 670;
}
.vehicle-cards { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vehicle-cards article { min-height: 215px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.vehicle-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 12px; background: var(--surface-blue); color: var(--navy-2); }
.vehicle-icon svg { width: 38px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.vehicle-cards h3 { margin: 22px 0 6px; color: var(--navy); font-size: 19px; }
.vehicle-cards p { margin: 0; color: var(--muted); font-size: 14px; }

.owner-section {
  padding-block: 100px;
  background:
    radial-gradient(circle at 90% 20%, rgba(69, 151, 232, .22), transparent 28%),
    linear-gradient(125deg, var(--navy), #123f68);
  color: #fff;
}
.owner-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}
.owner-copy .eyebrow { color: #82bdff; }
.owner-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 720;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.owner-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 23px 0 29px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}
.owner-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.owner-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .075);
}
.owner-steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(111, 184, 255, .16);
  color: #91caff;
  font-weight: 780;
}
.owner-steps div { display: grid; gap: 2px; }
.owner-steps strong { color: #fff; }
.owner-steps p { margin: 0; color: rgba(255, 255, 255, .6); font-size: 13px; }

.cta-section { padding: 82px 0 100px; background: #fff; }
.cta-card {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(42px, 6vw, 78px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 5%, rgba(82, 170, 255, .3), transparent 28%),
    linear-gradient(125deg, var(--navy), #124677);
  color: #fff;
}
.cta-card .eyebrow { color: #7fb9ff; }
.cta-card h2 { max-width: 820px; color: #fff; }
.cta-card p:last-child { max-width: 700px; margin: 18px 0 0; color: rgba(255, 255, 255, .72); font-size: 17px; }
.cta-card .button { flex: 0 0 auto; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 82px 88px;
  background:
    radial-gradient(circle at 82% 12%, rgba(61, 150, 238, .3), transparent 25%),
    linear-gradient(125deg, #071b30, #0d3155 70%, #144b7c);
  color: #fff;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -210px;
  bottom: -300px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025);
}
.page-breadcrumb { margin: 0 0 28px; display: flex; gap: 8px; color: rgba(255, 255, 255, .62); font-size: 12px; }
.page-breadcrumb a { color: #9dceff; text-decoration: none; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: end; gap: 70px; }
.page-hero h1 { max-width: 840px; margin: 0; font-size: clamp(48px, 6.4vw, 82px); letter-spacing: -.055em; line-height: .98; }
.page-hero-copy > p:last-child { max-width: 750px; margin: 25px 0 0; color: rgba(255, 255, 255, .72); font-size: 19px; line-height: 1.55; }
.page-summary-card { padding: 25px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; background: rgba(255, 255, 255, .075); backdrop-filter: blur(8px); }
.page-summary-card strong { display: block; margin-bottom: 7px; color: #fff; font-size: 15px; }
.page-summary-card p { margin: 0; color: rgba(255, 255, 255, .64); font-size: 12px; line-height: 1.55; }
.content-section { padding-block: 88px 104px; background: #fff; }
.content-section-soft { background: var(--surface-soft); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 62px; }
.content-main { display: grid; gap: 58px; min-width: 0; }
.content-layout > * { min-width: 0; }
.content-main > * { min-width: 0; }
.content-block { scroll-margin-top: 140px; }
.content-block .eyebrow { margin-bottom: 13px; }
.content-block h2 {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.08;
}
.content-block h3 { margin: 28px 0 8px; color: var(--navy); font-size: 20px; }
.content-block > p, .content-block li { max-width: 850px; color: #56677a; font-size: 15px; line-height: 1.7; }
.content-block > p { margin: 0 0 15px; }
.content-block ul { margin: 18px 0 0; padding-left: 20px; }
.content-card-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.content-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(11, 31, 53, .045);
}
.content-card-number, .content-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 790;
}
.content-card-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.content-card h3 { margin: 0 0 7px; color: var(--navy); font-size: 18px; }
.content-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.process-list { margin: 26px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.process-list li { display: grid; grid-template-columns: auto 1fr; gap: 15px; padding: 18px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.process-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 780; }
.process-list strong { display: block; color: var(--navy); }
.process-list p { margin: 3px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.policy-callout {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  background: var(--blue-soft);
}
.policy-callout strong { display: block; margin-bottom: 5px; color: var(--navy); }
.policy-callout p { margin: 0; color: #49627d; font-size: 13px; line-height: 1.6; }
.policy-callout.warning { border-left-color: var(--orange); background: var(--orange-soft); }
.policy-callout.warning p { color: #684f2d; }
.content-sidebar { position: sticky; top: 130px; display: grid; gap: 24px; }
.side-nav { padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.side-nav strong { display: block; margin-bottom: 12px; color: var(--navy); font-size: 13px; }
.side-nav a { display: block; padding: 9px 0; border-top: 1px solid var(--line); color: #536476; font-size: 12px; text-decoration: none; }
.side-nav a:hover { color: var(--blue-dark); }
.content-ad .commercial-square { min-height: 250px; aspect-ratio: auto; }
.detail-cta { padding-block: 0 100px; background: #fff; }
.detail-cta .cta-card { min-height: 260px; }
.identity-shield {
  margin-top: 25px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid #b9ddce;
  border-radius: 11px;
  background: #f2faf6;
}
.identity-shield svg { width: 30px; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.identity-shield strong { display: block; color: #124c38; }
.identity-shield p { margin: 4px 0 0; color: #567366; font-size: 12px; line-height: 1.6; }

.site-footer { padding-top: 62px; background: #f1f4f7; color: #4e5d6f; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; }
.footer-brand img { width: 230px; height: auto; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; font-size: 14px; }
.footer-main > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }
.footer-main h2 { margin: 0 0 6px; color: var(--navy); font-size: 14px; }
.footer-main a, .footer-main button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #59697b;
  font-size: 12px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.footer-main a:hover, .footer-main button:hover { color: var(--blue-dark); text-decoration: underline; }
.footer-bottom {
  margin-top: 54px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #718091;
  font-size: 11px;
}

.report-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100vh - 42px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 38px 100px rgba(6, 21, 37, .36);
}
.report-dialog::backdrop { background: rgba(5, 20, 36, .68); }
.dialog-shell { padding: 0; }
.dialog-header { display: flex; justify-content: space-between; gap: 20px; padding: 28px 30px 20px; }
.dialog-kicker { color: var(--blue-dark); font-size: 11px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.dialog-header h2 { margin: 5px 0 0; color: var(--navy); font-size: 28px; letter-spacing: -.03em; }
.dialog-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--muted);
  cursor: pointer;
}
.dialog-close:hover { background: var(--line); color: var(--ink); }
.dialog-close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.report-progress {
  margin: 0;
  padding: 17px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
  list-style: none;
}
.report-progress li { display: flex; align-items: center; gap: 7px; color: #7b8896; font-size: 11px; font-weight: 670; }
.report-progress li span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: #fff; }
.report-progress .is-current { color: var(--blue-dark); }
.report-progress .is-current span { border-color: var(--blue); background: var(--blue); color: #fff; }
.report-progress .is-complete { color: var(--green); }
.report-progress .is-complete span { border-color: var(--green); background: #e8f7ef; color: var(--green); }
.dialog-content { padding: 28px 30px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: var(--ink); font-size: 13px; font-weight: 720; }
.optional-label { margin-left: 5px; color: var(--muted); font-size: 10px; font-weight: 650; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}
.form-field textarea { min-height: 140px; padding-block: 12px; resize: vertical; font: inherit; line-height: 1.5; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23, 105, 224, .1); }
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: var(--red); }
.form-field small { color: var(--muted); font-size: 11px; }
.field-with-margin { margin-top: 20px; }
.field-row { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.report-step[hidden] { display: none; }
.privacy-note {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 1px solid #c8dbef;
  border-radius: 9px;
  background: #edf5fc;
}
.privacy-note svg { flex: 0 0 auto; width: 22px; fill: none; stroke: var(--blue-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.privacy-note p { margin: 0; color: #425b75; font-size: 12px; }
.rules-note {
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 3px solid var(--orange);
  background: var(--orange-soft);
  color: #68451b;
}
.rules-note strong { font-size: 12px; }
.rules-note p { margin: 3px 0 0; font-size: 11px; }
.sound-toggle {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--ink);
  cursor: pointer;
}
.sound-toggle:hover { border-color: #9eb3c6; background: #eef4f9; }
.sound-toggle input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue); }
.sound-toggle > span { display: grid; gap: 2px; }
.sound-toggle strong { color: var(--navy); font-size: 13px; }
.sound-toggle small { color: var(--muted); font-size: 11px; font-weight: 500; line-height: 1.5; }
.sound-toggle.is-invalid { border-color: var(--red); background: var(--red-soft); }
.sound-details {
  margin-top: 14px;
  padding: 19px;
  border: 1px solid #c8dbef;
  border-radius: 10px;
  background: #f4f8fc;
}
.sound-details[hidden] { display: none; }
.form-field textarea.sound-description { min-height: 96px; }
.sound-rules-note { margin-top: 18px; }
.upload-zone {
  min-height: 176px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 22px;
  border: 1px dashed #9eb3c6;
  border-radius: 10px;
  background: #f7fafc;
  color: var(--blue-dark);
  cursor: pointer;
  text-align: center;
}
.upload-zone:hover { border-color: var(--blue); background: var(--blue-soft); }
.upload-zone.is-invalid { border-color: var(--red); background: var(--red-soft); }
.upload-zone input { position: absolute; width: 1px; height: 1px; min-height: 1px; padding: 0; opacity: 0; pointer-events: none; }
.upload-zone strong { font-size: 14px; }
.upload-zone > span:last-child { color: var(--muted); font-size: 11px; font-weight: 500; }
.upload-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.upload-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sound-upload-requirement {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 15px;
  border: 1px solid #efc49d;
  border-radius: 9px;
  background: var(--orange-soft);
  color: #68451b;
}
.sound-upload-requirement[hidden] { display: none; }
.sound-upload-requirement svg { flex: 0 0 auto; width: 22px; fill: none; stroke: var(--orange); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sound-upload-requirement p { margin: 0; font-size: 11px; line-height: 1.55; }
.evidence-tips, .submission-flow { margin-top: 18px; display: grid; gap: 9px; }
.evidence-tips > div, .submission-flow > div { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.evidence-tips > div > span, .submission-flow > div > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 780;
}
.evidence-tips p, .submission-flow p { margin: 1px 0 0; color: var(--muted); font-size: 11px; }
.evidence-tips strong, .submission-flow strong { color: var(--ink); }
.confirmation-check {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #425266;
  font-size: 12px;
  cursor: pointer;
}
.confirmation-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--blue); }
.confirmation-check.is-invalid { border-color: var(--red); background: var(--red-soft); }
.submission-flow { margin-top: 22px; padding: 17px; border-radius: 10px; background: var(--surface-soft); }
.report-form-status { min-height: 18px; margin: 0; padding: 0 30px; color: var(--red); font-size: 11px; font-weight: 650; }
.dialog-actions { padding: 18px 30px 28px; display: flex; justify-content: flex-end; gap: 12px; border-top: 1px solid var(--line); }
.dialog-actions .button { min-height: 44px; }
.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: 390px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  border: 1px solid rgba(85, 211, 155, .35);
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 13px;
}
.toast[hidden] { display: none; }
.toast svg { width: 22px; fill: none; stroke: #69dca8; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.toast.is-visible { animation: toast-in .24s ease both; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1180px) {
  .nav-shell { gap: 22px; }
  .brand img { width: 220px; }
  .main-nav a:nth-child(4), .main-nav a:nth-child(5), .text-button { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(400px, .85fr); gap: 40px; }
  .proof-photo { right: -4px; }
  .proof-email { left: -10px; }
  .summary-stats > div { min-width: 96px; padding-inline: 14px; }
  .inspection-fact > p { max-width: 300px; }
}

@media (max-width: 980px) {
  .shell { width: min(100% - 36px, var(--shell)); }
  .nav-shell { min-height: 82px; grid-template-columns: auto 1fr auto; }
  .is-compact .nav-shell { min-height: 70px; }
  .brand img, .is-compact .brand img { width: 210px; }
  .nav-toggle {
    grid-column: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border-radius: 8px;
    background: var(--surface-soft);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { width: 21px; height: 2px; background: var(--navy); transition: transform .18s ease, opacity .18s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 10px 18px 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a, .main-nav a:nth-child(4), .main-nav a:nth-child(5) { display: block; padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav .mobile-report { display: inline-flex; width: 100%; margin-top: 9px; }
  .nav-actions { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 68px 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 650px); margin-inline: auto; }
  .quick-grid {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .quick-grid::-webkit-scrollbar { display: none; }
  .vehicle-summary { align-items: flex-start; flex-direction: column; }
  .summary-stats { width: 100%; border-top: 1px solid var(--line); padding-top: 18px; }
  .summary-stats > div:first-child { border-left: 0; padding-left: 0; }
  .result-layout { grid-template-columns: 1fr; }
  .result-sidebar { grid-template-columns: 1fr 300px; }
  .trust-cards { grid-template-columns: 1fr; }
  .trust-cards article { min-height: 240px; }
  .evidence-grid { grid-template-columns: 1fr; }
  .vehicle-cards { grid-template-columns: 1fr; }
  .owner-grid { grid-template-columns: 1fr; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .page-summary-card { max-width: 560px; }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; grid-template-columns: 1fr 300px; }
  .footer-main { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 112px; }
  .shell { width: min(100% - 28px, var(--shell)); }
  .utility-inner { justify-content: center; }
  .utility-inner p { display: none; }
  .nav-shell, .is-compact .nav-shell { min-height: 74px; }
  .brand img, .is-compact .brand img { width: 188px; }
  .hero-grid { gap: 52px; padding-block: 48px 60px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-intro { margin-block: 21px 25px; font-size: 17px; }
  .search-card { margin-inline: -4px; padding: 13px; }
  .search-control { grid-template-columns: 29px minmax(0, 1fr) auto; overflow: visible; }
  .search-control input { min-height: 56px; height: 56px; font-size: 21px; }
  .clear-search { grid-column: 3; }
  .search-button { grid-column: 1 / -1; min-height: 52px; margin: 9px -2px -2px; border-radius: 7px; }
  .plate-country { min-height: 56px; border-radius: 6px 0 0 6px; }
  .search-meta { align-items: flex-start; flex-direction: column; gap: 4px; }
  .hero-trust { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 450px; }
  .inspection-panel { padding: 20px; }
  .visual-orbit-one { width: 390px; height: 390px; }
  .visual-orbit-two { width: 290px; height: 290px; }
  .vehicle-identity { gap: 12px; }
  .plate { min-width: 130px; }
  .plate strong { font-size: 18px; }
  .evidence-row > div { padding: 8px; }
  .floating-proof { min-width: 168px; }
  .proof-email { top: -5px; left: -5px; }
  .proof-photo { right: -4px; bottom: 0; }
  .commercial-section { padding-block: 28px 34px; }
  .commercial-wide { min-height: 170px; align-items: center; flex-direction: column; gap: 9px; text-align: center; }
  .commercial-wide small { margin: 3px 0 0; padding: 0; border-left: 0; }
  .search-result-section, .empty-result-section, .trust-section, .evidence-section, .categories-section, .owner-section { padding-block: 72px; }
  .section-heading, .result-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .section-heading h2, .evidence-copy h2, .cta-card h2 { font-size: clamp(34px, 10vw, 46px); }
  .vehicle-summary-main { align-items: flex-start; flex-direction: column; }
  .summary-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .summary-stats > div, .summary-stats > div:last-child { min-width: 0; padding: 10px 12px; }
  .summary-stats > div:nth-child(odd) { border-left: 0; }
  .summary-stats > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .inspection-fact { grid-template-columns: auto 1fr; }
  .inspection-fact > p { grid-column: 1 / -1; max-width: none; text-align: left; }
  .empty-result-actions { align-items: stretch; flex-direction: column; }
  .empty-result-actions .button { width: 100%; }
  .observation-body { flex-direction: column; gap: 10px; }
  .resolution-body { align-items: flex-start; flex-direction: column; }
  .result-sidebar { grid-template-columns: 1fr; }
  .commercial-square { min-height: 250px; aspect-ratio: auto; }
  .evidence-item { grid-template-columns: auto minmax(0, 1fr); }
  .status-check { grid-column: 2; width: fit-content; }
  .cta-section { padding: 56px 0 72px; }
  .cta-card { width: 100%; border-radius: 0; }
  .page-hero { padding-block: 55px 62px; }
  .page-hero-grid { gap: 28px; }
  .page-hero h1 { font-size: clamp(45px, 14vw, 64px); }
  .page-hero-copy > p:last-child { font-size: 16px; }
  .content-section { padding-block: 66px 76px; }
  .content-main { gap: 48px; }
  .content-card-grid { grid-template-columns: 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .detail-cta { padding-bottom: 72px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
  .report-dialog { width: calc(100% - 18px); max-height: calc(100vh - 18px); border-radius: 14px; }
  .dialog-header, .dialog-content { padding-inline: 20px; }
  .report-progress { padding-inline: 20px; grid-template-columns: repeat(4, auto); gap: 8px; }
  .report-progress li { display: grid; justify-items: center; gap: 4px; text-align: center; }
  .field-row { grid-template-columns: 1fr; }
  .report-form-status { padding-inline: 20px; }
  .dialog-actions { padding-inline: 20px; align-items: stretch; flex-direction: column-reverse; }
  .toast { right: 12px; bottom: 12px; left: 12px; max-width: none; }
}

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

/* Private report-completion page */
.secure-response-page { min-height: 100vh; display: flex; flex-direction: column; background: #f4f7fa; }
.secure-response-header { border-bottom: 1px solid var(--line); background: #fff; }
.secure-response-header-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.secure-response-header .brand img { width: 238px; }
.secure-session-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid #b9dfce; border-radius: 999px; background: var(--green-soft); color: #126b49; font-size: 12px; font-weight: 750; }
.secure-session-badge svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.secure-response-main { flex: 1; padding: 56px 0 72px; }
.secure-response-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 30px; }
.secure-response-intro { max-width: 780px; }
.secure-response-intro h1, .response-state-card h1 { margin: 7px 0 13px; color: var(--navy); font-size: clamp(34px, 4.2vw, 54px); line-height: 1.04; letter-spacing: -.035em; }
.secure-response-intro > p:last-child { max-width: 760px; margin: 0; color: var(--muted); font-size: 17px; }
.response-deadline { margin-top: 27px; display: flex; align-items: flex-start; gap: 14px; padding: 17px 19px; border: 1px solid #efcfad; border-left: 4px solid var(--orange); border-radius: 11px; background: #fffbf6; color: #694526; }
.response-deadline svg { width: 25px; height: 25px; flex: 0 0 25px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.response-deadline strong { color: #5b3415; font-size: 14px; }
.response-deadline p { margin: 3px 0 0; font-size: 12px; }
.secure-response-form { margin-top: 20px; display: grid; gap: 16px; }
.response-card, .response-case-card, .response-security-card, .response-state-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.response-card { padding: 24px; }
.response-card-heading { display: flex; align-items: flex-start; gap: 13px; }
.response-card-heading > span { width: 35px; height: 35px; display: grid; place-items: center; flex: 0 0 35px; border-radius: 9px; background: var(--blue-soft); color: var(--blue-dark); font-size: 11px; font-weight: 850; }
.response-card-heading h2 { margin: 0; color: var(--navy); font-size: 18px; }
.response-card-heading p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.moderator-message { margin-top: 18px; padding: 16px 17px; border-left: 4px solid var(--blue); border-radius: 8px; background: var(--blue-soft); }
.moderator-message strong { color: var(--navy); font-size: 13px; }
.moderator-message p { margin: 5px 0 0; color: #415b76; font-size: 13px; line-height: 1.6; }
.requested-items { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 8px; }
.requested-items span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #435268; font-size: 11px; font-weight: 700; }
.requested-items svg { width: 15px; height: 15px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.response-field { margin-top: 18px; display: block; }
.response-field > span { display: block; margin-bottom: 7px; color: var(--ink); font-size: 12px; font-weight: 750; }
.response-field textarea { width: 100%; resize: vertical; padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: 9px; background: #fff; color: var(--ink); font: inherit; font-size: 14px; line-height: 1.6; }
.response-field textarea:focus, .response-upload:has(input:focus-visible) { border-color: #66a4ff; outline: 3px solid rgba(102, 164, 255, .22); }
.response-field textarea[aria-invalid="true"], .response-upload:has(input[aria-invalid="true"]) { border-color: var(--red); }
.response-field > small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; text-align: right; }
.response-upload { position: relative; margin-top: 18px; min-height: 145px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 24px; border: 1px dashed #9fb3c6; border-radius: 11px; background: #f8fbfd; color: var(--muted); text-align: center; cursor: pointer; transition: border-color .16s ease, background .16s ease; }
.response-upload:hover { border-color: var(--blue); background: var(--blue-soft); }
.response-upload svg { width: 30px; height: 30px; margin-bottom: 4px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.response-upload strong { color: var(--navy); font-size: 14px; }
.response-upload span { font-size: 11px; }
.response-upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: .01; }
.response-file-list { margin-top: 10px; color: var(--muted); font-size: 11px; }
.response-file-list p { margin: 0; }
.response-file-list ul { margin: 0 0 8px; padding: 0; list-style: none; }
.response-file-list li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 9px; border-bottom: 1px solid var(--line); color: var(--ink); }
.response-file-list li small { color: var(--muted); }
.response-file-list .is-ready { color: var(--green); font-weight: 750; }
.response-file-list .is-error { color: var(--red); font-weight: 750; }
.privacy-strip { margin-top: 15px; display: flex; align-items: flex-start; gap: 9px; padding: 11px 12px; border-radius: 8px; background: var(--green-soft); color: #356350; }
.privacy-strip svg { width: 20px; height: 20px; flex: 0 0 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.privacy-strip p { margin: 0; font-size: 11px; }
.response-confirm-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; }
.response-confirm { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.response-confirm input { margin-top: 3px; accent-color: var(--blue); }
.response-confirm strong, .response-confirm small { display: block; }
.response-confirm strong { color: var(--ink); font-size: 12px; }
.response-confirm small { margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.response-submit { white-space: nowrap; }
.response-form-status { grid-column: 1 / -1; margin: 0; color: var(--red); font-size: 12px; font-weight: 700; }
.response-form-status:empty { display: none; }
.secure-response-sidebar { position: sticky; top: 24px; display: grid; gap: 16px; }
.response-case-card, .response-security-card { padding: 22px; }
.response-case-card > p { margin: 0 0 3px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.response-case-card > strong { color: var(--navy); font-size: 19px; }
.response-case-card dl { margin: 18px 0 0; }
.response-case-card dl div { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 10px 0; border-top: 1px solid var(--line); }
.response-case-card dt { color: var(--muted); font-size: 10px; }
.response-case-card dd { margin: 0; color: var(--ink); font-size: 11px; font-weight: 750; text-align: right; }
.response-security-card { border-color: #b9dfce; background: linear-gradient(145deg, #fff, #f3fbf7); }
.response-security-card > svg { width: 31px; height: 31px; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.response-security-card h2 { margin: 13px 0 10px; color: var(--navy); font-size: 16px; }
.response-security-card ul { margin: 0; padding-left: 18px; color: #496454; font-size: 11px; }
.response-security-card li + li { margin-top: 7px; }
.response-state-card { max-width: 760px; padding: 42px; text-align: center; }
.response-state-card > p:not(.eyebrow) { max-width: 600px; margin: 0 auto 25px; color: var(--muted); }
.response-state-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); }
.response-state-icon.is-success { background: var(--green-soft); color: var(--green); }
.response-state-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.response-state-card .eyebrow { justify-content: center; }
.response-state-card .button { margin-inline: auto; }
.secure-response-footer { padding: 20px 0; border-top: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 11px; }
.secure-response-footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.confirmation-summary {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.confirmation-summary div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7fafb;
}

.confirmation-summary dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.confirmation-summary dd {
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@media (max-width: 960px) {
  .secure-response-layout { grid-template-columns: 1fr; }
  .secure-response-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .secure-response-header-inner { min-height: 84px; }
  .secure-response-header .brand img { width: 190px; }
  .secure-session-badge { padding: 7px 9px; font-size: 10px; }
  .secure-response-main { padding: 36px 0 48px; }
  .secure-response-layout { width: min(100% - 28px, var(--shell)); }
  .secure-response-sidebar { grid-template-columns: 1fr; }
  .response-card { padding: 19px; }
  .response-confirm-card { grid-template-columns: 1fr; }
  .response-submit { width: 100%; }
  .response-state-card { width: min(100% - 28px, 760px); padding: 30px 20px; }
  .secure-response-footer .shell { align-items: flex-start; flex-direction: column; gap: 4px; }
  .confirmation-summary { grid-template-columns: 1fr; }
}

/* Privacy, contact and advertiser information */
.utility-inner a { color: #fff; font-weight: 700; text-decoration: none; }
.utility-inner a:hover { text-decoration: underline; }
.privacy-settings-button { width: 100%; margin-top: 16px; }
.privacy-table-wrap { max-width: 100%; margin-top: 24px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.privacy-table { width: 100%; border-collapse: collapse; }
.privacy-table th, .privacy-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-table th { background: var(--surface-soft); color: var(--muted); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.privacy-table td { color: #405168; font-size: 13px; }
.privacy-table td strong { color: var(--navy); }
.privacy-table tbody tr:last-child td { border-bottom: 0; }
.contact-inline-card { margin-top: 25px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.contact-inline-card strong { color: var(--navy); font-size: 16px; }
.contact-inline-card p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.privacy-sidebar-card { padding: 22px; border: 1px solid #b9dfce; border-radius: 13px; background: linear-gradient(145deg, #fff, #f3fbf7); color: #356350; }
.privacy-sidebar-card svg { width: 32px; height: 32px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.privacy-sidebar-card strong { display: block; margin-top: 13px; color: var(--navy); }
.privacy-sidebar-card p { margin: 6px 0 0; font-size: 12px; }
.content-text-link { display: inline-flex; margin-top: 12px; color: var(--blue-dark); font-weight: 750; text-decoration: none; }
.content-text-link:hover { text-decoration: underline; }
.contact-email-card a { display: inline-block; margin-top: 9px; color: var(--blue-dark); font-size: 22px; font-weight: 800; text-decoration: none; }
.contact-email-card a:hover { text-decoration: underline; }
.contact-section { padding: 78px 0 100px; background: var(--surface-soft); }
.contact-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-choice-grid article { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.contact-choice-grid h2 { margin: 18px 0 9px; color: var(--navy); font-size: 21px; }
.contact-choice-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.contact-choice-grid a { display: inline-block; margin-top: 18px; color: var(--blue-dark); font-size: 13px; font-weight: 750; text-decoration: none; }
.contact-choice-grid a:hover { text-decoration: underline; }
.contact-guidance { margin-top: 22px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; padding: 34px; border-radius: var(--radius); background: var(--navy); color: #fff; }
.contact-guidance h2 { margin: 7px 0 0; font-size: 30px; line-height: 1.1; }
.contact-guidance ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.76); }
.contact-guidance li + li { margin-top: 9px; }

.advertise-hero { position: relative; overflow: hidden; padding: 84px 0 92px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 92% 10%, rgba(23,105,224,.14), transparent 32%), linear-gradient(118deg, #f8fbfd, #eaf2f9); }
.advertise-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; align-items: center; gap: 70px; }
.advertise-hero h1 { max-width: 820px; margin: 13px 0 22px; color: var(--navy); font-size: clamp(52px, 6.3vw, 82px); line-height: .98; letter-spacing: -.045em; }
.advertise-hero h1 + p { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }
.advertise-hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 11px; }
.advertise-trust-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 18px; color: #46566a; font-size: 12px; font-weight: 700; }
.advertise-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.advertise-trust-row svg { width: 17px; height: 17px; fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.advertise-preview { position: relative; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); transform: rotate(1.2deg); }
.advertise-preview .commercial-label { position: static; display: inline-block; margin-bottom: 8px; }
.advertise-preview-creative { min-height: 330px; display: flex; align-items: flex-start; justify-content: flex-end; flex-direction: column; padding: 30px; border-radius: 12px; background: linear-gradient(145deg, rgba(7,24,41,.15), rgba(7,24,41,.88)), radial-gradient(circle at 80% 15%, #4893d9, transparent 40%), #0b2948; color: #fff; }
.advertise-preview-creative > span:first-child { margin-bottom: auto; color: #8dc3ff; font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.advertise-preview-creative strong { max-width: 300px; font-size: 31px; line-height: 1.05; }
.advertise-preview-creative p { margin: 10px 0 16px; color: rgba(255,255,255,.75); }
.preview-cta { padding: 9px 14px; border-radius: 7px; background: #fff; color: var(--navy); font-size: 12px; font-weight: 800; }
.advertise-preview-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 5px 1px; color: var(--muted); font-size: 10px; }
.advertise-section { padding: 86px 0; }
.advertise-section-heading { align-items: flex-end; }
.advertise-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.advertise-steps article { padding: 22px 19px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.advertise-steps article > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--blue-soft); color: var(--blue); font-size: 11px; font-weight: 850; }
.advertise-steps h3 { margin: 17px 0 7px; font-size: 16px; }
.advertise-steps p { margin: 0; color: var(--muted); font-size: 12px; }
.advertise-pricing-section { border-block: 1px solid var(--line); background: var(--surface-soft); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.pricing-card { position: relative; display: flex; flex-direction: column; padding: 29px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.pricing-card.is-featured { border-color: var(--blue); box-shadow: 0 17px 45px rgba(23,105,224,.14); }
.pricing-badge { position: absolute; top: 20px; right: 20px; padding: 5px 9px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); font-size: 9px; font-weight: 850; text-transform: uppercase; }
.pricing-card > p:first-of-type { margin: 0; color: var(--blue-dark); font-size: 13px; font-weight: 800; }
.pricing-card h3 { margin: 15px 0 8px; }
.pricing-card h3 strong { font-size: 42px; letter-spacing: -.035em; }
.pricing-card h3 span { margin-left: 4px; color: var(--muted); font-size: 13px; font-weight: 600; }
.pricing-card h3 + p { min-height: 48px; margin: 0; color: var(--muted); font-size: 13px; }
.pricing-card ul { flex: 1; margin: 22px 0; padding-left: 19px; color: #405168; font-size: 12px; }
.pricing-card li + li { margin-top: 8px; }
.pricing-footnote { max-width: 900px; margin: 24px auto 0; color: var(--muted); font-size: 12px; text-align: center; }
.geo-ad-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); align-items: center; gap: 70px; }
.geo-ad-grid h2 { max-width: 700px; margin: 10px 0 17px; color: var(--navy); font-size: clamp(36px, 4vw, 58px); line-height: 1.03; letter-spacing: -.035em; }
.geo-ad-grid h2 + p { max-width: 760px; color: var(--muted); font-size: 16px; }
.geo-choice-example { margin-top: 23px; display: flex; flex-wrap: wrap; gap: 8px; }
.geo-choice-example span { padding: 8px 12px; border: 1px solid #b8d4f4; border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); font-size: 12px; font-weight: 700; }
.geo-policy-card { padding: 30px; border: 1px solid #b9dfce; border-radius: 16px; background: linear-gradient(145deg, #fff, #f2faf6); box-shadow: var(--shadow-sm); }
.geo-policy-card svg { width: 35px; height: 35px; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.geo-policy-card h3 { margin: 18px 0 8px; color: var(--navy); font-size: 21px; }
.geo-policy-card p { color: #496454; }
.geo-policy-card a { color: var(--blue-dark); font-size: 12px; font-weight: 750; text-decoration: none; }
.advertise-rules-section { background: var(--navy); color: #fff; }
.advertise-rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.advertise-rules-grid h2 { max-width: 600px; margin: 10px 0 15px; font-size: clamp(36px, 4vw, 58px); line-height: 1.02; }
.advertise-rules-grid p { color: rgba(255,255,255,.72); }
.advertise-rules-grid ul { margin: 0; padding: 28px 30px 28px 48px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.78); }
.advertise-rules-grid li + li { margin-top: 11px; }

/* Consent manager */
body.consent-open { overflow: hidden; }
.consent-layer { position: fixed; z-index: 1000; inset: 0; display: grid; align-items: end; padding: 22px; background: rgba(5,18,31,.58); backdrop-filter: blur(3px); }
.consent-card { width: min(880px, 100%); margin-inline: auto; padding: 25px; border-radius: 17px; background: #fff; color: var(--ink); box-shadow: 0 30px 90px rgba(5,18,31,.32); }
.consent-heading { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; }
.consent-icon { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 11px; background: var(--green-soft); color: var(--green); }
.consent-icon svg, .consent-close svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.consent-heading p { margin: 0; color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.consent-heading h2 { margin: 2px 0 0; color: var(--navy); font-size: 24px; }
.consent-close { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--muted); cursor: pointer; }
.consent-copy { margin: 17px 0 20px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.consent-details { margin-bottom: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 11px; }
.consent-option { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 15px; border-bottom: 1px solid var(--line); cursor: pointer; }
.consent-option strong, .consent-option small { display: block; }
.consent-option strong { color: var(--navy); font-size: 12px; }
.consent-option small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.consent-option input { width: 40px; height: 22px; flex: 0 0 auto; accent-color: var(--blue); }
.consent-required { padding: 5px 8px; border-radius: 999px; background: var(--surface-soft); color: var(--muted); font-size: 9px; font-weight: 750; white-space: nowrap; }
.consent-detail-link { margin: 0; padding: 11px 15px; background: var(--surface-soft); font-size: 10px; }
.consent-detail-link a { color: var(--blue-dark); font-weight: 750; }
.consent-actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 9px; }
.consent-button { min-height: 46px; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 8px; background: #fff; color: var(--navy); font-weight: 750; cursor: pointer; }
.consent-button:hover { border-color: var(--blue-dark); }
.consent-button-primary { border-color: var(--blue); background: var(--blue); color: #fff; }
.consent-button-primary:hover { background: var(--blue-dark); }
.consent-button[data-consent-save] { grid-column: 3; }

@media (max-width: 1050px) {
  .advertise-hero-grid { grid-template-columns: 1fr; }
  .advertise-preview { max-width: 480px; transform: none; }
  .advertise-steps { grid-template-columns: repeat(3, 1fr); }
  .contact-choice-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .advertise-hero { padding-block: 56px 65px; }
  .advertise-hero-grid { gap: 42px; }
  .advertise-section { padding-block: 64px; }
  .advertise-steps, .pricing-grid, .geo-ad-grid, .advertise-rules-grid, .contact-choice-grid, .contact-guidance { grid-template-columns: 1fr; }
  .advertise-rules-grid { gap: 30px; }
  .geo-ad-grid { gap: 35px; }
  .contact-inline-card { align-items: stretch; flex-direction: column; }
  .contact-inline-card .button { width: 100%; }
  .contact-guidance { gap: 25px; }
  .consent-layer { padding: 10px; }
  .consent-card { max-height: calc(100svh - 20px); overflow-y: auto; padding: 20px; }
  .consent-actions { grid-template-columns: 1fr; }
  .consent-button[data-consent-save] { grid-column: auto; }
}

@media (max-width: 520px) {
  .advertise-preview-creative { min-height: 280px; padding: 23px; }
  .advertise-preview-meta { align-items: flex-start; flex-direction: column; }
  .advertise-steps { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px; }
  .consent-heading h2 { font-size: 20px; }
  .consent-icon { width: 40px; height: 40px; }
  .consent-copy { font-size: 12px; }
  .consent-option { align-items: flex-start; }
}
