/* /vehicles ??scoped under body.vehicles; prefixes veh-* to avoid global collisions */
body.vehicles {
  --veh-sky: #dbeafe;
  --veh-ink: #0f172a;
}
body.vehicles .veh-hero {
  background:
    radial-gradient(ellipse 85% 55% at 8% 0%, rgba(37, 99, 235, .16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 18%, rgba(13, 148, 136, .12), transparent 50%),
    linear-gradient(180deg, #eff6ff 0%, var(--bg) 72%);
  padding-bottom: 48px;
}
body.vehicles .veh-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 860px) {
  body.vehicles .veh-hero-grid { grid-template-columns: 1fr; }
}

/* 3D stage */
.veh-stage {
  perspective: 1100px;
  perspective-origin: 50% 40%;
  min-height: 280px;
  display: grid;
  place-items: center;
  position: relative;
}
.veh-stage::before {
  content: "";
  position: absolute;
  inset: 18% 10% auto;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, .18), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.veh-stage-plane {
  position: relative;
  transform-style: preserve-3d;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #e2e8f0);
  box-shadow: 0 28px 60px -28px rgba(15, 23, 42, .45), 0 8px 20px -12px rgba(37, 99, 235, .35);
  max-width: 100%;
  margin: 0;
}
.veh-stage-plane img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}
.veh-stage-plane figcaption {
  font-size: .72rem;
  color: var(--muted);
  padding: 8px 12px;
}
.veh-stage-emoji {
  font-size: 5.5rem;
  line-height: 1;
  padding: 48px 64px;
  display: grid;
  place-items: center;
  animation: veh-float 4.5s ease-in-out infinite;
}
@keyframes veh-float {
  0%, 100% { transform: translateY(0) rotateX(6deg) rotateY(-8deg); }
  50% { transform: translateY(-10px) rotateX(2deg) rotateY(6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .veh-stage-emoji { animation: none; }
  .veh-stage-plane { transform: none !important; }
}

.veh-card { position: relative; }
.veh-card .veh-fam-tag {
  position: absolute; top: 14px; right: 16px;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  color: var(--muted);
}
.veh-fam-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  border-left: 4px solid var(--card-accent, var(--accent));
  padding-left: 14px; margin: 2.2rem 0 1rem;
}
.veh-fam-head h2 { margin: 0; font-size: 1.35rem; }
.veh-fam-head .badge {
  font-size: .78rem; font-weight: 800; color: var(--muted);
  background: var(--track); padding: 3px 10px; border-radius: 999px;
}

.veh-diagram {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, var(--surface)), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 12px 0 20px;
  overflow: visible;
}
.veh-diagram-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: .84rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  white-space: nowrap;
  max-width: 42%;
}
.veh-diagram-node small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: .72rem;
}

.veh-lab { margin-top: 8px; }

.veh-meters { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.veh-hotspots { display: grid; gap: 12px; }
.veh-hotspot {
  display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start;
  padding: 12px 14px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--line);
}
.veh-hotspot .n {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 900; color: #fff; background: var(--accent);
}

/* Locale typography knobs */
body.vehicles:lang(ko),
body.vehicles:lang(ja),
body.vehicles:lang(zh) {
  line-height: 1.75;
  letter-spacing: 0.01em;
}
body.vehicles:lang(ko) .lede,
body.vehicles:lang(ja) .lede,
body.vehicles:lang(zh) .lede {
  line-height: 1.85;
  max-width: 42em;
}
body.vehicles:lang(en) .lede,
body.vehicles:lang(es) .lede,
body.vehicles:lang(fr) .lede,
body.vehicles:lang(de) .lede,
body.vehicles:lang(pt) .lede,
body.vehicles:lang(ru) .lede {
  max-width: 38em;
}

.veh-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.veh-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; padding: 12px 18px; border-radius: 12px;
  background: var(--accent); color: #fff; text-decoration: none;
}
.veh-cta.ghost {
  background: transparent; color: var(--accent2);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
}

/* Full-bleed hero art */
body.vehicles .jhero.has-art {
  min-height: clamp(380px, 58vh, 640px);
  color: #f8fafc;
}
body.vehicles .jhero.has-art .jhero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 30%;
  transform: scale(1.06); filter: saturate(1.08) contrast(1.05);
}
body.vehicles .jhero.has-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.55) 42%, rgba(15,23,42,.25) 70%, rgba(15,23,42,.45) 100%);
}
body.vehicles .jhero.has-art .jhero-grid { position: relative; z-index: 1; }
body.vehicles .jhero.has-art .lede, body.vehicles .jhero.has-art .aka { color: #cbd5e1; }
body.vehicles .jhero.has-art .veh-stage {
  box-shadow: 0 28px 60px -28px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.12);
  border-radius: 18px; overflow: hidden; background: rgba(15,23,42,.35);
}
body.vehicles .jhero.has-art .veh-stage img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Type mosaic */
.veh-mosaic { margin: 1.6rem 0 2.2rem; }
.veh-mosaic-grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(6, 1fr); grid-auto-rows: 110px;
}
.veh-mosaic-tile {
  margin: 0; position: relative; overflow: hidden; border-radius: 14px;
  border: 1px solid var(--line); background: #0f172a;
}
.veh-mosaic-tile.is-hero { grid-column: span 3; grid-row: span 2; }
.veh-mosaic-tile:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.veh-mosaic-tile:nth-child(3),
.veh-mosaic-tile:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.veh-mosaic-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.veh-mosaic-tile:hover img { transform: scale(1.06); }
.veh-mosaic-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 10px;
  font-size: .68rem; color: #e2e8f0; background: linear-gradient(transparent, rgba(15,23,42,.75));
}
@media (max-width: 900px) {
  .veh-mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .veh-mosaic-tile.is-hero, .veh-mosaic-tile:nth-child(2) { grid-column: span 2; }
}

/* Home gallery wall */
.veh-home-gallery { margin: 1.8rem 0 2.4rem; }
.veh-gallery-wall {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-auto-rows: 150px;
}
.veh-gallery-tile {
  position: relative; display: block; border-radius: 16px; overflow: hidden;
  background-size: cover; background-position: center; text-decoration: none;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--card-accent, var(--accent)) 35%, transparent);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.veh-gallery-tile:hover { transform: translateY(-4px) scale(1.01); text-decoration: none;
  box-shadow: 0 18px 40px -22px rgba(15,23,42,.55); }
.veh-gallery-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15,23,42,.82) 100%);
}
.veh-gallery-meta {
  position: absolute; left: 12px; right: 12px; bottom: 12px; color: #fff;
  display: flex; flex-direction: column; gap: 2px; z-index: 1;
}
.veh-gallery-meta b { font-size: .92rem; letter-spacing: -.01em; }
.veh-gallery-meta i { font-style: normal; font-size: .72rem; color: #cbd5e1; }

/* Richer era cards with photos */
body.vehicles .era-card.veh-era.has-img,
body.vehicles .veh-era.has-img {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr); gap: 0; align-items: stretch;
  padding: 0; overflow: hidden;
}
body.vehicles .era-card.veh-era.has-img .era-img,
body.vehicles .veh-era.has-img .era-img { margin: 0; border-radius: 0; height: 100%; min-height: 200px; }
body.vehicles .era-card.veh-era.has-img .era-img img,
body.vehicles .veh-era.has-img .era-img img { width: 100%; height: 100%; object-fit: cover; }
body.vehicles .era-card.veh-era.has-img .era-body { padding: 18px 20px; }
@media (max-width: 720px) {
  body.vehicles .era-card.veh-era.has-img,
  body.vehicles .veh-era.has-img { grid-template-columns: 1fr; }
}

/* Home browse */
.veh-browse { margin: 0 0 1.2rem; }
.veh-tools { display: grid; gap: 12px; margin-bottom: 10px; }
.veh-search input {
  width: min(100%, 28rem); font: inherit; padding: .65rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface);
}
.veh-search input:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.veh-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.veh-chip {
  font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer;
  padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink2);
}
.veh-chip .n { margin-left: 6px; color: var(--muted); font-variant-numeric: tabular-nums; }
.veh-chip.on, .veh-chip[aria-pressed="true"] {
  border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, var(--surface));
}
.veh-browse-empty { color: var(--muted); margin: .6rem 0 0; }
.veh-quiz-cta { border-top: 3px solid var(--card-accent, var(--accent)); }

/* Quiz (job-pattern, scoped) */
body.vehicles .quiz {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
body.vehicles .qz-bar { height: 5px; background: var(--track); }
body.vehicles .qz-bar i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width .35s ease;
}
body.vehicles #qz-stage { padding: 32px 30px 24px; }
body.vehicles .qz-count {
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; color: var(--muted);
  text-transform: uppercase;
}
body.vehicles .qz-q {
  font-size: 1.32rem; font-weight: 800; line-height: 1.4; margin: 10px 0 22px; letter-spacing: -.01em;
}
body.vehicles .qz-opts { display: grid; gap: 8px; max-width: 460px; }
body.vehicles .qz-opts button {
  font: inherit; text-align: left; cursor: pointer; padding: 13px 18px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--bg);
}
body.vehicles .qz-opts button:hover {
  transform: translateX(3px); border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
}
body.vehicles .qz-nav { margin-top: 20px; display: flex; gap: 10px; }
body.vehicles .qz-nav button {
  font: inherit; font-size: .84rem; font-weight: 700; cursor: pointer; padding: 7px 16px;
  border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
}
body.vehicles .qz-results { display: grid; gap: 10px; }
body.vehicles .qz-hit {
  display: grid; grid-template-columns: 34px 30px 1fr minmax(70px, auto); align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); text-decoration: none; color: inherit;
}
body.vehicles .qz-hit:hover { text-decoration: none; transform: translateX(3px); }
body.vehicles .qz-rank { font-size: 1.1rem; font-weight: 900; color: var(--jc); text-align: center; }
body.vehicles .qz-emoji { font-size: 1.4rem; text-align: center; }
body.vehicles .qz-main { min-width: 0; display: flex; flex-direction: column; }
body.vehicles .qz-main i { font-style: normal; font-size: .76rem; color: var(--muted); }
body.vehicles .qz-pct { text-align: right; font-weight: 900; color: var(--jc); }
body.vehicles .qz-why {
  margin-top: 18px; padding: 14px 18px; border-radius: 12px; background: var(--bg);
  border: 1px solid var(--line);
}
body.vehicles .qz-share { margin-top: 14px; }
body.vehicles .qz-share button {
  font: inherit; font-size: .86rem; font-weight: 700; cursor: pointer; padding: 9px 20px;
  border-radius: 999px; border: 0; background: var(--accent); color: #fff;
}
body.vehicles .veh-quiz-all {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px;
}
body.vehicles .veh-quiz-all a {
  display: flex; gap: 8px; align-items: center; padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--line); text-decoration: none; color: inherit; font-weight: 700;
}
body.vehicles .veh-quiz-all a:hover { border-color: var(--jc, var(--accent)); }

/* ---------- Profile radar (vehicles does not load job.css) ----------
 * Without fill:none, SVG polygons paint solid black ??the bug on type pages. */
body.vehicles .veh-profile {
  display: grid;
  gap: 22px 28px;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--lift, var(--shadow));
}
@media (max-width: 720px) {
  body.vehicles .veh-profile { grid-template-columns: 1fr; padding: 18px 16px; }
}
body.vehicles .veh-profile-chart {
  display: grid; place-items: center; min-width: 0;
}
body.vehicles .radar {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: visible;
}
body.vehicles .radar.duo { max-width: 260px; }
body.vehicles .rd-ring {
  fill: none;
  stroke: color-mix(in srgb, var(--ink) 16%, transparent);
  stroke-width: 1.25;
}
body.vehicles .rd-ring:last-of-type {
  fill: color-mix(in srgb, var(--accent) 8%, #f8fafc);
  stroke: color-mix(in srgb, var(--accent) 45%, var(--muted));
  stroke-width: 1.75;
}
body.vehicles .rd-spoke {
  stroke: color-mix(in srgb, var(--ink) 14%, transparent);
  stroke-width: 1;
}
body.vehicles .rd-area {
  stroke: var(--accent);
  stroke-width: 2.75;
  stroke-linejoin: round;
  paint-order: stroke fill;
  transform-box: fill-box;
  transform-origin: center;
}
body.vehicles .rd-dot {
  fill: #fff;
  stroke: var(--accent2, var(--accent));
  stroke-width: 2.5;
}
body.vehicles .rd-cap {
  font-size: 13px;
  font-weight: 800;
  fill: var(--ink);
  font-variant-numeric: tabular-nums;
}
body.vehicles .rd-duo-cap { font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums; }
body.vehicles .rd-va { fill: var(--ra, var(--accent)); }
body.vehicles .rd-vb { fill: var(--rb, var(--accent2)); }
body.vehicles .rd-sep { fill: var(--muted); }

body.vehicles .veh-profile-meters {
  display: grid; gap: 12px; min-width: 0; margin: 0;
}
body.vehicles .veh-meter { min-width: 0; }
body.vehicles .veh-meter-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 5px;
}
body.vehicles .veh-meter-label {
  font-size: .92rem; font-weight: 700; color: var(--ink2); line-height: 1.35;
}
body.vehicles .veh-meter-val {
  font-size: 1.05rem; font-weight: 900; color: var(--accent2, var(--accent));
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
body.vehicles .veh-meter-track {
  height: 10px; border-radius: 999px; background: var(--track, #e2e8f0);
  overflow: hidden;
}
body.vehicles .veh-meter-track > i {
  display: block; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent2, var(--accent)));
  max-width: 100%;
  transform-origin: left center;
}
body.vehicles .veh-profile.is-in .veh-meter-track > i {
  animation: veh-meter-in .7s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes veh-meter-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  body.vehicles .veh-profile.is-in .veh-meter-track > i { animation: none; }
}

/* VS pages reuse .pf-radar without job.css */
body.vehicles .pf-radar {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--lift, var(--shadow));
  display: grid; place-items: center;
}

/* Hero / mosaic balance ??less empty chrome, stronger type */
body.vehicles .jhero.has-art {
  min-height: clamp(300px, 42vh, 480px);
}
body.vehicles .jhero-text h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  letter-spacing: -.02em; line-height: 1.15;
}
body.vehicles .jhero-text .lede {
  font-size: 1.05rem; max-width: 36em;
}
body.vehicles .veh-stage-plane img { max-height: 280px; }
body.vehicles .veh-mosaic-grid { grid-auto-rows: 96px; }
body.vehicles main h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -.015em; margin: 1.8rem 0 .85rem;
}
body.vehicles .fact .v { font-size: 1.22rem; }
body.vehicles .fact .k { font-size: .88rem; }
body.vehicles:lang(ko) .veh-meter-label,
body.vehicles:lang(ja) .veh-meter-label,
body.vehicles:lang(zh) .veh-meter-label {
  font-size: .95rem; letter-spacing: -.01em;
}

/* ---------- Traffic chrome: sticky pills, share, similar, VS, rankings ---------- */
body.vehicles .veh-pills {
  position: sticky; top: 0; z-index: 30;
  margin: 14px 0 0; padding: 8px 0;
  background: color-mix(in srgb, var(--bg, #f8fafc) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
body.vehicles .veh-pills.is-stuck {
  box-shadow: 0 10px 28px -22px rgba(15, 23, 42, .45);
  border-bottom-color: var(--line);
}
body.vehicles .veh-pills .pills {
  display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto;
  -webkit-overflow-scrolling: touch; padding-bottom: 2px;
  scrollbar-width: thin;
}
body.vehicles .jhero.has-art .veh-pills {
  background: color-mix(in srgb, #0f172a 72%, transparent);
}
body.vehicles .jhero.has-art .veh-pills .pill {
  color: #e2e8f0; border-color: rgba(255,255,255,.18); background: rgba(15,23,42,.35);
}
body.vehicles .jhero.has-art .veh-pills .pill.active {
  color: #0f172a; background: #fff; border-color: #fff;
}

body.vehicles .veh-share {
  margin: 8px 0 22px;
  padding: 12px 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
}
body.vehicles .veh-share .share-label {
  font-weight: 800; font-size: .82rem; color: var(--ink2); margin-right: 4px;
}

body.vehicles .tl-hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center;
  margin: 10px 0 4px; font-size: .86rem;
}
body.vehicles .tl-jump {
  font-weight: 800; color: var(--accent2, var(--accent)); text-decoration: none;
}
body.vehicles .jhero.has-art .tl-jump { color: #93c5fd; }
body.vehicles .jhero.has-art .tl-read-time { color: #cbd5e1; }

body.vehicles .veh-similar,
body.vehicles .veh-vs-cta { margin: 1.6rem 0; }
body.vehicles .veh-vs-card .icon { font-size: 1.6rem; }

body.vehicles aside.veh-quiz-cta {
  display: block; padding: 22px 24px; margin: 1.4rem 0 1.8rem;
  border-left: 4px solid var(--card-accent, var(--accent));
}
body.vehicles aside.veh-quiz-cta h2 {
  margin: 6px 0 8px; font-size: 1.35rem;
}
body.vehicles aside.veh-quiz-cta .kicker {
  font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}

body.vehicles .veh-rank {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 8px;
}
body.vehicles .veh-rank-row a {
  display: grid;
  grid-template-columns: 40px 36px minmax(0, 1fr) auto;
  gap: 12px; align-items: center;
  padding: 12px 14px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--surface);
  text-decoration: none; color: inherit;
  box-shadow: inset 3px 0 0 var(--card-accent, var(--accent));
  transition: transform .25s ease, border-color .25s ease;
}
body.vehicles .veh-rank-row a:hover {
  text-decoration: none; transform: translateX(3px);
  border-color: color-mix(in srgb, var(--card-accent, var(--accent)) 40%, var(--line));
}
body.vehicles .veh-rank-n {
  font-weight: 900; font-size: 1.1rem; text-align: center;
  color: var(--card-accent, var(--accent)); font-variant-numeric: tabular-nums;
}
body.vehicles .veh-rank-emoji { font-size: 1.45rem; text-align: center; }
body.vehicles .veh-rank-main { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
body.vehicles .veh-rank-main b { font-size: 1rem; letter-spacing: -.01em; }
body.vehicles .veh-rank-main i { font-style: normal; font-size: .78rem; color: var(--muted); }
body.vehicles .veh-rank-score {
  text-align: right; display: flex; flex-direction: column; gap: 1px;
}
body.vehicles .veh-rank-score small { font-size: .68rem; color: var(--muted); font-weight: 700; }
body.vehicles .veh-rank-score b {
  font-size: 1.15rem; color: var(--accent2, var(--accent)); font-variant-numeric: tabular-nums;
}

body.vehicles .veh-qz-share {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px;
}
body.vehicles .veh-qz-share button {
  font: inherit; font-size: .86rem; font-weight: 700; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: 0;
  background: var(--accent); color: #fff;
}
body.vehicles .veh-qz-share #qz-native {
  background: transparent; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
}

@media (max-width: 560px) {
  body.vehicles .veh-rank-row a {
    grid-template-columns: 32px 28px minmax(0, 1fr) auto; gap: 8px; padding: 10px 12px;
  }
}

/* Deep introduction ??diversity + locale lens */
body.vehicles .veh-deep {
  margin: 1.8rem 0 2.2rem;
  padding: 22px 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 55%),
    var(--surface);
  box-shadow: var(--lift, var(--shadow));
}
body.vehicles .veh-deep-kicker {
  margin: 0 0 6px; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
body.vehicles .veh-deep > h2 {
  margin: 0 0 10px; font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -.02em;
}
body.vehicles .veh-deep-lede {
  font-size: 1.05rem; line-height: 1.65; color: var(--ink2); max-width: 46em; margin: 0 0 8px;
}
body.vehicles .veh-deep-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 8px;
}
body.vehicles .veh-deep-card {
  padding: 16px 18px; border-radius: 14px;
  background: color-mix(in srgb, var(--bg, #f8fafc) 80%, var(--surface));
  border: 1px solid var(--line);
}
body.vehicles .veh-deep-card h3 {
  margin: 0 0 8px; font-size: 1.02rem; color: var(--accent2, var(--accent));
}
body.vehicles .veh-deep-card p {
  margin: 0 0 8px; font-size: .94rem; line-height: 1.65; color: var(--ink2);
}
body.vehicles .veh-deep-card p:last-child { margin-bottom: 0; }
body.vehicles .veh-deep-lens {
  margin-top: 16px; padding: 16px 18px; border-radius: 14px;
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
}
body.vehicles .veh-deep-lens h3 { margin: 0 0 8px; font-size: 1.05rem; }
body.vehicles .veh-deep-lens p {
  margin: 0 0 8px; font-size: .95rem; line-height: 1.7; color: var(--ink2);
}
body.vehicles .veh-deep-lens p:last-child { margin-bottom: 0; }
body.vehicles:lang(ko) .veh-deep-lede,
body.vehicles:lang(ja) .veh-deep-lede,
body.vehicles:lang(zh) .veh-deep-lede { line-height: 1.85; }
body.vehicles .veh-tech-links {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0;
}
body.vehicles .veh-tech {
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, color-mix(in srgb, var(--accent2, var(--accent)) 14%, transparent), transparent 50%),
    var(--surface);
}
body.vehicles .veh-tech .veh-deep-kicker { color: var(--accent2, var(--accent)); }
body.vehicles .veh-related {
  margin: 1.8rem 0 2.2rem;
  padding: 22px 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 6%, transparent), transparent 42%),
    var(--surface);
  box-shadow: var(--lift, var(--shadow));
}
body.vehicles .veh-related-cols {
  display: grid; gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  margin: 16px 0 8px;
}
body.vehicles .veh-related-see ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
body.vehicles .veh-related-see li {
  display: grid; gap: 4px; padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--line); background: color-mix(in srgb, var(--bg, #f8fafc) 70%, var(--surface));
}
body.vehicles .veh-related-see a { color: inherit; text-decoration: none; display: flex; gap: 8px; align-items: baseline; }
body.vehicles .veh-related-see a:hover b { color: var(--accent); }
body.vehicles .veh-related-emoji { font-size: 1.1rem; }
body.vehicles .veh-related-why { font-size: .88rem; color: var(--muted); line-height: 1.5; }
body.vehicles .veh-related-terms dl { margin: 0; display: grid; gap: 10px; }
body.vehicles .veh-related-terms dt { font-weight: 700; font-size: .92rem; color: var(--accent2, var(--accent)); }
body.vehicles .veh-related-terms dd { margin: 2px 0 0; font-size: .9rem; line-height: 1.55; color: var(--ink2); }
body.vehicles .veh-answer-list {
  display: grid; gap: 12px; margin-top: 16px;
}
body.vehicles .veh-answer {
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface);
}
body.vehicles .veh-answer-type {
  display: inline-block; font-size: .82rem; font-weight: 700;
  color: var(--muted); text-decoration: none; margin-bottom: 6px;
}
body.vehicles .veh-answer-type:hover { color: var(--accent); }
body.vehicles .veh-answer details summary {
  cursor: pointer; font-weight: 650; line-height: 1.45;
}
body.vehicles .veh-answer .a {
  margin-top: 8px; font-size: .95rem; line-height: 1.65; color: var(--ink2);
}
body.vehicles .veh-answer-more { margin: 8px 0 0; font-size: .88rem; }
@media (max-width: 780px) {
  body.vehicles .veh-deep { padding: 18px 16px; }
  body.vehicles .veh-deep-grid { grid-template-columns: 1fr; }
  body.vehicles .veh-related { padding: 18px 16px; }
  body.vehicles .veh-related-cols { grid-template-columns: 1fr; }
}

/* expand30 hub packs — scoped under body.<app> */
body.vehicles .veh-hx-expand,
body.war .war-hx-expand,
body.water .wat-hx-expand,
body.water .wat-hx-deep,
body.water .wat-hx-related,
body.talent .tal-hx-expand,
body.talent .tal-hx-deep,
body.talent .tal-hx-related { margin: 2rem 0; }
body.vehicles .veh-hx-kicker,
body.war .war-hx-kicker,
body.water .wat-hx-kicker,
body.talent .tal-hx-kicker {
  display: block; font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent, #0f766e); margin: 0 0 .35rem;
}
body.vehicles .veh-hx-lede,
body.war .war-hx-lede,
body.water .wat-hx-lede,
body.talent .tal-hx-lede { color: var(--ink2, #334155); max-width: 42em; }
body.vehicles .veh-hx-grid,
body.war .war-hx-grid,
body.water .wat-hx-grid,
body.talent .tal-hx-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: .85rem; margin: 1rem 0;
}
body.vehicles .veh-hx-card,
body.war .war-hx-card,
body.water .wat-hx-card,
body.talent .tal-hx-card {
  padding: .85rem 1rem; border-radius: 12px;
  background: color-mix(in srgb, var(--accent, #0f766e) 7%, transparent);
}
body.vehicles .veh-hx-card h3,
body.war .war-hx-card h3,
body.water .wat-hx-card h3,
body.talent .tal-hx-card h3 { margin: 0 0 .4rem; font-size: 1.02rem; }
body.vehicles .veh-hx-lens,
body.war .war-hx-lens,
body.water .wat-hx-lens,
body.talent .tal-hx-lens {
  margin: 1rem 0; padding: 1rem 1.1rem; border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent, #0f766e) 22%, transparent);
}
body.vehicles .veh-hx-related-cols,
body.war .war-hx-related-cols,
body.water .wat-hx-related-cols,
body.talent .tal-hx-related-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0;
}
@media (max-width: 720px) {
  body.vehicles .veh-hx-related-cols,
  body.war .war-hx-related-cols,
  body.water .wat-hx-related-cols,
  body.talent .tal-hx-related-cols { grid-template-columns: 1fr; }
}
body.vehicles .veh-hx-num-row,
body.war .war-hx-num-row,
body.water .wat-hx-num-row,
body.talent .tal-hx-num-row {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr)); gap: .65rem;
}
body.vehicles .veh-hx-num-row > div,
body.war .war-hx-num-row > div,
body.water .wat-hx-num-row > div,
body.talent .tal-hx-num-row > div {
  padding: .65rem .75rem; border-radius: 10px;
  background: color-mix(in srgb, var(--accent, #0f766e) 8%, #fff);
}
body.vehicles .veh-hx-num-row .k,
body.war .war-hx-num-row .k,
body.water .wat-hx-num-row .k,
body.talent .tal-hx-num-row .k { display: block; font-size: .75rem; color: var(--muted, #4b5563); }
body.vehicles .veh-hx-num-row .v,
body.war .war-hx-num-row .v,
body.water .wat-hx-num-row .v,
body.talent .tal-hx-num-row .v { display: block; font-size: 1.25rem; font-weight: 700; }
body.vehicles .veh-hx-num-row .n,
body.war .war-hx-num-row .n,
body.water .wat-hx-num-row .n,
body.talent .tal-hx-num-row .n { display: block; font-size: .75rem; color: var(--muted, #4b5563); }
body.vehicles .veh-hx-experts,
body.war .war-hx-experts,
body.water .wat-hx-experts,
body.talent .tal-hx-experts,
body.vehicles .veh-hx-caveats,
body.war .war-hx-caveats,
body.water .wat-hx-caveats,
body.talent .tal-hx-caveats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: .75rem; margin: .75rem 0;
}
body.vehicles .veh-hx-share,
body.war .war-hx-share,
body.water .wat-hx-share,
body.talent .tal-hx-share { font-size: .95rem; color: var(--ink2, #334155); }
body.water .wat-hx-why,
body.talent .tal-hx-why { display: block; font-size: .85rem; color: var(--muted, #4b5563); }

/* —— UX/OSS progressive enhancement (Fuse/Mark/Tippy/Sortable) —— */
.tl-oss-mark { background: color-mix(in srgb, var(--accent, #03C75A) 28%, transparent); color: inherit; padding: 0 .08em; border-radius: 2px; }
.tl-oss-ghost { opacity: .45; }
.tl-oss-chosen { cursor: grabbing; }
.tl-oss-drag { opacity: .92; }
.tippy-box[data-theme~='tl-oss'] {
  background: #191919; color: #f5f5f5; font-size: .82rem; line-height: 1.35;
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.tippy-box[data-theme~='tl-oss'] .tippy-arrow { color: #191919; }
.wat-atlas-search, .tal-browse-search, .war-answer-search { margin: 0 0 12px; }
.wat-atlas-search input, .tal-browse-search input, .war-answer-search input {
  width: min(100%, 28rem); font: inherit; padding: .65rem 1rem; border-radius: 999px;
  border: 1px solid var(--line, #e5e7eb); background: var(--surface, #fff);
}
.wat-atlas-search input:focus-visible, .tal-browse-search input:focus-visible, .war-answer-search input:focus-visible {
  outline: 2px solid var(--accent, #03C75A); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .tl-oss-ghost, .tl-oss-chosen, .tl-oss-drag { transition: none !important; }
}

/* Signature: compare lab + mission profiles */
body.vehicles .veh-missions { margin: 0 0 1.25rem; }
body.vehicles .veh-missions .pills { flex-wrap: wrap; gap: .45rem; }
body.vehicles .veh-missions .pill.active {
  background: color-mix(in srgb, var(--accent, #2563eb) 18%, transparent);
  border-color: var(--accent, #2563eb);
}
body.vehicles .veh-cmp-lab { margin: .5rem 0 1.5rem; }
body.vehicles .veh-cmp-meter {
  display: grid;
  grid-template-columns: minmax(7rem, 12rem) 1fr 2.5rem;
  gap: .5rem;
  align-items: center;
  font-size: .92rem;
  margin: .35rem 0;
}
body.vehicles .veh-cmp-meter .bar {
  height: .55rem;
  background: color-mix(in srgb, var(--accent, #2563eb) 12%, transparent);
  border-radius: 999px;
  overflow: hidden;
}
body.vehicles .veh-cmp-meter .bar i { display: block; height: 100%; border-radius: inherit; }
body.vehicles .veh-cmp-meter b { text-align: right; font-variant-numeric: tabular-nums; }

/* p1-cutaway */
.veh-cutaway-sec { margin: 1.25rem 0 1.75rem; }
.veh-cutaway { margin: 0; }
.veh-cutaway-svg { width: 100%; max-width: 720px; height: auto; border-radius: 12px; display: block; }
.veh-cutaway-legend {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .35rem .75rem; margin: .75rem 0 0; padding: 0; list-style: none;
}
.veh-cutaway-legend .n {
  display: inline-grid; place-items: center; width: 1.35rem; height: 1.35rem;
  border-radius: 50%; background: var(--accent, #2563eb); color: #fff;
  font-size: .75rem; font-weight: 800; margin-right: .35rem;
}
.veh-cut-part:focus circle { stroke: #0f172a; stroke-width: 3; }
.veh-missions { margin: 1rem 0 1.5rem; }


/* p2 market scrubber */
.veh-mkt { margin: 1rem 0 1.5rem; }
.veh-mkt-range { display: flex; align-items: center; gap: .75rem; margin: .75rem 0; font-weight: 650; }
.veh-mkt-range input[type="range"] { flex: 1; min-width: 8rem; }
.veh-mkt-year { margin: 0; font-variant-numeric: tabular-nums; font-weight: 800; }
.veh-mkt-era { padding: .9rem 0; border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.veh-mkt.is-live .veh-mkt-era { display: none; }
.veh-mkt.is-live .veh-mkt-era.is-on { display: block; }
.veh-mkt-infra { margin: .4rem 0 0; }
.veh-mkt-infra-sec { margin: 1.75rem 0; }
.veh-mkt-infra-block { margin: 1rem 0 1.25rem; }
@media print {
  body.market-page header, body.market-page footer, body.market-page .no-print, body.market-page .ads { display: none !important; }
}

/* p3 polish */
.veh-mkt-tools { margin: .5rem 0 1rem; }
[data-veh-infra-row].is-on { background: color-mix(in srgb, #0f766e 12%, transparent); outline: 2px solid color-mix(in srgb, #0f766e 35%, transparent); }
@media print {
  body.market-page .veh-mkt-range, body.market-page .veh-mkt-fams, body.market-page .veh-mkt-tools { display: none !important; }
  body.market-page .veh-mkt.is-live .veh-mkt-era { display: none !important; }
  body.market-page .veh-mkt.is-live .veh-mkt-era.is-on { display: block !important; }
}

/* visual-diff: cutaway-infra */

body.vehicles {
  --vd-sky: #dbeafe;
  --vd-infra: #0f766e;
  --vd-accent: #2563eb;
}
body.vehicles .veh-vd-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
  margin: 0 0 1.75rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--vd-sky) 70%, #fff), #fff 60%),
    linear-gradient(90deg, color-mix(in srgb, var(--vd-infra) 8%, transparent), transparent);
  border: 1px solid color-mix(in srgb, var(--vd-accent) 18%, #e2e8f0);
}
@media (max-width: 860px) {
  body.vehicles .veh-vd-band { grid-template-columns: 1fr; }
}
body.vehicles .veh-vd-copy .kicker { color: var(--vd-accent); letter-spacing: .08em; }
body.vehicles .veh-vd-copy h2 { margin: .2rem 0 .45rem; font-size: clamp(1.15rem, 2vw, 1.4rem); }
body.vehicles .veh-vd-copy .sub { margin: 0 0 .85rem; max-width: 38em; }
body.vehicles .veh-vd-art .veh-cutaway-svg {
  max-width: 100%;
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, .45);
  border: 1px solid color-mix(in srgb, var(--vd-accent) 14%, #cbd5e1);
}
body.vehicles .veh-vd-infra {
  display: flex; flex-wrap: wrap; gap: .45rem; margin: .85rem 0 0; padding: 0; list-style: none;
}
body.vehicles .veh-vd-infra li {
  font-size: .78rem; font-weight: 750;
  padding: .35rem .65rem; border-radius: 999px;
  background: color-mix(in srgb, var(--vd-infra) 12%, #fff);
  color: #115e59;
  border: 1px solid color-mix(in srgb, var(--vd-infra) 28%, transparent);
}
body.vehicles .veh-cutaway-sec {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid #e2e8f0;
}
body.vehicles .veh-mkt-infra-sec {
  padding: 1rem 1.15rem 1.25rem;
  border-radius: 14px;
  border-left: 4px solid var(--vd-infra);
  background: color-mix(in srgb, var(--vd-infra) 6%, #fff);
}
body.vehicles .veh-mkt-infra-block table { width: 100%; border-collapse: collapse; font-size: .92rem; }
body.vehicles .veh-mkt-infra-block th,
body.vehicles .veh-mkt-infra-block td { padding: .45rem .55rem; border-bottom: 1px solid #e2e8f0; text-align: left; }
body.vehicles .veh-cut-part circle { transition: transform .2s ease; transform-box: fill-box; transform-origin: center; }
body.vehicles .veh-cut-part:hover circle,
body.vehicles .veh-cut-part.is-hot circle { transform: scale(1.18); }
@media (prefers-reduced-motion: reduce) {
  body.vehicles .veh-cut-part circle { transition: none; }
}

/* ---- hub visual polish (2026-09-17) — contrast + scannable glance/explore ---- */
body.vehicles {
  --ink2: #1f2937;
  --muted: #334155;
}
body.vehicles .lede,
body.vehicles .card .sub,
body.vehicles .sub { color: var(--ink2); }
body.vehicles .hint { color: var(--muted); }
body.vehicles .veh-chip {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 36px;
  padding: var(--tl-chip-pad-y, 8px) var(--tl-chip-pad-x, 14px);
  font-weight: 650; color: var(--ink2, #1f2937);
  overflow-wrap: normal; word-break: normal; hyphens: none; -webkit-hyphens: none;
  white-space: nowrap; max-width: 100%;
}
body.vehicles .veh-filters { gap: 8px; }
body.vehicles .veh-card,
body.vehicles a.card.veh-card {
  box-shadow: var(--tl-shadow, 0 1px 2px rgba(17,24,39,.05), 0 6px 18px rgba(17,24,39,.06));
  border-color: rgba(17, 24, 39, .09);
  min-height: 6.25rem;
}
body.vehicles .veh-card:hover,
body.vehicles a.card.veh-card:hover {
  box-shadow: var(--tl-elev, 0 4px 10px rgba(17,24,39,.05), 0 16px 40px rgba(17,24,39,.09));
}
body.vehicles .hub-hero .lede { color: var(--ink2); max-width: 42em; }
body.vehicles .tl-explore-grid,
body.vehicles .grid.wide.tl-explore-grid {
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(var(--tl-explore-min, 200px), 1fr));
  align-items: stretch;
}
body.vehicles .facts.tl-glance,
body.vehicles .stats.tl-glance,
body.vehicles .tl-glance {
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(var(--tl-glance-min, 158px), 1fr));
}
body.vehicles .tl-popular-card span:not(.tl-dot),
body.vehicles .tl-start-card span:not(.tl-start-k) { color: var(--ink2); }
@media (max-width: 720px) {
  body.vehicles .veh-chip { white-space: normal; }
}

/* Contrast: hub + article text must not sit on a washed twin of itself. */
body.vehicles {
  --ink: #0c1220;
  --ink2: #1a2332;
  --muted: #334155;
  --tl-muted: #334155;
  --line: #64748b;
  --tl-border: #94a3b8;
  --track: #d5dee8;
  --tl-heat-0: #94a3b8;
  --tl-heat-1: #5eead4;
  --tl-heat-2: #0f766e;
  --tl-heat-3: #115e59;
  --tl-heat-4: #042f2e;
}
body.vehicles .veh-hero:not(.has-art) {
  background: linear-gradient(180deg, #dbe4f0 0%, var(--bg) 78%);
  color: var(--ink);
}
body.vehicles .hero:not(.has-art) .lede,
body.vehicles .hero:not(.has-art) .kicker,
body.vehicles .hero:not(.has-art) .crumbs,
body.vehicles .hero:not(.has-art) .crumbs a,
body.vehicles .pill,
body.vehicles .hint,
body.vehicles .fact .k,
body.vehicles .stat .sl,
body.vehicles .stat-note,
body.vehicles .card .sub,
body.vehicles .sub,
body.vehicles .tl-viz-hint,
body.vehicles .tl-viz-cap,
body.vehicles .tl-viz-kicker,
body.vehicles .tl-heat-legend,
body.vehicles .tl-hub-mosaic-head h2,
body.vehicles .veh-meter-label,
body.vehicles .veh-rank-main i,
body.vehicles .veh-rank-score small {
  color: var(--ink2);
}
body.vehicles .pill {
  background: #fff;
  border-color: #64748b;
}
body.vehicles .kicker {
  color: #0f172a;
  background: #fff;
  border-color: #334155;
}
body.vehicles .jhero.has-art::after {
  background: linear-gradient(105deg, rgba(8, 12, 24, .94) 0%, rgba(8, 12, 24, .82) 46%, rgba(8, 12, 24, .5) 100%);
}
body.vehicles .jhero.has-art .lede,
body.vehicles .jhero.has-art .aka,
body.vehicles .jhero.has-art .tl-read-time {
  color: #f8fafc;
}
body.vehicles .jhero.has-art .tl-jump { color: #dbeafe; }
body.vehicles .veh-vd-band {
  background: #fff;
  border: 1px solid #334155;
  color: #0f172a;
}
body.vehicles .veh-vd-copy .sub,
body.vehicles .veh-vd-copy h2 { color: #0f172a; }
body.vehicles .veh-cutaway-sec,
body.vehicles .veh-cut-hub {
  background: #fff;
  border: 1px solid #334155;
  color: #0f172a;
}
body.vehicles .veh-cut-hub { margin: 0 0 1.5rem; padding: 1rem 1rem 1.15rem; border-radius: 14px; }
body.vehicles .veh-cut-hub h2 { margin: 0 0 .65rem; font-size: 1.2rem; }
body.vehicles .veh-cut-hub h2 a { color: #0f172a; text-decoration: none; }
body.vehicles .veh-cut-hub h2 a:hover { color: #1d4ed8; }
body.vehicles .veh-cut-nav { margin: 0 0 1.1rem; }
body.vehicles .veh-cutaway,
body.vehicles .veh-cutaway-svg {
  overflow: visible;
}
body.vehicles .veh-cutaway-svg {
  width: 100%;
  max-width: 980px;
  height: auto;
  background: #fff;
}
body.vehicles .veh-cutaway figcaption {
  margin-top: .55rem;
  color: #0f172a;
  font-size: .95rem;
}
body.vehicles .veh-cut-lab { font-family: inherit; }
body.vehicles .veh-score-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin: 0 0 8px;
  font-size: .8rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
}
body.vehicles .veh-score-scale span:nth-child(2),
body.vehicles .veh-score-scale span:nth-child(3),
body.vehicles .veh-score-scale span:nth-child(4) { text-align: center; }
body.vehicles .veh-score-scale span:last-child { text-align: right; }
body.vehicles .veh-profile { gap: 10px 16px; padding: 14px 16px; }
body.vehicles .radar { max-width: 240px; }
body.vehicles .rd-cap { font-size: 14px; fill: var(--ink); }
body.vehicles .veh-si { display: grid; gap: 10px; }
body.vehicles .veh-si .veh-score-scale { margin: 0; }
body.vehicles .veh-si-axis span { display: block; }
body.vehicles .veh-si-row {
  display: grid;
  grid-template-columns: minmax(9.5rem, 36%) minmax(0, 1fr) 2.5rem;
  gap: 4px 10px;
  align-items: center;
}
body.vehicles .veh-si-lab b {
  display: block;
  font-size: .98rem;
  line-height: 1.25;
  color: var(--ink);
}
body.vehicles .veh-si-lab span {
  display: block;
  margin-top: 2px;
  font-size: .8rem;
  line-height: 1.35;
  font-weight: 650;
  color: var(--ink2);
}
body.vehicles .veh-si-track {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: #d5dee8;
  border: 1px solid #334155;
  overflow: hidden;
}
body.vehicles .veh-si-track > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1e3a8a, #0f766e);
}
body.vehicles .veh-si-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 24.6%, #0f172a 24.6%, #0f172a 25.4%, transparent 25.4%, transparent 49.6%, #0f172a 49.6%, #0f172a 50.4%, transparent 50.4%, transparent 74.6%, #0f172a 74.6%, #0f172a 75.4%, transparent 75.4%);
  opacity: .45;
  pointer-events: none;
}
body.vehicles .veh-si-n {
  font-size: 1.05rem;
  font-weight: 900;
  text-align: right;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
body.vehicles .tl-viz-panel:has(.veh-si) { padding: 12px 14px 14px; }
body.vehicles .tl-viz-panel:has(.veh-si) .tl-viz-cap { font-size: .84rem; letter-spacing: .04em; color: var(--ink); }
body.vehicles .veh-si-lab span,
body.vehicles .tl-viz-panel:has(.veh-si) .tl-viz-hint,
body.vehicles .veh-score-scale,
body.vehicles .veh-si-lab b,
body.vehicles .veh-si-n {
  color: #0c1220 !important;
}
@media (max-width: 720px) {
  body.vehicles .veh-score-scale { font-size: .74rem; }
  body.vehicles .veh-si-row { grid-template-columns: 1fr auto; }
  body.vehicles .veh-si-lab { grid-column: 1 / -1; }
  body.vehicles .veh-si-axis { display: grid; grid-template-columns: 1fr; }
  body.vehicles .veh-si-axis > span { display: none; }
}
@media (prefers-color-scheme: dark) {
  body.vehicles {
    --ink: #f8fafc;
    --ink2: #e2e8f0;
    --muted: #cbd5e1;
    --tl-muted: #cbd5e1;
    --bg: #0b1220;
    --surface: #111827;
    --line: #64748b;
    --tl-border: #64748b;
    --track: #1e293b;
  }
  body.vehicles .veh-hero:not(.has-art) {
    background: linear-gradient(180deg, #1e293b 0%, var(--bg) 80%);
  }
  body.vehicles .pill,
  body.vehicles .kicker,
  body.vehicles .veh-vd-band,
  body.vehicles .veh-cutaway-sec,
  body.vehicles .veh-cut-hub,
  body.vehicles .veh-cutaway-svg { background: #111827; }
  body.vehicles .veh-cut-hub h2 a,
  body.vehicles .veh-vd-copy h2,
  body.vehicles .veh-vd-copy .sub,
  body.vehicles .veh-cutaway figcaption { color: #f8fafc; }
  body.vehicles .veh-si-track { background: #1e293b; border-color: #94a3b8; }
  body.vehicles .veh-si-lab span,
  body.vehicles .veh-si-lab b,
  body.vehicles .veh-si-n,
  body.vehicles .veh-score-scale,
  body.vehicles .tl-viz-panel:has(.veh-si) .tl-viz-hint { color: #f8fafc !important; }
}

/* Light veh-hero lost to frame.css white type. Dark wash keeps hub readable. */
body.vehicles .hero.veh-hero:not(.has-art),
body.vehicles .jhero.veh-hero:not(.has-art) {
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(37, 99, 235, .35), transparent 55%),
    linear-gradient(165deg, #0b1220 0%, #1e3a5f 48%, #0f172a 100%) !important;
  color: #f8fafc !important;
}
body.vehicles .hero.veh-hero:not(.has-art) h1,
body.vehicles .jhero.veh-hero:not(.has-art) h1,
body.vehicles .hero.veh-hero:not(.has-art) .lede,
body.vehicles .jhero.veh-hero:not(.has-art) .lede,
body.vehicles .hero.veh-hero:not(.has-art) .kicker,
body.vehicles .jhero.veh-hero:not(.has-art) .kicker,
body.vehicles .hero.veh-hero:not(.has-art) .crumbs,
body.vehicles .hero.veh-hero:not(.has-art) .crumbs a,
body.vehicles .jhero.veh-hero:not(.has-art) .crumbs,
body.vehicles .jhero.veh-hero:not(.has-art) .crumbs a {
  color: #f8fafc !important;
  text-shadow: none;
}



/* Shop-grid density 2026-09-19 — score rows stay one word, hub cards even */
body.vehicles .tl-heat--scores,
body.vehicles .tl-viz-hbars,
body.vehicles .veh-cmp-meter {
  max-width: 100%;
  overflow-x: auto;
}
body.vehicles .tl-heat-score,
body.vehicles .tl-viz-hbar,
body.vehicles .veh-cmp-meter {
  display: grid;
  grid-template-columns: max-content minmax(5.5rem, 1fr) 2.75rem;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 0;
}
body.vehicles .tl-heat-score > .tl-heat-score-lab,
body.vehicles .tl-viz-hbar > .tl-viz-hbar-lab,
body.vehicles .veh-cmp-meter > span, body.vehicles .veh-meter-label {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  -webkit-hyphens: none;
  line-height: 1.2;
  min-width: max-content;
  flex-wrap: nowrap;
}
body.vehicles .tl-heat-score-cells,
body.vehicles .tl-viz-hbar-track {
  min-width: 5.5rem;
  width: 100%;
  align-self: center;
}
body.vehicles .tl-heat-score > .tl-heat-score-n,
body.vehicles .tl-viz-hbar > .tl-viz-hbar-val {
  justify-self: end;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
body.vehicles .tl-viz-meter-lab {
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  -webkit-hyphens: none;
}
body.vehicles .tl-viz-meter-row {
  align-items: center;
  gap: 8px;
}
body.vehicles .tl-viz-meter-val {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
body.vehicles .tl-explore-grid {
  align-items: stretch;
  gap: 14px;
}
body.vehicles .tl-explore-grid > a.card,
body.vehicles .tl-popular-card,
body.vehicles .tl-start-card,
body.vehicles .tl-related-in-card,
body.vehicles a.tl-glance-card {
  display: flex;
  flex-direction: column;
  min-height: 7.25rem;
  padding: 16px;
  background: #fff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, .09);
  box-sizing: border-box;
}
body.vehicles .tl-explore-grid > a.card h3,
body.vehicles .tl-popular-card strong,
body.vehicles .tl-start-card strong,
body.vehicles .tl-related-in-card strong,
body.vehicles .tl-glance-card strong {
  color: #111827;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  -webkit-hyphens: none;
}
body.vehicles .tl-explore-grid > a.card .sub,
body.vehicles .tl-popular-card span:not(.tl-dot):not(.tl-start-k),
body.vehicles .tl-start-card span:not(.tl-start-k),
body.vehicles .tl-related-in-card span:not(.tl-preview-pop) {
  color: #1f2937;
}
body.vehicles .tl-start-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  align-items: stretch;
}
body.vehicles .tl-start-row > .tl-start-card:first-child {
  border: 2px solid #111827;
  box-shadow: 0 10px 28px -18px rgba(17, 24, 39, .55);
}
body.vehicles .tl-start-row > .tl-start-card:first-child:hover {
  border-color: #111827;
}
body.vehicles .tl-start-row > .tl-start-card:first-child strong::after {
  content: " →";
  font-weight: 800;
}

body.vehicles .veh-meter-head {
  display: grid; grid-template-columns: max-content minmax(2rem, 1fr);
  gap: 6px 12px; align-items: baseline; margin-bottom: 6px;
}
body.vehicles .veh-meter-val { justify-self: end; white-space: nowrap; }
body.vehicles .veh-cmp-meter b { justify-self: end; white-space: nowrap; }
body.vehicles a.veh-card {
  min-height: 7.25rem; padding: 16px; background: #fff; color: #111827;
  border: 1px solid rgba(17, 24, 39, .09);
}
body.vehicles a.veh-card h3 { color: #111827; overflow-wrap: normal; word-break: keep-all; hyphens: none; }
body.vehicles a.veh-card .sub { color: #1f2937; }

/* P4 2026-09-19 — market ink + cutaway uncrop. App CSS only. No buy tools. */
body.vehicles {
  --tl-heat-0: #334155;
  --tl-heat-1: #0e7490;
}
@media (prefers-color-scheme: dark) {
  body.vehicles {
    --tl-heat-0: #94a3b8;
    --tl-heat-1: #5eead4;
  }
}
body.vehicles .veh-cutaway,
body.vehicles .veh-cutaway-svg,
body.vehicles .radar,
body.vehicles .veh-mkt {
  overflow: visible;
}
body.vehicles .veh-mkt,
body.vehicles .veh-mkt-year,
body.vehicles .veh-mkt-era,
body.vehicles .veh-mkt-range,
body.vehicles .veh-mkt-infra-block {
  color: var(--ink, #0c1220);
}

/* MOBILE-390 2026-09-20 — cutaways scroll inside and stay readable. */
@media (max-width: 430px) {
  html[lang] body.vehicles,
  html[lang] body.vehicles :where(p, li, h1, h2, h3, .sub, .lede, figcaption, .veh-diagram-node) {
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
    -webkit-hyphens: none;
  }
  html[lang] body.vehicles .diagram,
  html[lang] body.vehicles .veh-cutaway,
  html[lang] body.vehicles .veh-cutaway-sec,
  html[lang] body.vehicles .veh-vd-art,
  html[lang] body.vehicles .radar {
    display: block;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    box-sizing: border-box;
    contain: inline-size;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  html[lang] body.vehicles .veh-diagram {
    min-width: 520px;
    min-height: 240px;
  }
  html[lang] body.vehicles .veh-diagram-node {
    white-space: normal;
    max-width: 11rem;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  html[lang] body.vehicles .veh-cutaway-svg {
    width: 720px;
    min-width: 720px;
    max-width: none;
    height: auto;
  }
  html[lang] body.vehicles .tl-heat--scores,
  html[lang] body.vehicles .tl-viz-hbars,
  html[lang] body.vehicles .veh-cmp-lab {
    overflow-x: hidden;
    max-width: 100%;
  }
  html[lang] body.vehicles .tl-heat-score,
  html[lang] body.vehicles .tl-viz-hbar,
  html[lang] body.vehicles .veh-cmp-meter,
  html[lang] body.vehicles .veh-si-row {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: minmax(0, 1.15fr) minmax(3.25rem, 1fr) 2.35rem;
  }
  html[lang] body.vehicles .veh-si-lab { grid-column: auto; }
  html[lang] body.vehicles .tl-heat-score-lab,
  html[lang] body.vehicles .tl-viz-hbar-lab,
  html[lang] body.vehicles .veh-cmp-meter > span,
  html[lang] body.vehicles .veh-meter-label,
  html[lang] body.vehicles .veh-si-lab,
  html[lang] body.vehicles .veh-score-scale {
    white-space: normal;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  html[lang] body.vehicles button,
  html[lang] body.vehicles select,
  html[lang] body.vehicles input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  html[lang] body.vehicles .pill,
  html[lang] body.vehicles .veh-cut-nav a,
  html[lang] body.vehicles .veh-hotspot {
    min-height: 44px;
    box-sizing: border-box;
  }
  html[lang] body.vehicles .veh-hotspot .n {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}
