/* ============================================================
   OpenVIN — asphalt poly-noir
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0E0F12;
  color: #E8E6DF;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; }

img, svg { max-width: 100%; display: block; }

.vh, .skip {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  position: fixed; left: 1rem; top: 1rem; width: auto; height: auto;
  background: #F5C518; color: #0E0F12; padding: .5rem 1rem; z-index: 999;
  font-family: 'Space Mono', monospace; font-weight: 700;
}

.mono { font-family: 'Space Mono', monospace; letter-spacing: 0.04em; }

/* atmospheric overlays */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.paint {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(245,197,24,0.06), transparent 38%),
    radial-gradient(ellipse at 88% 78%, rgba(214,55,60,0.07), transparent 42%),
    radial-gradient(ellipse at 50% 50%, rgba(201,205,211,0.025), transparent 65%);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  position: relative; z-index: 5;
  background: #F5C518;
  color: #0E0F12;
  border-top: 1px solid #0E0F12;
  border-bottom: 1px solid #0E0F12;
  overflow: hidden;
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.ticker-track {
  display: inline-flex;
  gap: 3rem;
  padding: 0.55rem 0;
  white-space: nowrap;
  animation: tk 50s linear infinite;
  will-change: transform;
}
.ticker-track > span { padding-left: 3rem; }
.ticker-track .tk-key {
  font-style: normal;
  background: #0E0F12;
  color: #F5C518;
  padding: 2px 6px;
  margin-right: 6px;
}
@keyframes tk {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(14, 15, 18, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid #25272D;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.85rem;
  text-decoration: none;
  color: #E8E6DF;
}
.brand-mark {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #F5C518;
  color: #0E0F12;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.03em;
  border-radius: 2px;
  box-shadow: 0 0 0 1px #0E0F12, 0 0 0 3px #F5C518;
}
.brand-name { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-row {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-dot { color: #F5C518; padding: 0 4px; }
.brand-sub {
  font-family: 'Space Mono', monospace;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #6F7480;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav { display: block; }
.nav ul {
  display: flex; gap: 2rem; padding: 0; margin: 0; list-style: none;
}
.nav a {
  color: #C9CDD3;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.18s;
}
.nav a:hover { color: #F5C518; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: #F5C518;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s;
}
.nav a:hover::after { transform: scaleX(1); }

.menu-btn {
  display: none;
  background: transparent; border: 1px solid #25272D; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  border-radius: 2px;
}
.menu-btn span {
  width: 22px; height: 2px; background: #E8E6DF;
  transition: transform 0.22s, opacity 0.22s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(14,15,18,0.85);
  z-index: 18; opacity: 0; pointer-events: none; transition: opacity 0.22s;
  backdrop-filter: blur(6px);
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 2;
  padding: 7rem 2.5rem 6rem;
  overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: end;
}
.hero-tag {
  grid-column: 1 / -1;
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 6px 12px;
  border: 1px solid #25272D;
  background: #1A1C20;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F5C518;
  width: fit-content;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: #F5C518; display: inline-block;
}
.dot.pulse {
  position: relative;
  box-shadow: 0 0 0 0 rgba(245,197,24,.7);
  animation: pulse 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,.7); }
  50% { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}

.hero-title {
  grid-column: 1 / 2;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.6vw, 124px);
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: #F2EEE7;
  margin: 0;
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  color: #F5C518;
}
.hero-title span { display: block; }
.hero-title .row1, .hero-title .row3 { transform: translateX(0); }
.hero-title .row2, .hero-title .row4 { padding-left: 1.5rem; }

.hero-deck {
  grid-column: 2 / 3;
  align-self: end;
  font-size: 17px;
  color: #C9CDD3;
  margin: 0;
  max-width: 38ch;
  line-height: 1.6;
}
.hero-deck strong { color: #F2EEE7; font-weight: 600; }

.hero-stats {
  grid-column: 1 / -1;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid #25272D;
  padding-top: 2rem;
}
.stat {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #1A1C20 0%, #14161A 100%);
  border: 1px solid #25272D;
  border-left: 3px solid #F5C518;
  position: relative;
}
.stat-warn { border-left-color: #D6373C; }
.stat-key {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #6F7480;
}
.stat-num {
  display: inline-flex; align-items: baseline;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  color: #F2EEE7;
  letter-spacing: -0.01em;
}
.stat-num [data-odo] { display: inline-block; min-width: 1ch; }
.stat-num [data-odo].dollar::before { content: "$"; }
.stat-unit {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.5em;
  color: #F5C518;
  margin-left: 0.15em;
}
.stat-warn .stat-unit { color: #D6373C; }
.stat-fine {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #6F7480;
  text-transform: uppercase;
}

.hero-cta {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
  display: inline-flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}

.btn-pri {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  background: #F5C518;
  color: #0E0F12;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #F5C518;
  border-radius: 1px;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s, background 0.16s;
  box-shadow: 4px 4px 0 #0E0F12, 4px 4px 0 1px #F5C518;
}
.btn-pri:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #0E0F12, 6px 6px 0 1px #F5C518;
  background: #FFD231;
}
.btn-pri:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 #0E0F12, 2px 2px 0 1px #F5C518;
}
.btn-block { display: flex; width: 100%; justify-content: center; }

.btn-link {
  color: #C9CDD3;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #25272D;
  padding-bottom: 4px;
  transition: color 0.18s, border-color 0.18s;
}
.btn-link:hover { color: #F5C518; border-color: #F5C518; }

.hero-art {
  position: absolute; right: 0; top: 0;
  width: 520px; max-width: 50vw; height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
  display: flex; align-items: center; justify-content: center;
}
.hero-svg { width: 100%; height: auto; max-width: 480px; }

/* ============================================================
   WARNING TAPE DIVIDER
   ============================================================ */
.tape {
  position: relative; z-index: 4;
  height: 38px;
  background:
    repeating-linear-gradient(
      135deg,
      #F5C518 0 22px,
      #0E0F12 22px 44px
    );
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tape-r {
  background:
    repeating-linear-gradient(
      45deg,
      #D6373C 0 22px,
      #0E0F12 22px 44px
    );
}
.tape-text {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0E0F12;
  background: #F5C518;
  padding: 4px 12px;
  white-space: nowrap;
  border: 1px solid #0E0F12;
}
.tape-r .tape-text { background: #D6373C; color: #F2EEE7; border-color: #0E0F12; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-head {
  max-width: 880px;
  margin: 0 auto 3rem;
  text-align: left;
}
.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5C518;
  background: #1A1C20;
  border: 1px solid #25272D;
  padding: 5px 10px;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.section-h {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #F2EEE7;
  margin: 0 0 1rem;
}
.section-deck {
  font-size: 17px;
  color: #C9CDD3;
  max-width: 64ch;
  line-height: 1.6;
}
.section-deck em { color: #F5C518; font-style: normal; font-weight: 500; }
.section-deck strong { color: #F2EEE7; font-weight: 600; }

/* ============================================================
   LOOKUP
   ============================================================ */
.lookup {
  position: relative; z-index: 2;
  padding: 6rem 2.5rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}
.vin-form { max-width: 880px; }
.vin-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #6F7480;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.vin-row {
  position: relative;
  background: #1A1C20;
  border: 1px solid #25272D;
  border-left: 3px solid #F5C518;
  padding: 1rem 1rem 0.75rem;
}
.vin-cells {
  display: grid;
  grid-template-columns: repeat(17, 1fr);
  gap: 4px;
  height: 14px;
  margin-bottom: 0.5rem;
}
.vin-cells span {
  display: block;
  background: #25272D;
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.vin-cells span.lit {
  background: #F5C518;
  box-shadow: 0 0 8px rgba(245,197,24,.5);
}
.vin-cells span.flip::after {
  content: "";
  position: absolute; inset: 0;
  background: #F5C518;
  animation: flipCell 0.45s ease-in-out;
}
@keyframes flipCell {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

.vin-input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  font-family: 'Space Mono', monospace;
  font-size: clamp(20px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #F2EEE7;
  text-transform: uppercase;
  padding: 0.5rem 0;
  caret-color: #F5C518;
}
.vin-input::placeholder {
  color: #4A4D55;
  letter-spacing: 0.32em;
}
.vin-input:focus { outline: none; }

.vin-controls {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.vin-status {
  font-size: 11.5px;
  color: #6F7480;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vin-status.ok { color: #4DA968; }
.vin-status.err { color: #D6373C; }

.vin-samples {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
}
.vin-samples-key {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: #6F7480;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.chip {
  background: #1A1C20;
  border: 1px solid #25272D;
  border-radius: 1px;
  color: #C9CDD3;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 11px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s;
}
.chip:hover { background: #25272D; border-color: #F5C518; color: #F5C518; transform: translateY(-1px); }
.chip-warn { border-color: #5E4D1A; }
.chip-warn:hover { border-color: #F5C518; color: #F5C518; }
.chip-bad { border-color: #4A1A1C; }
.chip-bad:hover { border-color: #D6373C; color: #D6373C; }

/* ============================================================
   REPORT
   ============================================================ */
.report {
  position: relative; z-index: 2;
  padding: 1rem 2.5rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
}
.report-empty {
  border: 1px dashed #25272D;
  background: #14161A;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #4A4D55;
}
.empty-icon { color: #4A4D55; margin: 0 auto 1rem; width: 64px; }
.empty-line {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6F7480;
}

.report-card {
  background: #F2EEE7;
  color: #14161A;
  border-radius: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #0E0F12;
  box-shadow:
    0 1px 0 #25272D,
    0 24px 60px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(245,197,24,0.0);
  animation: rcSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes rcSlide {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.report-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 8px;
  background:
    repeating-linear-gradient(
      135deg,
      #F5C518 0 14px,
      #0E0F12 14px 28px
    );
}

.rc-head {
  padding: 2.5rem 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  border-bottom: 1px solid #C9CDD3;
}
.rc-head-l { padding-top: 0.5rem; }
.rc-file {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: #6F7480;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.rc-vin {
  font-family: 'Space Mono', monospace;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #14161A;
  margin: 0 0 0.5rem;
}
.rc-decode {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #4A4D55;
  margin: 0;
  font-weight: 500;
}
.rc-head-r {
  text-align: right;
  border-left: 1px solid #C9CDD3;
  padding-left: 2rem;
}
.rc-verdict-key {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: #6F7480;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.rc-verdict {
  display: block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.rc-verdict.v-clean { color: #2E7846; }
.rc-verdict.v-warn { color: #B8860B; }
.rc-verdict.v-bad { color: #B0282D; }
.rc-verdict-line {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6F7480;
}

.rc-grid {
  padding: 1.5rem 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.rc-block {
  background: #FFFEFA;
  border: 1px solid #C9CDD3;
  padding: 1.25rem 1.25rem 1.4rem;
  position: relative;
}
.rc-block-wide { grid-column: 1 / -1; }
.rc-block-key {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: #6F7480;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid #E0DCD2;
  padding-bottom: 0.6rem;
  margin-bottom: 0.85rem;
}
.rc-source {
  float: right;
  background: #14161A;
  color: #F5C518;
  padding: 1px 6px;
  font-size: 9px;
  letter-spacing: 0.18em;
  border-radius: 1px;
}
.rc-block-body {
  color: #14161A;
  font-size: 14.5px;
  line-height: 1.55;
}
.rc-block-body .badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 1px;
  text-transform: uppercase;
  margin-right: 6px;
  margin-bottom: 4px;
}
.rc-block-body .b-clean { background: #DDEFE3; color: #2E7846; }
.rc-block-body .b-warn { background: #FFF1CC; color: #8C6800; }
.rc-block-body .b-bad { background: #F8D7D9; color: #B0282D; }
.rc-block-body .b-info { background: #14161A; color: #F2EEE7; }
.rc-block-body ul { padding-left: 1.1rem; margin: 0.5rem 0 0; }
.rc-block-body li { margin-bottom: 0.35rem; }
.rc-block-body .meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #6F7480;
  letter-spacing: 0.06em;
}
.rc-odo-graph {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  margin-top: 0.6rem;
  align-items: end;
  height: 70px;
}
.rc-odo-bar {
  background: #14161A;
  width: 100%;
  position: relative;
  min-height: 4px;
}
.rc-odo-bar.bad { background: #D6373C; }
.rc-odo-bar.suspect { background: #F5C518; }
.rc-odo-bar span {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: #6F7480;
  white-space: nowrap;
}

/* ============================================================
   VERSUS
   ============================================================ */
.versus {
  position: relative; z-index: 2;
  padding: 7rem 2.5rem 6rem;
  background: #14161A;
  border-top: 1px solid #25272D;
  border-bottom: 1px solid #25272D;
}
.versus .section-head { margin-left: 0; }

.vs-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #25272D;
  background: #1A1C20;
}
.vs-col {
  padding: 2rem 2.25rem 2.5rem;
  display: flex; flex-direction: column;
}
.vs-them { border-right: 1px solid #25272D; }
.vs-us { background: #1F2126; }
.vs-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #25272D;
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
}
.vs-mark {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #C9CDD3;
}
.vs-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: #D6373C;
  color: #F2EEE7;
  padding: 3px 9px;
  border-radius: 1px;
  text-transform: uppercase;
}
.vs-tag-us { background: #F5C518; color: #0E0F12; }
.vs-list { list-style: none; padding: 0; margin: 0; }
.vs-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted #25272D;
  font-size: 14.5px;
  color: #C9CDD3;
  line-height: 1.5;
}
.vs-list li:last-child { border-bottom: 0; }
.vs-check {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  line-height: 1;
}
.vs-yes { color: #4DA968; }
.vs-no { color: #D6373C; }

.vs-rule {
  max-width: 1180px;
  margin: 2rem auto 0;
  background: #F5C518;
  color: #0E0F12;
  padding: 1.5rem 2rem;
  border: 1px solid #0E0F12;
  position: relative;
}
.vs-rule::before {
  content: "";
  position: absolute; left: -1px; top: -1px; bottom: -1px; width: 8px;
  background: repeating-linear-gradient(180deg, #0E0F12 0 14px, #F5C518 14px 28px);
}
.vs-rule-line {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.vs-rule-line em { font-style: normal; background: #0E0F12; color: #F5C518; padding: 1px 6px; }
.vs-rule-key {
  display: inline-block;
  background: #0E0F12;
  color: #F5C518;
  padding: 3px 8px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 0.6rem;
  vertical-align: middle;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist {
  position: relative; z-index: 2;
  padding: 7rem 2.5rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
}
.cl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cl-card {
  background: #1A1C20;
  border: 1px solid #25272D;
  border-top: 3px solid #F5C518;
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.cl-card:hover {
  transform: translateY(-3px);
  background: #1F2126;
  border-top-color: #F5C518;
}
.cl-num {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #6F7480;
  font-weight: 700;
}
.cl-card h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: #F2EEE7;
  margin: 0 0 0.6rem;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 11ch;
}
.cl-card p {
  margin: 0;
  font-size: 14.5px;
  color: #C9CDD3;
  line-height: 1.55;
}
.cl-card p em { color: #F5C518; font-style: italic; }

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist {
  position: relative; z-index: 2;
  padding: 7rem 2.5rem 6rem;
  background: #F2EEE7;
  color: #14161A;
}
.wl-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.waitlist .eyebrow {
  background: #FFFEFA;
  color: #B8860B;
  border-color: #C9CDD3;
}
.waitlist .section-h { color: #14161A; }
.wl-deck {
  font-size: 16px;
  line-height: 1.6;
  color: #4A4D55;
  margin: 0 0 1rem;
}
.wl-deck strong { color: #14161A; font-weight: 600; }
.wl-deck em { color: #B0282D; font-style: italic; font-weight: 600; }

.wl-bullets { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.wl-bullets li {
  font-size: 15px;
  color: #4A4D55;
  padding: 0.45rem 0;
  border-bottom: 1px dotted #C9CDD3;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.5rem;
}
.wl-mark { color: #B8860B; font-weight: 700; }

.wl-form {
  background: #FFFEFA;
  border: 1px solid #C9CDD3;
  border-top: 3px solid #F5C518;
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 8px 8px 0 #14161A;
}
.wl-field { display: flex; flex-direction: column; gap: 0.4rem; }
.wl-key {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: #6F7480;
  text-transform: uppercase;
  font-weight: 700;
}
.wl-form input, .wl-form select {
  background: #F2EEE7;
  border: 1px solid #C9CDD3;
  padding: 0.7rem 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #14161A;
  outline: none;
  border-radius: 1px;
  transition: border-color 0.16s, background 0.16s;
}
.wl-form input:focus, .wl-form select:focus {
  border-color: #F5C518;
  background: #FFFEFA;
  box-shadow: 0 0 0 2px rgba(245,197,24,0.25);
}
.wl-form .btn-pri { box-shadow: 4px 4px 0 #14161A, 4px 4px 0 1px #F5C518; }
.wl-form .btn-pri:hover { box-shadow: 6px 6px 0 #14161A, 6px 6px 0 1px #F5C518; }
.wl-fine {
  font-size: 9.5px;
  color: #6F7480;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin: 0.25rem 0 0;
}
.wl-result {
  background: #DDEFE3;
  border: 1px solid #2E7846;
  padding: 1rem 1rem 1.1rem;
  margin-top: 0.5rem;
}
.wl-result-key {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: #2E7846;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.wl-result p { margin: 0; font-size: 14px; color: #14161A; }

/* ============================================================
   SOURCES
   ============================================================ */
.sources {
  position: relative; z-index: 2;
  padding: 7rem 2.5rem 6rem;
  max-width: 1080px;
  margin: 0 auto;
}
.src-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #25272D;
}
.src-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.1rem 0 1.1rem;
  border-bottom: 1px solid #25272D;
  align-items: start;
}
.src-key {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #F5C518;
  font-weight: 700;
  padding-top: 4px;
}
.src-body {
  font-size: 15px;
  color: #C9CDD3;
  line-height: 1.55;
}
.src-body em { color: #F2EEE7; font-style: italic; }
.src-foot {
  margin-top: 2rem;
  font-size: 10.5px;
  color: #6F7480;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 2;
  padding: 4rem 2.5rem 3rem;
  background: #0A0B0E;
  border-top: 1px solid #25272D;
}
.foot-top {
  max-width: 1280px; margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: end;
}
.brand-foot { color: #C9CDD3; }
.foot-pitch {
  margin: 0;
  font-size: 14.5px;
  color: #6F7480;
  text-align: right;
  max-width: 50ch;
  margin-left: auto;
  line-height: 1.55;
}
.foot-pitch a { color: #F5C518; text-decoration: none; border-bottom: 1px solid #F5C518; }
.foot-pitch a:hover { color: #FFD231; border-color: #FFD231; }
.foot-bot {
  max-width: 1280px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #25272D;
  flex-wrap: wrap; gap: 1rem;
}
.foot-bot .mono {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: #6F7480;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero {
    padding: 4rem 1.5rem 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-title { grid-column: 1 / -1; }
  .hero-deck { grid-column: 1 / -1; align-self: start; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-art { display: none; }

  .masthead { padding: 0.85rem 1.5rem; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 75%; max-width: 320px;
    background: #14161A;
    border-left: 1px solid #25272D;
    padding: 5rem 2rem 2rem;
    transform: translateX(110%);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 19;
  }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; gap: 1.4rem; }
  .nav a { font-size: 14px; }
  .menu-btn { display: inline-flex; }

  .lookup, .checklist, .waitlist, .sources, .versus, .report {
    padding: 4rem 1.5rem;
  }
  .vin-cells { gap: 2px; }

  .rc-head { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 1.5rem 1rem; }
  .rc-head-r { text-align: left; border-left: 0; padding-left: 0; border-top: 1px solid #C9CDD3; padding-top: 1rem; }
  .rc-grid { grid-template-columns: 1fr; padding: 1rem 1.5rem 1.5rem; }

  .vs-grid { grid-template-columns: 1fr; }
  .vs-them { border-right: 0; border-bottom: 1px solid #25272D; }

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

  .wl-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .foot-top { grid-template-columns: 1fr; gap: 1.25rem; }
  .foot-pitch { text-align: left; }

  .src-list li { grid-template-columns: 48px 1fr; }
}

@media (max-width: 560px) {
  .hero { padding: 3rem 1.25rem 3rem; }
  .hero-title .row2, .hero-title .row4 { padding-left: 0.5rem; }
  .hero-cta { gap: 1rem; }
  .btn-pri { padding: 0.75rem 1.1rem; font-size: 15px; }
  .vin-input { font-size: clamp(15px, 5vw, 22px); letter-spacing: 0.22em; }
  .vin-cells { display: none; }
  .vs-rule-line { font-size: 14.5px; }
}
