:root {
  --ink: #101317;
  --ink-soft: #1a2026;
  --paper: #f4f1e9;
  --white: #fffdf7;
  --cool: #bcebf2;
  --cool-bright: #72d9e8;
  --cool-deep: #164150;
  --hot: #ff5c1a;
  --hot-bright: #ffb000;
  --red: #df321e;
  --muted: #687078;
  --line: rgba(16, 19, 23, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--hot-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 3px;
  background: #fff;
  color: #000;
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 0 5vw;
  color: var(--white);
}

.wordmark, .footer-wordmark {
  color: inherit;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}
.wordmark span, .footer-wordmark span {
  margin-left: 3px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav > a {
  color: rgba(255, 253, 247, 0.72);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}
.site-header nav > a:hover { color: var(--cool-bright); }
.header-offer {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(188, 235, 242, 0.36);
  border-radius: 100px;
  background: rgba(188, 235, 242, 0.08);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}
.header-offer span { margin-left: 18px; }
.header-offer:hover { transform: translateY(-2px); background: var(--cool); color: var(--ink); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(540px, 1.06fr);
  min-height: 920px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 89% 13%, rgba(255, 92, 26, 0.18), transparent 24%),
    linear-gradient(110deg, transparent 0 44%, rgba(114, 217, 232, 0.06) 44% 74%, transparent 74%);
}
.heat-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.sun {
  position: absolute;
  z-index: 1;
  top: 92px;
  right: 5.5vw;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 28px rgba(255,92,26,.08), 0 0 90px rgba(255,92,26,.46);
  animation: sunPulse 4s ease-in-out infinite;
}
.sun::before, .sun::after, .sun span::before, .sun span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(255,176,0,.8), transparent);
}
.sun::after { transform: translate(-50%, -50%) rotate(90deg); }
.sun span::before { transform: translate(-50%, -50%) rotate(45deg); }
.sun span::after { transform: translate(-50%, -50%) rotate(-45deg); }
@keyframes sunPulse {
  0%, 100% { box-shadow: 0 0 0 28px rgba(255,92,26,.07), 0 0 90px rgba(255,92,26,.42); }
  50% { box-shadow: 0 0 0 38px rgba(255,92,26,0), 0 0 125px rgba(255,92,26,.56); }
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 150px 3vw 100px 5vw;
}
.availability {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 48px;
  color: rgba(255, 253, 247, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cool-bright);
  box-shadow: 0 0 0 7px rgba(114, 217, 232, .1);
}
.hero h1 {
  position: relative;
  margin: 0 0 42px;
  font-size: clamp(68px, 7.2vw, 122px);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .72;
}
.hero h1 span { display: block; }
.hero h1 span:nth-child(2) { margin-left: .42em; color: var(--hot); }
.hero h1 span:nth-child(3) { color: var(--cool); }
.hero h1 em {
  position: absolute;
  right: -.02em;
  bottom: -.12em;
  color: var(--white);
  font-size: .18em;
  font-style: normal;
  letter-spacing: -.03em;
}
.hero-statement {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.hero-statement strong { color: var(--cool-bright); font-weight: 700; }
.hero-intro {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 253, 247, .68);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button-hot { background: var(--hot); color: #fff; box-shadow: 0 18px 50px rgba(255,92,26,.24); }
.button-hot:hover { transform: translateY(-3px); background: #ff6a2d; box-shadow: 0 22px 60px rgba(255,92,26,.38); }
.text-link {
  display: inline-flex;
  gap: 22px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.representation { margin: 30px 0 0; color: rgba(255,253,247,.5); font-size: 13px; }
.representation strong { color: var(--white); }
.hero-index {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 36px;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.windshield-stage { position: relative; z-index: 2; min-height: 920px; }
.car-shell {
  position: absolute;
  top: 53%;
  left: 49%;
  width: min(48vw, 680px);
  height: min(65vw, 760px);
  transform: translate(-50%, -44%);
  border: 2px solid rgba(188,235,242,.36);
  border-radius: 43% 43% 18% 18% / 16% 16% 12% 12%;
  background: linear-gradient(140deg, rgba(188,235,242,.11), rgba(255,255,255,.025));
  box-shadow: inset 0 0 90px rgba(114,217,232,.08), 0 40px 100px rgba(0,0,0,.4);
}
.roof-line {
  position: absolute;
  top: 4%;
  left: 19%;
  width: 62%;
  height: 22%;
  border: 1px solid rgba(188,235,242,.34);
  border-radius: 46% 46% 14% 14%;
  background: linear-gradient(180deg, rgba(114,217,232,.12), transparent);
}
.windshield {
  position: absolute;
  top: 27%;
  left: 9%;
  width: 82%;
  height: 36%;
  overflow: hidden;
  transform: perspective(650px) rotateX(8deg);
  border: 2px solid rgba(188,235,242,.72);
  border-radius: 20% 20% 11% 11% / 28% 28% 10% 10%;
  background:
    linear-gradient(125deg, transparent 0 18%, rgba(255,255,255,.19) 19% 20%, transparent 21% 38%, rgba(255,255,255,.11) 39% 40%, transparent 41%),
    linear-gradient(180deg, #d5f4f6, #83d6e1 53%, #347789);
  box-shadow: inset 0 -30px 60px rgba(10,48,58,.5), 0 0 38px rgba(114,217,232,.18);
}
.shield-folds {
  position: absolute;
  inset: 0;
  opacity: .58;
  background-image: repeating-linear-gradient(90deg, transparent 0 16.2%, rgba(255,255,255,.55) 16.6% 17%, rgba(14,77,91,.36) 17.4% 17.9%);
}
.shield-folds::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .75;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.22) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.22) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.22) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.22) 87.5%);
  background-size: 34px 60px;
}
.shield-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: baseline;
  gap: 8px;
  transform: translate(-50%, -50%) rotate(-5deg);
  color: var(--ink);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -.07em;
  text-shadow: 0 1px rgba(255,255,255,.5);
}
.shield-mark b { color: var(--hot); }
.hood-line {
  position: absolute;
  right: 7%;
  bottom: 7%;
  left: 7%;
  height: 29%;
  border-top: 2px solid rgba(188,235,242,.4);
  border-radius: 50% 50% 13% 13%;
  background: linear-gradient(180deg, rgba(114,217,232,.07), transparent);
}
.mirror { position: absolute; top: 43%; width: 13%; height: 8%; border: 2px solid rgba(188,235,242,.4); background: var(--ink-soft); }
.mirror-left { left: -10%; border-radius: 60% 20% 20% 60%; transform: rotate(-13deg); }
.mirror-right { right: -10%; border-radius: 20% 60% 60% 20%; transform: rotate(13deg); }
.temperature {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  min-width: 112px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(16,19,23,.8);
  backdrop-filter: blur(8px);
}
.temperature b { font-size: 28px; line-height: 1; }
.temperature span { margin-top: 7px; color: rgba(255,255,255,.63); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.temperature.hot { top: 245px; right: 4vw; border-color: rgba(255,92,26,.42); }
.temperature.hot b { color: var(--hot); }
.temperature.cool { right: 5.5vw; bottom: 165px; border-color: rgba(114,217,232,.42); }
.temperature.cool b { color: var(--cool-bright); }
.heat-arrow {
  position: absolute;
  z-index: 3;
  top: 26%;
  width: 2px;
  height: 120px;
  transform: rotate(25deg);
  background: linear-gradient(var(--hot), transparent);
  animation: heatMove 2.7s ease-in-out infinite;
}
.heat-arrow::before { content: ""; position: absolute; top: -2px; left: -5px; width: 10px; height: 10px; transform: rotate(45deg); border-top: 2px solid var(--hot); border-left: 2px solid var(--hot); }
.arrow-one { left: 27%; }
.arrow-two { left: 46%; animation-delay: .5s; }
.arrow-three { left: 65%; animation-delay: 1s; }
@keyframes heatMove { 0%, 100% { opacity: .3; transform: translateY(0) rotate(25deg); } 50% { opacity: .85; transform: translateY(-25px) rotate(25deg); } }

.category {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 8vw;
  padding: 125px 7vw 135px;
  background: var(--paper);
}
.eyebrow {
  margin: 0;
  color: var(--hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}
.category h2, .opportunity h2, .name-copy h2, .acquisition h2 {
  margin: 43px 0 0;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .94;
}
.category h2 em { color: var(--hot); font-style: normal; }
.category-copy { padding-top: 54px; }
.category-copy .lead { max-width: 760px; margin: 0 0 28px; font-size: 27px; font-weight: 700; letter-spacing: -.025em; line-height: 1.34; }
.category-copy > p:not(.lead) { max-width: 760px; margin: 0; color: #555e66; font-size: 17px; line-height: 1.75; }
.signal-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-row div { padding: 26px 16px 25px 0; }
.signal-row div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.signal-row strong { display: block; color: var(--cool-deep); font-size: 25px; line-height: 1; }
.signal-row span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }

.thermal-band {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(110deg, var(--cool) 0 48%, #ffd565 48% 71%, var(--hot) 71% 100%);
  color: var(--ink);
}
.thermal-band::after { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(16,19,23,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(16,19,23,.22) 1px, transparent 1px); background-size: 46px 46px; }
.thermal-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 100px 7vw; }
.thermal-copy .eyebrow { color: var(--cool-deep); }
.thermal-copy h2 { margin: 32px 0 26px; font-size: clamp(70px, 8vw, 132px); font-weight: 900; letter-spacing: -.09em; line-height: .78; }
.thermal-copy h2 span { color: var(--white); text-shadow: 0 3px var(--cool-deep); }
.thermal-copy > p:last-child { max-width: 470px; margin: 0; color: rgba(16,19,23,.68); font-size: 18px; }
.thermal-scale { position: relative; z-index: 2; align-self: center; padding: 80px 7vw 80px 2vw; }
.scale-labels, .scale-numbers { display: flex; justify-content: space-between; font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.scale-numbers { margin-top: 14px; font-size: 40px; letter-spacing: -.06em; }
.scale-bar { height: 74px; margin-top: 16px; padding: 10px; border: 2px solid rgba(16,19,23,.7); background: rgba(255,255,255,.18); }
.scale-bar i { display: block; width: 73%; height: 100%; background: var(--ink); animation: thermalGauge 3.6s ease-in-out infinite alternate; }
@keyframes thermalGauge { from { width: 60%; } to { width: 86%; } }
.thermal-note { position: absolute; z-index: 2; right: 4vw; bottom: 25px; margin: 0; color: rgba(16,19,23,.6); font-size: 12px; font-weight: 700; }

.opportunity { display: grid; grid-template-columns: minmax(300px,.67fr) minmax(600px,1.33fr); gap: 6vw; padding: 130px 7vw; background: var(--white); }
.opportunity-intro { position: sticky; top: 60px; align-self: start; }
.opportunity-intro h2 { font-size: clamp(50px,5.4vw,82px); }
.opportunity-intro > p:last-child { max-width: 510px; margin: 32px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.lane-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.lane { position: relative; min-height: 430px; padding: 38px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lane > span { color: var(--muted); font-size: 12px; font-weight: 900; }
.lane i { position: absolute; top: 38px; right: 38px; width: 72px; height: 44px; transform: skewX(-13deg); border: 2px solid currentColor; }
.lane i::after { content: ""; position: absolute; top: 8px; right: 8px; bottom: 8px; left: 8px; border: 1px dashed currentColor; }
.lane h3 { max-width: 280px; margin: 145px 0 16px; font-size: 35px; letter-spacing: -.05em; line-height: 1.02; }
.lane p { max-width: 390px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.lane small { position: absolute; right: 38px; bottom: 31px; left: 38px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.lane-one { color: var(--cool-deep); background: #eef9fa; }
.lane-two { color: #9b5b00; background: #fff7df; }
.lane-three { color: var(--red); background: #fff1eb; }
.lane-four { color: #374b86; background: #eef1ff; }

.name-logic { display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; background: var(--ink); color: var(--white); }
.name-visual { position: relative; display: grid; place-items: center; min-height: 820px; overflow: hidden; background: radial-gradient(circle at 50% 45%, rgba(114,217,232,.16), transparent 44%); }
.name-visual::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 52px 52px; }
.visor { position: absolute; display: flex; align-items: center; justify-content: space-between; width: 66%; height: 29%; padding: 30px; transform: skewX(-10deg); border: 1px solid rgba(255,255,255,.42); box-shadow: 0 30px 70px rgba(0,0,0,.32); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.visor span, .visor b { transform: skewX(10deg); }
.visor-back { transform: translate(-65px,-145px) skewX(-10deg) rotate(-9deg); background: var(--hot); }
.visor-mid { transform: translate(55px,-5px) skewX(-10deg) rotate(5deg); background: #ffd565; color: var(--ink); }
.visor-front { z-index: 2; flex-direction: column; align-items: flex-start; justify-content: flex-end; transform: translate(-15px,155px) skewX(-10deg) rotate(-2deg); background: var(--cool); color: var(--ink); }
.visor-front b { font-size: clamp(24px,3vw,41px); letter-spacing: -.07em; }
.name-copy { display: flex; flex-direction: column; justify-content: center; padding: 100px 7vw; }
.name-copy .eyebrow { color: var(--cool-bright); }
.name-copy h2 { max-width: 700px; font-size: clamp(51px,5.3vw,82px); }
.name-copy ul { margin: 60px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.name-copy li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.name-copy li > b { color: var(--hot); font-size: 13px; }
.name-copy li strong { display: block; margin-bottom: 7px; font-size: 18px; }
.name-copy li p { margin: 0; color: rgba(255,255,255,.58); font-size: 15px; }

.statement { display: flex; flex-direction: column; justify-content: center; min-height: 670px; padding: 110px 7vw; background: var(--paper); }
.statement p { margin: 0 0 28px; color: var(--muted); font-size: 18px; font-weight: 700; }
.statement h2 { margin: 0; font-size: clamp(66px,9vw,145px); font-weight: 800; letter-spacing: -.09em; line-height: .82; }
.statement em { color: var(--hot); font-style: normal; }

.acquisition { display: grid; grid-template-columns: minmax(350px,.85fr) minmax(540px,1.15fr); gap: 7vw; padding: 125px 7vw; background: var(--cool-deep); color: var(--white); }
.acquisition .eyebrow { color: var(--cool-bright); }
.acquisition h2 { font-size: clamp(55px,5.7vw,88px); }
.acquisition-copy > p:not(.eyebrow) { max-width: 590px; margin: 31px 0 38px; color: rgba(255,255,255,.69); font-size: 18px; line-height: 1.7; }
.trust-points { display: grid; gap: 18px; margin-top: 55px; padding-top: 28px; border-top: 1px solid rgba(188,235,242,.2); }
.trust-points div { display: grid; grid-template-columns: 29px 1fr; gap: 11px; color: rgba(255,255,255,.62); font-size: 13px; }
.trust-points i { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--cool-bright); color: var(--cool-deep); font-size: 11px; font-style: normal; font-weight: 900; }
.trust-points strong { display: block; margin-bottom: 2px; color: var(--white); font-size: 14px; }
.contact-card { align-self: start; min-height: 650px; padding: 48px; border: 1px solid rgba(255,255,255,.5); background: var(--white); color: var(--ink); box-shadow: 0 40px 100px rgba(0,0,0,.28); }
.form-header p { margin: 0 0 7px; color: var(--hot); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-header h3 { margin: 0 0 40px; font-size: 42px; letter-spacing: -.06em; line-height: 1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 19px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label > span { font-size: 14px; font-weight: 800; }
.form-grid label small { color: var(--muted); font-size: 13px; font-weight: 400; }
.form-grid input, .form-grid textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(16,19,23,.3); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; transition: border-color 160ms ease; }
.form-grid input { min-height: 49px; }
.form-grid textarea { min-height: 115px; padding: 13px 0; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--hot); }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #838b91; }
.full-field { grid-column: 1 / -1; }
.honey-field { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.form-submit { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 62px; margin-top: 32px; padding: 0 22px; border: 0; background: var(--ink); color: var(--white); font-size: 15px; font-weight: 800; transition: transform 160ms ease, background 160ms ease; }
.form-submit:hover:not(:disabled) { transform: translateY(-2px); background: var(--hot); }
.form-submit:disabled { cursor: wait; opacity: .7; }
.form-note { min-height: 24px; margin: 15px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.form-note.success { color: #087352; font-weight: 700; }
.form-note.error { color: #a52f2b; font-weight: 700; }
.contact-card.sent { border-color: var(--cool-bright); }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 60px; padding: 62px 7vw 42px; background: #080a0c; color: var(--white); }
.footer-wordmark { font-size: 25px; }
.site-footer > p { justify-self: end; margin: 0; color: rgba(255,255,255,.48); font-size: 15px; font-style: italic; }
.footer-meta { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.46); font-size: 13px; }
.footer-meta strong, .footer-meta a { color: var(--white); text-decoration: none; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(0,1fr) minmax(450px,.86fr); }
  .car-shell { width: 520px; height: 650px; }
  .category { grid-template-columns: .82fr 1.18fr; gap: 5vw; }
  .opportunity { grid-template-columns: .72fr 1.28fr; gap: 4vw; padding-inline: 5vw; }
  .lane { padding: 28px; }
  .lane i { top: 28px; right: 28px; }
  .lane small { right: 28px; left: 28px; }
  .acquisition { gap: 5vw; padding-inline: 5vw; }
}

@media (max-width: 900px) {
  .site-header { min-height: 76px; padding: 0 22px; }
  .wordmark { font-size: 17px; }
  .site-header nav > a { display: none; }
  .header-offer { min-height: 42px; }
  .hero { display: block; min-height: 1160px; }
  .hero-copy { min-height: 1120px; justify-content: flex-start; padding: 120px 22px 76px; }
  .availability { margin-bottom: 55px; }
  .hero h1 { z-index: 4; margin-bottom: 425px; font-size: clamp(66px,19vw,115px); }
  .hero h1 em { right: 0; }
  .hero-intro { font-size: 16px; }
  .windshield-stage { position: absolute; top: 285px; right: -110px; min-height: 0; width: 600px; height: 590px; }
  .car-shell { top: 47%; left: 50%; width: 440px; height: 530px; transform: translate(-50%,-50%); }
  .sun { top: 28px; right: 75px; width: 96px; height: 96px; }
  .sun::before, .sun::after, .sun span::before, .sun span::after { width: 170px; }
  .temperature { display: none; }
  .heat-arrow { top: 18%; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 100%; gap: 14px; }
  .button { width: 100%; }
  .text-link { justify-content: space-between; }
  .hero-index { display: none; }
  .category, .opportunity, .acquisition { grid-template-columns: 1fr; padding: 90px 22px; }
  .category { gap: 45px; }
  .category h2, .opportunity h2, .name-copy h2, .acquisition h2 { margin-top: 32px; font-size: 54px; }
  .category-copy { padding-top: 0; }
  .category-copy .lead { font-size: 24px; }
  .thermal-band { grid-template-columns: 1fr; min-height: 720px; background: linear-gradient(165deg, var(--cool) 0 52%, #ffd565 52% 73%, var(--hot) 73%); }
  .thermal-copy { padding: 80px 22px 25px; }
  .thermal-copy h2 {
    margin-block: 34px 30px;
    font-size: clamp(58px, 15vw, 70px);
    letter-spacing: -.05em;
    line-height: .98;
  }
  .thermal-scale { width: 100%; padding: 30px 22px 90px; }
  .thermal-note { right: 22px; }
  .opportunity-intro { position: static; }
  .lane-grid { grid-template-columns: 1fr; margin-top: 25px; }
  .lane { min-height: 380px; }
  .lane h3 { margin-top: 125px; }
  .name-logic { grid-template-columns: 1fr; }
  .name-visual { min-height: 590px; }
  .visor { width: 72%; height: 27%; }
  .visor-back { transform: translate(-45px,-120px) skewX(-10deg) rotate(-9deg); }
  .visor-mid { transform: translate(40px,-5px) skewX(-10deg) rotate(5deg); }
  .visor-front { transform: translate(-10px,125px) skewX(-10deg) rotate(-2deg); }
  .name-copy { padding: 85px 22px; }
  .statement { min-height: 550px; padding: 90px 22px; }
  .statement h2 { font-size: 68px; }
  .acquisition { gap: 70px; }
  .contact-card { min-height: 0; padding: 32px 21px; }
  .form-header h3 { font-size: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: 1; }
  .site-footer { grid-template-columns: 1fr; padding: 48px 22px 34px; }
  .site-footer > p { justify-self: start; }
  .footer-meta { grid-column: 1; flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .header-offer { padding: 0 13px; font-size: 13px; }
  .header-offer span { margin-left: 10px; }
  .hero { min-height: 1210px; }
  .hero-copy { min-height: 1170px; }
  .hero h1 { margin-bottom: 390px; font-size: clamp(62px,18vw,86px); }
  .windshield-stage { top: 275px; right: -150px; }
  .hero-statement { font-size: 31px; }
  .signal-row { grid-template-columns: 1fr; }
  .signal-row div, .signal-row div + div { padding: 20px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .signal-row div:last-child { border-bottom: 0; }
  .thermal-copy h2 {
    font-size: clamp(54px, 15vw, 62px);
    letter-spacing: -.04em;
    line-height: 1.02;
  }
  .scale-numbers { font-size: 32px; }
  .lane { padding: 25px; }
  .lane i { top: 25px; right: 25px; width: 60px; }
  .lane h3 { font-size: 32px; }
  .lane small { right: 25px; left: 25px; }
  .visor { width: 78%; padding: 20px; }
  .visor-front b { font-size: 24px; }
  .statement h2 { font-size: 57px; }
}

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