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

:root {
  --ink: #111512;
  --ink-2: #252a26;
  --charcoal: #080a0c;
  --charcoal-2: #111513;
  --charcoal-3: #1a201d;
  --paper: #f1f4f0;
  --paper-2: #e4eae4;
  --paper-3: #fbfcf8;
  --white: #f8faf4;
  --muted-dark: rgba(17, 21, 18, 0.64);
  --muted-light: rgba(248, 250, 244, 0.68);
  --line-dark: rgba(248, 250, 244, 0.13);
  --line-dark-soft: rgba(248, 250, 244, 0.08);
  --line-light: rgba(17, 21, 18, 0.14);
  --line-light-soft: rgba(17, 21, 18, 0.08);
  --teal: #43c4b6;
  --teal-2: #b7eee6;
  --amber: #e2ad50;
  --red: #e16f5c;
  --green: #82c985;
  --steel: #78929a;
  --sample-vehicle-image: url("assets/otozeka-corolla-illustration.png");
  --radius: 8px;
  --max: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-page {
  background: var(--paper);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

svg {
  display: block;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

::selection {
  background: var(--teal);
  color: var(--charcoal);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 20px;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.site-nav.scrolled,
.site-nav.menu-open {
  border-bottom: 1px solid var(--line-dark-soft);
  background: rgba(8, 10, 12, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav__inner,
.mobile-menu,
.hero__inner,
.proof-strip__inner,
.section__intro,
.analysis-desk,
.intel-grid,
.risk-cockpit,
.listing-compare,
.decision-board,
.buyer-flow__layout,
.trust-grid,
.trust-rules,
.privacy__layout,
.download__inner,
.faq__list,
.footer__inner,
.legal-nav__inner,
.legal-main {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.site-nav__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-nav.scrolled .site-nav__inner,
.site-nav.menu-open .site-nav__inner {
  border-color: var(--line-dark-soft);
  background: rgba(17, 21, 19, 0.74);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand__group {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.brand__mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.16), rgba(255, 250, 241, 0.02) 48%),
    var(--charcoal-2);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
  content: "";
  position: absolute;
  display: block;
}

.brand__mark::before {
  width: 21px;
  height: 13px;
  left: 6px;
  top: 12px;
  border: 2px solid var(--white);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.brand__mark::after {
  width: 10px;
  height: 10px;
  left: 12px;
  top: 16px;
  border: 2px solid var(--teal);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.brand__mark span {
  inset: auto 7px 8px;
  height: 1px;
  background: rgba(255, 250, 241, 0.7);
}

.brand__text {
  color: var(--white);
  font-size: 22px;
  font-weight: 860;
  line-height: 1;
}

.brand__descriptor {
  color: rgba(255, 250, 241, 0.58);
  font-size: 10px;
  font-weight: 720;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav__links a,
.footer__links a {
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-nav__links a:hover,
.footer__links a:hover {
  color: var(--white);
}

.site-nav__cta,
.legal-nav__back {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 250, 241, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.site-nav__cta:hover,
.legal-nav__back:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 250, 241, 0.45);
  background: rgba(255, 250, 241, 0.14);
}

.site-nav__menu {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.07);
  color: var(--white);
  cursor: pointer;
}

.site-nav__menu span {
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav__menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__menu.active span:nth-child(2) {
  opacity: 0;
}

.site-nav__menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: calc(100vh - 86px);
  overflow-y: auto;
  display: none;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid var(--line-dark-soft);
  border-radius: var(--radius);
  background: rgba(13, 16, 15, 0.98);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overscroll-behavior: contain;
}

.mobile-menu.open {
  display: grid;
  gap: 2px;
}

.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: rgba(255, 250, 241, 0.74);
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu__cta {
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 122px 20px 64px;
  background: var(--charcoal);
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.86;
  filter: saturate(0.92) contrast(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.94) 0%, rgba(8, 10, 12, 0.78) 40%, rgba(8, 10, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.34) 0%, rgba(8, 10, 12, 0.34) 45%, rgba(8, 10, 12, 0.92) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 241, 0.22), transparent);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 430px);
  gap: 52px;
  align-items: end;
}

.hero__copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-2);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.74;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

h1 {
  color: var(--white);
  font-size: 96px;
  font-weight: 900;
  line-height: 0.95;
}

.hero__statement {
  max-width: 760px;
  margin-top: 16px;
  color: var(--white);
  font-size: 43px;
  font-weight: 860;
  line-height: 1.06;
}

.hero__lead {
  max-width: 660px;
  margin-top: 21px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 17px;
  line-height: 1.72;
}

.hero__actions,
.download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-button {
  min-height: 56px;
  min-width: 174px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(10, 12, 12, 0.92);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.08), 0 18px 42px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.store-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 250, 241, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.12), transparent),
    rgba(14, 17, 16, 0.98);
}

.store-button--primary {
  border-color: rgba(255, 250, 241, 0.94);
  background: linear-gradient(180deg, #fffdf8, #e9e1d6);
  color: var(--ink);
}

.store-button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button span {
  display: grid;
  gap: 1px;
  font-size: 15px;
  font-weight: 830;
  line-height: 1.08;
}

.store-button small {
  color: currentColor;
  opacity: 0.62;
  font-size: 11px;
  font-weight: 690;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero__badges span,
.download-proof span,
.privacy-toggles span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 760;
}

.hero__badges span,
.download-proof span {
  border: 1px solid rgba(255, 250, 241, 0.13);
  background: rgba(255, 250, 241, 0.045);
  color: rgba(255, 250, 241, 0.74);
}

.hero-report {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.12), rgba(255, 250, 241, 0.035)),
    rgba(10, 13, 12, 0.62);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-report::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 250, 241, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 241, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.64), transparent 82%);
}

.hero-report > * {
  position: relative;
  z-index: 1;
}

.hero-report__top,
.hero-report__score {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.hero-report__top {
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.1);
}

.hero-report__top span,
.hero-report__score span,
.hero-report__question span {
  color: var(--teal-2);
  font-size: 10.5px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-report__top strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.16;
}

.hero-report__top small {
  color: rgba(255, 250, 241, 0.52);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.hero-report__score {
  align-items: center;
  padding-top: 20px;
}

.hero-report__score strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 31px;
  font-weight: 880;
  line-height: 1;
}

.hero-report__score p {
  max-width: 230px;
  margin-top: 8px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.hero-report__score i {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background:
    linear-gradient(rgba(14, 18, 16, 0.95), rgba(14, 18, 16, 0.95)) padding-box,
    conic-gradient(var(--amber) 0 68%, rgba(255, 250, 241, 0.14) 68% 100%) border-box;
  border: 2px solid transparent;
  color: var(--white);
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

.hero-report__scale {
  position: relative;
  height: 9px;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 99px;
  background: rgba(255, 250, 241, 0.1);
}

.hero-report__scale span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
}

.hero-report__signals {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.hero-report__signals p {
  display: grid;
  grid-template-columns: 9px auto 1fr;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 250, 241, 0.09);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.04);
  color: rgba(255, 250, 241, 0.66);
  font-size: 12.5px;
}

.hero-report__signals strong {
  color: var(--white);
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(67, 196, 182, 0.1);
}

.signal-dot--danger {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 111, 92, 0.12);
}

.signal-dot--warning {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(226, 173, 80, 0.12);
}

.hero-report__question {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid rgba(67, 196, 182, 0.24);
  border-radius: var(--radius);
  background: rgba(67, 196, 182, 0.08);
}

.hero-report__question p {
  margin-top: 7px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 14px;
  line-height: 1.48;
}

.hero-showcase {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding-bottom: 30px;
}

.hero-console {
  position: relative;
  width: min(100%, 392px);
  padding: 14px;
  border: 1px solid rgba(248, 250, 244, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 250, 244, 0.12), rgba(248, 250, 244, 0.04)),
    rgba(8, 10, 12, 0.72);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border-radius: 6px;
  background:
    linear-gradient(rgba(248, 250, 244, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 244, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 82%);
}

.hero-console > * {
  position: relative;
  z-index: 1;
}

.hero-console__bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px 12px;
  border-bottom: 1px solid rgba(248, 250, 244, 0.1);
}

.hero-console__bar span {
  color: var(--white);
  font-size: 16px;
  font-weight: 880;
}

.hero-console__image {
  min-height: 128px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 244, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.04), rgba(8, 10, 12, 0.44)),
    var(--sample-vehicle-image) center / cover;
}

.hero-console__bar small,
.hero-console__vehicle span,
.hero-console__score span,
.hero-float span {
  color: var(--teal-2);
  font-size: 10.5px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-console__vehicle {
  padding: 16px 2px 15px;
}

.hero-console__vehicle strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 24px;
  font-weight: 870;
  line-height: 1.08;
}

.hero-console__vehicle p {
  margin-top: 9px;
  color: rgba(248, 250, 244, 0.62);
  font-size: 13px;
  line-height: 1.48;
}

.hero-console__score {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(248, 250, 244, 0.11);
  border-radius: var(--radius);
  background: rgba(248, 250, 244, 0.055);
}

.hero-console__score > strong {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background:
    linear-gradient(rgba(14, 18, 16, 0.96), rgba(14, 18, 16, 0.96)) padding-box,
    conic-gradient(var(--amber) 0 68%, rgba(248, 250, 244, 0.14) 68% 100%) border-box;
  border: 2px solid transparent;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.hero-console__score b {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.08;
}

.hero-console__score p {
  margin-top: 7px;
  color: rgba(248, 250, 244, 0.62);
  font-size: 12.5px;
  line-height: 1.45;
}

.hero-console__meter {
  height: 8px;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 99px;
  background: rgba(248, 250, 244, 0.1);
}

.hero-console__meter span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
}

.hero-console__signals {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}

.hero-console__signals p {
  display: grid;
  grid-template-columns: 9px auto 1fr;
  gap: 9px;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(248, 250, 244, 0.09);
  border-radius: 6px;
  background: rgba(248, 250, 244, 0.04);
  color: rgba(248, 250, 244, 0.64);
  font-size: 12.5px;
}

.hero-console__signals i {
  display: block;
  font-style: normal;
}

.hero-console__signals strong {
  color: var(--white);
}

.hero-float {
  position: absolute;
  width: 230px;
  padding: 14px;
  border: 1px solid rgba(248, 250, 244, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 250, 244, 0.14), rgba(248, 250, 244, 0.045)),
    rgba(12, 15, 14, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-float strong {
  display: block;
  margin-top: 7px;
  color: rgba(248, 250, 244, 0.88);
  font-size: 14px;
  line-height: 1.35;
}

.hero-float--top {
  top: 44px;
  right: -14px;
}

.hero-float--bottom {
  left: -22px;
  bottom: 18px;
}

.proof-strip {
  background: var(--paper);
  color: var(--ink);
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.proof-strip__inner div {
  min-height: 126px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
}

.proof-strip__inner div:last-child {
  border-right: 0;
}

.proof-strip span,
.desk-heading span,
.source-card span,
.finding-card span,
.market-panel span,
.next-action span,
.tile-head span,
.message span,
.privacy-panel__top span,
.trust-rules span {
  color: #267b73;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  max-width: 280px;
  margin-top: 9px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 830;
  line-height: 1.3;
}

.section {
  padding: 92px 20px;
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section__intro {
  max-width: 780px;
  text-align: center;
}

.section__intro--left {
  margin-inline: 0;
  text-align: left;
}

.section__intro--split {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
  text-align: left;
}

.section--light .eyebrow,
.faq .eyebrow {
  color: #267b73;
}

.section__intro h2,
.download h2,
.faq__intro h2,
.legal-main h1 {
  color: inherit;
  font-size: 48px;
  font-weight: 870;
  line-height: 1.08;
}

.section__intro p,
.download p {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.72;
}

.analysis .section__intro p,
.trust .section__intro p,
.download p {
  color: var(--muted-light);
}

.product-system {
  position: relative;
  padding-top: 104px;
  overflow: hidden;
}

.product-system::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 18, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 16, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 62%);
}

.product-focus {
  position: relative;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: 16px;
  margin: 44px auto 0;
  z-index: 1;
}

.product-focus__visual,
.product-focus__panel {
  min-width: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08)),
    var(--paper-3);
  box-shadow: 0 24px 70px rgba(16, 18, 16, 0.08);
}

.product-focus__visual {
  overflow: hidden;
}

.listing-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.72fr);
  min-height: 360px;
}

.listing-preview__image {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(16, 18, 16, 0.04), rgba(16, 18, 16, 0.42)),
    var(--sample-vehicle-image) center / cover;
}

.listing-preview__body {
  display: grid;
  align-content: end;
  padding: 28px;
  border-left: 1px solid var(--line-light);
}

.listing-preview__body span,
.panel-label,
.evidence-rail span,
.product-principles span,
.action-note span {
  color: #267b73;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.listing-preview__body strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 870;
  line-height: 1.08;
}

.listing-preview__body p {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.62;
}

.image-credit {
  display: block;
  margin-top: 16px;
  color: rgba(17, 21, 18, 0.46);
  font-size: 11px;
  line-height: 1.35;
  text-decoration: none;
}

.image-credit:hover {
  color: rgba(17, 21, 18, 0.7);
}

.evidence-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.evidence-rail div {
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid var(--line-light);
}

.evidence-rail div:last-child {
  border-right: 0;
}

.evidence-rail strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.38;
}

.product-focus__panel {
  display: grid;
  align-content: start;
  padding: 26px;
}

.decision-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-top: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}

.decision-head h3 {
  color: var(--ink);
  font-size: 36px;
  font-weight: 880;
  line-height: 1.04;
}

.decision-head p {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.62;
}

.decision-head > strong {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background:
    linear-gradient(var(--paper-3), var(--paper-3)) padding-box,
    conic-gradient(var(--amber) 0 68%, rgba(16, 18, 16, 0.12) 68% 100%) border-box;
  border: 2px solid transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 880;
}

.signal-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.clean-signal {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line-light-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.3);
}

.clean-signal span {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 99px;
  background: var(--teal);
}

.clean-signal--danger span {
  background: var(--red);
}

.clean-signal--warning span {
  background: var(--amber);
}

.clean-signal p {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.5;
}

.clean-signal strong {
  color: var(--ink);
}

.action-note {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(38, 123, 115, 0.2);
  border-radius: var(--radius);
  background: rgba(38, 123, 115, 0.08);
}

.action-note strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.42;
}

.product-principles {
  position: relative;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px auto 0;
  z-index: 1;
}

.product-principles div {
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.72);
}

.product-principles strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.28;
}

.product-principles p {
  margin-top: 9px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.report-standard {
  position: relative;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  margin: 18px auto 0;
  z-index: 1;
}

.report-standard__copy,
.standard-stack {
  min-width: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.14)),
    var(--paper-3);
  box-shadow: 0 22px 64px rgba(17, 21, 18, 0.07);
}

.report-standard__copy {
  min-height: 350px;
  display: grid;
  align-content: center;
  padding: 30px;
  background:
    linear-gradient(140deg, rgba(67, 196, 182, 0.11), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.1)),
    var(--paper-3);
}

.report-standard__copy span,
.standard-row > span {
  color: #267b73;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.report-standard__copy h3 {
  max-width: 420px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 870;
  line-height: 1.06;
}

.report-standard__copy p {
  max-width: 470px;
  margin-top: 15px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.68;
}

.standard-stack {
  overflow: hidden;
  display: grid;
  align-content: stretch;
}

.standard-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line-light-soft);
}

.standard-row:last-child {
  border-bottom: 0;
}

.standard-row > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: rgba(38, 123, 115, 0.1);
}

.standard-row strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.24;
}

.standard-row p {
  margin-top: 6px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.5;
}

.standard-row em {
  min-width: 112px;
  display: inline-flex;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(38, 123, 115, 0.18);
  border-radius: 6px;
  background: rgba(38, 123, 115, 0.08);
  color: #195e57;
  font-style: normal;
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
}

.standard-row--danger > span,
.standard-row--danger em {
  background: rgba(225, 111, 92, 0.1);
  color: #8b3327;
}

.standard-row--warning > span,
.standard-row--warning em {
  background: rgba(226, 173, 80, 0.12);
  color: #80581d;
}

.standard-row--good > span,
.standard-row--good em {
  background: rgba(67, 196, 182, 0.1);
  color: #195e57;
}

.analysis-desk {
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(300px, 1.18fr) minmax(260px, 0.9fr);
  gap: 14px;
  margin-top: 42px;
}

.product-system {
  position: relative;
}

.desk-column {
  min-width: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent),
    var(--paper-3);
}

.desk-column--source {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent),
    #fff9ef;
}

.desk-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.desk-heading strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.source-stack,
.engine-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.source-card {
  min-height: 88px;
  display: grid;
  align-content: end;
  padding: 14px;
  border: 1px solid var(--line-light-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.32);
}

.source-card--photo {
  min-height: 152px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 18, 16, 0.02), rgba(16, 18, 16, 0.62)),
    var(--sample-vehicle-image) center / cover;
}

.source-card strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.source-card--photo span,
.source-card--photo strong {
  color: var(--white);
}

.signal-radar {
  position: relative;
  min-height: 218px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 16, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(16, 18, 16, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 16, 0.05) 1px, transparent 1px),
    #ece4d8;
  background-size: 28px 28px;
}

.radar-line {
  position: absolute;
  inset: auto 10% 50%;
  height: 1px;
  background: rgba(38, 123, 115, 0.32);
}

.radar-line--one {
  transform: rotate(28deg);
}

.radar-line--two {
  transform: rotate(-22deg);
}

.radar-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(67, 196, 182, 0.12);
}

.radar-dot--risk {
  left: 22%;
  top: 32%;
  background: var(--red);
}

.radar-dot--price {
  right: 24%;
  top: 42%;
  background: var(--amber);
}

.radar-dot--doc {
  left: 48%;
  bottom: 24%;
}

.engine-list p {
  padding: 13px;
  border: 1px solid var(--line-light-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.28);
  color: var(--muted-dark);
  font-size: 13.5px;
  line-height: 1.5;
}

.engine-list strong {
  color: var(--ink);
}

.verdict-summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.verdict-summary span {
  color: #267b73;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.verdict-summary strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 870;
  line-height: 1.04;
}

.verdict-score {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background:
    linear-gradient(var(--paper-3), var(--paper-3)) padding-box,
    conic-gradient(var(--amber) 0 68%, rgba(16, 18, 16, 0.12) 68% 100%) border-box;
  border: 2px solid transparent;
  color: var(--ink);
  font-size: 17px;
  font-weight: 880;
}

.verdict-scale {
  position: relative;
  height: 10px;
  overflow: hidden;
  margin-top: 24px;
  border-radius: 99px;
  background: rgba(16, 18, 16, 0.1);
}

.verdict-scale span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
}

.desk-column--verdict ul {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-left: 20px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.55;
}

.desk-column--verdict li::marker {
  color: #267b73;
}

.input-intelligence {
  padding-top: 32px;
}

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

.intel-card {
  min-height: 298px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.06)),
    var(--paper-3);
}

.intel-card--image {
  background:
    linear-gradient(180deg, rgba(16, 18, 16, 0.1), rgba(16, 18, 16, 0.82)),
    var(--sample-vehicle-image) center / cover;
  color: var(--white);
}

.intel-card span {
  color: #267b73;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.intel-card--image span {
  color: var(--teal-2);
}

.intel-card h3 {
  margin-top: 10px;
  color: inherit;
  font-size: 25px;
  font-weight: 850;
  line-height: 1.1;
}

.intel-card p {
  margin-top: 12px;
  color: var(--muted-dark);
  font-size: 14.5px;
  line-height: 1.58;
}

.intel-card--image p {
  color: rgba(255, 250, 241, 0.72);
}

.analysis {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.055), transparent 220px),
    linear-gradient(120deg, #0b0d0d 0%, #131817 100%);
  color: var(--white);
}

.risk-cockpit {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.cockpit-sidebar,
.cockpit-main {
  min-width: 0;
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.065), rgba(255, 250, 241, 0.02)),
    rgba(255, 250, 241, 0.03);
}

.cockpit-sidebar {
  padding: 24px;
}

.cockpit-sidebar > span {
  color: var(--teal-2);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.cockpit-sidebar > strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.1;
}

.cockpit-score {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 241, 0.1);
}

.cockpit-score span {
  color: rgba(255, 250, 241, 0.52);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.cockpit-score strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.94;
}

.cockpit-sidebar p {
  margin-top: 20px;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.65;
}

.cockpit-main {
  padding: 20px;
}

.insight-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.045);
}

.insight-tabs__tab {
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.insight-tabs__tab.active {
  background: var(--white);
  color: var(--ink);
}

.insight-panel {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.finding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.finding-card {
  min-height: 218px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.04);
}

.finding-card span {
  color: var(--teal-2);
}

.finding-card--danger span {
  color: #ffb1a6;
}

.finding-card--warning span {
  color: #f2cf8a;
}

.finding-card h3 {
  margin-top: 14px;
  color: var(--white);
  font-size: 20px;
  font-weight: 840;
  line-height: 1.16;
}

.finding-card p {
  margin-top: 12px;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.58;
}

.market-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.04);
}

.market-panel span {
  color: var(--teal-2);
}

.market-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
}

.market-panel p {
  margin-top: 12px;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.6;
}

.market-bars {
  min-height: 160px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 250, 241, 0.06) 1px, transparent 1px),
    rgba(255, 250, 241, 0.035);
  background-size: 100% 32px;
}

.market-bars span {
  flex: 1;
  min-width: 16px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--amber), rgba(226, 173, 80, 0.28));
}

.evidence-list {
  display: grid;
  gap: 11px;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.58;
  list-style: none;
}

.evidence-list li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: start;
}

.dot {
  width: 8px;
  height: 8px;
  display: block;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(67, 196, 182, 0.1);
}

.dot--warning {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(226, 173, 80, 0.1);
}

.seller-script {
  display: grid;
  gap: 10px;
}

.script-bubble {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.04);
}

.script-bubble span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: rgba(67, 196, 182, 0.14);
  color: var(--teal-2);
  font-size: 12px;
  font-weight: 850;
}

.script-bubble p {
  color: rgba(255, 250, 241, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.next-action {
  padding: 16px;
  border: 1px solid rgba(67, 196, 182, 0.24);
  border-radius: var(--radius);
  background: rgba(67, 196, 182, 0.08);
}

.next-action span {
  color: var(--teal-2);
}

.next-action strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.34;
}

.compare {
  border-bottom: 1px solid var(--line-light);
}

.decision-board {
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-3);
  box-shadow: 0 28px 80px rgba(17, 21, 18, 0.08);
}

.decision-board__header,
.decision-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(142px, 0.78fr) minmax(112px, 0.58fr) minmax(142px, 0.72fr) minmax(180px, 0.94fr);
  align-items: stretch;
}

.decision-board__header {
  min-height: 50px;
  align-items: center;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line-light);
  background: #e9efe9;
}

.decision-board__header span {
  color: rgba(17, 21, 18, 0.54);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.decision-row {
  border-bottom: 1px solid var(--line-light-soft);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08)),
    var(--paper-3);
}

.decision-row:last-child {
  border-bottom: 0;
}

.decision-cell,
.decision-status,
.decision-score {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line-light-soft);
}

.decision-cell:last-child {
  border-right: 0;
}

.decision-cell--listing {
  background:
    linear-gradient(120deg, rgba(67, 196, 182, 0.08), transparent),
    rgba(255, 255, 255, 0.24);
}

.decision-cell span,
.decision-score span {
  display: block;
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.decision-cell--listing > span {
  margin-top: 0;
  color: #267b73;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.decision-cell strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.24;
}

.decision-cell--listing strong {
  margin-top: 7px;
  font-size: 20px;
}

.decision-cell p {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.5;
}

.decision-status {
  display: grid;
  align-content: center;
  color: #80581d;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.decision-score {
  display: grid;
  align-content: center;
}

.decision-score strong {
  color: var(--ink);
  font-size: 34px;
  font-weight: 890;
  line-height: 0.95;
}

.decision-row--good .decision-status {
  color: #195e57;
}

.decision-row--good {
  box-shadow: inset 3px 0 0 rgba(67, 196, 182, 0.72);
}

.decision-row--warning .decision-status {
  color: #80581d;
}

.decision-row--warning {
  box-shadow: inset 3px 0 0 rgba(226, 173, 80, 0.78);
}

.decision-row--danger .decision-status {
  color: #8b3327;
}

.decision-row--danger {
  box-shadow: inset 3px 0 0 rgba(225, 111, 92, 0.72);
}

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

.listing-tile {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-3);
}

.listing-tile--featured {
  box-shadow: 0 24px 70px rgba(16, 18, 16, 0.14);
}

.tile-photo {
  min-height: 172px;
  background:
    linear-gradient(180deg, rgba(16, 18, 16, 0.04), rgba(16, 18, 16, 0.38)),
    var(--sample-vehicle-image) center / cover;
}

.tile-photo--one {
  background-position: center;
}

.tile-photo--two {
  background-position: 62% center;
}

.tile-photo--three {
  background-position: 38% center;
}

.tile-head,
.tile-metrics,
.tile-verdict {
  margin-inline: 18px;
}

.tile-head {
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line-light-soft);
}

.tile-head strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.16;
}

.tile-metrics {
  display: grid;
  gap: 10px;
  padding: 16px 0;
}

.tile-metrics p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-dark);
  font-size: 14px;
}

.tile-metrics strong {
  color: var(--ink);
}

.tile-verdict {
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 820;
}

.tile-verdict--warning {
  background: rgba(226, 173, 80, 0.12);
  color: #80581d;
}

.tile-verdict--good {
  background: rgba(38, 123, 115, 0.1);
  color: #195e57;
}

.tile-verdict--danger {
  background: rgba(225, 111, 92, 0.11);
  color: #8b3327;
}

.buyer-flow {
  padding-top: 34px;
}

.buyer-flow__layout,
.privacy__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.conversation-panel {
  display: grid;
  gap: 12px;
}

.playbook-panel {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-3);
  box-shadow: 0 24px 70px rgba(17, 21, 18, 0.08);
}

.playbook-panel__top {
  padding: 24px;
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(120deg, rgba(67, 196, 182, 0.1), transparent 46%, rgba(226, 173, 80, 0.08)),
    rgba(255, 255, 255, 0.34);
}

.playbook-panel__top span,
.playbook-steps > li > span,
.seller-line span {
  color: #267b73;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.playbook-panel__top strong {
  display: block;
  max-width: 520px;
  margin-top: 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
}

.playbook-steps {
  display: grid;
  list-style: none;
  padding: 0 24px;
}

.playbook-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light-soft);
}

.playbook-steps > li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: rgba(38, 123, 115, 0.1);
}

.playbook-steps strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.24;
}

.playbook-steps p {
  margin-top: 6px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.seller-line {
  margin: 0 24px 24px;
  padding: 16px;
  border: 1px solid rgba(38, 123, 115, 0.2);
  border-radius: var(--radius);
  background: rgba(38, 123, 115, 0.08);
}

.seller-line p {
  margin-top: 7px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.5;
}

.message {
  width: min(100%, 520px);
  padding: 16px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-3);
}

.message--system {
  border-color: rgba(38, 123, 115, 0.18);
}

.message--buyer {
  justify-self: end;
  background: #e8f4f1;
}

.message--warning {
  background: #fff0db;
}

.message p {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.58;
}

.trust {
  background: var(--charcoal);
  color: var(--white);
  border-top: 1px solid var(--line-dark-soft);
  border-bottom: 1px solid var(--line-dark-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.trust-card {
  padding: 28px;
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.06), rgba(255, 250, 241, 0.018)),
    var(--charcoal-2);
}

.trust-card--quiet {
  background:
    linear-gradient(180deg, rgba(226, 173, 80, 0.08), rgba(255, 250, 241, 0.018)),
    var(--charcoal-2);
}

.trust-card h3 {
  color: var(--white);
  font-size: 25px;
  font-weight: 840;
  line-height: 1.16;
}

.trust-card ul {
  display: grid;
  gap: 13px;
  margin-top: 20px;
  padding-left: 21px;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.6;
}

.trust-card li::marker {
  color: var(--teal);
}

.trust-card--quiet li::marker {
  color: var(--amber);
}

.trust-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.12);
}

.trust-rules div {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.05), rgba(255, 250, 241, 0.018)),
    var(--charcoal-2);
}

.trust-rules span {
  color: var(--teal-2);
}

.trust-rules p {
  margin-top: 9px;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.58;
}

.privacy {
  border-bottom: 1px solid var(--line-light);
}

.privacy-panel {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-3);
}

.privacy-panel__top {
  padding: 22px;
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(120deg, rgba(38, 123, 115, 0.1), transparent),
    rgba(255, 255, 255, 0.35);
}

.privacy-panel__top strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.14;
}

.privacy-list {
  display: grid;
  padding-inline: 22px;
}

.privacy-list p {
  padding: 21px 0;
  border-bottom: 1px solid var(--line-light-soft);
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.68;
}

.privacy-list strong {
  color: var(--ink);
  font-weight: 820;
}

.privacy-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 22px 22px;
}

.privacy-toggles span {
  border: 1px solid rgba(38, 123, 115, 0.2);
  background: rgba(38, 123, 115, 0.08);
  color: #195e57;
}

.download {
  padding: 86px 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.06), transparent 220px),
    #0b0d0d;
  color: var(--white);
}

.download__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(67, 196, 182, 0.12), transparent 38%, rgba(226, 173, 80, 0.1)),
    rgba(255, 250, 241, 0.045);
}

.download__copy {
  max-width: 680px;
}

.download h2 {
  max-width: 660px;
  color: var(--white);
}

.download p {
  max-width: 620px;
}

.download__actions {
  margin-top: 0;
  justify-content: flex-end;
}

.download-proof {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 241, 0.1);
}

.faq {
  background: var(--paper);
  color: var(--ink);
}

.faq__intro {
  max-width: 700px;
  text-align: center;
}

.faq__list {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line-light);
}

.faq__item {
  border-bottom: 1px solid var(--line-light);
  transition: background 0.18s ease;
}

.faq__item:hover {
  background: rgba(255, 255, 255, 0.34);
}

.faq__item summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 780;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq__item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: rgba(16, 18, 16, 0.58);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "-";
}

.faq__item p {
  max-width: 820px;
  padding: 0 56px 24px 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.68;
}

.footer {
  padding: 54px 20px 40px;
  border-top: 1px solid var(--line-dark-soft);
  background: var(--charcoal);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 34px 56px;
  align-items: start;
}

.footer__brand p {
  max-width: 440px;
  margin-top: 15px;
  color: rgba(255, 250, 241, 0.58);
  font-size: 14px;
  line-height: 1.64;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer__copy {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark-soft);
  color: rgba(255, 250, 241, 0.42);
  font-size: 13px;
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 900;
  display: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.mobile-cta a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 241, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8, #e9e1d6);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-weight: 840;
  text-decoration: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.js .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal[data-delay="1"] {
  transition-delay: 0.06s;
}

.js .reveal[data-delay="2"] {
  transition-delay: 0.12s;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.05), transparent 220px),
    var(--charcoal);
  color: var(--white);
}

.legal-nav {
  padding: 20px;
  border-bottom: 1px solid var(--line-dark-soft);
}

.legal-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-main {
  max-width: 780px;
  padding: 70px 20px 94px;
}

.legal-main h1 {
  margin-bottom: 10px;
  color: var(--white);
}

.legal-main h2 {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark-soft);
  color: var(--white);
  font-size: 23px;
  font-weight: 820;
  line-height: 1.2;
}

.legal-main h2:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal-main p,
.legal-main li {
  color: rgba(255, 250, 241, 0.72);
  font-size: 16px;
  line-height: 1.82;
}

.legal-main p {
  margin-top: 13px;
}

.legal-main ul {
  display: grid;
  gap: 10px;
  margin-top: 15px;
  padding-left: 22px;
}

.legal-main a {
  color: var(--teal-2);
  font-weight: 750;
}

.legal-main table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  border: 1px solid var(--line-dark-soft);
  border-radius: var(--radius);
  overflow: hidden;
  color: rgba(255, 250, 241, 0.72);
  font-size: 14.5px;
}

.legal-main th,
.legal-main td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line-dark-soft);
  text-align: left;
  vertical-align: top;
}

.legal-main th {
  background: rgba(255, 250, 241, 0.055);
  color: var(--white);
  font-weight: 780;
}

.legal-main tr:last-child td {
  border-bottom: 0;
}

.legal-updated {
  color: rgba(255, 250, 241, 0.52) !important;
}

.legal-footer {
  padding: 25px 20px 34px;
  border-top: 1px solid var(--line-dark-soft);
  color: rgba(255, 250, 241, 0.52);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-nav__links,
  .site-nav__cta {
    display: none;
  }

  .site-nav__menu {
    display: flex;
  }

  h1 {
    font-size: 74px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-report {
    width: min(100%, 560px);
  }

  .hero-showcase {
    width: min(100%, 620px);
    min-height: 0;
    justify-items: start;
  }

  .hero__statement {
    font-size: 36px;
  }

  .section__intro h2,
  .download h2,
  .faq__intro h2,
  .legal-main h1 {
    font-size: 42px;
  }

  .analysis-desk,
  .intel-grid,
  .listing-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-focus {
    grid-template-columns: 1fr;
  }

  .product-focus__panel {
    padding: 24px;
  }

  .desk-column--engine {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .risk-cockpit,
  .buyer-flow__layout,
  .privacy__layout,
  .download__inner {
    grid-template-columns: 1fr;
  }

  .download__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
    padding: 98px 16px 42px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 10, 12, 0.68), rgba(8, 10, 12, 0.46) 42%, rgba(8, 10, 12, 0.92)),
      linear-gradient(90deg, rgba(8, 10, 12, 0.86), rgba(8, 10, 12, 0.22));
  }

  .hero__media img {
    object-position: 58% center;
  }

  h1 {
    font-size: 58px;
  }

  .hero__statement {
    max-width: 420px;
    font-size: 31px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero-report {
    padding: 16px;
  }

  .hero-report__score {
    align-items: start;
  }

  .hero-report__score strong {
    font-size: 27px;
  }

  .hero-report__signals p {
    grid-template-columns: 9px 1fr;
    gap: 2px 9px;
    padding-block: 9px;
  }

  .hero-report__signals strong {
    grid-column: 2;
  }

  .hero-showcase {
    display: grid;
    gap: 12px;
    padding-bottom: 0;
  }

  .hero-console {
    width: 100%;
    padding: 12px;
  }

  .hero-console__image {
    min-height: 0;
    aspect-ratio: 16 / 9;
    background-position: center;
  }

  .hero-console__vehicle strong {
    font-size: 21px;
  }

  .hero-console__score {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .hero-console__score > strong {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .hero-console__score b {
    font-size: 20px;
  }

  .hero-float {
    position: static;
    width: 100%;
  }

  .hero-console__signals p {
    grid-template-columns: 9px 1fr;
    gap: 2px 9px;
    padding-block: 9px;
  }

  .hero-console__signals strong,
  .hero-console__signals span {
    grid-column: 2;
  }

  .hero__actions,
  .download__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
  }

  .proof-strip {
    padding-inline: 16px;
  }

  .proof-strip__inner {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line-light);
  }

  .proof-strip__inner div,
  .proof-strip__inner div:last-child {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-strip__inner div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 16px;
  }

  .section__intro,
  .faq__intro {
    text-align: left;
  }

  .section__intro--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section__intro h2,
  .download h2,
  .faq__intro h2,
  .legal-main h1 {
    font-size: 35px;
    line-height: 1.12;
  }

  .section__intro p,
  .download p {
    font-size: 16px;
  }

  .analysis-desk,
  .intel-grid,
  .finding-grid,
  .listing-compare,
  .report-standard,
  .trust-grid,
  .product-principles,
  .trust-rules {
    grid-template-columns: 1fr;
  }

  .product-system {
    padding-top: 72px;
  }

  .product-focus {
    margin-top: 34px;
  }

  .report-standard {
    margin-top: 14px;
  }

  .report-standard__copy {
    min-height: 0;
    padding: 24px;
  }

  .report-standard__copy h3 {
    font-size: 29px;
  }

  .standard-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .standard-row em {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
  }

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

  .listing-preview__image {
    min-height: 0;
    aspect-ratio: 16 / 9;
    background-position: center;
  }

  .listing-preview__body {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .evidence-rail {
    grid-template-columns: 1fr;
  }

  .evidence-rail div,
  .evidence-rail div:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .evidence-rail div:last-child {
    border-bottom: 0;
  }

  .desk-column,
  .intel-card {
    min-height: 0;
  }

  .desk-column--engine {
    grid-column: auto;
  }

  .market-panel {
    grid-template-columns: 1fr;
  }

  .market-bars {
    min-height: 130px;
  }

  .insight-tabs {
    grid-template-columns: 1fr;
  }

  .decision-board {
    margin-top: 34px;
  }

  .decision-board__header {
    display: none;
  }

  .decision-row {
    grid-template-columns: 1fr;
  }

  .decision-cell,
  .decision-status,
  .decision-score {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light-soft);
  }

  .decision-row .decision-cell:last-child,
  .decision-row .decision-status,
  .decision-row .decision-score {
    border-right: 0;
  }

  .decision-row > *:last-child {
    border-bottom: 0;
  }

  .buyer-flow {
    padding-top: 18px;
  }

  .message {
    width: 100%;
  }

  .playbook-panel__top,
  .playbook-steps {
    padding-inline: 18px;
  }

  .seller-line {
    margin-inline: 18px;
  }

  .download__inner {
    padding: 24px;
  }

  .download-proof {
    padding-top: 18px;
  }

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

  .footer__links {
    justify-content: flex-start;
  }

  .footer {
    padding-bottom: calc(94px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    display: block;
  }

  .legal-nav__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-nav__back {
    width: 100%;
  }

  .legal-main {
    padding-top: 46px;
  }

  .legal-main table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 50px;
  }

  .hero__statement {
    font-size: 28px;
  }

  .section__intro h2,
  .download h2,
  .faq__intro h2,
  .legal-main h1 {
    font-size: 31px;
  }

  .desk-column,
  .cockpit-sidebar,
  .cockpit-main,
  .trust-card,
  .privacy-panel__top {
    padding: 18px;
  }

  .cockpit-score strong {
    font-size: 58px;
  }

  .hero-console__score {
    grid-template-columns: 1fr;
  }

  .hero-console__score > strong {
    justify-self: start;
  }

  .hero-console__vehicle strong,
  .decision-cell--listing strong {
    overflow-wrap: anywhere;
  }
}

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