/*
Theme Name: CC-LOT Performance
Theme URI: https://cc-lot.com/
Author: CC-LOT
Description: A performance-led WooCommerce storefront for CC-LOT vehicle lighting.
Version: 0.1.7
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: cc-lot-performance
*/

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --cc-black: #0f1113;
  --cc-ink: #17191c;
  --cc-carbon: #232629;
  --cc-graphite: #505354;
  --cc-steel: #858a89;
  --cc-silver: #b7bbba;
  --cc-line: #d2d5d3;
  --cc-pattern: #e5e7e5;
  --cc-surface-soft: #f2f3f2;
  --cc-surface: #f8f8f6;
  --cc-white: #ffffff;
  --cc-race-red-deep: #8c2d33;
  --cc-race-red: #c21835;
  --cc-race-red-bright: #d00032;
  --cc-text-on-dark: #f5f6f4;
  --cc-text-muted-on-dark: #b7bbba;
  --cc-text-on-light: #17191c;
  --cc-text-muted-on-light: #505354;
  --cc-photo-black: var(--cc-black);
  --cc-paper: var(--cc-surface);
  --cc-paper-muted: var(--cc-surface-soft);
  --cc-mist: var(--cc-pattern);
  --cc-steel-deep: var(--cc-graphite);
  --cc-red: var(--cc-race-red);
  --cc-red-deep: var(--cc-race-red-deep);
  --cc-border-dark: rgba(210, 213, 211, 0.22);
  --cc-border-light: rgba(23, 25, 28, 0.22);
  --carbon: var(--cc-ink);
  --graphite: var(--cc-carbon);
  --steel: var(--cc-graphite);
  --off-white: var(--cc-surface);
  --paper: var(--cc-surface);
  --muted: var(--cc-text-muted-on-dark);
  --signal: var(--cc-race-red);
  --line: var(--cc-border-dark);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.45, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--carbon); }
body { margin: 0; background: var(--carbon); color: var(--off-white); font-family: Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
button, select { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
::selection { background: var(--cc-race-red); color: var(--cc-white); }
html { scrollbar-color: var(--signal) var(--carbon); scrollbar-width: thin; }
body { caret-color: var(--signal); }
select { accent-color: var(--signal); }
.arrow { position: relative; width: 13px; height: 13px; display: inline-block; flex: 0 0 13px; }
.arrow::before { content: ""; position: absolute; left: 1px; bottom: 2px; width: 10px; height: 1px; background: currentColor; transform: rotate(-45deg); transform-origin: center; }
.arrow::after { content: ""; position: absolute; top: 1px; right: 1px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 0 4.5vw;
  border-bottom: 1px solid var(--line);
  color: var(--cc-text-on-dark);
  background: var(--cc-ink);
}
.brand { width: 196px; display: block; overflow: visible; }
.brand img { width: 100%; height: auto; object-fit: contain; overflow: visible; }
.nav { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 3vw, 58px); }
.nav a, .header-action {
  position: relative;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-action { justify-self: end; padding: 13px 17px; border: 1px solid var(--cc-border-dark); }
.header-action:hover { background: var(--off-white); color: var(--carbon); }
.menu-toggle { display: none; }

.hero {
  --pointer-x: .5;
  --pointer-y: .5;
  position: relative;
  min-height: 650px;
  height: 84svh;
  max-height: 820px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  align-items: center;
  background:
    radial-gradient(circle at 80% 42%, rgba(80,83,84,.32), transparent 38%),
    linear-gradient(115deg, var(--cc-photo-black) 0%, var(--cc-carbon) 52%, var(--cc-ink) 100%);
}
.hero-grid {
  position: absolute;
  inset: 88px 0 72px;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  mask-image: linear-gradient(to right, black, transparent 72%);
}
.beam-field { position: absolute; inset: 88px 0 72px; overflow: hidden; pointer-events: none; }
.beam-cutoff {
  position: absolute;
  left: -8%;
  top: 48%;
  width: 72%;
  height: 25%;
  background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.2) 18%, rgba(255,255,255,.03));
  clip-path: polygon(0 38%, 56% 38%, 65% 14%, 100% 8%, 100% 100%, 0 100%);
  filter: blur(10px);
  opacity: .68;
}
.beam-core {
  position: absolute;
  left: -6%;
  top: 52%;
  width: 68%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9) 22%, white 68%, transparent);
  box-shadow: 0 0 22px 4px rgba(255,255,255,.3);
  animation: beam-open 1.8s .22s both var(--ease-out);
}
.beam-cursor { position: absolute; left: 48%; top: calc(52% - 25px); width: 1px; height: 52px; background: var(--signal); opacity: .8; }
.beam-cursor::after { content: ""; position: absolute; top: 25px; left: -14px; width: 29px; height: 1px; background: var(--signal); }
@keyframes beam-open { from { transform: scaleX(0); transform-origin: left; opacity: 0; } to { transform: scaleX(1); transform-origin: left; opacity: 1; } }

.hero-copy { position: relative; z-index: 4; padding: 110px 2vw 80px 7vw; max-width: 860px; }
.hero h1, h2, h3 { font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(64px, 7vw, 96px); line-height: .83; letter-spacing: -.03em; }
.hero h1 span { display: block; animation: copy-in 1.25s both var(--ease-out); }
.hero h1 span:nth-child(1) { animation-delay: .24s; }
.hero h1 span:nth-child(2) { animation-delay: .42s; }
@keyframes copy-in { from { clip-path: inset(0 100% 0 0); transform: translateY(22px); } to { clip-path: inset(0); transform: translateY(0); } }
.hero-intro { max-width: 590px; margin: 30px 0 0; color: var(--cc-text-muted-on-dark); font-size: clamp(15px, 1.15vw, 19px); line-height: 1.55; animation: hero-detail-in 1.2s .68s both var(--ease-out); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; animation: hero-detail-in 1.2s .82s both var(--ease-out); }
@keyframes hero-detail-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.button { min-width: 196px; min-height: 54px; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; padding: 0 22px; border: 1px solid var(--cc-border-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: 240ms var(--ease-out); }
.button-primary { color: var(--cc-text-on-dark); background: var(--cc-red-deep); border-color: var(--cc-red-deep); }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--cc-paper); border-color: var(--cc-paper); color: var(--cc-ink); }
.button:active, .finder-submit:active, .header-action:active { transform: scale(.975); transition-duration: 110ms; }
.hero-product {
  position: absolute;
  z-index: 2;
  right: -13vw;
  bottom: 40px;
  width: min(76vw, 1200px);
  transform: translate3d(calc((var(--pointer-x) - .5) * -18px), calc((var(--pointer-y) - .5) * -12px), 0);
  transition: transform 450ms var(--ease-out);
  filter: saturate(.75) contrast(1.08) brightness(.82);
  opacity: .98;
}
.hero-product img { animation: product-arrive 1.7s .28s both var(--ease-out); }
@keyframes product-arrive { from { opacity: 0; clip-path: inset(0 0 38% 22%); transform: translate3d(80px, 44px, 0) scale(.94); filter: blur(10px); } to { opacity: 1; clip-path: inset(0); transform: none; filter: blur(0); } }
.hero-product::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--carbon), transparent 32%); pointer-events: none; }
.hero-rail { position: absolute; z-index: 5; left: 0; bottom: 0; width: 100%; height: 72px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; border-top: 1px solid var(--line); background: rgba(23,25,28,.92); }
.hero-rail > span, .hero-handoff { height: 100%; display: flex; align-items: center; gap: 16px; padding: 0 3vw; border-right: 1px solid var(--line); color: var(--cc-text-muted-on-dark); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-handoff { justify-content: space-between; background: var(--cc-red-deep); color: var(--cc-text-on-dark); border-right: 0; transition: background 240ms var(--ease-out), color 240ms var(--ease-out); }
.hero-handoff:hover, .hero-handoff:focus-visible { background: var(--cc-paper); color: var(--cc-ink); }
.finder { position: relative; padding: 38px 7vw 92px; background: var(--off-white); color: var(--carbon); }
.finder::before { content: ""; position: absolute; top: 0; left: 0; width: 38%; height: 3px; background: linear-gradient(90deg, var(--cc-race-red), rgba(194,24,53,0)); transform-origin: left; animation: finder-seam 1.1s .55s both var(--ease-out); }
@keyframes finder-seam { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.finder-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; }
.finder-heading strong { color: var(--signal); }
.finder h2, .products h2, .brand-story h2, .partners h2, .dealers h2 { margin: 0; font-size: clamp(58px, 6vw, 96px); line-height: .86; letter-spacing: -.03em; }
.finder-heading > p, .products-heading > p { max-width: 500px; margin: 0 0 10px; color: var(--cc-text-muted-on-light); font-size: 17px; line-height: 1.6; }
.vehicle-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; background: var(--cc-silver); border: 1px solid var(--cc-silver); }
.vehicle-types button { min-height: 78px; display: flex; align-items: center; gap: 18px; padding: 0 22px; border: 0; background: var(--cc-paper); color: var(--cc-text-muted-on-light); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-align: left; text-transform: uppercase; cursor: pointer; transition: background 220ms var(--ease-out), color 220ms var(--ease-out); }
.vehicle-types button:hover, .vehicle-types button:focus-visible { color: var(--cc-ink); background: var(--cc-paper-muted); }
.vehicle-types button.is-active { background: var(--cc-ink); color: var(--cc-text-on-dark); }
.finder-form { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 1px; margin-top: 1px; background: var(--cc-silver); border: 1px solid var(--cc-silver); }
.finder-form label { display: block; padding: 20px 22px 18px; background: var(--off-white); }
.finder-form label span { display: block; margin-bottom: 13px; color: var(--cc-steel-deep); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.finder-form select { width: 100%; border: 0; outline: 0; background: transparent; color: var(--cc-text-on-light); font-size: 14px; font-weight: 700; cursor: pointer; }
.finder-submit { height: 83px; min-width: 190px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 24px; border: 0; background: var(--cc-red-deep); color: var(--cc-text-on-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.finder-submit:hover, .finder-submit:focus-visible { background: var(--cc-red); }
.finder-status { min-height: 22px; margin: 16px 0 0; color: var(--cc-text-muted-on-light); font-size: 13px; }

.technology { padding: 88px 7vw 110px; color: var(--cc-text-on-dark); background: var(--cc-ink); }
.hero h1, .technology-lead h2, .lab-copy h3, .technology-list h3, .thermal-copy h2, .proof-title h2, .brand-teaser h2, .partners h2, .dealers h2, .about-detail h1, .about-detail h2, .catalog-intro h1, .product-detail-copy h1, .product-detail-copy h2, .product-commerce h2, .product-engineering h2, .next-product strong {
  color: var(--cc-text-on-dark);
}
.finder h2, .products h2, .social-channels h2, .catalog-page h1, .catalog-page h2, .product-highlight h2, .product-fitment h2 {
  color: var(--cc-text-on-light);
}
.technology-lead { display: grid; grid-template-columns: 1.4fr .6fr; gap: 8vw; align-items: end; }
.technology-lead h2, .thermal-copy h2, .proof-title h2 { margin: 0; font-size: clamp(58px, 6vw, 96px); line-height: .86; letter-spacing: -.03em; }
.technology-lead > p:last-child { margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.beam-lab { min-height: 620px; display: grid; grid-template-columns: 1.35fr .65fr; margin-top: 90px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lab-visual { position: relative; min-height: 620px; overflow: hidden; background: linear-gradient(150deg, var(--cc-photo-black), var(--cc-carbon)); }
.lab-grid { position: absolute; inset: 0; opacity: calc(.12 + (var(--beam-progress, 0) * .2)); background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 10% 14%; transform: translate3d(calc((var(--beam-progress, 0) - .5) * -26px), 0, 0); }
.lab-beam { position: absolute; left: -5%; top: 45%; width: 108%; height: 32%; background: linear-gradient(to bottom, rgba(255,255,255,.02), rgba(255,255,255,.6) 25%, rgba(255,255,255,.08)); clip-path: polygon(0 28%, 55% 28%, 64% 4%, 100% 0, 100% 100%, 0 100%); filter: blur(calc(18px - (var(--beam-progress, 0) * 10px))); transform: scaleX(calc(.34 + (var(--beam-progress, 0) * .66))); transform-origin: left center; will-change: transform, filter; }
.lab-beam::before { content: ""; position: absolute; left: 0; top: 25%; width: 100%; height: 2px; background: rgba(255,255,255,.92); box-shadow: 0 0 20px white; }
.lab-zero, .lab-cutoff { position: absolute; z-index: 2; font: 700 9px/1 monospace; letter-spacing: .15em; color: var(--cc-silver); }
.lab-zero { top: 43%; left: 49%; }
.lab-cutoff { top: 38%; right: 3%; }
.lab-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 56px 4vw; background: var(--cc-carbon); }
.lab-copy h3 { margin: 0 0 24px; font-size: clamp(42px, 4vw, 74px); line-height: .9; letter-spacing: -.035em; }
.lab-copy p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.technology-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.technology-list article { min-height: 310px; padding: 42px 3vw 42px 0; border-right: 1px solid var(--line); }
.technology-list article + article { padding-left: 3vw; }
.technology-list h3 { margin: 14px 0 18px; font-size: 28px; letter-spacing: -.025em; }
.technology-list p { max-width: 380px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.thermal-story { min-height: 720px; display: grid; grid-template-columns: 1fr .8fr; align-items: center; margin-top: 70px; background: linear-gradient(120deg, var(--cc-carbon), var(--cc-photo-black)); overflow: hidden; }
.thermal-copy { padding: 7vw; }
.thermal-copy p:last-child { max-width: 560px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.thermal-story img { align-self: end; justify-self: center; max-height: 680px; filter: saturate(calc(.35 + (var(--scene-progress, 0) * .35))) contrast(1.06); transform: translate3d(0, calc(80px - (var(--scene-progress, 0) * 80px)), 0) scale(calc(.92 + (var(--scene-progress, 0) * .08))); transform-origin: bottom center; will-change: transform; }

.products { padding: 90px 7vw 120px; background: var(--paper); color: var(--carbon); }
.products-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); margin-top: 84px; background: transparent; border: 0; }
.product-card { position: relative; min-width: 0; min-height: 640px; display: grid; grid-template-rows: auto minmax(360px, 1fr) auto; gap: 18px; overflow: visible; padding: 0; background: transparent; transition: transform 190ms var(--ease-out); }
.product-code { position: static; z-index: 3; color: var(--cc-graphite); font: 800 clamp(24px, 2.4vw, 40px)/.9 "Barlow Condensed", sans-serif; letter-spacing: -.025em; transition: color 190ms var(--ease-out); }
.product-card img { position: static; width: 100%; height: 100%; min-height: 360px; max-height: 440px; padding: clamp(20px, 3vw, 42px); object-fit: contain; background: var(--cc-white); filter: none; transform: none; transition: transform 190ms var(--ease-out); }
.product-card:hover, .product-card:focus-within { transform: translateY(-4px) scale(1.005); }
.product-card:hover .product-code, .product-card:focus-within .product-code { color: var(--cc-race-red); }
.product-card:hover img, .product-card:focus-within img { transform: scale(1.008); }
.product-card:focus-within { outline: 2px solid var(--cc-race-red); outline-offset: 4px; }
.product-card > div { position: relative; z-index: 2; padding: 24px; background: var(--cc-surface-soft); }
.product-card h3 { margin: 0; font-size: clamp(32px, 3vw, 54px); line-height: .95; letter-spacing: -.035em; }
.product-card p { max-width: 500px; margin: 20px 0 28px; color: var(--cc-text-muted-on-light); font-size: 14px; line-height: 1.6; }
.products-all-link { width: fit-content; display: flex; align-items: center; gap: 18px; margin: 38px 0 0 auto; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.products-all-link:hover, .products-all-link:focus-visible { color: var(--signal); }
.product-link { display: flex; justify-content: space-between; padding-bottom: 7px; border-bottom: 1px solid transparent; color: var(--cc-text-on-light); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; transition: color 190ms var(--ease-out), border-color 190ms var(--ease-out); }
.product-link:hover, .product-link:focus-visible { color: var(--signal); }
.product-card:hover .product-link, .product-card:focus-within .product-link { border-color: var(--cc-race-red); color: var(--cc-race-red); }

.proof { padding: 0 7vw 80px; overflow: hidden; background: var(--cc-ink); }
.proof-hero { min-height: 760px; display: grid; grid-template-columns: .72fr 1.28fr; margin: 0 -7vw; border-bottom: 1px solid var(--line); }
.proof-title { display: flex; flex-direction: column; justify-content: center; padding: 8vw 5vw 8vw 7vw; background: var(--cc-carbon); }
.proof-title h2 { max-width: 620px; }
.proof-title p { max-width: 480px; margin: 34px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.proof-media { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--cc-mist); }
.proof-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,25,28,.38), transparent 26%), linear-gradient(0deg, rgba(23,25,28,.7), transparent 28%); pointer-events: none; }
.proof-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: saturate(calc(.62 + (var(--scene-progress, 0) * .38))) contrast(1.03); transform: scale(calc(1.025 - (var(--scene-progress, 0) * .025))); will-change: transform; }
.proof-media figcaption { position: absolute; z-index: 2; left: 34px; bottom: 28px; color: var(--cc-text-on-dark); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.proof-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.proof-list article { position: relative; min-height: 180px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; padding: 34px 3vw 32px 0; border-bottom: 1px solid var(--line); transition: background 220ms var(--ease-out); }
.proof-list article:nth-child(odd) { border-right: 1px solid var(--line); }
.proof-list article:nth-child(even) { padding-left: 3vw; }
.proof-list article::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px; background: var(--signal); transform: scaleX(0); transform-origin: right; transition: transform 360ms var(--ease-out); }
.proof-list article:hover { background: rgba(255,255,255,.025); }
.proof-list article:hover::after { transform: scaleX(1); transform-origin: left; }
.proof-list strong { font: 700 clamp(36px, 3.6vw, 64px)/.9 "Barlow Condensed", sans-serif; letter-spacing: -.03em; text-transform: uppercase; }
.proof-list article p { max-width: 320px; margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.proof-list article > span { align-self: end; padding-bottom: 4px; color: var(--cc-steel); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.proof-note { max-width: 760px; margin: 34px 0 0; color: var(--cc-steel); font-size: 12px; line-height: 1.6; }

.brand-story { min-height: clamp(600px, 62vh, 760px); background: var(--cc-ink); color: var(--cc-text-on-dark); }
.brand-teaser { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; isolation: isolate; }
.brand-teaser::before { content: ""; position: absolute; z-index: 0; inset: 0; background: linear-gradient(90deg,rgba(23,25,28,.74) 0%,rgba(23,25,28,.44) 52%,rgba(23,25,28,.18) 100%),linear-gradient(110deg,rgba(80,83,84,.2) 0%,transparent 38%,transparent 68%,rgba(194,24,53,.18) 100%); pointer-events: none; }
.brand-teaser::after { content: none; display: none; }
.brand-teaser-backdrop { position: absolute; z-index: -1; inset: -8%; overflow: hidden; }
.brand-teaser-backdrop::after { content: none; }
.brand-teaser-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; opacity: 1; filter: none; transform: translate3d(0, calc(28px - (var(--scene-progress, 0) * 28px)), 0) scale(calc(1.1 - (var(--scene-progress, 0) * .035))); will-change: transform; }
.brand-teaser-copy { position: relative; z-index: 1; width: min(920px, 86vw); display: flex; flex-direction: column; align-items: center; padding: 130px 0 110px; text-align: center; }
.brand-teaser-copy h2 { font-family: Arial, sans-serif; font-size: clamp(36px, 4vw, 62px); font-weight: 400; line-height: 1.2; letter-spacing: .24em; }
.brand-teaser-copy p { max-width: 790px; margin: 46px 0 0; color: var(--cc-paper-muted); font-size: 18px; line-height: 1.85; }
.brand-more, .brand-more:visited { min-width: 210px; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 48px; padding: 0 28px; border: 1px solid var(--cc-line); background: var(--cc-surface); color: var(--cc-text-on-light); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: 1; visibility: visible; transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 200ms var(--ease-out); }
.brand-more .arrow { color: currentColor; opacity: 1; visibility: visible; }
.brand-more:hover { border-color: var(--cc-race-red); background: var(--cc-race-red); color: var(--cc-white); transform: translateY(-2px); }
.brand-more:focus-visible { outline: 2px solid var(--cc-race-red); outline-offset: 4px; border-color: var(--cc-line); background: var(--cc-surface); color: var(--cc-text-on-light); transform: none; }
.text-link { width: fit-content; display: flex; gap: 30px; margin-top: 28px; padding-bottom: 10px; border-bottom: 1px solid var(--carbon); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.about-detail { background: var(--cc-ink); }
.about-page-header { position: absolute; z-index: 20; top: 0; left: 0; width: 100%; height: 88px; display: grid; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr); align-items: center; gap: 32px; padding: 0 4.5vw; border-bottom: 1px solid var(--line); background: var(--cc-ink); }
.about-page-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2.7vw, 48px); }
.about-page-nav a { position: relative; font-size: 11px; line-height: 1; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.about-page-nav a::after { content: ""; position: absolute; left: 0; bottom: -12px; width: 100%; height: 2px; background: var(--signal); transform: scaleX(0); transform-origin: right; transition: transform 240ms var(--ease-out); }
.about-page-nav a:hover::after, .about-page-nav a:focus-visible::after, .about-page-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.about-mobile-menu { display: none; justify-self: end; position: relative; }
.about-mobile-menu summary { cursor: pointer; list-style: none; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.about-mobile-menu summary::-webkit-details-marker { display: none; }
.about-mobile-menu summary::after { content: "+"; display: inline-block; margin-left: 10px; color: var(--signal); }
.about-mobile-menu[open] summary::after { content: "−"; }
.about-mobile-menu > div { position: absolute; top: 31px; right: 0; width: min(280px, calc(100vw - 32px)); display: grid; padding: 10px 20px; border: 1px solid var(--cc-border-dark); background: rgba(23,25,28,.98); box-shadow: 0 24px 70px rgba(3,4,5,.46); }
.about-mobile-menu a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.about-mobile-menu a:last-child { border-bottom: 0; }
.about-detail-hero { position: relative; min-height: 850px; display: grid; grid-template-columns: .78fr 1.22fr; align-items: stretch; padding-top: 88px; overflow: hidden; background: radial-gradient(circle at 77% 48%, rgba(80,83,84,.28), transparent 32%), linear-gradient(120deg, var(--cc-ink), var(--cc-carbon) 62%, var(--cc-photo-black)); }
.about-detail-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 8vw 2vw 8vw 7vw; }
.about-detail-copy h1 { margin: 0; font: 700 clamp(72px, 8vw, 96px)/.84 "Barlow Condensed", sans-serif; letter-spacing: -.03em; text-transform: uppercase; }
.about-detail-copy p { max-width: 610px; margin: 34px 0 0; color: var(--cc-text-muted-on-dark); font-size: 18px; line-height: 1.7; }
.about-detail .text-link { color: var(--cc-text-on-dark); border-color: var(--cc-text-on-dark); }
.about-detail-product { position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.about-detail-product::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 52%, rgba(255,255,255,.12), transparent 38%); }
.about-detail-product img { position: relative; z-index: 1; width: min(72%, 720px); max-height: 760px; object-fit: contain; filter: saturate(.38) contrast(1.06); animation: about-product-in 900ms .12s both var(--ease-out); }
.about-detail-product span { position: absolute; z-index: 2; right: 36px; bottom: 30px; color: var(--cc-silver); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
@keyframes about-product-in { from { opacity: 0; transform: translate3d(60px, 34px, 0) scale(.96); filter: blur(10px) saturate(.2); } to { opacity: 1; transform: none; } }

.factory-record { padding: 110px 7vw 120px; background: var(--paper); color: var(--carbon); }
.about-editorial { padding: 110px 7vw; color: var(--cc-text-on-light); background: var(--cc-paper); }
.about-editorial-content { width: min(920px, 100%); margin: 0 auto; font-size: 17px; line-height: 1.75; }
.about-editorial-content h2, .about-editorial-content h3 { margin: 1.5em 0 .5em; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; }
.about-editorial-content img { height: auto; margin: 46px 0; }
.about-editorial-content .elementor-location-header, .about-editorial-content .elementor-location-footer { display: none; }
.record-copy, .qualification-record-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 8vw; }
.record-copy h2, .qualification-record-heading h2, .about-detail-close h2 { max-width: 820px; margin: 0; font-size: clamp(58px, 6vw, 96px); line-height: .86; letter-spacing: -.03em; }
.record-copy p, .qualification-record-heading p { max-width: 520px; margin: 0 0 8px; color: var(--cc-text-muted-on-light); font-size: 17px; line-height: 1.7; }
.catalog-record { position: relative; margin: 78px 0 0; aspect-ratio: 1.85; overflow: hidden; background: var(--cc-mist); }
.catalog-record-factory { aspect-ratio: 2.75; }
.catalog-record-certifications { aspect-ratio: 3.05; }
.catalog-record::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,25,28,.72), transparent 24%); pointer-events: none; }
.catalog-record img { width: 100%; height: 100%; object-fit: cover; }
.catalog-record-factory img { object-position: center top; }
.catalog-record-certifications img { object-position: center bottom; }
.catalog-record figcaption { position: absolute; z-index: 2; left: 30px; bottom: 24px; color: var(--cc-text-on-dark); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.qualification-record { padding: 110px 7vw 90px; background: var(--cc-ink); }
.qualification-record-heading p { color: var(--muted); }
.qualification-record .catalog-record { margin-top: 76px; }
.qualification-record .proof-list { margin-top: 0; }

.about-detail-close { min-height: 520px; display: grid; grid-template-columns: 1fr .42fr; align-items: stretch; color: var(--cc-text-on-dark); background: var(--cc-red-deep); }
.about-detail-close > div { display: flex; flex-direction: column; justify-content: center; padding: 7vw; }
.about-detail-close p { max-width: 600px; margin: 30px 0 0; font-size: 17px; line-height: 1.65; }
.about-detail-close > a { display: flex; flex-direction: column; justify-content: space-between; padding: 50px; border-left: 1px solid rgba(255,255,255,.3); font: 700 clamp(36px, 4vw, 64px)/.9 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.about-detail-close > a .arrow { align-self: flex-end; }
.about-detail-close > a:hover, .about-detail-close > a:focus-visible { background: var(--cc-paper); color: var(--cc-red-deep); }

.partners { padding: 100px 7vw 72px; background: var(--cc-ink); }
.partners-intro { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 8vw; }
.partners-intro h2 { max-width: 900px; }
.partners-intro p { max-width: 480px; margin: 0 0 8px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.partner-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 76px; padding: 0; background: var(--cc-surface); box-shadow: none; }
.partner-mark { min-height: 210px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 34px; border-right: 1px solid var(--cc-line); background: var(--cc-surface); color: var(--cc-text-on-light); transition: transform 200ms var(--ease-out); }
.partner-mark:last-child { border-right: 0; }
.partner-mark:hover { z-index: 1; transform: translateY(-3px); background: var(--cc-surface); }
.partner-mark img { width: 100%; height: 76px; object-fit: contain; }
.partner-philips { background: var(--cc-surface); }
.partner-philips img { width: 76%; height: 72px; object-fit: contain; }
.partner-panasonic img { width: 82%; height: 72px; object-fit: contain; }
.partner-yufing img { height: 66px; }
.partner-mark span { display: block; text-align: center; }
.partner-jr8 span { color: var(--signal); font: italic 800 clamp(40px, 4.8vw, 76px)/1 "Barlow Condensed", sans-serif; letter-spacing: -.04em; }
.partner-note { max-width: 760px; margin: 24px 0 0; color: var(--cc-text-muted-on-dark); font-size: 11px; line-height: 1.55; }

.dealers { min-height: 620px; display: grid; grid-template-columns: 1fr .38fr; align-items: stretch; color: var(--cc-text-on-dark); background: var(--cc-red-deep); }
.dealer-copy { display: flex; flex-direction: column; justify-content: center; padding: 7vw; }
.dealer-copy .eyebrow { color: var(--cc-text-on-dark); opacity: .75; }
.dealer-copy p:last-child { max-width: 590px; margin: 30px 0 0; font-size: 17px; line-height: 1.65; }
.dealer-action { display: flex; flex-direction: column; justify-content: space-between; padding: 50px; border-left: 1px solid rgba(255,255,255,.3); font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: clamp(36px, 4vw, 64px); line-height: .9; text-transform: uppercase; }
.dealer-action span { max-width: 260px; }
.dealer-action > span:last-child { align-self: flex-end; }
.dealer-action:hover, .dealer-action:focus-visible { background: var(--cc-paper); color: var(--cc-red-deep); }

footer { min-height: 270px; display: grid; grid-template-columns: 1fr 1.2fr 1fr auto; align-items: center; gap: 38px; padding: 60px 7vw; background: var(--cc-ink); border-top: 1px solid var(--line); }
.footer-brand { width: 190px; }
footer p { max-width: 340px; color: var(--cc-steel); font-size: 13px; line-height: 1.55; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a, footer > span { color: var(--cc-silver); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

[data-scroll-scene] { --scene-progress: 0; --beam-progress: 0; }
.motion-ready [data-reveal] { opacity: 0; transition: opacity .92s var(--ease-cinematic); }
.motion-ready .technology-lead[data-reveal], .motion-ready .products-heading[data-reveal], .motion-ready .proof-title[data-reveal], .motion-ready .partners-intro[data-reveal] { clip-path: inset(0 0 100% 0); filter: blur(8px); transform: translate3d(0, 44px, 0); transition: opacity .96s var(--ease-cinematic), clip-path 1.16s var(--ease-cinematic), transform 1.16s var(--ease-cinematic), filter .96s var(--ease-cinematic); }
.motion-ready .vehicle-types[data-reveal], .motion-ready .finder-form[data-reveal] { clip-path: inset(0 100% 0 0); transform: scaleX(.86); transform-origin: left; transition: opacity .86s var(--ease-cinematic), clip-path 1.08s var(--ease-cinematic), transform 1.08s var(--ease-cinematic); }
.motion-ready .finder-form[data-reveal] { transition-delay: .08s; }
.motion-ready .beam-lab[data-reveal] { clip-path: inset(0 10% 0 10%); transform: scale(.97); transition: opacity .98s var(--ease-cinematic), clip-path 1.28s var(--ease-cinematic), transform 1.28s var(--ease-cinematic); }
.motion-ready .technology-list article[data-reveal] { transform: translate3d(0, 58px, 0); transition: opacity .92s var(--ease-cinematic), transform 1.08s var(--ease-cinematic); }
.motion-ready .technology-list article:nth-child(2) { transition-delay: .12s; }
.motion-ready .technology-list article:nth-child(3) { transition-delay: .24s; }
.motion-ready .thermal-story[data-reveal] { clip-path: inset(12% 0 12% 0); transform: scale(.96); transition: opacity 1.02s var(--ease-cinematic), clip-path 1.34s var(--ease-cinematic), transform 1.34s var(--ease-cinematic); }
.motion-ready .spotlight-heading[data-reveal], .motion-ready .social-heading[data-reveal] { clip-path: inset(0 0 100% 0); transform: translateY(34px); transition: opacity .82s var(--ease-cinematic), clip-path 1.02s var(--ease-cinematic), transform 1.02s var(--ease-cinematic); }
.motion-ready .spotlight-card[data-reveal] { opacity: 1; }
.motion-ready .product-card[data-reveal] { clip-path: inset(100% 0 0 0); transform: translate3d(0, 42px, 0); transition: opacity .96s var(--ease-cinematic), clip-path 1.24s var(--ease-cinematic), transform 1.24s var(--ease-cinematic); }
.motion-ready .proof-media[data-reveal] { clip-path: inset(0 0 0 18%); filter: brightness(.42); transition: opacity .92s var(--ease-cinematic), clip-path 1.24s var(--ease-cinematic), filter 1.12s var(--ease-cinematic); }
.motion-ready .proof-list article[data-reveal], .motion-ready .partner-mark[data-reveal] { clip-path: inset(0 100% 0 0); transform: translate3d(-20px, 0, 0); transition: opacity .82s var(--ease-cinematic), clip-path 1.02s var(--ease-cinematic), transform 1.02s var(--ease-cinematic); }
.motion-ready .proof-list article:nth-child(2), .motion-ready .proof-list article:nth-child(5) { transition-delay: .1s; }
.motion-ready .proof-list article:nth-child(3), .motion-ready .proof-list article:nth-child(6) { transition-delay: .2s; }
.motion-ready .brand-teaser-copy[data-reveal], .motion-ready .dealer-copy[data-reveal] { clip-path: inset(0 0 18% 0); filter: blur(7px); transform: translate3d(0, 34px, 0); transition: opacity .82s var(--ease-cinematic), clip-path .98s var(--ease-cinematic), transform .98s var(--ease-cinematic), filter .82s var(--ease-cinematic); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; clip-path: inset(0); filter: none; }
.motion-ready .technology-list article[data-reveal].is-visible, .motion-ready .proof-list article[data-reveal].is-visible { opacity: 1; transform: none; clip-path: inset(0); }
:focus-visible { outline: 2px solid var(--cc-race-red); outline-offset: 4px; }

/* Product catalog */
.catalog-page { min-height: 100vh; background: var(--cc-mist); color: var(--cc-text-on-light); }
.catalog-header, .product-detail-header { position: absolute; z-index: 20; top: 0; left: 0; width: 100%; height: 88px; display: grid; grid-template-columns: minmax(180px,1fr) auto minmax(180px,1fr); align-items: center; gap: 32px; padding: 0 4.5vw; border-bottom: 1px solid var(--cc-border-dark); color: var(--cc-text-on-dark); background: var(--cc-ink); }
.catalog-header .vehicle-nav, .product-detail-header .vehicle-nav { display: flex; align-items: center; justify-content: center; gap: clamp(24px,3vw,58px); }
.catalog-header .vehicle-nav a, .product-detail-header .vehicle-nav a { position: relative; font-size: 11px; line-height: 1; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.product-mobile-menu { display: none; justify-self: end; position: relative; }
.product-mobile-menu summary { position: relative; width: 44px; height: 44px; display: grid; place-items: center; list-style: none; border: 1px solid var(--cc-border-dark); cursor: pointer; }
.product-mobile-menu summary::-webkit-details-marker { display: none; }
.product-mobile-menu summary i, .product-mobile-menu summary i::before { width: 20px; height: 1px; display: block; background: var(--cc-text-on-dark); transition: transform 220ms var(--ease-out); }
.product-mobile-menu summary i::before { content: ""; transform: translateY(6px); }
.product-mobile-menu[open] summary i { transform: rotate(45deg); }
.product-mobile-menu[open] summary i::before { transform: rotate(-90deg); }
.product-mobile-menu > div { position: absolute; top: 50px; right: 0; width: min(310px,calc(100vw - 32px)); display: grid; padding: 8px 20px 20px; border: 1px solid var(--cc-border-dark); background: rgba(23,25,28,.98); box-shadow: 0 24px 70px rgba(3,4,5,.46); }
.product-mobile-menu > div a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-mobile-menu > div .product-mobile-action { margin-top: 12px; padding: 16px; border: 0; color: var(--cc-text-on-dark); background: var(--cc-red-deep); text-align: center; }
.catalog-intro { min-height: 720px; display: grid; grid-template-columns: 1.1fr .62fr; align-items: end; gap: 4vw 9vw; padding: 170px 7vw 96px; overflow: hidden; color: var(--cc-text-on-dark); background: radial-gradient(circle at 86% 18%, rgba(80,83,84,.26), transparent 28%), linear-gradient(124deg, var(--cc-ink), var(--cc-carbon) 64%, var(--cc-ink)); }
.catalog-intro::after { content: attr(data-total); position: absolute; right: -1vw; top: 66px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.08); font: 800 clamp(240px,34vw,560px)/.8 "Barlow Condensed", sans-serif; }
.catalog-intro h1 { position: relative; z-index: 1; margin: 0; font: 700 clamp(72px,8vw,134px)/.8 "Barlow Condensed", sans-serif; letter-spacing: -.045em; text-transform: uppercase; animation: catalog-title-in 850ms .08s both var(--ease-out); }
.catalog-intro-note { position: relative; z-index: 1; align-self: end; padding: 28px 0 3px 32px; border-left: 1px solid var(--signal); }
.catalog-intro-note strong { font: 700 clamp(24px,2.2vw,38px)/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.catalog-intro-note p { max-width: 460px; margin: 18px 0 0; color: var(--cc-silver); font-size: 14px; line-height: 1.65; }
@keyframes catalog-title-in { from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(64px); filter: blur(10px); } to { opacity: 1; clip-path: inset(0); transform: none; filter: none; } }

.catalog-browser { padding: 0 7vw 120px; }
.catalog-filters { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4,1fr); margin-top: -1px; border: 1px solid var(--cc-silver); background: var(--cc-silver); gap: 1px; }
.catalog-filters button { min-height: 98px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 14px; padding: 18px 20px; border: 0; background: var(--cc-paper); color: var(--cc-text-muted-on-light); cursor: pointer; text-align: left; transition: background 220ms var(--ease-out), color 220ms var(--ease-out); }
.catalog-filters button > span { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.catalog-filters button small { color: var(--cc-steel-deep); font-size: 11px; }
.catalog-filters button:hover, .catalog-filters button:focus-visible { color: var(--cc-ink); background: var(--cc-paper-muted); }
.catalog-filters button.is-active { color: var(--cc-text-on-dark); background: var(--cc-ink); }
.catalog-filters button.is-active small { color: var(--cc-silver); }
.catalog-result-count { margin: 50px 0 20px; color: var(--cc-text-muted-on-light); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; padding: 1px; background: var(--cc-silver); }
.catalog-card { --catalog-index: 0; min-width: 0; background: var(--cc-paper-muted); animation: catalog-card-in 620ms calc(var(--catalog-index) * 32ms) both var(--ease-out); }
.catalog-card:nth-child(6n+2), .catalog-card:nth-child(6n+4), .catalog-card:nth-child(6n+6) { background: var(--cc-mist); }
.catalog-card > a { min-height: 620px; display: grid; grid-template-rows: auto 1fr auto; padding: 24px; overflow: hidden; }
.catalog-card-head { position: relative; z-index: 2; color: var(--cc-text-muted-on-light); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.catalog-card-image { position: relative; min-height: 330px; display: grid; place-items: center; overflow: hidden; }
.catalog-card-image::after { content: ""; position: absolute; left: 5%; right: 5%; bottom: 7%; height: 1px; background: var(--cc-border-light); }
.catalog-card-beam { position: absolute; left: -20%; top: 42%; width: 120%; height: 26%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.84) 48%, rgba(194,24,53,.12) 52%, transparent 76%); clip-path: polygon(0 43%,45% 43%,55% 10%,100% 0,100% 100%,0 100%); opacity: .5; filter: blur(8px); transform: scaleX(.62); transform-origin: left; transition: transform 700ms var(--ease-out), opacity 500ms; }
.catalog-card img { position: relative; z-index: 1; width: 92%; height: 320px; object-fit: contain; filter: saturate(.5) contrast(1.04) drop-shadow(0 22px 25px rgba(3,4,5,.16)); transition: transform 580ms var(--ease-out), filter 420ms var(--ease-out); }
.catalog-card:hover img { transform: translateY(-10px) scale(1.035); filter: saturate(.82) contrast(1.04) drop-shadow(0 28px 34px rgba(3,4,5,.22)); }
.catalog-card:hover .catalog-card-beam { transform: scaleX(1); opacity: .88; }
.catalog-card-copy { position: relative; z-index: 2; padding-top: 22px; }
.catalog-card-copy h2 { margin: 0; font: 700 clamp(44px,4vw,70px)/.82 "Barlow Condensed", sans-serif; letter-spacing: -.035em; text-transform: uppercase; }
.catalog-card-copy > p { margin: 12px 0 0; color: var(--cc-text-muted-on-light); font-size: 14px; }
.catalog-card-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--cc-border-light); }
.catalog-card-metrics span { font: 700 18px/1 "Barlow Condensed", sans-serif; }
.catalog-card-metrics small { display: block; margin-bottom: 8px; color: var(--cc-text-muted-on-light); font: 700 10px/1 Arial,sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.catalog-card-link { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; color: var(--cc-red-deep); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
@keyframes catalog-card-in { from { opacity: 0; clip-path: inset(8% 0 8% 0); transform: translateY(28px); } to { opacity: 1; clip-path: inset(0); transform: none; } }

.catalog-contact { min-height: 500px; display: grid; grid-template-columns: 1fr .36fr; align-items: stretch; color: var(--cc-text-on-dark); background: var(--cc-red-deep); }
.catalog-contact > div { display: flex; flex-direction: column; justify-content: center; padding: 7vw; }
.catalog-contact h2 { max-width: 900px; margin: 0; font-size: clamp(58px,6vw,96px); line-height: .86; }
.catalog-contact > a { display: flex; flex-direction: column; justify-content: space-between; padding: 50px; border-left: 1px solid rgba(255,255,255,.3); font: 700 clamp(32px,3.5vw,58px)/.9 "Barlow Condensed",sans-serif; text-transform: uppercase; }
.catalog-contact > a .arrow { align-self: flex-end; }
.catalog-contact > a:hover { color: var(--cc-red-deep); background: var(--cc-paper); }

/* Product detail */
.product-detail-page { --detail-progress: 0; min-height: 100vh; background: var(--cc-ink); }
.product-detail-hero { min-height: 820px; display: grid; grid-template-columns: .88fr 1.12fr; padding-top: 88px; overflow: hidden; background: var(--cc-photo-black); }
.product-detail-copy { position: relative; z-index: 4; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 40px 4vw 28px 7vw; background: linear-gradient(110deg,var(--cc-ink) 0%,var(--cc-carbon) 100%); }
.product-detail-copy::after { content: ""; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: linear-gradient(transparent,rgba(255,255,255,.25),transparent); }
.product-back { width: fit-content; color: var(--cc-text-muted-on-dark); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.product-back:hover { color: var(--cc-text-on-dark); }
.product-identity { margin: 38px 0 30px; }
.product-identity h1 { margin: 0; font: 800 clamp(92px,10.5vw,176px)/.72 "Barlow Condensed",sans-serif; letter-spacing: -.052em; text-transform: uppercase; }
.product-identity h2 { margin: 30px 0 0; font: 600 clamp(22px,2.2vw,38px)/1 "Barlow Condensed",sans-serif; letter-spacing: -.01em; text-transform: uppercase; }
.product-identity p { max-width: 600px; margin: 26px 0 0; color: var(--cc-text-muted-on-dark); font-size: 15px; line-height: 1.7; }
.product-metric-rail { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--cc-border-dark); border-left: 1px solid var(--cc-border-dark); }
.product-metric-rail > div { min-width: 0; min-height: 132px; display: flex; flex-direction: column; padding: 18px 16px; border-right: 1px solid var(--cc-border-dark); border-bottom: 1px solid var(--cc-border-dark); }
.product-metric-rail span { min-height: 28px; color: var(--cc-text-muted-on-dark); font-size: 10px; font-weight: 800; line-height: 1.3; letter-spacing: .1em; text-transform: uppercase; }
.product-metric-rail strong { display: block; inline-size: 100%; max-width: 100%; min-width: 0; margin-top: auto; font: 700 clamp(20px,1.7vw,32px)/.94 "Barlow Condensed",sans-serif; font-variant-numeric: tabular-nums; letter-spacing: -.02em; overflow-wrap: anywhere; word-break: break-word; }
.product-metric-rail small { margin-top: 10px; color: var(--cc-text-muted-on-dark); font-size: 10px; line-height: 1.35; }
.product-metric-rail > div.is-standout { border-color: var(--cc-border-dark); color: var(--cc-text-on-dark); background: var(--cc-red-deep); }
.product-metric-rail > div.is-standout span, .product-metric-rail > div.is-standout small { color: var(--cc-text-on-dark); }
.product-metric-rail > div.is-standout strong { font-size: clamp(22px,2.05vw,38px); }
.product-detail-stage { --product-shift: 0px; --product-scale: 1; position: relative; min-width: 0; display: grid; place-items: center; overflow: hidden; color: var(--cc-text-on-light); background: linear-gradient(130deg,var(--cc-paper-muted),var(--cc-mist) 58%,var(--cc-silver)); animation: product-stage-open 950ms both var(--ease-cinematic); }
.product-stage-grid { position: absolute; inset: 0; opacity: calc(.14 + var(--detail-progress) * .12); background-image: linear-gradient(rgba(23,25,28,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(23,25,28,.15) 1px,transparent 1px); background-size: 9vw 9vw; transform: translateY(calc(var(--product-shift) * -.5)); }
.product-stage-grid::after { content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: rgba(194,24,53,.48); }
.product-stage-beam { position: absolute; left: -22%; top: 28%; width: 138%; height: 42%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.94) 38%,rgba(255,255,255,.2) 70%,transparent); clip-path: polygon(0 42%,42% 42%,52% 12%,100% 0,100% 100%,0 100%); filter: blur(12px); opacity: calc(.42 + var(--detail-progress) * .45); transform: scaleX(calc(.76 + var(--detail-progress) * .24)); transform-origin: left; }
.product-stage-scan { position: absolute; z-index: 1; top: 13%; bottom: 13%; left: 15%; width: 1px; background: var(--signal); box-shadow: 0 0 18px rgba(194,24,53,.5); animation: product-scan 5.4s 1.2s infinite var(--ease-cinematic); }
.product-stage-scan::before, .product-stage-scan::after { content: ""; position: absolute; left: -6px; width: 13px; height: 1px; background: var(--signal); }
.product-stage-scan::before { top: 0; }.product-stage-scan::after { bottom: 0; }
.product-stage-axis { position: absolute; z-index: 2; top: 25px; right: 28px; color: var(--cc-graphite); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.product-detail-stage > img { position: relative; z-index: 2; width: min(82%,780px); height: 600px; object-fit: contain; filter: saturate(.72) contrast(1.05) drop-shadow(0 42px 45px rgba(8,9,10,.27)); transform: translate3d(0,var(--product-shift),0) scale(var(--product-scale)); animation: product-object-in 1.05s .18s both var(--ease-out); will-change: transform; }
.product-detail-stage > p { position: absolute; z-index: 3; left: 28px; bottom: 24px; margin: 0; color: var(--cc-graphite); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
@keyframes product-stage-open { from { clip-path: inset(0 0 0 100%); } to { clip-path: inset(0); } }
@keyframes product-object-in { from { opacity: 0; transform: translate3d(90px,70px,0) scale(.9); filter: blur(15px) saturate(.2); } to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }
@keyframes product-scan { 0%,12% { left: 15%; opacity: 0; } 20% { opacity: .9; } 76% { opacity: .9; } 88%,100% { left: 85%; opacity: 0; } }
.product-motion-ready .product-identity h1, .product-motion-ready .product-identity h2, .product-motion-ready .product-identity p { animation: product-copy-in 700ms both var(--ease-out); }
.product-motion-ready .product-identity h1 { animation-delay: .05s; }.product-motion-ready .product-identity h2 { animation-delay: .12s; }.product-motion-ready .product-identity p { animation-delay: .2s; }
.product-motion-ready .product-metric-rail > div { animation: product-metric-in 680ms .3s both var(--ease-out); }
.product-motion-ready .product-metric-rail > div:nth-child(2) { animation-delay: .38s; }.product-motion-ready .product-metric-rail > div:nth-child(3) { animation-delay: .46s; }
@keyframes product-copy-in { from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(34px); filter: blur(7px); } to { opacity: 1; clip-path: inset(0); transform: none; filter: none; } }
@keyframes product-metric-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.product-highlight { min-height: 560px; display: flex; flex-direction: column; justify-content: center; padding: 100px 12vw; color: var(--cc-text-on-light); background: var(--cc-mist); }
.product-highlight h2 { max-width: 1180px; margin: 0; font: 700 clamp(54px,6.2vw,104px)/.92 "Barlow Condensed",sans-serif; letter-spacing: -.033em; text-transform: uppercase; }
.product-engineering { display: grid; grid-template-columns: .8fr 1.2fr; padding: 120px 7vw; background: var(--cc-carbon); }
.product-engineering-title { padding-right: 8vw; }
.product-engineering-title h2 { margin: 0; font: 700 clamp(54px,5.5vw,92px)/.86 "Barlow Condensed",sans-serif; letter-spacing: -.03em; text-transform: uppercase; }
.product-engineering-title > p:last-child { max-width: 480px; margin: 32px 0 0; color: var(--cc-steel); font-size: 14px; line-height: 1.7; }
.product-spec-list { margin: 0; border-top: 1px solid rgba(255,255,255,.17); }
.product-spec-list > div { min-height: 82px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 26px; border-bottom: 1px solid rgba(255,255,255,.17); }
.product-spec-list dt { color: var(--cc-silver); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-spec-list dd { margin: 0; font: 600 clamp(20px,2vw,30px)/1 "Barlow Condensed",sans-serif; text-align: right; }
.product-fitment { min-height: 520px; display: grid; grid-template-columns: 1fr .38fr; color: var(--cc-text-on-light); background: var(--cc-paper-muted); }
.product-fitment > div { display: flex; flex-direction: column; justify-content: center; padding: 7vw; }
.product-fitment h2 { max-width: 950px; margin: 0; font: 700 clamp(48px,5vw,84px)/.9 "Barlow Condensed",sans-serif; letter-spacing: -.03em; text-transform: uppercase; }
.product-fitment > div > span { max-width: 700px; margin-top: 28px; color: var(--cc-graphite); font-size: 12px; line-height: 1.6; }
.product-fitment > a { display: flex; flex-direction: column; justify-content: space-between; padding: 48px; border-left: 1px solid var(--cc-silver); color: var(--cc-text-on-dark); background: var(--cc-red-deep); font: 700 clamp(32px,3.4vw,56px)/.9 "Barlow Condensed",sans-serif; text-transform: uppercase; }
.product-fitment > a .arrow { align-self: flex-end; }
.product-fitment > a:hover { color: var(--cc-red-deep); background: var(--cc-paper); }
.next-product { min-height: 250px; display: grid; grid-template-columns: 1fr auto 40px; align-items: center; gap: 38px; padding: 40px 7vw; border-top: 1px solid var(--cc-border-dark); background: var(--cc-ink); }
.next-product > span { color: var(--cc-silver); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.next-product strong { font: 800 clamp(68px,8vw,126px)/.8 "Barlow Condensed",sans-serif; letter-spacing: -.04em; text-transform: uppercase; }
.next-product:hover strong { color: var(--signal); }
.product-motion-ready [data-detail-reveal] { opacity: 0; clip-path: inset(8% 0 8% 0); transform: translateY(40px); filter: blur(7px); transition: opacity .72s var(--ease-cinematic), clip-path .92s var(--ease-cinematic), transform .92s var(--ease-cinematic), filter .72s var(--ease-cinematic); }
.product-motion-ready [data-detail-reveal].is-visible { opacity: 1; clip-path: inset(0); transform: none; filter: none; }

@media (max-width: 1000px) {
  .site-header { height: 74px; grid-template-columns: 1fr auto; padding: 0 24px; }
  .brand { width: 170px; }
  .header-action { display: none; }
  .menu-toggle { position: relative; z-index: 3; width: 44px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span { width: 24px; height: 1px; background: currentColor; transition: 250ms; }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; padding: 12vw; background: rgba(23,25,28,.98); transform: translateY(-100%); visibility: hidden; transition: 500ms var(--ease-out); }
  .nav.is-open { transform: none; visibility: visible; }
  .nav a { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: clamp(40px, 8vw, 76px); letter-spacing: -.02em; }
  .hero { min-height: 760px; height: auto; max-height: none; grid-template-columns: 1fr; align-items: start; padding-top: 150px; }
  .hero-copy { padding: 60px 7vw 360px; }
  .hero h1 { font-size: clamp(58px, 12vw, 102px); }
  .hero-product { right: -24vw; bottom: 62px; width: 120vw; }
  .hero-rail > span, .hero-handoff { padding: 0 18px; }
  .finder-heading, .products-heading, .technology-lead, .partners-intro { grid-template-columns: 1fr; gap: 32px; }
  .finder-form { grid-template-columns: 1fr 1fr; }
  .beam-lab { grid-template-columns: 1fr; }
  .lab-copy { min-height: 380px; }
  .technology-list { grid-template-columns: 1fr; }
  .technology-list article { min-height: auto; padding: 36px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .technology-list article + article { padding-left: 0; }
  .technology-list h3 { margin-top: 34px; }
  .thermal-story { grid-template-columns: 1fr 1fr; min-height: 650px; }
  .product-card { min-height: 590px; }
  .proof-hero { min-height: 0; grid-template-columns: 1fr; }
  .proof-title { min-height: 540px; }
  .proof-media { min-height: 620px; }
  .proof-list { grid-template-columns: 1fr; }
  .proof-list article:nth-child(odd) { border-right: 0; }
  .proof-list article:nth-child(even) { padding-left: 0; }
  .brand-teaser { min-height: 600px; }
  .about-page-header { height: 74px; grid-template-columns: 1fr auto; padding: 0 24px; }
  .about-page-nav, .about-page-header .header-action { display: none; }
  .about-mobile-menu { display: block; }
  .about-detail-hero { min-height: 820px; grid-template-columns: 1fr; padding-top: 74px; }
  .about-detail-copy { padding: 100px 7vw 390px; }
  .about-detail-product { position: absolute; inset: 74px 0 0; justify-content: flex-end; opacity: .54; }
  .about-detail-product img { width: min(78vw, 680px); }
  .about-detail-product::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, var(--cc-ink) 0%, rgba(23,25,28,.78) 44%, transparent); }
  .about-detail-copy { pointer-events: none; }
  .about-detail-copy a { pointer-events: auto; }
  .record-copy, .qualification-record-heading { grid-template-columns: 1fr; gap: 34px; }
  .catalog-record { aspect-ratio: 1.45; }
  .about-detail-close { grid-template-columns: 1fr; }
  .about-detail-close > a { min-height: 240px; border-top: 1px solid rgba(255,255,255,.3); border-left: 0; }
  .partner-rail { grid-template-columns: repeat(2, 1fr); }
  .dealers { grid-template-columns: 1fr; }
  .dealer-action { min-height: 280px; border-left: 0; border-top: 1px solid rgba(255,255,255,.3); }
  footer { grid-template-columns: 1fr 1fr; }
  .catalog-header, .product-detail-header { height: 74px; grid-template-columns: 1fr auto; padding: 0 24px; }
  .catalog-header .vehicle-nav, .product-detail-header .vehicle-nav { display: none; }
  .product-mobile-menu { display: block; }
  .catalog-intro { min-height: 650px; grid-template-columns: 1fr; padding-top: 145px; }
  .catalog-intro h1 { font-size: clamp(68px,12vw,110px); }
  .catalog-intro-note { max-width: 620px; }
  .catalog-filters { grid-template-columns: repeat(2,1fr); }
  .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catalog-card > a { min-height: 580px; }
  .catalog-contact { grid-template-columns: 1fr; }
  .catalog-contact > a { min-height: 250px; border-top: 1px solid rgba(255,255,255,.3); border-left: 0; }
  .product-detail-hero { min-height: 0; grid-template-columns: 1fr; padding-top: 74px; }
  .product-detail-copy { min-height: 740px; padding: 48px 7vw; }
  .product-detail-stage { min-height: 720px; }
  .product-detail-stage > img { height: 580px; }
  .product-engineering { grid-template-columns: 1fr; gap: 72px; }
  .product-engineering-title { padding-right: 0; }
  .product-fitment { grid-template-columns: 1fr; }
  .product-fitment > a { min-height: 250px; border-top: 1px solid var(--cc-silver); border-left: 0; }
}

@media (max-width: 660px) {
  .hero { min-height: 720px; }
  .hero-copy { padding: 40px 22px 310px; }
  .hero-intro { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-product { right: -54vw; bottom: 70px; width: 175vw; opacity: .78; }
  .hero-rail { grid-template-columns: 1fr; height: 70px; }
  .hero-rail > span { display: none; }
  .hero-handoff { display: flex; }
  .finder, .technology, .products, .proof, .partners { padding-left: 22px; padding-right: 22px; }
  .vehicle-types { grid-template-columns: 1fr; }
  .finder-form { grid-template-columns: 1fr; }
  .finder-submit { height: 68px; }
  .technology-lead h2, .thermal-copy h2, .proof-title h2, .finder h2, .products h2, .partners h2, .dealers h2 { font-size: clamp(48px, 16vw, 72px); }
  .lab-visual { min-height: 420px; }
  .beam-lab { min-height: auto; }
  .thermal-story { grid-template-columns: 1fr; min-height: 800px; }
  .thermal-copy { padding: 48px 28px 0; }
  .thermal-story img { max-height: 470px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 0; padding: 0; }
  .product-code { font-size: clamp(24px, 9vw, 36px); }
  .product-card img { min-height: 300px; max-height: 360px; }
  .proof-hero { margin-left: -22px; margin-right: -22px; }
  .proof-title { min-height: 500px; padding: 90px 22px; }
  .proof-media { min-height: 520px; }
  .proof-media img { object-fit: cover; object-position: 26% center; }
  .proof-media figcaption { left: 22px; bottom: 20px; }
  .proof-list article { min-height: 158px; grid-template-columns: 1fr; padding: 28px 0; }
  .proof-list article > span { margin-top: 24px; }
  .brand-teaser { min-height: 560px; }
  .brand-teaser-backdrop { inset: -4% -46%; }
  .brand-teaser-backdrop img { object-position: 48% 58%; }
  .brand-teaser-copy { width: auto; padding: 100px 22px 82px; }
  .brand-teaser-copy h2 { max-width: 320px; font-size: 34px; line-height: 1.25; letter-spacing: .18em; }
  .brand-teaser-copy p { margin-top: 34px; font-size: 15px; line-height: 1.75; }
  .brand-more { width: 100%; min-height: 66px; margin-top: 38px; }
  .about-page-header .brand { width: 156px; }
  .about-mobile-menu summary { font-size: 9px; letter-spacing: .12em; }
  .about-detail-hero { min-height: 760px; }
  .about-detail-copy { padding: 88px 22px 330px; }
  .about-detail-copy h1 { font-size: clamp(64px, 21vw, 84px); }
  .about-detail-copy p { font-size: 15px; }
  .about-detail-product img { width: 110vw; max-width: none; transform: translateX(28%); }
  .about-detail-product span { right: 22px; bottom: 20px; }
  .factory-record, .qualification-record { padding: 86px 22px 90px; }
  .record-copy h2, .qualification-record-heading h2, .about-detail-close h2 { font-size: clamp(48px, 16vw, 72px); }
  .record-copy p, .qualification-record-heading p { font-size: 15px; }
  .catalog-record { width: calc(100% + 44px); aspect-ratio: .9; margin: 58px 0 0 -22px; }
  .catalog-record-factory, .catalog-record-certifications { aspect-ratio: .9; }
  .catalog-record-factory img { object-position: 22% top; }
  .catalog-record-certifications img { object-position: 28% bottom; }
  .catalog-record figcaption { left: 22px; bottom: 18px; }
  .about-detail-close > div { padding: 86px 22px; }
  .about-detail-close > a { padding: 34px 22px; }
  .partner-rail { grid-template-columns: 1fr; }
  .partner-mark { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--cc-line); }
  .partner-mark:last-child { border-bottom: 0; }
  .dealer-copy { padding: 90px 22px; }
  .dealer-action { padding: 34px 22px; }
  footer { grid-template-columns: 1fr; padding: 60px 22px; }
  .catalog-header .brand, .product-detail-header .brand { width: 156px; }
  .catalog-intro { min-height: 670px; padding: 125px 22px 72px; gap: 60px; }
  .catalog-intro::after { top: 88px; font-size: 70vw; }
  .catalog-intro h1 { font-size: clamp(62px,20vw,86px); }
  .catalog-intro-note { padding-left: 20px; }
  .catalog-browser { padding: 0 22px 86px; }
  .catalog-filters { grid-template-columns: 1fr 1fr; }
  .catalog-filters button { min-height: 86px; grid-template-columns: 38px 1fr; padding: 14px; }
  .catalog-filters button small { display: none; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card > a { min-height: 590px; padding: 22px; }
  .catalog-card-image { min-height: 300px; }
  .catalog-card img { height: 290px; }
  .catalog-card-copy h2 { font-size: 56px; }
  .catalog-contact > div { padding: 84px 22px; }
  .catalog-contact > a { padding: 34px 22px; }
  .product-detail-hero { position: relative; min-height: 940px; display: block; padding-top: 74px; }
  .product-detail-copy { position: relative; z-index: 4; min-height: 866px; padding: 300px 22px 30px; background: linear-gradient(to bottom, rgba(23,25,28,0) 0, rgba(23,25,28,.08) 210px, rgba(23,25,28,.95) 292px, var(--cc-ink) 360px); }
  .product-back { position: absolute; top: 18px; left: 22px; padding: 8px 10px; color: var(--carbon); background: rgba(245,245,241,.9); }
  .product-identity { margin: 0 0 28px; }
  .product-identity h1 { font-size: clamp(82px,28vw,126px); }
  .product-identity h2 { font-size: 25px; }
  .product-identity p { font-size: 14px; }
  .product-metric-rail { grid-template-columns: 1fr; }
  .product-metric-rail > div { min-height: 92px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 6px 18px; }
  .product-metric-rail span { min-height: 0; }
  .product-metric-rail strong { margin-top: 0; font-size: 25px; }
  .product-metric-rail small { grid-column: 1 / -1; margin-top: 0; }
  .product-detail-stage { position: absolute; z-index: 1; top: 74px; left: 0; width: 100%; height: 330px; min-height: 0; }
  .product-detail-stage > img { width: 110%; max-width: none; height: 300px; }
  .product-detail-stage > p { left: 18px; bottom: 14px; font-size: 10px; }
  .product-stage-axis { top: 16px; right: 18px; font-size: 10px; }
  .product-highlight { min-height: 470px; padding: 80px 22px; }
  .product-highlight h2 { font-size: clamp(48px,15vw,70px); }
  .product-engineering { padding: 88px 22px; gap: 58px; }
  .product-engineering-title h2 { font-size: clamp(48px,15vw,70px); }
  .product-spec-list > div { min-height: 76px; grid-template-columns: .9fr 1.1fr; }
  .product-spec-list dd { font-size: 20px; }
  .product-fitment > div { padding: 84px 22px; }
  .product-fitment h2 { font-size: clamp(46px,14vw,68px); }
  .product-fitment > a { padding: 34px 22px; }
  .next-product { min-height: 210px; grid-template-columns: 1fr 24px; gap: 20px; padding: 32px 22px; }
  .next-product > span { grid-column: 1 / -1; }
  .next-product strong { font-size: clamp(60px,22vw,92px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-scroll-scene] { --scene-progress: 1; --beam-progress: 1; }
  [data-reveal] { opacity: 1; transform: none; clip-path: none; filter: none; }
  [data-detail-reveal] { opacity: 1; transform: none; clip-path: none; filter: none; }
}

/* WordPress / WooCommerce integration */
body.admin-bar .site-header,
body.admin-bar .catalog-header,
body.admin-bar .product-detail-header { top: 32px; }
body.wp-theme-cc-lot-performance #masthead,
body.wp-theme-cc-lot-performance #colophon,
body.wp-theme-cc-lot-performance .footer-width-fixer { display: none !important; }
.standard-page { min-height: 100vh; padding: 170px 7vw 100px; background: var(--cc-mist); color: var(--cc-text-on-light); }
.standard-page-content { width: min(980px, 100%); margin: 0 auto; }
.standard-page-content h1 { margin: 0 0 48px; font: 700 clamp(60px, 8vw, 118px)/.82 "Barlow Condensed", sans-serif; letter-spacing: -.04em; text-transform: uppercase; }
.standard-page-content .entry-content { font-size: 16px; line-height: 1.75; }
.standard-page-content input, .standard-page-content textarea, .standard-page-content select { width: 100%; padding: 14px; border: 1px solid var(--cc-silver); background: var(--cc-paper); }
.standard-page-content button, .standard-page-content input[type="submit"] { width: auto; min-height: 52px; padding: 0 22px; border: 0; color: var(--cc-text-on-dark); background: var(--cc-red-deep); font-weight: 800; text-transform: uppercase; cursor: pointer; }
.contact-page { min-height: 100vh; background: var(--cc-mist); color: var(--cc-text-on-light); }
.contact-hero { min-height: 680px; display: grid; grid-template-columns: 1fr .72fr; padding-top: 88px; overflow: hidden; color: var(--cc-text-on-dark); background: radial-gradient(circle at 80% 42%, rgba(80,83,84,.26), transparent 26%), linear-gradient(124deg, var(--cc-ink), var(--cc-carbon) 64%, var(--cc-ink)); }
.contact-copy { display: flex; flex-direction: column; justify-content: center; padding: 8vw 4vw 7vw 7vw; }
.contact-copy h1 { margin: 0; font: 700 clamp(72px,8vw,118px)/.8 "Barlow Condensed",sans-serif; letter-spacing: -.04em; text-transform: uppercase; }
.contact-copy > p { max-width: 650px; margin: 34px 0 0; color: var(--cc-text-muted-on-dark); font-size: 17px; line-height: 1.7; }
.contact-address { display: grid; gap: 12px; margin-top: 58px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-address span { color: var(--cc-steel); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-address strong { max-width: 570px; font: 600 clamp(24px,2.4vw,38px)/1.1 "Barlow Condensed",sans-serif; text-transform: uppercase; }
.contact-signal { position: relative; display: grid; place-items: center; overflow: hidden; border-left: 1px solid var(--line); }
.contact-signal::before { content: ""; position: absolute; width: min(32vw,490px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.16); transform: rotate(45deg); }
.contact-signal::after { content: ""; position: absolute; width: min(19vw,290px); aspect-ratio: 1; border: 1px solid var(--signal); transform: rotate(45deg); }
.contact-signal span { position: absolute; width: 1px; height: 100%; background: linear-gradient(transparent,var(--signal),transparent); }
.contact-signal strong { position: relative; z-index: 2; font: 700 clamp(34px,4.2vw,68px)/.84 "Barlow Condensed",sans-serif; text-align: center; letter-spacing: .02em; }
.contact-workspace { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.contact-form-shell { padding: 100px 7vw; background: var(--cc-mist); }
.contact-form-shell h2 { margin: 0 0 52px; font: 700 clamp(54px,5.5vw,90px)/.86 "Barlow Condensed",sans-serif; text-transform: uppercase; }
.contact-editor-content { font-family: Arial,sans-serif; font-size: 16px; line-height: 1.6; }
.contact-editor-content .elementor { font-family: Arial,sans-serif; }
.contact-editor-content form { display: grid; gap: 18px; }
.contact-editor-content label { display: grid; gap: 9px; color: var(--cc-text-muted-on-light); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-editor-content input:not([type="submit"]), .contact-editor-content textarea, .contact-editor-content select { width: 100%; min-height: 54px; padding: 14px 16px; border: 1px solid var(--cc-silver); border-radius: 0; outline: 0; color: var(--cc-text-on-light); background: var(--cc-paper); font: 400 16px/1.4 Arial,sans-serif; }
.contact-editor-content textarea { min-height: 150px; resize: vertical; }
.contact-editor-content input:focus, .contact-editor-content textarea:focus, .contact-editor-content select:focus { border-color: var(--signal); box-shadow: 0 0 0 1px var(--signal); }
.contact-editor-content input[type="submit"], .contact-editor-content button[type="submit"] { min-height: 56px; padding: 0 26px; border: 0; border-radius: 0; color: var(--cc-text-on-dark); background: var(--cc-red-deep); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.contact-map { min-height: 700px; display: grid; grid-template-rows: 1fr auto; background: var(--cc-carbon); }
.contact-map iframe { width: 100%; height: 100%; min-height: 620px; border: 0; filter: grayscale(1) contrast(1.05); }
.contact-map > a { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 28px; color: var(--cc-text-on-dark); background: var(--cc-red-deep); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-card > img, .product-card > .woocommerce-product-gallery__image { width: 88%; height: 340px; align-self: center; object-fit: contain; }
.catalog-card[hidden] { display: none !important; }
.catalog-empty { margin: 30px 0; padding: 42px; border: 1px solid var(--cc-silver); background: var(--cc-paper); }
.catalog-empty strong { font: 700 clamp(30px, 3vw, 48px)/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.catalog-empty p { max-width: 620px; color: var(--cc-graphite); line-height: 1.6; }
.catalog-empty button { min-height: 48px; padding: 0 20px; border: 0; color: var(--cc-text-on-dark); background: var(--cc-red-deep); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.product-media { padding: 120px 7vw; color: var(--cc-text-on-light); background: var(--cc-mist); }
.product-media-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.product-media-heading h2 { margin: 0; font: 700 clamp(54px, 6vw, 98px)/.86 "Barlow Condensed", sans-serif; letter-spacing: -.03em; text-transform: uppercase; }
.product-media-heading p { margin: 0; color: var(--cc-graphite); font-size: 15px; line-height: 1.7; }
.product-media-group { margin-top: 76px; }
.product-media-group h3 { margin: 0 0 24px; font-size: 24px; letter-spacing: .04em; }
.product-media-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--cc-silver); }
.product-media-grid figure { min-height: 420px; display: grid; place-items: center; margin: 0; padding: 28px; background: var(--cc-paper-muted); }
.product-media-grid img { width: 100%; height: 380px; object-fit: contain; }
.product-media-empty { min-height: 260px; display: grid; place-content: center; gap: 12px; padding: 30px; border: 1px dashed var(--cc-silver); color: var(--cc-graphite); text-align: center; background: rgba(255,255,255,.28); }
.product-media-empty strong { color: var(--carbon); font: 700 30px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.product-beam-media .product-media-empty { color: var(--cc-silver); border-color: rgba(255,255,255,.24); background: linear-gradient(145deg,var(--cc-black),var(--cc-carbon)); }
.product-beam-media .product-media-empty strong { color: white; }
.product-commerce { min-height: 390px; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; padding: 90px 7vw; background: var(--cc-carbon); }
.product-commerce h2 { margin: 0; font: 700 clamp(48px, 5vw, 82px)/.88 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.product-commerce p { margin: 22px 0 0; color: var(--cc-line); font-size: 18px; }
.product-commerce .price { color: var(--cc-text-on-dark); font: 700 34px/1 "Barlow Condensed", sans-serif; }
.product-buy form.cart { display: flex; gap: 1px; margin: 0; }
.product-buy .quantity input { width: 76px; height: 58px; padding: 0 12px; border: 1px solid var(--cc-border-dark); color: var(--cc-text-on-dark); background: var(--cc-ink); text-align: center; }
.product-buy .single_add_to_cart_button { min-height: 58px; flex: 1; padding: 0 28px; border: 0; color: var(--cc-text-on-dark); background: var(--cc-red-deep); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.product-buy .single_add_to_cart_button:hover { color: var(--cc-ink); background: var(--cc-paper); }
.woocommerce-notices-wrapper { position: fixed; z-index: 100; right: 20px; bottom: 20px; width: min(430px, calc(100vw - 40px)); }
.woocommerce-message, .woocommerce-error, .woocommerce-info { margin: 0; padding: 18px 20px; border: 1px solid var(--cc-border-dark); color: var(--cc-text-on-dark); background: var(--cc-carbon); list-style: none; box-shadow: 0 18px 55px rgba(3,4,5,.35); }
.woocommerce-message a, .woocommerce-error a, .woocommerce-info a { color: var(--cc-text-on-dark); text-decoration: underline; }
.media-empty { position: relative; z-index: 2; padding: 28px; border: 1px dashed rgba(8,9,10,.35); font: 700 24px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }

@media (max-width: 1000px) {
  .product-media-heading, .product-commerce { grid-template-columns: 1fr; gap: 46px; }
  .contact-hero, .contact-workspace { grid-template-columns: 1fr; }
  .contact-signal { min-height: 420px; border-top: 1px solid var(--line); border-left: 0; }
  .contact-map { min-height: 620px; }
}
@media (max-width: 782px) {
  body.admin-bar .site-header, body.admin-bar .catalog-header, body.admin-bar .product-detail-header { top: 46px; }
}
@media (max-width: 660px) {
  .product-media { padding: 84px 22px; }
  .product-media-grid { grid-template-columns: 1fr; }
  .product-media-grid figure { min-height: 300px; }
  .product-media-grid img { height: 280px; }
  .product-commerce { padding: 78px 22px; }
  .product-buy form.cart { flex-direction: column; }
  .product-buy .quantity input { width: 100%; }
  .standard-page { padding: 130px 22px 80px; }
  .contact-hero { padding-top: 74px; }
  .contact-copy { padding: 90px 22px 76px; }
  .contact-copy h1 { font-size: clamp(64px,20vw,88px); }
  .contact-signal { min-height: 330px; }
  .contact-form-shell { padding: 84px 22px; }
  .contact-map iframe { min-height: 470px; }
  .vehicle-types button { padding: 0 18px; }
}

/* v0.1.3 — vehicle-first navigation, product spotlights and channel controls */
.site-header, .catalog-header, .product-detail-header {
  grid-template-columns: minmax(176px,.8fr) minmax(330px,1.2fr) minmax(176px,.8fr);
  gap: clamp(18px,2vw,38px);
}
.vehicle-nav { display: flex; align-items: center; justify-content: center; gap: clamp(24px,3.5vw,66px); }
.vehicle-nav a { position: relative; padding: 16px 0; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.vehicle-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 2px; background: var(--signal); transform: scaleX(0); transform-origin: right; transition: transform 260ms var(--ease-out); }
.vehicle-nav a:hover::after, .vehicle-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 6px; }
.header-icon, .menu-toggle { width: 44px; height: 44px; display: grid; place-items: center; border: 0; color: var(--cc-text-on-dark); background: transparent; cursor: pointer; transition: color 180ms ease, background 180ms ease; }
.header-icon:hover, .header-icon:focus-visible, .menu-toggle:hover, .menu-toggle:focus-visible { color: var(--cc-race-red-bright); background: rgba(210,213,211,.08); }
.header-icon svg { width: 25px; height: 25px; }
.header-cart { position: relative; }
.header-cart > span { position: absolute; top: 4px; right: 2px; min-width: 15px; height: 15px; display: grid; place-items: center; border-radius: 999px; color: var(--cc-text-on-dark); background: var(--cc-red-deep); font: 700 8px/1 Arial,sans-serif; }
.menu-toggle { position: relative; z-index: 42; display: flex; flex: 0 0 44px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 0; line-height: 0; }
.menu-toggle span { display: block; flex: 0 0 1px; width: 25px; height: 1px; margin: 0; background: currentColor; transform-origin: 50% 50%; transition: transform 300ms var(--ease-out), opacity 180ms ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.nav-drawer { position: fixed; z-index: 40; top: 0; right: 0; width: min(620px,92vw); height: 100dvh; display: grid; grid-template-columns: 1.3fr .7fr; align-content: center; align-items: start; gap: 56px 44px; padding: 92px clamp(30px,5vw,78px) 56px; color: var(--cc-text-on-light); background: var(--cc-paper); box-shadow: -40px 0 90px rgba(3,4,5,.36); transform: translateX(110%); visibility: hidden; transition: transform 560ms var(--ease-out), visibility 560ms; }
.nav.nav-drawer::before { content: ""; position: fixed; inset: 0 min(620px,92vw) 0 0; background: rgba(3,4,5,.65); opacity: 0; pointer-events: none; transition: opacity 400ms ease; }
.nav.nav-drawer.is-open { transform: none; visibility: visible; }
.nav.nav-drawer.is-open::before { opacity: 1; pointer-events: auto; }
.nav.nav-drawer a::after { display: none; }
.drawer-kicker { grid-column: 1 / -1; padding-bottom: 18px; border-bottom: 1px solid var(--cc-border-light); color: var(--cc-text-muted-on-light); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.drawer-primary, .drawer-secondary { display: grid; gap: 18px; }
.nav.nav-drawer .drawer-primary a { font: 700 clamp(34px,3.3vw,52px)/.88 "Barlow Condensed",sans-serif; letter-spacing: -.02em; text-transform: uppercase; transition: color 180ms ease, transform 240ms var(--ease-out); }
.nav.nav-drawer .drawer-secondary a { color: var(--cc-text-muted-on-light); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.nav.nav-drawer a:hover, .nav.nav-drawer a:focus-visible { color: var(--cc-red-deep); transform: translateX(5px); }
.drawer-signature { grid-column: 1 / -1; color: var(--cc-steel); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
body.menu-open { overflow: hidden; }

.vehicle-types button { min-height: 92px; }

.spotlight-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-top: 110px; }
.spotlight-heading span { color: var(--signal); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.spotlight-heading h2 { margin: 14px 0 0; font-size: clamp(54px,5.4vw,88px); line-height: .86; letter-spacing: -.03em; }
.spotlight-controls { display: flex; gap: 1px; }
.spotlight-controls button { width: 58px; height: 58px; border: 1px solid var(--cc-border-dark); color: var(--cc-text-on-dark); background: transparent; cursor: pointer; transition: background 180ms ease,color 180ms ease; }
.spotlight-controls button:hover, .spotlight-controls button:focus-visible { color: var(--cc-ink); background: var(--cc-paper); }
.spotlight-rail { display: flex; gap: 20px; margin: 42px -7vw 0; padding: 0 7vw 28px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-color: var(--cc-red-deep) var(--cc-carbon); scrollbar-width: thin; }
.spotlight-card { flex: 0 0 min(78vw,1040px); min-width: 0; scroll-snap-align: start; color: var(--cc-text-on-dark); background: linear-gradient(126deg,var(--cc-carbon),var(--cc-photo-black) 70%); }
.spotlight-card > a { position: relative; min-height: 610px; display: grid; grid-template-columns: .66fr 1.34fr; grid-template-rows: 1fr auto; overflow: hidden; }
.spotlight-copy { position: relative; z-index: 2; align-self: center; padding: 70px 0 70px 5vw; }
.spotlight-copy > span { color: var(--cc-text-muted-on-dark); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.spotlight-copy h3 { margin: 12px 0 22px; font-size: clamp(72px,8vw,142px); line-height: .75; letter-spacing: -.04em; }
.spotlight-copy p { max-width: 390px; color: var(--cc-text-muted-on-dark); font-size: 14px; line-height: 1.65; }
.spotlight-copy > strong { width: fit-content; display: flex; align-items: center; gap: 20px; margin-top: 36px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.spotlight-image { align-self: center; min-width: 0; padding: 40px 4vw 30px 0; }
.spotlight-image img { width: 100%; height: 440px; object-fit: contain; filter: saturate(.5) contrast(1.06); transform: scale(.96); transition: filter 400ms ease, transform 620ms var(--ease-out); }
.spotlight-card:hover .spotlight-image img { filter: saturate(.9) contrast(1.04); transform: scale(1.01); }
.spotlight-card dl { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); margin: 0; border-top: 1px solid var(--line); }
.spotlight-card dl > div { padding: 22px 2.5vw; border-right: 1px solid var(--line); }
.spotlight-card dt { color: var(--cc-text-muted-on-dark); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.spotlight-card dd { margin: 8px 0 0; font: 700 clamp(18px,1.7vw,27px)/1 "Barlow Condensed",sans-serif; overflow-wrap: anywhere; }

.social-channels { padding: 110px 0 120px; overflow: hidden; color: var(--cc-text-on-light); background: var(--cc-paper); }
.social-heading { padding: 0 7vw; text-align: center; }
.social-heading > span { color: var(--signal); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.social-heading h2 { margin: 16px 0 0; font-size: clamp(54px,6vw,92px); line-height: .9; letter-spacing: .08em; }
.social-heading p { margin: 24px auto 0; color: var(--cc-text-muted-on-light); font-size: 15px; }
.social-visuals { height: clamp(230px,25vw,420px); display: grid; grid-template-columns: 1.2fr .8fr 1.2fr; gap: 1px; margin-top: 66px; background: var(--cc-silver); }
.social-visuals > div { overflow: hidden; background: var(--cc-photo-black); }
.social-visuals img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6) contrast(1.08); }
.social-visuals > div:nth-child(1) img { object-position: 15% 56%; transform: scale(1.25); }
.social-visuals > div:nth-child(2) img { object-position: 60% 44%; }
.social-visuals > div:nth-child(3) img { object-position: 80% 54%; transform: scale(1.28); }
.social-links { width: min(850px,86vw); display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin: 70px auto 0; background: var(--cc-paper-muted); }
.social-links > a, .social-links > span { min-height: 126px; display: grid; place-items: center; align-content: center; gap: 10px; padding: 18px; color: var(--cc-text-on-light); background: var(--cc-paper); transition: color 180ms ease,background 180ms ease; }
.social-links > a:hover, .social-links > a:focus-visible { color: var(--cc-text-on-dark); background: var(--cc-red-deep); }
.social-icon { width: 31px; height: 31px; }
.social-links span span, .social-links a span { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.social-links .is-pending { color: var(--cc-steel); }
.social-links small { font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.product-metric-rail { gap: clamp(18px,2.5vw,40px); border: 0; }
.product-metric-rail > div { position: relative; min-height: 118px; padding: 4px 0 18px; border: 0; border-bottom: 1px solid rgba(255,255,255,.44); background: transparent; }
.product-metric-rail > div.is-standout { border-color: var(--cc-red-deep); color: var(--cc-text-on-dark); background: transparent; }
.product-metric-rail > div.is-standout span { color: var(--cc-silver); }
.product-metric-rail > div.is-standout::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 42%; height: 2px; background: var(--signal); }
.product-metric-rail strong, .product-metric-rail > div.is-standout strong { margin-top: auto; font-size: clamp(27px,2.35vw,44px); line-height: .88; }

.contact-topic, .contact-form-topic { width: fit-content; margin-bottom: 18px; color: var(--signal); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-public-info { display: grid; grid-template-columns: 1.2fr .8fr .9fr; gap: 28px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-public-info > div { display: grid; align-content: start; gap: 9px; }
.contact-public-info span { color: var(--cc-steel); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-public-info strong, .contact-public-info a { color: var(--cc-text-on-dark); font: 600 clamp(18px,1.7vw,28px)/1.2 "Barlow Condensed",sans-serif; }
.contact-public-info small { color: var(--cc-steel); font-size: 11px; }

@media (max-width: 1000px) {
  .site-header, .catalog-header, .product-detail-header { grid-template-columns: 1fr auto; }
  .vehicle-nav { display: none; }
  .spotlight-card { flex-basis: 86vw; }
  .spotlight-card > a { min-height: 560px; }
}
@media (max-width: 660px) {
  .site-header, .catalog-header, .product-detail-header { padding: 0 14px 0 20px; }
  .site-header .brand, .catalog-header .brand, .product-detail-header .brand { width: 140px; }
  .header-tools { gap: 0; }
  .header-icon, .menu-toggle { width: 44px; height: 44px; }
  .nav.nav-drawer { width: 100vw; grid-template-columns: 1fr; align-content: center; gap: 28px; padding: 88px 28px 40px; }
  .nav.nav-drawer::before { display: none; }
  .drawer-primary { gap: 12px; }
  .nav.nav-drawer .drawer-primary a { font-size: clamp(34px,12vw,48px); }
  .drawer-secondary { grid-template-columns: 1fr 1fr; gap: 13px 20px; }
  .vehicle-types button { min-height: 88px; }
  .spotlight-heading { align-items: center; margin-top: 84px; }
  .spotlight-controls button { width: 48px; height: 48px; }
  .spotlight-rail { margin-left: -22px; margin-right: -22px; padding-left: 22px; padding-right: 22px; }
  .spotlight-card { flex-basis: calc(100vw - 44px); }
  .spotlight-card > a { min-height: 620px; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .spotlight-copy { padding: 36px 28px 0; }
  .spotlight-copy h3 { font-size: 90px; }
  .spotlight-copy p { display: none; }
  .spotlight-copy > strong { margin-top: 22px; }
  .spotlight-image { padding: 8px 20px; }
  .spotlight-image img { height: 310px; }
  .spotlight-card dl { grid-column: 1; }
  .spotlight-card dl > div { padding: 18px 12px; }
  .spotlight-card dd { font-size: 18px; }
  .social-channels { padding: 84px 0; }
  .social-heading { padding: 0 22px; }
  .social-heading h2 { font-size: clamp(48px,15vw,68px); letter-spacing: .04em; }
  .social-visuals { height: 360px; grid-template-columns: 1.2fr .8fr; }
  .social-visuals > div:nth-child(3) { display: none; }
  .social-links { grid-template-columns: repeat(2,1fr); margin-top: 50px; }
  .social-links > a, .social-links > span { min-height: 110px; }
  .product-metric-rail { gap: 18px; }
  .product-metric-rail > div { min-height: 70px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; padding: 0 0 14px; }
  .product-metric-rail strong, .product-metric-rail > div.is-standout strong { text-align: right; font-size: 25px; }
  .contact-public-info { grid-template-columns: 1fr; }
}

/* v0.1.7 — neutral performance system and unified product stages */
.nav.nav-drawer { align-content: start; padding-top: clamp(160px,22vh,260px); }

.hero { grid-template-columns: 1fr; background: var(--cc-photo-black); }
.hero-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: var(--cc-photo-black) url("assets/images/hero-products.webp") center/cover no-repeat; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; filter: saturate(.72) contrast(1.12) brightness(.72); transform: scale(1.015); }
.hero-media::before { content: ""; position: absolute; z-index: 1; inset: 0; background: radial-gradient(circle at 78% 38%,rgba(80,83,84,.34),transparent 42%),radial-gradient(circle at 18% 84%,rgba(194,24,53,.2),transparent 44%); mix-blend-mode: color; pointer-events: none; }
.hero-media::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg,rgba(23,25,28,.92) 0,rgba(23,25,28,.58) 43%,rgba(23,25,28,.18) 72%),linear-gradient(0deg,rgba(23,25,28,.8) 0,transparent 30%,rgba(23,25,28,.26) 100%); pointer-events: none; }
.hero-grid { z-index: 1; opacity: .1; }
.beam-field { z-index: 2; opacity: .64; }
.hero-copy { width: min(900px,70vw); }

.vehicle-types button { min-height: 92px; justify-content: center; gap: 0; padding: 0 22px; text-align: center; }
.catalog-filters button { grid-template-columns: 1fr auto; gap: 18px; }

.technology { position: relative; isolation: isolate; overflow: hidden; }
.technology::before { content: ""; position: absolute; z-index: -1; top: 280px; right: -9vw; width: min(46vw,720px); height: 430px; background: linear-gradient(140deg,rgba(80,83,84,.42),rgba(194,24,53,.14) 68%,transparent); transform: skewY(-5deg); }
.technology::after { content: ""; position: absolute; z-index: -1; left: -7vw; bottom: 8%; width: 28vw; height: 280px; background: linear-gradient(135deg,rgba(194,24,53,.12),transparent 70%); }
.beam-lab { box-shadow: 42px 42px 0 rgba(80,83,84,.18); }
.lab-copy { background: linear-gradient(145deg,var(--cc-carbon) 24%,var(--cc-ink) 100%); }

.products { position: relative; isolation: isolate; overflow: hidden; }
.products::before { content: ""; position: absolute; z-index: -1; top: 3%; right: -8vw; width: 42vw; height: 360px; background: linear-gradient(135deg,rgba(80,83,84,.12),rgba(194,24,53,.06) 58%,transparent); }
.products::after { content: ""; position: absolute; z-index: 2; top: 0; right: 0; width: 32%; height: 3px; background: linear-gradient(90deg,transparent,var(--signal)); }

.thermal-focus { position: relative; margin: 70px -7vw 0; padding: 104px 0 84px; overflow: hidden; color: var(--cc-text-on-dark); background: var(--cc-black); }
.thermal-focus::before { content: ""; position: absolute; top: 0; right: 0; width: 100%; height: 120px; background: radial-gradient(ellipse at 88% 0,rgba(194,24,53,.18),transparent 26%),linear-gradient(180deg,rgba(80,83,84,.16),transparent); pointer-events: none; }
.thermal-focus-header { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); align-items: end; gap: 8vw; padding: 0 7vw 86px; }
.thermal-focus-header > * { min-width: 0; }
.thermal-focus .thermal-copy { width: auto; padding: 0; }
.thermal-focus .thermal-copy h2 { color: var(--cc-text-on-dark); font-size: clamp(64px,7vw,108px); }
.thermal-focus .thermal-copy p { max-width: 540px; }
.thermal-focus .spotlight-heading { align-items: end; justify-content: flex-end; margin: 0; text-align: right; }
.thermal-focus .spotlight-heading h2 { margin: 0; color: rgba(245,246,244,.24); font-size: clamp(50px,6vw,94px); line-height: .78; }
.thermal-focus .spotlight-controls { flex: 0 0 auto; }
.thermal-focus .spotlight-controls button { width: 56px; height: 56px; }
.thermal-focus .spotlight-rail { position: relative; z-index: 3; display: flex; gap: 24px; margin: -54px 0 0; padding: 54px 7vw 30px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-padding-inline: 7vw; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--cc-race-red) rgba(210,213,211,.12); }
.thermal-focus .spotlight-card { position: relative; flex: 0 0 min(82vw,1120px); min-width: 0; opacity: 1; pointer-events: auto; scroll-snap-align: start; isolation: isolate; color: var(--cc-text-on-dark); background: var(--cc-black); box-shadow: none; transform: none; filter: none; }
.thermal-focus .spotlight-card > a { min-height: 620px; display: grid; }
.thermal-focus .spotlight-copy { position: relative; width: auto; padding: 76px 0 70px 5vw; opacity: 1; transform: none; }
.thermal-focus .spotlight-copy h3 { margin: 12px 0 22px; color: var(--cc-text-on-dark); font-size: clamp(76px,8vw,140px); }
.thermal-focus .spotlight-copy p { display: block; }
.thermal-focus .spotlight-copy > strong { margin-top: 34px; }
.thermal-focus .spotlight-image { position: relative; inset: auto; padding: 38px 4vw 28px 0; background: transparent; }
.thermal-focus .spotlight-image img { position: relative; width: 100%; height: 440px; object-fit: contain; mix-blend-mode: lighten; filter: none; transform: scale(.97); transition: transform 200ms var(--ease-out); }
.thermal-focus .spotlight-card:hover .spotlight-image img, .thermal-focus .spotlight-card:focus-within .spotlight-image img { filter: none; transform: scale(1.005); }
.thermal-focus .spotlight-card dl { position: relative; right: auto; bottom: auto; width: auto; border-top-color: var(--cc-border-dark); }

.partners { position: relative; isolation: isolate; overflow: hidden; background: var(--cc-ink); }
.partners::before { content: ""; position: absolute; z-index: -1; inset: 0 0 auto; height: 120px; background: radial-gradient(ellipse at 10% 0,rgba(194,24,53,.14),transparent 30%),linear-gradient(180deg,rgba(80,83,84,.16),transparent); pointer-events: none; }

.social-links { background: transparent; }
.social-links > a, .social-links > span { color: var(--carbon); background: transparent; }
.social-links > a:hover, .social-links > a:focus-visible { color: var(--carbon); background: transparent; opacity: .64; transform: translateY(-3px); }
.social-links .is-pending { color: var(--carbon); opacity: 1; }
.social-icon { width: 42px; height: 42px; }

@media (max-width: 1000px) {
  .nav.nav-drawer { padding-top: clamp(130px,18vh,190px); }
  .hero-copy { width: min(760px,86vw); }
  .thermal-focus { margin-left: -7vw; margin-right: -7vw; }
  .thermal-focus-header { gap: 34px; }
  .thermal-focus .spotlight-card { flex-basis: 88vw; }
}
@media (max-width: 660px) {
  .nav.nav-drawer { align-content: start; padding-top: 126px; }
  .hero-media video { object-position: 62% 50%; filter: saturate(.68) contrast(1.1) brightness(.62); }
  .hero-media::after { background: linear-gradient(90deg,rgba(23,25,28,.88),rgba(23,25,28,.3)),linear-gradient(0deg,rgba(23,25,28,.88),transparent 46%,rgba(23,25,28,.34)); }
  .vehicle-types { grid-template-columns: repeat(3,1fr); }
  .vehicle-types button { min-height: 72px; padding: 0 8px; font-size: 9px; }
  .catalog-filters button { min-height: 78px; grid-template-columns: 1fr; text-align: center; }
  .catalog-filters button small { display: none; }
  .beam-lab { box-shadow: 14px 18px 0 rgba(80,83,84,.18); }
  .thermal-focus { margin: 60px -22px 0; padding: 76px 0 56px; }
  .thermal-focus::before { right: -38vw; width: 110vw; height: 300px; opacity: .42; }
  .thermal-focus-header { grid-template-columns: 1fr; gap: 38px; padding: 0 22px 54px; }
  .thermal-focus .thermal-copy h2 { font-size: clamp(52px,16vw,74px); }
  .thermal-focus .thermal-copy p { max-width: 94%; font-size: 14px; }
  .thermal-focus .spotlight-heading { justify-content: space-between; text-align: left; }
  .thermal-focus .spotlight-heading h2 { font-size: 46px; }
  .thermal-focus .spotlight-controls button { width: 48px; height: 48px; }
  .thermal-focus .spotlight-rail { gap: 14px; margin-top: -24px; padding: 24px 22px 24px; }
  .thermal-focus .spotlight-card { flex-basis: calc(100vw - 44px); }
  .thermal-focus .spotlight-card > a { min-height: 620px; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .thermal-focus .spotlight-copy { padding: 34px 26px 0; }
  .thermal-focus .spotlight-copy h3 { font-size: 86px; }
  .thermal-focus .spotlight-copy p { display: none; }
  .thermal-focus .spotlight-copy > strong { margin-top: 20px; }
  .thermal-focus .spotlight-image { padding: 8px 18px; }
  .thermal-focus .spotlight-image img { height: 306px; }
  .thermal-focus .spotlight-card dl { grid-column: 1; }
  .thermal-focus .spotlight-card dl > div { padding: 16px 10px; }
  .thermal-focus .spotlight-card dd { font-size: 17px; }
  .social-icon { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video { visibility: hidden; }
}
