﻿:root {
  --black: #070707;
  --black-soft: #0d0d0d;
  --graphite: #151515;
  --surface: #0f0f0f;
  --surface-raised: #171717;
  --paper: #f4f1eb;
  --paper-strong: #fffdf8;
  --white: #ffffff;
  --muted: #8e8b86;
  --line-dark: rgba(244, 241, 235, 0.14);
  --line-light: rgba(244, 241, 235, 0.14);
  --orange: #ff5a00;
  --orange-deep: #d94400;
  --acid: #ff8a3d;
  --green: #57d38c;
  --red: #ff6565;
  --display-font: "Unbounded", "Arial Black", sans-serif;
  --body-font: "Manrope", Arial, sans-serif;
  --mono-font: "IBM Plex Mono", Consolas, monospace;
}

html,
body {
  background: var(--black);
}

body {
  color: var(--paper);
  font-family: var(--body-font);
}

h1,
h2,
h3 {
  font-family: var(--display-font);
}

.section-index,
.eyebrow,
.vehicle-kicker,
.vehicle-specs,
.price-stack,
.result-count,
.window-bar,
.team-person-copy > span,
.office-card span,
.office-card small,
.footer-bottom {
  font-family: var(--mono-font);
}

.section-shell {
  width: min(1420px, calc(100% - 64px));
}

.section-index,
.eyebrow {
  color: var(--orange);
  font-size: 10px;
}

.section-index::before,
.eyebrow::before {
  width: 28px;
  height: 1px;
}

/* Loader: DDD-style staged assembly */
.site-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  background: #050505;
  transition:
    opacity 420ms ease 540ms,
    visibility 0ms linear 980ms;
}

.site-loader::before,
.site-loader::after {
  display: none;
}

.loader-shutters {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.loader-shutters i {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: #0a0a0a;
  transform: translateY(0);
  transition: transform 720ms var(--ease-in-out);
}

.loader-shutters i::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-shutter-line 900ms var(--ease-out) forwards;
}

.loader-shutters i:nth-child(2)::after {
  animation-delay: 70ms;
}

.loader-shutters i:nth-child(3)::after {
  animation-delay: 140ms;
}

.loader-shutters i:nth-child(4)::after {
  animation-delay: 210ms;
}

.loader-shutters i:nth-child(5)::after {
  animation-delay: 280ms;
}

.site-loader.is-hidden .loader-shutters i {
  transform: translateY(-105%);
}

.site-loader.is-hidden .loader-shutters i:nth-child(even) {
  transform: translateY(105%);
}

.loader-mark,
.loader-word,
.loader-bottom,
.loader-rail {
  position: relative;
  z-index: 2;
  transition:
    opacity 220ms ease,
    transform 420ms var(--ease-out);
}

.site-loader.is-hidden .loader-mark,
.site-loader.is-hidden .loader-word,
.site-loader.is-hidden .loader-bottom,
.site-loader.is-hidden .loader-rail {
  opacity: 0;
  transform: translateY(-18px);
}

.loader-mark {
  width: 54px;
  height: 54px;
  opacity: 0;
  transform: scale(0.7) rotate(-12deg);
  animation: loader-mark-in 700ms var(--ease-out) 120ms forwards;
}

.loader-word {
  font-family: var(--display-font);
  font-size: 58px;
  font-weight: 700;
}

.loader-word span {
  animation-duration: 760ms;
}

.loader-word span:last-child {
  color: var(--orange);
}

.loader-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  font-family: var(--mono-font);
}

.loader-bottom strong {
  color: var(--orange);
  font-size: 13px;
  font-weight: 500;
}

.loader-status {
  font-size: 9px;
}

.loader-rail {
  width: 280px;
  background: rgba(255, 255, 255, 0.1);
}

.loader-rail i {
  background: var(--orange);
  animation-duration: 1350ms;
}

@keyframes loader-shutter-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes loader-mark-in {
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* Navigation */
.site-header {
  top: 18px;
  width: min(1420px, calc(100% - 32px));
  height: 68px;
  padding: 0 10px 0 12px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(7, 7, 7, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(1.25);
  transition:
    background-color 240ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  top: 18px;
  background: rgba(7, 7, 7, 0.94);
}

.site-header.is-hidden {
  transform: translateX(-50%);
}

.brand {
  position: relative;
  gap: 11px;
  border-radius: 12px;
  transition: transform 170ms var(--ease-out);
}

.brand-symbol {
  display: block;
  width: 40px;
  height: 40px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
  object-fit: contain;
  transition:
    filter 180ms ease,
    transform 180ms var(--ease-out);
}

.brand-word {
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 700;
  transition:
    color 160ms ease,
    transform 180ms var(--ease-out);
}

.brand-word span {
  color: var(--orange);
}

.desktop-nav {
  gap: 8px;
}

.desktop-nav a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  overflow: hidden;
  padding: 0 12px;
  border-radius: 11px;
  color: rgba(244, 241, 235, 0.6);
  font-size: 11px;
  transition:
    color 140ms ease,
    transform 150ms var(--ease-out);
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border: 1px solid rgba(255, 90, 0, 0.2);
  border-radius: 8px;
  background: rgba(255, 90, 0, 0.1);
  opacity: 0;
  transform: translateY(5px) scale(0.94);
  transition:
    opacity 140ms ease,
    transform 160ms var(--ease-out);
}

.desktop-nav a > * {
  position: relative;
  z-index: 1;
}

.desktop-nav a svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  transition: transform 170ms var(--ease-out);
}

.desktop-nav a::after {
  display: none;
}

.icon-button,
.header-cta {
  border-radius: 12px;
}

.icon-button {
  background: rgba(255, 255, 255, 0.035);
  transition:
    color 150ms ease,
    transform 150ms var(--ease-out),
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 180ms ease;
}

.icon-button svg {
  transition: transform 170ms var(--ease-out);
}

.header-cta {
  position: relative;
  min-width: 176px;
  overflow: hidden;
  border: 1px solid var(--orange);
  background: var(--orange);
  font-size: 11px;
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
  transition:
    color 150ms ease,
    transform 150ms var(--ease-out),
    border-color 150ms ease,
    box-shadow 180ms ease;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: -30%;
  border-radius: 45%;
  background: var(--paper);
  transform: translateY(115%) rotate(7deg);
  transition: transform 440ms var(--ease-out);
}

.header-cta > * {
  position: relative;
  z-index: 1;
}

.header-cta svg {
  position: relative;
  z-index: 1;
  transition: transform 180ms var(--ease-out);
}

.mobile-menu {
  background: var(--orange);
}

.mobile-menu .brand-word span {
  color: var(--black);
}

/* Hero: black interactive scene, no photographic backdrop */
.hero {
  min-height: 720px;
  height: 100svh;
  max-height: 980px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.hero-backdrop {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 90, 0, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), #050505 94%);
  filter: none;
  transform: none;
  animation: none;
}

.hero-grid {
  z-index: -2;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 72%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #050505 0, transparent 18%, transparent 82%, #050505 100%),
    linear-gradient(180deg, #050505 0, transparent 20%, transparent 80%, #050505 100%);
  pointer-events: none;
}

.hero::after {
  z-index: -1;
  background: radial-gradient(
    520px circle at 50% 50%,
    rgba(255, 90, 0, 0.15),
    transparent 62%
  );
}

.hero-rails {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-rails span {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.7), transparent);
  transform-origin: left;
  animation: hero-rail 1600ms var(--ease-out) 850ms both;
}

.hero-rails span:nth-child(1) {
  top: 21%;
  left: 0;
  width: 31%;
  height: 1px;
}

.hero-rails span:nth-child(2) {
  top: 21%;
  right: 0;
  width: 31%;
  height: 1px;
  transform-origin: right;
}

.hero-rails span:nth-child(3) {
  bottom: 22%;
  left: 6%;
  width: 1px;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(255, 90, 0, 0.58), transparent);
}

.hero-rails span:nth-child(4) {
  right: 6%;
  bottom: 22%;
  width: 1px;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(255, 90, 0, 0.58), transparent);
}

@keyframes hero-rail {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-models {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: none;
  overflow: hidden;
  pointer-events: none;
}

.hero-model-line {
  position: absolute;
  width: auto;
  max-width: none;
  opacity: 0.12;
  filter: grayscale(1) contrast(1.1);
  transition: transform 900ms var(--ease-out);
}

.hero-model-line-a {
  top: 18%;
  left: -18%;
  height: 94px;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.hero-model-line-b {
  right: -20%;
  bottom: 13%;
  height: 82px;
  opacity: 0.17;
  transform: translate3d(
    calc(0px - var(--parallax-x, 0px)),
    calc(0px - var(--parallax-y, 0px)),
    0
  );
}

.hero-content {
  top: 48%;
  width: min(1180px, calc(100% - 40px));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(244, 241, 235, 0.65);
  font-family: var(--mono-font);
  font-size: 9px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-kicker::before {
  display: none;
}

.hero-kicker b {
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--paper);
  font-weight: 500;
}

.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.42);
  animation: orange-pulse 1800ms ease-out infinite;
}

@keyframes orange-pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(255, 90, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 0, 0);
  }
}

.hero h1 {
  overflow: visible;
  font-family: var(--display-font);
  font-size: 148px;
  font-weight: 700;
  line-height: 0.84;
  text-shadow: none;
}

.hero h1 span,
.hero h1 strong {
  animation-duration: 980ms;
}

.hero h1 strong {
  color: var(--orange);
}

.hero-statement {
  margin-top: 28px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 720ms var(--ease-out) 1020ms forwards;
}

.hero-copy {
  width: min(660px, 100%);
  margin-top: 12px;
  color: rgba(244, 241, 235, 0.6);
  font-size: 14px;
  font-weight: 500;
}

.hero-copy span {
  display: inline;
  color: rgba(244, 241, 235, 0.38);
}

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.submit-button,
.card-cta {
  min-height: 52px;
  border-radius: 7px;
  font-size: 11px;
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
}

.liquid-button::before {
  border-radius: 46%;
  background: var(--paper);
}

.liquid-button {
  isolation: isolate;
  color: var(--white);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 260ms var(--ease-out),
    transform 150ms var(--ease-out);
}

.liquid-button > span,
.liquid-button > i,
.liquid-button > svg {
  position: relative;
  z-index: 1;
  color: inherit;
}

.liquid-button svg {
  stroke: currentColor;
}

.ghost-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.ghost-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease-out);
}

.ghost-button > * {
  position: relative;
  z-index: 1;
}

.hero-meta {
  right: 34px;
  bottom: 28px;
  left: 34px;
  gap: 0;
}

.hero-meta div {
  min-width: 132px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-meta strong {
  font-family: var(--display-font);
  font-size: 17px;
}

.hero-meta span {
  font-family: var(--mono-font);
  font-size: 8px;
}

.hero-side-note {
  position: absolute;
  top: 50%;
  display: grid;
  gap: 5px;
  color: rgba(244, 241, 235, 0.26);
  font-family: var(--mono-font);
  font-size: 8px;
  pointer-events: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-side-note-left {
  left: 18px;
  transform: translateY(-50%) rotate(180deg);
}

.hero-side-note-right {
  right: 18px;
  transform: translateY(-50%);
}

/* Real car conveyor */
.car-flow-section {
  display: grid;
  gap: 8px;
  padding: 22px 0 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #090909;
  background-size: 100% 48px;
  color: var(--paper);
}

.car-flow-section::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.conveyor-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto 6px;
  color: rgba(244, 241, 235, 0.38);
  font-family: var(--mono-font);
  font-size: 9px;
  text-transform: uppercase;
}

.conveyor-heading strong {
  color: var(--orange);
  font-weight: 500;
}

.car-flow-row {
  position: relative;
  min-height: 142px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 90, 0, 0.05), transparent 16%, transparent 84%, rgba(255, 90, 0, 0.05)),
    #0c0c0c;
}

.car-flow-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.14) 0 32px,
      transparent 32px 52px
    );
}

.car-flow-track {
  position: relative;
  z-index: 1;
  align-items: center;
  height: 142px;
}

.conveyor-cars {
  flex: 0 0 auto;
  width: auto;
  height: 116px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(0, 0, 0, 0.55));
}

.car-flow-row[data-flow-row="forward"] .conveyor-cars {
  transform: scaleX(-1);
}

.car-flow-row[data-flow-row="reverse"] .conveyor-cars {
  height: 108px;
}

.conveyor-index {
  position: absolute;
  top: 12px;
  left: 18px;
  z-index: 2;
  color: rgba(244, 241, 235, 0.35);
  font-family: var(--mono-font);
  font-size: 8px;
}

/* Dark section rhythm */
.intro-band,
.order-section,
.stock-section,
.team-section,
.offices-section {
  color: var(--paper);
}

.intro-band {
  padding: 160px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 90, 0, 0.09), transparent 28%),
    #0a0a0a;
}

.intro-layout h2 {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 64px;
  font-weight: 600;
}

.intro-layout h2 span {
  color: rgba(244, 241, 235, 0.16);
}

.intro-copy {
  color: rgba(244, 241, 235, 0.5);
}

.reveal-text {
  background:
    linear-gradient(var(--paper), var(--paper)) 0 0 / var(--reveal, 0%) 100% no-repeat,
    rgba(244, 241, 235, 0.14);
  -webkit-background-clip: text;
  background-clip: text;
}

.route-story {
  background: #070707;
}

.route-sticky {
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #070707;
  background-size: 64px 64px;
}

.route-heading h2,
.section-heading h2,
.automation-heading h2,
.request-copy h2 {
  font-family: var(--display-font);
  font-weight: 600;
}

.route-heading h2 {
  font-size: 62px;
}

.route-line-base {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 26;
}

.route-line-progress {
  stroke: var(--orange);
  stroke-width: 26;
  filter: drop-shadow(0 0 12px rgba(255, 90, 0, 0.25));
}

.route-step {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.88);
}

.route-step-fill {
  background: var(--orange);
}

.route-step-icon {
  border-radius: 7px;
}

/* Catalog */
.catalog-section {
  padding: 150px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.order-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 90, 0, 0.08), transparent 24%),
    #0c0c0c;
}

.stock-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 90, 0, 0.07), transparent 25%),
    #080808;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2,
.automation-heading h2 {
  color: var(--paper);
  font-size: 58px;
  line-height: 1.02;
}

.section-heading > p,
.order-section .section-heading > p,
.team-section .section-heading > p,
.offices-section .section-heading > p,
.automation-heading > p {
  color: rgba(244, 241, 235, 0.45);
}

.rate-panel {
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper);
}

.rate-panel span {
  color: rgba(244, 241, 235, 0.44);
}

.rate-panel .icon-button {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.model-filter,
.stock-filters {
  gap: 8px;
}

.model-filter {
  margin-bottom: 28px;
}

.model-filter button,
.stock-filters button {
  position: relative;
  min-height: 42px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(244, 241, 235, 0.54);
  font-family: var(--mono-font);
  font-size: 9px;
}

.model-filter button.is-active,
.stock-filters button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.order-grid,
.stock-grid {
  gap: 16px;
}

.vehicle-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111111;
  color: var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  transform:
    perspective(1000px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 190ms var(--ease-out),
    border-color 160ms ease,
    box-shadow 260ms ease,
    opacity 500ms ease,
    filter 500ms ease,
    clip-path 650ms var(--ease-out);
}

.vehicle-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: radial-gradient(
    280px circle at var(--glow-x) var(--glow-y),
    rgba(255, 90, 0, 0.22),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 280ms ease;
}

.vehicle-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -3px;
  bottom: 16px;
  width: 3px;
  border-radius: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 380ms var(--ease-out);
}

.vehicle-media {
  margin: 7px 7px 0;
  overflow: hidden;
  border-radius: 7px;
  background: #090909;
}

.vehicle-media::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -30%;
  z-index: 2;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-16deg);
}

.vehicle-media::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68)),
    linear-gradient(90deg, rgba(255, 90, 0, 0.1), transparent 35%);
}

.vehicle-media img {
  filter: saturate(0.88) contrast(1.05);
}

.vehicle-badge,
.media-count {
  border-radius: 6px;
}

.vehicle-badge {
  background: rgba(7, 7, 7, 0.82);
  color: var(--paper);
  font-family: var(--mono-font);
}

.vehicle-badge.is-stock {
  background: var(--orange);
  color: var(--white);
}

.vehicle-body {
  position: relative;
  padding: 20px;
}

.vehicle-kicker {
  color: rgba(244, 241, 235, 0.42);
}

.vehicle-kicker span:first-child {
  color: var(--orange);
}

.vehicle-body h3 {
  margin-top: 12px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.vehicle-specs span {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 241, 235, 0.82);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.price-stack {
  gap: 4px;
}

.price-stack strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 600;
}

.price-stack span {
  color: rgba(244, 241, 235, 0.45);
}

.vehicle-card-actions {
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: stretch;
  gap: 8px;
}

.card-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-color: var(--orange);
  border-radius: 7px;
  background: var(--orange);
  color: var(--white);
  transition:
    color 220ms ease,
    transform 140ms var(--ease-out),
    border-color 220ms ease,
    box-shadow 320ms ease;
}

.card-cta::before {
  content: "";
  position: absolute;
  inset: -42%;
  z-index: 0;
  border-radius: 48%;
  background: var(--paper);
  transform: translateY(120%) rotate(6deg);
  transition: transform 560ms cubic-bezier(0.2, 0.85, 0.28, 1);
}

.card-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(9, 9, 9, 0.28);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.4);
}

.card-cta > * {
  position: relative;
  z-index: 1;
}

.card-cta-label {
  pointer-events: none;
  transition:
    opacity 220ms ease 120ms,
    filter 300ms ease 80ms,
    transform 420ms var(--ease-out) 80ms;
}

.card-cta > i,
.card-cta > svg {
  position: absolute;
  top: 50%;
  left: calc(50% + 50px);
  z-index: 2;
  width: 17px;
  height: 17px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  transition:
    left 560ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease,
    filter 320ms ease,
    transform 620ms cubic-bezier(0.16, 1.38, 0.3, 1);
}

@keyframes card-cta-center-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  32% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2);
  }
}

.card-gallery-button {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease-out);
}

.search-field {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.search-field input {
  color: var(--paper);
}

.search-field kbd {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  font-family: var(--mono-font);
}

.result-count {
  color: rgba(244, 241, 235, 0.44);
}

.empty-state {
  position: relative;
  min-height: 390px;
  padding: 48px 24px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  opacity: 0;
  filter: blur(5px);
  clip-path: inset(16% 8% 16% 8% round 8px);
  transition:
    opacity 500ms ease,
    filter 500ms ease,
    clip-path 650ms var(--ease-out);
}

.empty-state::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 13px, transparent 13px 29px) top left / 29px 1px repeat-x,
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 13px, transparent 13px 29px) bottom left / 29px 1px repeat-x,
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0 13px, transparent 13px 29px) top left / 1px 29px repeat-y,
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0 13px, transparent 13px 29px) top right / 1px 29px repeat-y;
  content: "";
  pointer-events: none;
}

.empty-state.is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 8px);
}

@media (prefers-reduced-motion: reduce) {
  .empty-state {
    filter: none;
    clip-path: inset(0 0 0 0 round 8px);
    transition: opacity 160ms ease;
  }
}

/* Automation */
.automation-section {
  padding: 150px 0 120px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 90, 0, 0.08), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #090909;
  background-size: auto, 52px 52px, 52px 52px, auto;
}

.automation-heading h2 span {
  color: var(--orange);
}

.automation-window {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.94);
}

.window-bar > span:first-child,
.automation-rail i,
.automation-rail::after {
  background: var(--orange);
}

.automation-rail::after {
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.65);
}

.telegram-post b,
.result-preview span {
  color: var(--orange);
}

.post-image,
.result-preview img {
  border-radius: 7px;
}

.automation-parser li {
  border-radius: 5px;
}

.integration-statuses {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.integration-statuses > div {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Team without cards or photo backgrounds */
.team-section {
  padding: 140px 0 150px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 90, 0, 0.075), transparent 34%),
    #0b0b0b;
}

.team-stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  column-gap: 24px;
  row-gap: 72px;
  margin-top: 28px;
}

.team-person {
  --portrait-height: 520px;
  position: relative;
  grid-column: span 6;
  display: grid;
  grid-template-rows: var(--portrait-height) auto;
  min-width: 0;
  min-height: 0;
  padding-bottom: 8px;
  overflow: visible;
  isolation: isolate;
}

.team-person-small {
  --portrait-height: 360px;
  grid-column: span 4;
}

.team-person-small:nth-child(3) {
  grid-column: 3 / span 4;
}

.team-person::after {
  display: none;
}

.team-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center bottom;
  filter: grayscale(1) brightness(0.7) contrast(1.06);
  opacity: 0.82;
  transform: translateY(18px) scale(0.985);
  transform-origin: bottom;
  transition:
    filter 700ms var(--ease-out),
    opacity 600ms ease,
    transform 850ms var(--ease-out);
}

.team-person[data-person="0"] .team-portrait {
  background-image: url("/assets/images/team-ceo-ipauto.png");
}

.team-person[data-person="1"] .team-portrait {
  background-image: url("/assets/images/team-02.png");
}

.team-person[data-person="2"] .team-portrait {
  background-image: url("/assets/images/team-03.png");
}

.team-person[data-person="3"] .team-portrait {
  background-image: url("/assets/images/team-04.png");
}

.team-person[data-person="0"] .team-portrait {
  background-position: 50% bottom;
  background-size: auto 98%;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
}

.team-person[data-person="1"] .team-portrait {
  background-position: 46% bottom;
}

.team-person-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 112px;
  padding: 20px 16px 0;
  background: none;
  text-align: center;
  opacity: 0.9;
  transform: translateY(8px);
  transition:
    opacity 520ms ease,
    transform 700ms var(--ease-out);
}

.team-person-small .team-person-copy {
  min-height: 104px;
}

.team-person-copy > span {
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 9px;
  font-weight: 600;
}

.team-person-copy h3 {
  width: 100%;
  margin-top: 0;
  color: var(--paper);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
}

.team-person-copy .team-person-role {
  max-width: 100%;
  margin: 0;
  color: var(--orange);
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.team-person-lead .team-person-copy h3 {
  font-size: 44px;
}

.team-person-copy-name-first h3 {
  margin-top: 0;
}

.team-person-copy-name-first > span {
  display: block;
  margin-top: 12px;
}

.team-person-small .team-person-copy h3 {
  font-size: 30px;
}

.team-person-copy p {
  max-width: 420px;
  margin-top: 11px;
  color: rgba(244, 241, 235, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.team-person.is-focus .team-portrait {
  filter: grayscale(0) brightness(0.92) contrast(1.02);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.team-person.is-focus::after {
  transform: scaleX(1);
}

.team-person.is-focus .team-person-copy {
  opacity: 1;
  transform: translateY(0);
}

.team-mobile-hint {
  display: none;
  margin-top: 20px;
  color: rgba(244, 241, 235, 0.36);
  font-family: var(--mono-font);
  font-size: 9px;
}

/* Interactive offices */
.offices-section {
  padding-top: 150px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 90, 0, 0.08), transparent 24%),
    #080808;
}

.map-wrap {
  isolation: isolate;
  width: min(1420px, calc(100% - 32px));
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
}

.office-map {
  height: 560px;
  border-radius: inherit;
  cursor: grab;
}

.office-map.leaflet-container {
  border-radius: inherit;
}

.office-map:active {
  cursor: grabbing;
}

.office-map .leaflet-tile-pane {
  filter: grayscale(1) invert(0.94) contrast(1.2) brightness(0.4) sepia(0.12);
}

.ipauto-marker {
  display: block;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: marker-bob-v2 2400ms var(--ease-in-out) infinite;
}

.ipauto-marker::before,
.ipauto-marker::after {
  display: none;
}

.ipauto-marker > i {
  position: absolute;
  top: 7px;
  left: 15px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--orange);
  border-radius: 50% 50% 50% 8px;
  background: #090909;
  box-shadow:
    0 0 0 6px rgba(255, 90, 0, 0.14),
    0 18px 30px rgba(0, 0, 0, 0.42);
  transform: rotate(-45deg);
}

.ipauto-marker > i::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 90, 0, 0.44);
  border-radius: 50%;
  animation: marker-wave-v2 2200ms ease-out infinite;
}

.ipauto-marker > span {
  position: absolute;
  top: 19px;
  left: 0;
  z-index: 2;
  width: 72px;
  color: var(--orange);
  font-family: var(--display-font);
  font-size: 9px;
  text-align: center;
}

.ipauto-marker > b {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--mono-font);
  font-size: 7px;
  font-weight: 600;
  transform: translateX(-50%);
}

@keyframes marker-bob-v2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes marker-wave-v2 {
  from {
    opacity: 0.9;
    transform: scale(0.7);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

.map-crosshair {
  display: none;
}

.office-list {
  align-items: stretch;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 150px;
}

.office-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
  gap: 0;
  min-height: 228px;
  padding: 22px 24px 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 46%),
    #101010;
  color: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms ease,
    box-shadow 220ms ease;
}

.office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 90, 0, 0.14);
  clip-path: circle(0 at 0 100%);
  opacity: 0;
  transition:
    clip-path 360ms var(--ease-out),
    opacity 180ms ease;
}

.office-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  z-index: 2;
  height: 2px;
  background: var(--orange);
  opacity: 0.78;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.office-card.is-active {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 46%),
    #101010;
  color: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.office-card.is-active::before {
  clip-path: circle(0 at 0 100%);
  opacity: 0;
}

.office-card.is-active::after {
  transform: scaleX(0.18);
}

.office-card-top,
.office-card-brand,
.office-card-bottom,
.office-route,
.office-address,
.office-schedule {
  display: flex;
  align-items: center;
}

.office-card-top,
.office-card-bottom {
  justify-content: space-between;
}

.office-card-top {
  gap: 18px;
}

.office-card-brand {
  min-width: 0;
  gap: 12px;
}

.office-card-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #f2f0eb;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 220ms ease;
}

.office-card-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.office-card .office-card-label {
  overflow: hidden;
  color: var(--orange);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.office-card .office-schedule {
  flex: 0 0 auto;
  gap: 10px;
  min-height: 42px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 90, 0, 0.46);
  text-align: left;
}

.office-schedule > svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
}

.office-schedule > span {
  display: grid;
  gap: 3px;
}

.office-card .office-days {
  color: rgba(255, 112, 34, 0.9);
  font-size: 8px;
  font-weight: 600;
}

.office-card .office-time {
  color: var(--paper);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
}

.office-card-main {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 25px 0 23px;
  text-align: left;
}

.office-card .office-card-title {
  font-family: var(--display-font);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
}

.office-card .office-address {
  gap: 8px;
  color: rgba(244, 241, 235, 0.54);
  font-family: var(--body-font);
  font-size: 11px;
  line-height: 1.35;
}

.office-address svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.office-card-bottom {
  min-height: 62px;
  margin: 0 -24px;
  padding: 0 24px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

.office-card .office-route {
  justify-content: space-between;
  width: 100%;
  gap: 14px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.office-route-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 90, 0, 0.42);
  border-radius: 50%;
  color: var(--orange);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease-out);
}

.office-route-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms var(--ease-out);
}

.office-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

/* Request: black 3D finish, no car photo */
.request-section {
  min-height: 820px;
  padding: 150px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 52%, rgba(255, 90, 0, 0.14), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #060606;
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.request-scene {
  z-index: 0;
  pointer-events: none;
}

.request-layout {
  position: relative;
  z-index: 1;
}

.request-rings {
  position: absolute;
  top: 50%;
  left: 17%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
}

.request-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 90, 0, 0.24);
  border-radius: 50%;
  animation: request-ring 8s linear infinite;
}

.request-rings i:nth-child(2) {
  inset: 15%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 11s;
}

.request-rings i:nth-child(3) {
  inset: 34%;
  border-color: rgba(244, 241, 235, 0.15);
  animation-duration: 6s;
}

.request-rings i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 90, 0, 0.75);
}

.request-monogram {
  position: absolute;
  top: 50%;
  left: 17%;
  color: rgba(244, 241, 235, 0.035);
  font-family: var(--display-font);
  font-size: 250px;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

@keyframes request-ring {
  to {
    transform: rotate(360deg);
  }
}

.request-copy h2 {
  font-size: 62px;
}

.request-copy > p:not(.section-index) {
  color: rgba(244, 241, 235, 0.48);
}

.request-form {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.94);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 320ms ease,
    box-shadow 420ms var(--ease-out),
    transform 420ms var(--ease-out);
}

.request-form-fields,
.request-success {
  grid-area: 1 / 1;
  min-width: 0;
}

.request-form-fields {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translateY(0) scale(1);
  transform-origin: center top;
  transition:
    opacity 180ms ease,
    visibility 0ms linear 0ms,
    filter 220ms ease,
    transform 360ms var(--ease-out);
}

.request-form.is-success {
  border-color: rgba(255, 90, 0, 0.4);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 90, 0, 0.05);
}

.request-form.is-success::before,
.request-form.is-success::after {
  opacity: 0.74;
  transform: translate(0, 0);
}

.request-form.is-success .request-form-fields {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(4px);
  transform: translateY(-16px) scale(0.99);
  transition-delay: 0ms, 220ms, 0ms, 0ms;
}

.request-form::before,
.request-form::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--orange);
  opacity: 0;
  transition:
    opacity 420ms ease,
    transform 520ms var(--ease-out);
}

.request-form::before {
  right: 0;
  bottom: -8px;
  left: 9px;
  height: 8px;
  border-radius: 0 0 12px 12px;
  transform: translateY(-7px);
}

.request-form::after {
  top: 9px;
  right: -8px;
  bottom: 0;
  width: 8px;
  border-radius: 0 12px 12px 0;
  transform: translateX(-7px);
}

.request-form:focus-within {
  border-color: rgba(255, 90, 0, 0.72);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 90, 0, 0.1);
  transform: translateY(-2px);
}

.request-form:focus-within::before,
.request-form:focus-within::after {
  opacity: 0.82;
  transform: translate(0, 0);
}

.request-form-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  align-items: end;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.request-form-head > div > span {
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 9px;
  font-weight: 600;
}

.request-form-head h3 {
  margin-top: 8px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.05;
}

.request-form-head p {
  color: rgba(244, 241, 235, 0.46);
  font-size: 10px;
  line-height: 1.5;
}

.request-field,
.request-channel-field {
  display: grid;
  gap: 8px;
}

.request-form .form-row {
  position: relative;
  z-index: 6;
}

.motion-ready .request-form .form-row.is-visible {
  clip-path: none;
}

.request-form .request-field > span,
.request-channel-field > span {
  color: rgba(244, 241, 235, 0.52);
  font-family: var(--mono-font);
  font-size: 9px;
  font-weight: 500;
  transition:
    color 200ms ease,
    transform 240ms var(--ease-out);
}

.request-field:focus-within > span,
.request-channel-field:focus-within > span {
  color: var(--orange);
  transform: translateX(4px);
}

.request-form input,
.request-form textarea {
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--paper);
  font-size: 13px;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 280ms var(--ease-out),
    transform 280ms var(--ease-out);
}

.request-form input {
  height: 54px;
  padding: 0 15px;
}

.request-form textarea {
  min-height: 112px;
  padding: 15px;
  line-height: 1.5;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(244, 241, 235, 0.32);
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 90, 0, 0.055);
  box-shadow:
    0 0 0 3px rgba(255, 90, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transform: translateY(-1px);
}

.request-form .request-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.request-combobox {
  position: relative;
  z-index: 4;
}

.request-combobox-trigger {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--paper);
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 280ms var(--ease-out),
    transform 280ms var(--ease-out);
}

.request-combobox-trigger svg {
  width: 17px;
  height: 17px;
}

.request-combobox-leading {
  color: var(--orange);
}

.request-combobox-chevron {
  color: rgba(244, 241, 235, 0.5);
  transition: transform 280ms var(--ease-out);
}

.request-combobox-trigger:focus-visible,
.request-combobox.is-open .request-combobox-trigger {
  border-color: var(--orange);
  background: rgba(255, 90, 0, 0.055);
  box-shadow:
    0 0 0 3px rgba(255, 90, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transform: translateY(-1px);
}

.request-combobox.is-open .request-combobox-chevron {
  transform: rotate(180deg);
}

.request-combobox-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 90, 0, 0.52);
  border-radius: 10px;
  background: #0a0a0a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top;
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 260ms var(--ease-out);
}

.request-combobox.is-open .request-combobox-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.request-combobox-menu button {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 7px;
  outline: 0;
  background: transparent;
  color: rgba(244, 241, 235, 0.72);
  font: inherit;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 220ms var(--ease-out);
}

.request-combobox-menu button > svg:first-child {
  width: 16px;
  height: 16px;
  color: rgba(244, 241, 235, 0.45);
}

.request-combobox-menu button.is-selected {
  border-color: rgba(255, 90, 0, 0.38);
  background: rgba(255, 90, 0, 0.13);
  color: var(--paper);
}

.request-combobox-menu button.is-selected > svg:first-child {
  color: var(--orange);
}

.request-option-check {
  width: 15px;
  height: 15px;
  color: var(--orange);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

.request-combobox-menu button.is-selected .request-option-check {
  opacity: 1;
  transform: scale(1);
}

.consent {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consent-mark {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.consent-mark svg {
  width: 13px;
  height: 13px;
  color: var(--black);
  opacity: 0;
  transform: scale(0.45);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

.consent input:checked + .consent-mark {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.12);
}

.consent input:checked + .consent-mark svg {
  opacity: 1;
  transform: scale(1);
}

.consent input:focus-visible + .consent-mark {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.14);
}

.request-form .consent-copy {
  color: rgba(244, 241, 235, 0.55);
  font-size: 9px;
  line-height: 1.45;
}

.submit-button {
  min-height: 56px;
  border-radius: 8px;
  background: var(--orange);
}

.request-success {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 602px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(3px);
  transform: translateY(18px) scale(0.985);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 240ms,
    filter 240ms ease,
    transform 420ms var(--ease-out);
}

.request-form.is-success .request-success {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: blur(0);
  transform: translateY(0) scale(1);
  transition-delay: 90ms, 0ms, 90ms, 90ms;
}

.request-success-head,
.request-success-foot,
.request-success-timer-label,
.request-success-foot > span {
  display: flex;
  align-items: center;
}

.request-success-head {
  justify-content: space-between;
  min-height: 54px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.request-success-head > span:first-child {
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 9px;
  font-weight: 650;
}

.request-success-brand {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f0eb;
}

.request-success-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.request-success-main {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  padding: 38px 0 34px;
  text-align: center;
}

.request-success-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
}

.request-success-ring,
.request-success-mark::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 90, 0, 0.28);
  border-radius: 50%;
}

.request-success-mark::before {
  content: "";
  inset: 9px;
  border-color: rgba(255, 90, 0, 0.15);
}

.request-form.is-success .request-success-ring {
  animation: request-success-ring 850ms var(--ease-out) 2;
}

.request-success-check {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  box-shadow:
    0 16px 38px rgba(255, 90, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.request-success-check svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.4;
}

.request-form.is-success .request-success-check svg path {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: request-success-check 520ms var(--ease-out) 210ms forwards;
}

.request-success-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.request-success-copy > span {
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 8px;
  font-weight: 650;
}

.request-success-copy h3 {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.request-success-copy p {
  max-width: 390px;
  color: rgba(244, 241, 235, 0.56);
  font-size: 12px;
  line-height: 1.55;
}

.request-success-timer {
  --cooldown-progress: 1;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  width: min(100%, 340px);
  padding: 19px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.request-success-timer-label {
  gap: 7px;
  color: rgba(244, 241, 235, 0.52);
  font-family: var(--mono-font);
  font-size: 8px;
  text-transform: uppercase;
}

.request-success-timer-label svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.request-success-timer strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 48px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 0.95;
}

.request-success-timer-note {
  color: rgba(244, 241, 235, 0.38);
  font-size: 8px;
}

.request-success-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.request-success-progress > i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(var(--cooldown-progress));
  transform-origin: left;
  transition: transform 1s linear;
}

.request-success-foot {
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.request-success-foot > span {
  gap: 7px;
  color: rgba(244, 241, 235, 0.46);
  font-size: 8px;
}

.request-success-foot svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

@keyframes request-success-ring {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  48% {
    opacity: 1;
  }
  100% {
    opacity: 0.34;
    transform: scale(1.08);
  }
}

@keyframes request-success-check {
  to {
    stroke-dashoffset: 0;
  }
}

/* Footer and overlays */
.site-footer {
  border-top: 5px solid var(--orange);
  background: #090909;
  color: var(--paper);
}

.footer-top {
  min-height: 160px;
}

.footer-top p {
  color: var(--orange);
  font-family: var(--display-font);
  font-size: 16px;
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(244, 241, 235, 0.42);
}

.drawer-panel,
.route-sheet {
  background: #101010;
  color: var(--paper);
}

.drawer-head,
.route-sheet-head {
  border-color: rgba(255, 255, 255, 0.12);
}

.drawer-head .icon-button,
.route-sheet-head .icon-button {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.route-sheet {
  position: relative;
  isolation: isolate;
  width: min(1160px, 100%);
  max-height: min(430px, calc(100dvh - 48px));
  padding: 30px 32px 32px;
  overflow: hidden auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(120deg, rgba(255, 90, 0, 0.11), transparent 35%),
    #101010;
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 90, 0, 0.06) inset;
  animation: route-sheet-rise 640ms var(--ease-drawer) both;
}

.route-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px) saturate(0.82);
  animation: route-backdrop-in 520ms ease both;
}

.route-dialog.is-closing::backdrop {
  animation: route-backdrop-out 360ms ease both;
}

.route-dialog.is-closing .route-sheet {
  animation: route-sheet-drop 360ms var(--ease-in-out) both;
}

.route-sheet-glow {
  position: absolute;
  inset: auto -12% -58% 46%;
  z-index: -1;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.2);
  filter: blur(70px);
  opacity: 0.62;
  pointer-events: none;
}

.route-sheet-head {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.route-sheet-heading {
  min-width: 0;
}

.route-sheet-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-sheet-kicker > span:last-child {
  color: var(--orange);
  font-size: inherit;
}

.route-sheet-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 0, 0.1), 0 0 18px rgba(255, 90, 0, 0.72);
}

.route-sheet-head h2 {
  margin-top: 12px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.route-sheet-address {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: rgba(244, 241, 235, 0.54);
  font-size: 11px;
}

.route-sheet-address svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--orange);
}

.route-sheet-head .icon-button {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease-out);
}

.route-sheet-head .icon-button svg {
  width: 17px;
  height: 17px;
}

.route-sheet-intro {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.route-sheet-index {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 90, 0, 0.46);
  border-radius: 9px;
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 9px;
  font-weight: 600;
}

.route-sheet-intro p {
  max-width: 620px;
  color: rgba(244, 241, 235, 0.54);
  font-size: 11px;
  line-height: 1.45;
}

.route-services {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.map-service {
  --service-delay: 100ms;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 122px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--paper);
  text-decoration: none;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  animation: route-service-in 620ms var(--ease-out) var(--service-delay) both;
  transition:
    border-color 220ms ease,
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out),
    filter 220ms ease;
}

.map-service:nth-child(2) {
  --service-delay: 160ms;
}

.map-service:nth-child(3) {
  --service-delay: 220ms;
}

.map-service::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 58%);
  clip-path: circle(0 at 0 100%);
  opacity: 0;
  transition:
    clip-path 520ms var(--ease-out),
    opacity 260ms ease;
  pointer-events: none;
}

.map-service > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.service-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-service-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.map-service-copy strong {
  overflow: hidden;
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-service-copy small {
  color: currentColor;
  font-size: 10px;
  opacity: 0.68;
}

.map-service-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.78;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    transform 260ms var(--ease-out);
}

.map-service-arrow svg {
  width: 15px;
  height: 15px;
}

.yandex-service {
  border-color: rgba(190, 132, 0, 0.56);
  background: linear-gradient(135deg, #ffda25, #ffb900);
  color: #171717;
}

.gis-service {
  border-color: rgba(16, 133, 55, 0.62);
  background: linear-gradient(135deg, #20ae49, #75d21d);
  color: #fff;
}

.google-service {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #fff, #e8edf4);
  color: #202124;
}

.route-dialog.is-closing .map-service {
  animation: none;
  transform: none;
  opacity: 1;
}

@keyframes route-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes route-backdrop-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes route-sheet-rise {
  from {
    opacity: 0;
    transform: translateY(110%) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes route-sheet-drop {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(110%) scale(0.98);
  }
}

@keyframes route-service-in {
  from {
    filter: blur(6px);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-modal,
.toast {
  border-radius: 8px;
}

/* Reversible entrances */
.motion-ready [data-reveal-prepared="true"] {
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
}

.motion-ready .vehicle-card[data-reveal-prepared="true"] {
  transition-delay:
    0ms,
    0ms,
    0ms,
    calc(var(--reveal-order, 0) * 55ms),
    calc(var(--reveal-order, 0) * 55ms),
    calc(var(--reveal-order, 0) * 55ms);
}

.motion-ready [data-reveal="rise"] {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(34px);
  transition:
    opacity 560ms ease,
    filter 700ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.motion-ready [data-reveal="clip"] {
  opacity: 0;
  filter: blur(3px);
  clip-path: inset(0 0 100% 0);
  transform: translateY(24px);
  transition:
    opacity 480ms ease,
    filter 620ms var(--ease-out),
    clip-path 780ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.motion-ready [data-reveal="card"] {
  opacity: 0;
  filter: blur(5px);
  clip-path: inset(16% 8% 16% 8% round 8px);
}

.motion-ready [data-reveal="person"] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(54px);
  transition:
    opacity 620ms ease,
    filter 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

.motion-ready [data-reveal="rise"].is-visible,
.motion-ready [data-reveal="clip"].is-visible,
.motion-ready [data-reveal="person"].is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.motion-ready [data-reveal="card"].is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 8px);
}

@media (hover: hover) and (pointer: fine) {
  .site-header:hover {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 22px 78px rgba(0, 0, 0, 0.42);
  }

  .brand:hover {
    transform: translateY(-1px);
  }

  .brand:hover .brand-symbol {
    filter:
      drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28))
      drop-shadow(0 0 10px rgba(255, 90, 0, 0.12));
    transform: rotate(-3deg) scale(1.045);
  }

  .brand:hover .brand-word {
    transform: translateX(2px);
  }

  .desktop-nav a:hover {
    color: var(--paper);
    transform: translateY(-2px);
  }

  .desktop-nav a:hover::before {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .desktop-nav a:hover svg {
    transform: translateY(-1px) rotate(-7deg) scale(1.08);
  }

  .header-cta:hover {
    background: var(--orange);
    color: var(--black);
    box-shadow: 0 12px 30px rgba(255, 90, 0, 0.26);
    transform: translate(var(--mag-x, 0), calc(var(--mag-y, 0) - 2px));
  }

  .header-cta:hover svg {
    transform: translate(2px, -2px) rotate(5deg);
  }

  .header-cta:hover::before {
    transform: translateY(0) rotate(0);
  }

  .hero-actions .primary-button.liquid-button:hover,
  .hero-actions .primary-button.liquid-button:focus-visible {
    border-color: var(--paper);
    color: #070707;
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(244, 241, 235, 0.16),
      0 0 34px rgba(255, 90, 0, 0.16);
    transform: translate(var(--mag-x, 0), calc(var(--mag-y, 0) - 2px));
  }

  .hero-actions .primary-button.liquid-button:hover::before,
  .hero-actions .primary-button.liquid-button:focus-visible::before {
    transform: translateY(0) rotate(0deg);
  }

  .hero-actions .primary-button.liquid-button:hover svg,
  .hero-actions .primary-button.liquid-button:focus-visible svg {
    transform: translate(2px, 2px);
  }

  .ghost-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  .vehicle-card:hover {
    z-index: 3;
    border-color: rgba(255, 90, 0, 0.74);
    box-shadow:
      0 38px 90px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 90, 0, 0.08);
    transform:
      perspective(1000px)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y))
      translateY(-8px);
  }

  .vehicle-card:hover::before {
    opacity: 1;
  }

  .vehicle-card:hover::after {
    transform: scaleY(1);
  }

  .vehicle-card:hover .vehicle-media::before {
    opacity: 1;
    animation: media-sheen 900ms var(--ease-out);
  }

  .vehicle-card:hover .vehicle-media img {
    transform: scale(1.065);
  }

  .card-cta:hover {
    color: var(--black);
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(244, 241, 235, 0.12);
  }

  .card-cta:hover::before {
    transform: translateY(0) rotate(0);
  }

  .card-cta:hover::after {
    animation: card-cta-center-pulse 760ms var(--ease-out) 170ms both;
  }

  .card-cta:hover .card-cta-label {
    opacity: 0;
    filter: blur(3px);
    transform: translateX(-18px) scale(0.96);
    transition-delay: 0ms;
  }

  .card-cta:hover > i,
  .card-cta:hover > svg {
    left: 50%;
    filter: drop-shadow(0 4px 9px rgba(0, 0, 0, 0.16));
    transform: translate(-50%, -50%) scale(1.28);
  }

  .card-gallery-button:hover {
    border-color: var(--orange);
    background: rgba(255, 90, 0, 0.12);
    color: var(--orange);
    transform: rotate(4deg);
  }

  .team-person:hover .team-portrait {
    filter: grayscale(0) brightness(0.92) contrast(1.02);
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .team-person:hover::after {
    transform: scaleX(1);
  }

  .team-person:hover .team-person-copy {
    opacity: 1;
    transform: translateY(0);
  }

  .office-card:hover {
    border-color: var(--orange);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.34),
      inset 0 0 0 1px rgba(255, 90, 0, 0.1);
    transform: translateY(-4px);
  }

  .office-card:hover::before {
    clip-path: circle(150% at 0 100%);
    opacity: 1;
  }

  .office-card:hover::after {
    transform: scaleX(1);
  }

  .office-card:hover .office-card-logo {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px) scale(1.03);
  }

  .office-card:hover .office-route {
    color: var(--orange);
  }

  .office-card:hover .office-route-icon {
    background: var(--orange);
    color: var(--black);
    transform: rotate(4deg) scale(1.04);
  }

  .office-card:hover .office-route-icon svg {
    transform: translate(1px, -1px);
  }

  .office-card:active {
    transform: translateY(-1px) scale(0.985);
  }

  .route-sheet-head .icon-button:hover {
    border-color: rgba(255, 90, 0, 0.7);
    background: rgba(255, 90, 0, 0.12);
    color: var(--orange);
    transform: rotate(4deg) scale(1.04);
  }

  .map-service:hover,
  .map-service:focus-visible {
    border-color: rgba(255, 255, 255, 0.56);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
    filter: saturate(1.08);
    transform: translateY(-6px) scale(1.012);
  }

  .map-service:hover::before,
  .map-service:focus-visible::before {
    clip-path: circle(145% at 0 100%);
    opacity: 1;
  }

  .map-service:hover .service-icon,
  .map-service:focus-visible .service-icon {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px) scale(1.045) rotate(-2deg);
  }

  .map-service:hover .map-service-arrow,
  .map-service:focus-visible .map-service-arrow {
    background: currentColor;
    color: var(--black);
    opacity: 1;
    transform: translate(2px, -2px) rotate(4deg);
  }

  /* Keep each branded arrow legible on hover. */
  .yandex-service:hover .map-service-arrow,
  .yandex-service:focus-visible .map-service-arrow {
    background: #171717;
    color: #ffffff;
  }

  .gis-service:hover .map-service-arrow,
  .gis-service:focus-visible .map-service-arrow {
    background: #ffffff;
    color: #168f39;
  }

  .google-service:hover .map-service-arrow,
  .google-service:focus-visible .map-service-arrow {
    background: #202124;
    color: #ffffff;
  }

  .request-form:hover {
    border-color: rgba(255, 90, 0, 0.66);
    box-shadow:
      0 44px 110px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 90, 0, 0.08);
    transform: translateY(-3px);
  }

  .request-form:hover::before,
  .request-form:hover::after {
    opacity: 0.82;
    transform: translate(0, 0);
  }

  .request-field:hover input,
  .request-field:hover textarea,
  .request-combobox-trigger:hover {
    border-color: rgba(255, 90, 0, 0.62);
    background: rgba(255, 90, 0, 0.045);
    transform: translateY(-1px);
  }

  .request-combobox-menu button:hover,
  .request-combobox-menu button:focus-visible {
    border-color: rgba(255, 90, 0, 0.34);
    background: rgba(255, 90, 0, 0.1);
    color: var(--paper);
    transform: translateX(3px);
  }

  .consent:hover .consent-mark {
    border-color: var(--orange);
    background: rgba(255, 90, 0, 0.09);
    transform: translateY(-1px);
  }
}

@keyframes media-sheen {
  from {
    left: -30%;
  }
  to {
    left: 120%;
  }
}

@media (max-width: 1180px) {
  .section-shell {
    width: min(100% - 40px, 1120px);
  }

  .desktop-nav a {
    padding: 0 8px;
  }

  .desktop-nav a svg {
    display: none;
  }

  .hero h1 {
    font-size: 112px;
  }

  .intro-layout h2,
  .section-heading h2,
  .automation-heading h2 {
    font-size: 50px;
  }

  .team-person {
    --portrait-height: 470px;
  }

  .team-person-small {
    --portrait-height: 340px;
  }

  .team-person-lead .team-person-copy h3 {
    font-size: 38px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    top: 10px;
    height: 60px;
  }

  .site-header.is-hidden {
    transform: translateX(-50%);
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .brand-word {
    font-size: 14px;
  }

  .hero {
    min-height: 700px;
    height: 94svh;
  }

  .hero h1 {
    font-size: 82px;
  }

  .hero-model-line-a {
    left: -50%;
  }

  .hero-model-line-b {
    right: -55%;
  }

  .hero-side-note {
    display: none;
  }

  .conveyor-heading {
    width: calc(100% - 40px);
  }

  .intro-layout h2,
  .route-heading h2,
  .section-heading h2,
  .automation-heading h2 {
    font-size: 46px;
  }

  .team-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 54px;
  }

  .team-person,
  .team-person-small,
  .team-person-small:nth-child(3) {
    grid-column: auto;
    min-height: 0;
  }

  .team-person {
    --portrait-height: 430px;
  }

  .team-person-small {
    --portrait-height: 330px;
  }

  .team-person-lead .team-person-copy h3,
  .team-person-copy h3 {
    font-size: 31px;
  }

  .request-rings,
  .request-monogram {
    top: 24%;
    left: 72%;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: calc(100% - 32px);
  }

  .loader-word {
    font-size: 42px;
  }

  .loader-mark {
    width: 48px;
    height: 48px;
  }

  .loader-bottom,
  .loader-rail {
    width: 230px;
  }

  .site-header {
    width: calc(100% - 20px);
    height: 58px;
    padding-left: 10px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .mobile-menu {
    padding: 16px 18px 22px;
  }

  .mobile-menu nav a {
    font-family: var(--display-font);
    font-size: 24px;
    font-weight: 600;
  }

  .hero {
    min-height: 690px;
    height: 92svh;
    max-height: 820px;
  }

  .hero-grid {
    background-size: 42px 42px;
  }

  .hero-content {
    top: 45%;
    width: calc(100% - 28px);
  }

  .hero-kicker {
    gap: 7px;
    min-height: 30px;
    padding: 0 9px;
    margin-bottom: 20px;
    font-size: 7px;
  }

  .hero-kicker b {
    padding-left: 7px;
  }

  .hero h1 {
    padding: 0;
    margin: 0;
    font-size: 51px;
    line-height: 1;
  }

  .hero-statement {
    margin-top: 20px;
    font-size: 12px;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero-copy span {
    display: block;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-meta {
    right: 14px;
    bottom: 16px;
    left: 14px;
  }

  .hero-meta div {
    min-width: 0;
    padding: 0 9px;
  }

  .hero-meta strong {
    font-size: 13px;
  }

  .hero-meta span {
    font-size: 6px;
  }

  .hero-model-line-a {
    top: 20%;
    left: -145%;
    height: 64px;
    opacity: 0.16;
  }

  .hero-model-line-b {
    right: -150%;
    bottom: 17%;
    height: 60px;
  }

  .car-flow-section {
    gap: 7px;
    padding: 18px 0 22px;
  }

  .conveyor-heading {
    width: calc(100% - 32px);
    font-size: 7px;
  }

  .conveyor-heading strong {
    max-width: 130px;
    text-align: right;
  }

  .car-flow-row,
  .car-flow-track {
    min-height: 104px;
    height: 104px;
  }

  .conveyor-cars {
    height: 84px;
  }

  .car-flow-row[data-flow-row="reverse"] .conveyor-cars {
    height: 79px;
  }

  .car-flow-row::after {
    bottom: 13px;
  }

  .intro-band,
  .catalog-section,
  .automation-section,
  .team-section {
    padding: 100px 0;
  }

  .intro-layout h2,
  .route-heading h2,
  .section-heading h2,
  .automation-heading h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .intro-layout {
    gap: 24px;
  }

  .route-line-progress,
  .route-line-base {
    stroke-width: 14;
  }

  .route-step {
    border-radius: 8px;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .rate-panel {
    padding-left: 12px;
  }

  .model-filter button,
  .stock-filters button {
    min-height: 40px;
  }

  .order-grid .vehicle-card {
    flex-basis: 90%;
  }

  .vehicle-card,
  .vehicle-media {
    border-radius: 8px;
  }

  .vehicle-body {
    padding: 17px;
  }

  .vehicle-body h3 {
    font-size: 18px;
  }

  .price-stack strong {
    font-size: 20px;
  }

  .automation-window {
    border-radius: 8px;
  }

  .team-section .section-heading {
    margin-bottom: 10px;
  }

  .team-stage {
    display: flex;
    align-items: flex-start;
    width: calc(100% + 16px);
    margin-right: -16px;
    gap: 14px;
    padding: 16px 16px 10px 0;
    overflow-x: auto;
    scroll-padding-inline: 7%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .team-stage::-webkit-scrollbar {
    display: none;
  }

  .team-person {
    flex: 0 0 86%;
    --portrait-height: clamp(360px, 104vw, 410px);
    min-height: 0;
    scroll-snap-align: center;
  }

  .team-person-small,
  .team-person-small:nth-child(3) {
    flex-basis: 74%;
    --portrait-height: clamp(300px, 84vw, 330px);
  }

  .team-person-copy,
  .team-person-lead .team-person-copy,
  .team-person-small .team-person-copy {
    min-height: 100px;
    padding: 16px 12px 0;
    gap: 8px;
  }

  .team-person-copy .team-person-role {
    font-size: 14px;
  }

  .team-person-lead .team-person-copy h3 {
    font-size: 30px;
  }

  .team-person-small .team-person-copy h3 {
    font-size: 25px;
  }

  .team-person-copy p {
    font-size: 11px;
  }

  .team-mobile-hint {
    display: block;
  }

  .team-section.is-scroll-stage {
    height: calc(100svh + var(--team-scroll-range, 900px));
    padding: 0;
    overflow: clip;
  }

  .team-section.is-scroll-stage > .section-shell {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    width: calc(100% - 32px);
    height: 100svh;
    min-height: 620px;
    padding-top: clamp(82px, 11svh, 100px);
    padding-bottom: 12px;
    overflow: hidden;
  }

  .team-section.is-scroll-stage .section-heading {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .team-section.is-scroll-stage .team-stage {
    flex: 0 0 auto;
    width: max-content;
    max-width: none;
    margin-right: 0;
    overflow: visible;
    scroll-snap-type: none;
    touch-action: pan-y;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .team-section.is-scroll-stage .team-person {
    flex: 0 0 clamp(300px, 86vw, 470px);
    --portrait-height: clamp(320px, 88vw, 370px);
    scroll-snap-align: none;
  }

  .team-section.is-scroll-stage .team-person-small,
  .team-section.is-scroll-stage .team-person-small:nth-child(3) {
    flex-basis: clamp(260px, 74vw, 400px);
    --portrait-height: clamp(280px, 76vw, 320px);
  }

  .team-section.is-scroll-stage .team-mobile-hint {
    position: absolute;
    right: 0;
    bottom: 10px;
    z-index: 4;
    margin: 0;
    padding: 7px 9px;
    border: 1px solid rgba(255, 90, 0, 0.2);
    border-radius: 999px;
    background: rgba(11, 11, 11, 0.76);
    color: rgba(244, 241, 235, 0.56);
    backdrop-filter: blur(10px);
  }

  .offices-section {
    padding-top: 100px;
  }

  .map-wrap {
    width: calc(100% - 16px);
    border-radius: 20px;
  }

  .office-map {
    height: 430px;
  }

  .office-list {
    gap: 12px;
    padding-bottom: 100px;
  }

  .office-card {
    min-height: 206px;
    padding: 16px 16px 0;
    border-radius: 16px;
  }

  .office-card::after {
    right: 16px;
    left: 16px;
  }

  .office-card-top {
    gap: 10px;
  }

  .office-card-brand {
    gap: 9px;
  }

  .office-card-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .office-card .office-card-label {
    font-size: 7px;
  }

  .office-card .office-schedule {
    gap: 7px;
    min-height: 38px;
    padding-left: 10px;
  }

  .office-schedule > svg {
    width: 15px;
    height: 15px;
  }

  .office-card .office-days {
    font-size: 7px;
  }

  .office-card .office-time {
    font-size: 11px;
  }

  .office-card-main {
    gap: 8px;
    padding: 21px 0 19px;
  }

  .office-card .office-card-title {
    font-size: 24px;
  }

  .office-card .office-address {
    font-size: 10px;
  }

  .office-card-bottom {
    min-height: 58px;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .office-card .office-route {
    gap: 6px;
    font-size: 8px;
  }

  .office-route-icon {
    width: 32px;
    height: 32px;
  }

  .request-section {
    min-height: auto;
    padding: 100px 0;
    background:
      radial-gradient(circle at 78% 14%, rgba(255, 90, 0, 0.13), transparent 28%),
      linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
      #060606;
    background-size: auto, 42px 42px, 42px 42px, auto;
  }

  .request-layout {
    gap: 44px;
  }

  .request-copy h2 {
    font-size: 37px;
    line-height: 1.05;
  }

  .request-rings {
    top: 20%;
    left: 84%;
    width: 360px;
    height: 360px;
  }

  .request-monogram {
    top: 20%;
    left: 84%;
    font-size: 130px;
  }

  .request-form {
    gap: 0;
    padding: 19px;
    border-radius: 14px;
  }

  .request-form-fields {
    gap: 16px;
  }

  .request-form::before {
    bottom: -5px;
    left: 7px;
    height: 5px;
    border-radius: 0 0 11px 11px;
  }

  .request-form::after {
    top: 7px;
    right: -5px;
    width: 5px;
    border-radius: 0 11px 11px 0;
  }

  .request-form-head {
    grid-template-columns: 1fr;
    gap: 9px;
    padding-bottom: 17px;
  }

  .request-form-head h3 {
    font-size: 23px;
  }

  .request-form-head p {
    max-width: 290px;
  }

  .request-success {
    min-height: 610px;
  }

  .request-success-head {
    min-height: 48px;
    padding-bottom: 14px;
  }

  .request-success-brand {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .request-success-main {
    gap: 21px;
    padding: 30px 0 28px;
  }

  .request-success-mark {
    width: 96px;
    height: 96px;
  }

  .request-success-check {
    width: 66px;
    height: 66px;
  }

  .request-success-check svg {
    width: 31px;
    height: 31px;
  }

  .request-success-copy h3 {
    font-size: 30px;
  }

  .request-success-copy p {
    max-width: 300px;
    font-size: 11px;
  }

  .request-success-timer {
    width: 100%;
    padding: 18px 16px 21px;
    border-radius: 12px;
  }

  .request-success-timer strong {
    font-size: 42px;
  }

  .request-success-foot {
    gap: 12px;
    min-height: 48px;
    padding-top: 14px;
  }

  .request-success-foot > span {
    gap: 5px;
    font-size: 7px;
  }

  .request-form .request-field input,
  .request-combobox-trigger {
    min-height: 52px;
    height: 52px;
  }

  .footer-top {
    min-height: 116px;
  }

  .footer-bottom {
    padding: 20px 0;
  }
}

/* Hero 2026 / Transit Aperture: library-led depth scene around the approved lockup. */
.hero {
  --hero-pointer-x: 50%;
  --hero-pointer-y: 48%;
  --scene-x: 0px;
  --scene-y: 0px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 78, 0, 0.075), transparent 34%),
    linear-gradient(180deg, #030303 0%, #050403 54%, #020202 100%);
}

.hero-network {
  z-index: -2;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at 50% 48%, transparent 3%, #000 38%, #000 78%, transparent 100%);
}

.hero-backdrop {
  z-index: -3;
  background:
    radial-gradient(
      520px circle at var(--hero-pointer-x) var(--hero-pointer-y),
      rgba(255, 90, 0, 0.105),
      rgba(255, 90, 0, 0.025) 32%,
      transparent 70%
    ),
    radial-gradient(ellipse at 50% 49%, rgba(255, 102, 22, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.05), rgba(2, 2, 2, 0.72));
  transition: background-position 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-grid {
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(244, 241, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 235, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0%, rgba(0, 0, 0, 0.58) 43%, transparent 82%);
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.94) 0%, transparent 18%, transparent 82%, rgba(2, 2, 2, 0.94) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.92) 0%, transparent 19%, transparent 79%, rgba(2, 2, 2, 0.94) 100%);
  pointer-events: none;
}

.hero::after {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0%, transparent 27%, rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.hero-transit-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  animation: hero-transit-arrive 1500ms cubic-bezier(0.16, 1, 0.3, 1) 320ms both;
}

.hero-transit-walls,
.hero-transit-walls::before,
.hero-transit-walls::after {
  position: absolute;
  inset: 0;
}

.hero-transit-walls::before,
.hero-transit-walls::after {
  content: "";
}

.hero-transit-walls::before {
  right: 57%;
  background:
    linear-gradient(90deg, rgba(255, 90, 0, 0.055), transparent 72%),
    repeating-linear-gradient(112deg, transparent 0 72px, rgba(244, 241, 235, 0.04) 73px, transparent 74px 146px);
  clip-path: polygon(0 0, 100% 32%, 100% 68%, 0 100%);
}

.hero-transit-walls::after {
  left: 57%;
  background:
    linear-gradient(270deg, rgba(255, 90, 0, 0.055), transparent 72%),
    repeating-linear-gradient(68deg, transparent 0 72px, rgba(244, 241, 235, 0.04) 73px, transparent 74px 146px);
  clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 68%);
}

.hero-transit-portal {
  position: absolute;
  top: 48.5%;
  left: 50%;
  width: min(76vw, 1240px);
  height: min(61vh, 610px);
  transform: translate3d(calc(-50% + var(--scene-x)), calc(-50% + var(--scene-y)), 0);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-transit-portal i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(244, 241, 235, 0.075);
  border-radius: clamp(24px, 4vw, 64px);
  box-shadow:
    inset 0 0 42px rgba(255, 90, 0, 0.016),
    0 0 34px rgba(0, 0, 0, 0.32);
  opacity: var(--ring-opacity, 0.35);
  transform: translate(-50%, -50%) scale(var(--ring-scale, 1));
}

.hero-transit-portal i::before,
.hero-transit-portal i::after {
  position: absolute;
  top: 50%;
  width: clamp(18px, 3.4vw, 54px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.82));
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.36);
  content: "";
}

.hero-transit-portal i::before {
  left: 0;
  transform: translate(-50%, -50%);
}

.hero-transit-portal i::after {
  right: 0;
  transform: translate(50%, -50%) rotate(180deg);
}

.hero-transit-portal i:nth-child(1) { --ring-scale: 0.28; --ring-opacity: 0.2; }
.hero-transit-portal i:nth-child(2) { --ring-scale: 0.42; --ring-opacity: 0.27; }
.hero-transit-portal i:nth-child(3) { --ring-scale: 0.58; --ring-opacity: 0.34; }
.hero-transit-portal i:nth-child(4) { --ring-scale: 0.76; --ring-opacity: 0.4; }
.hero-transit-portal i:nth-child(5) { --ring-scale: 0.96; --ring-opacity: 0.46; }
.hero-transit-portal i:nth-child(6) { --ring-scale: 1.2; --ring-opacity: 0.24; }

.hero-transit-portal i:nth-child(3),
.hero-transit-portal i:nth-child(5) {
  border-color: rgba(255, 90, 0, 0.16);
}

.hero-transit-floor {
  position: absolute;
  top: 49%;
  right: -12%;
  bottom: -8%;
  left: -12%;
  overflow: hidden;
  background:
    repeating-linear-gradient(180deg, transparent 0 62px, rgba(244, 241, 235, 0.055) 63px, transparent 64px 108px),
    conic-gradient(from 270deg at 50% 0%, transparent 0deg, rgba(255, 90, 0, 0.08) 0.35deg, transparent 0.75deg 7.2deg);
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
  opacity: 0.58;
  transform: translate3d(var(--scene-x), var(--scene-y), 0);
  transform-origin: 50% 0;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-transit-floor::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 90, 0, 0.18), transparent 9%, transparent 74%, rgba(0, 0, 0, 0.72));
  content: "";
}

.hero-transit-floor i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 90, 0, 0.7), rgba(255, 90, 0, 0.04) 58%, transparent);
  transform-origin: 50% 0;
}

.hero-transit-floor i:nth-child(1) { transform: rotate(38deg); }
.hero-transit-floor i:nth-child(2) { transform: rotate(0deg); opacity: 0.42; }
.hero-transit-floor i:nth-child(3) { transform: rotate(-38deg); }

.hero-transit-horizon {
  position: absolute;
  top: 48.5%;
  left: 50%;
  width: min(54vw, 850px);
  height: clamp(34px, 7vw, 98px);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 86, 0, 0.22), rgba(255, 86, 0, 0.05) 42%, transparent 72%);
  filter: blur(7px);
  opacity: 0.78;
  transform: translate(-50%, -50%);
}

.hero-transit-horizon::before {
  position: absolute;
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.8), #fff0e9 50%, rgba(255, 90, 0, 0.8), transparent);
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.52);
  content: "";
}

.hero-transit-horizon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff7f2;
  box-shadow: 0 0 28px 10px rgba(255, 90, 0, 0.42);
  transform: translate(-50%, -50%);
}

.hero-route-sweep {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(92vw, 1480px);
  aspect-ratio: 2.45 / 1;
  border: 1px solid rgba(255, 90, 0, 0.2);
  border-radius: 50%;
  opacity: 0.82;
  transform: translate(-50%, -50%) rotate(-7deg);
  -webkit-mask-image: conic-gradient(from 216deg, transparent 0 10%, #000 17% 43%, transparent 49% 67%, #000 74% 88%, transparent 94%);
  mask-image: conic-gradient(from 216deg, transparent 0 10%, #000 17% 43%, transparent 49% 67%, #000 74% 88%, transparent 94%);
}

.hero-route-sweep::before,
.hero-route-sweep::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px 4px rgba(255, 90, 0, 0.38);
  content: "";
}

.hero-route-sweep::before { top: 7%; left: 26%; }
.hero-route-sweep::after { right: 24%; bottom: 8%; }

.hero-route-sweep-b {
  width: min(66vw, 1060px);
  border-color: rgba(244, 241, 235, 0.1);
  opacity: 0.56;
  transform: translate(-50%, -50%) rotate(8deg);
}

.hero-transit-scan {
  position: absolute;
  top: 13%;
  bottom: 12%;
  left: -12%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.05), rgba(244, 241, 235, 0.09), transparent);
  filter: blur(8px);
  opacity: 0;
  transform: skewX(-12deg);
  animation: hero-transit-scan 9s cubic-bezier(0.65, 0, 0.35, 1) 2.2s infinite;
}

.hero-rails,
.hero-instrument,
.hero-signal {
  display: none;
}

.hero-content,
.hero-meta,
.scroll-cue,
.hero-side-note {
  z-index: 2;
}

@keyframes hero-transit-arrive {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes hero-transit-scan {
  0%, 14% {
    left: -22%;
    opacity: 0;
  }
  20% {
    opacity: 0.66;
  }
  44% {
    left: 104%;
    opacity: 0;
  }
  100% {
    left: 104%;
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .hero-transit-portal {
    width: 106vw;
    height: min(59vh, 540px);
  }

  .hero-route-sweep {
    width: 120vw;
  }

  .hero-route-sweep-b {
    width: 88vw;
  }

  .hero-transit-walls {
    opacity: 0.72;
  }
}

@media (max-width: 640px) {
  .hero-network {
    opacity: 0.48;
  }

  .hero-grid {
    opacity: 0.11;
    background-size: 44px 44px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.58), transparent 15%, transparent 85%, rgba(2, 2, 2, 0.58)),
      linear-gradient(180deg, rgba(2, 2, 2, 0.88), transparent 17%, transparent 80%, rgba(2, 2, 2, 0.94));
  }

  .hero-transit-portal {
    top: 47%;
    width: 142vw;
    height: 58vh;
  }

  .hero-transit-portal i:nth-child(1),
  .hero-transit-portal i:nth-child(6) {
    display: none;
  }

  .hero-transit-floor {
    top: 48%;
    right: -52%;
    left: -52%;
    opacity: 0.42;
  }

  .hero-transit-horizon {
    top: 47%;
    width: 88vw;
    opacity: 0.68;
  }

  .hero-route-sweep {
    top: 47%;
    width: 178vw;
    opacity: 0.56;
  }

  .hero-route-sweep-b {
    width: 126vw;
    opacity: 0.42;
  }

  .hero-transit-walls {
    opacity: 0.48;
  }

  .hero-transit-scan {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-transit-scene,
  .hero-transit-scan {
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .hero-transit-portal,
  .hero-transit-floor,
  .hero-backdrop {
    transition: none;
  }
}

@media (max-width: 640px) {
  .route-dialog {
    padding: 0 8px calc(8px + env(safe-area-inset-bottom));
  }

  .route-sheet {
    width: 100%;
    max-height: calc(100dvh - 16px);
    padding: 20px 16px 16px;
    border-radius: 22px;
  }

  .route-sheet-head {
    gap: 12px;
    padding-bottom: 18px;
  }

  .route-sheet-head h2 {
    max-width: calc(100vw - 112px);
    margin-top: 10px;
    font-size: 28px;
  }

  .route-sheet-address {
    align-items: flex-start;
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.4;
  }

  .route-sheet-head .icon-button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .route-sheet-intro {
    align-items: flex-start;
    gap: 9px;
    margin-top: 16px;
  }

  .route-sheet-intro p {
    font-size: 10px;
    line-height: 1.5;
  }

  .route-services {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 16px;
  }

  .map-service {
    min-height: 80px;
    padding: 11px;
    border-radius: 14px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .map-service-copy strong {
    font-size: 14px;
  }

  .map-service-copy small {
    font-size: 9px;
  }

  .map-service-arrow {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-shutters,
  .hero-network,
  .request-rings,
  .hero-models {
    display: none;
  }

  .motion-ready [data-reveal-prepared="true"] {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
  }

  .team-portrait {
    filter: grayscale(0) brightness(0.92);
    opacity: 1;
    transform: none;
  }

  .request-success-ring,
  .request-success-check svg path {
    animation: none !important;
  }

  .request-success-check svg path {
    stroke-dashoffset: 0;
  }

  .request-form-fields,
  .request-success {
    filter: none;
    transform: none;
  }

  .route-sheet,
  .map-service {
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .route-dialog::backdrop {
    animation: none;
  }
}

/* 2026 refinement: clearer hierarchy, live data and fluid detail surfaces */
.hero {
  background:
    linear-gradient(115deg, rgba(255, 90, 0, 0.055), transparent 34%),
    linear-gradient(300deg, rgba(255, 151, 74, 0.04), transparent 38%),
    #040404;
}

.hero-backdrop {
  background:
    linear-gradient(105deg, rgba(255, 90, 0, 0.12), transparent 22%),
    linear-gradient(275deg, rgba(255, 122, 44, 0.1), transparent 25%),
    linear-gradient(180deg, rgba(4, 4, 4, 0), #040404 92%);
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: clamp(4px, 0.6vw, 9px);
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  animation: hero-brand-in 900ms var(--ease-out) 680ms forwards;
}

.hero-brand-mark {
  display: block;
  width: clamp(78px, 10vw, 142px);
  height: auto;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 26px rgba(255, 90, 0, 0.16));
  transform: rotate(0deg);
  transform-origin: 52% 82%;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero-brand-lockup:hover .hero-brand-mark {
    transform: translateX(-3px) rotate(-17deg);
  }
}

.hero-brand-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(42px, 8.5vw, 126px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
}

.hero-brand-word strong {
  font: inherit;
}

.hero-brand-word strong {
  color: var(--orange);
}

.hero h1 > .hero-brand-lockup,
.hero h1 .hero-brand-word strong {
  animation-duration: inherit;
}

.hero h1 > .hero-brand-lockup {
  display: inline-flex !important;
  width: auto;
  height: auto;
  font-size: inherit;
  line-height: 1;
  transform: translateY(24px) scale(0.97);
  animation: hero-brand-in 900ms var(--ease-out) 680ms both !important;
}

.hero h1 .hero-brand-word {
  display: inline-flex !important;
  width: auto;
  height: auto;
  transform: none !important;
  animation: none !important;
}

.hero h1 .hero-brand-word strong {
  opacity: 1;
  transform: none;
  animation: none !important;
}

.hero-instrument {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 178px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
  color: rgba(244, 241, 235, 0.5);
  font-family: var(--mono-font);
  font-size: 8px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(16px);
  backdrop-filter: blur(12px);
  animation: hero-instrument-in 720ms var(--ease-out) 1200ms forwards;
}

.hero-instrument-left {
  top: 29%;
  left: clamp(24px, 5vw, 92px);
}

.hero-instrument-right {
  right: clamp(24px, 5vw, 92px);
  bottom: 31%;
  animation-delay: 1380ms;
}

.hero-instrument-label {
  color: var(--orange);
  font-size: 8px;
}

.hero-instrument strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 11px;
  font-weight: 600;
}

.hero-instrument strong i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(87, 211, 140, 0.8);
}

.hero-instrument > i {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-instrument small {
  color: rgba(244, 241, 235, 0.32);
  font-size: 7px;
}

.hero-signal {
  position: absolute;
  z-index: -1;
  width: 28vw;
  max-width: 420px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.74), transparent);
  opacity: 0.7;
  transform-origin: left center;
  animation: hero-signal-draw 1600ms var(--ease-out) 900ms both;
}

.hero-signal-one {
  top: 35%;
  left: 3%;
  transform: rotate(-18deg) scaleX(0);
  animation-name: hero-signal-one-draw;
}

.hero-signal-two {
  right: 3%;
  bottom: 37%;
  transform: rotate(18deg) scaleX(0);
  transform-origin: right center;
  animation-name: hero-signal-two-draw;
  animation-delay: 1080ms;
}

@keyframes hero-brand-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-instrument-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-signal-one-draw {
  to { transform: rotate(-18deg) scaleX(1); }
}

@keyframes hero-signal-two-draw {
  to { transform: rotate(18deg) scaleX(1); }
}

.rate-panel {
  min-width: min(390px, 100%);
  padding: 12px 14px;
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 65%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rate-auto-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(87, 211, 140, 0.26);
  border-radius: 999px;
  color: var(--green);
  font-family: var(--mono-font);
  font-size: 7px;
  white-space: nowrap;
}

.rate-auto-state svg {
  width: 12px;
  height: 12px;
}

.rate-panel.is-refreshing .rate-auto-state {
  border-color: rgba(255, 90, 0, 0.5);
  color: var(--orange);
}

.rate-panel.is-fallback .rate-auto-state {
  border-color: rgba(255, 90, 0, 0.35);
  color: var(--orange);
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 12vw, 172px) 0 132px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.021) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.021) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 90, 0, 0.07), transparent 35%),
    #090909;
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 18%;
  right: -12%;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.42), transparent);
  transform: rotate(-12deg);
  pointer-events: none;
}

.fluid-clip-defs {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.65fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 58px;
}

.about-heading h2 {
  margin-top: 14px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(42px, 5.7vw, 82px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.about-heading h2 span {
  color: var(--orange);
}

.about-heading > p {
  max-width: 340px;
  color: rgba(244, 241, 235, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 16px;
}

.about-manifesto,
.about-visual {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.about-manifesto {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.16), transparent 45%),
    rgba(18, 18, 18, 0.88);
}

.about-manifesto-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--orange);
}

.about-label {
  font-family: var(--mono-font);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.about-manifesto-top svg {
  width: 22px;
  height: 22px;
}

.about-manifesto h3 {
  margin-top: auto;
  padding-top: 72px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.about-manifesto p {
  max-width: 430px;
  margin-top: 20px;
  color: rgba(244, 241, 235, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.about-proof-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(244, 241, 235, 0.42);
  font-family: var(--mono-font);
  font-size: 8px;
}

.about-proof-line span {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 90, 0, 0.55);
}

.about-visual {
  min-height: 410px;
  background: #111;
}

.about-visual[data-about-fluid] {
  --about-fluid-blur: 0px;
  --about-fluid-tilt: 0deg;
  --about-fluid-trail-opacity: 0;
  --about-fluid-y: 0px;
  overflow: visible;
  border: 0;
  background: transparent;
  isolation: isolate;
}

.about-visual-fluid-surface,
.about-visual-fluid-trail {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.about-visual-fluid-surface {
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #111;
}

.motion-ready .about-visual-fluid-surface {
  clip-path: url("#aboutFluidClip");
  filter: blur(var(--about-fluid-blur));
  transform: translate3d(0, var(--about-fluid-y), 0) rotate(var(--about-fluid-tilt));
  transform-origin: 48% 58%;
  will-change: clip-path, filter, transform;
}

.about-visual-fluid-trail {
  z-index: 0;
  border: 1px solid rgba(255, 122, 48, 0.42);
  background:
    radial-gradient(circle at 44% 54%, rgba(255, 133, 67, 0.5), transparent 34%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.34), rgba(52, 17, 3, 0.2));
  box-shadow: 0 0 34px rgba(255, 90, 0, 0.2);
  clip-path: url("#aboutFluidTrailClip");
  opacity: var(--about-fluid-trail-opacity);
  pointer-events: none;
  will-change: clip-path, opacity;
}

.about-visual-fluid-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(255, 90, 0, 0.12), transparent 38%);
  pointer-events: none;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 900ms var(--ease-out), filter 700ms ease;
}

.about-visual-overlay {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.about-visual-overlay span {
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 8px;
  text-transform: uppercase;
}

.about-visual-overlay strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .about-visual-fluid-surface {
    clip-path: none;
    filter: none;
    transform: none;
  }

  .about-visual-fluid-trail {
    display: none;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.about-stats article {
  display: grid;
  gap: 10px;
  min-height: 126px;
  padding: 24px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stats article:first-child {
  border-left: 0;
}

.about-stats strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.about-stats span {
  color: rgba(244, 241, 235, 0.42);
  font-family: var(--mono-font);
  font-size: 8px;
  text-transform: uppercase;
}

/* Request form: roomier surface and immediate hover light */
.request-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 680px);
  gap: clamp(54px, 7vw, 124px);
}

.request-copy {
  overflow: visible;
}

.request-form {
  min-height: 690px;
  padding: clamp(32px, 3.1vw, 46px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 30%),
    rgba(11, 11, 11, 0.96);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.request-form-head h3 {
  font-size: clamp(28px, 2.4vw, 38px);
}

.request-form-head p {
  max-width: 230px;
  font-size: 11px;
}

.request-form input,
.request-form textarea,
.request-combobox-trigger {
  border-radius: 11px;
}

.request-form textarea {
  min-height: 128px;
}

.request-field:hover input,
.request-field:hover textarea,
.request-combobox-trigger:hover {
  transform: translateY(-2px);
}

/* Detailed vehicle surface */
.gallery-dialog {
  width: min(1240px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  overflow: visible;
  border-radius: 28px;
  background: transparent;
}

.gallery-dialog[open] {
  animation: vehicle-dialog-in 760ms var(--ease-drawer) both;
}

.gallery-dialog.is-closing {
  animation: vehicle-dialog-out 520ms var(--ease-in-out) both;
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px) saturate(0.78);
  animation: vehicle-backdrop-in 680ms ease both;
}

.gallery-dialog.is-closing::backdrop {
  animation: vehicle-backdrop-out 520ms ease both;
}

.vehicle-detail-modal {
  height: min(820px, calc(100dvh - 32px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.09), transparent 32%),
    #0d0d0d;
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.68),
    0 0 70px rgba(255, 90, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vehicle-detail-modal .gallery-top {
  min-height: 86px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-detail-modal .gallery-top > div {
  gap: 6px;
}

.vehicle-detail-modal .gallery-top span {
  color: var(--orange);
}

.vehicle-detail-modal .gallery-top strong {
  font-family: var(--display-font);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.vehicle-detail-modal .gallery-top small {
  color: rgba(244, 241, 235, 0.44);
  font-size: 10px;
}

.gallery-main {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(340px, 0.68fr);
  min-height: 0;
  gap: 1px;
  overflow: hidden;
}

.vehicle-detail-modal .gallery-viewport {
  min-height: 0;
  margin: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #080808;
}

.vehicle-detail-modal .gallery-viewport img,
.vehicle-detail-modal .gallery-viewport video {
  border-radius: 17px;
}

.gallery-swipe-hint {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.66);
  color: rgba(244, 241, 235, 0.6);
  font-family: var(--mono-font);
  font-size: 8px;
  backdrop-filter: blur(8px);
}

.gallery-swipe-hint svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
}

.vehicle-detail-aside {
  min-width: 0;
  overflow: auto;
  padding: 28px 28px 24px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 90, 0, 0.55) transparent;
}

.vehicle-detail-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(244, 241, 235, 0.44);
  font-family: var(--mono-font);
  font-size: 8px;
  text-transform: uppercase;
}

.vehicle-detail-status span:first-child {
  color: var(--orange);
}

.vehicle-detail-description {
  margin-top: 22px;
  color: rgba(244, 241, 235, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.vehicle-detail-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.vehicle-detail-prices > div {
  display: grid;
  gap: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.vehicle-detail-prices .vehicle-detail-price-main {
  grid-column: 1 / -1;
  padding: 18px;
  border-color: rgba(255, 90, 0, 0.38);
  background: linear-gradient(120deg, rgba(255, 90, 0, 0.14), rgba(255, 255, 255, 0.025));
}

.vehicle-detail-prices span {
  color: rgba(244, 241, 235, 0.42);
  font-family: var(--mono-font);
  font-size: 8px;
  text-transform: uppercase;
}

.vehicle-detail-prices strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.vehicle-detail-price-main strong {
  color: var(--orange);
  font-size: clamp(26px, 3vw, 38px);
}

.vehicle-detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.vehicle-detail-specs span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(244, 241, 235, 0.54);
  font-family: var(--mono-font);
  font-size: 8px;
}

.vehicle-detail-facts {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-detail-facts div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vehicle-detail-facts dt {
  color: rgba(244, 241, 235, 0.38);
  font-family: var(--mono-font);
  font-size: 8px;
}

.vehicle-detail-facts dd {
  margin: 0;
  color: rgba(244, 241, 235, 0.74);
  font-size: 10px;
  text-align: right;
}

.gallery-detail-actions {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.gallery-detail-actions .primary-button,
.gallery-detail-actions .ghost-button {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}

.vehicle-detail-modal .gallery-bottom {
  min-height: 62px;
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-bottom-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(244, 241, 235, 0.36);
  font-family: var(--mono-font);
  font-size: 8px;
}

.gallery-bottom-note svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
}

@keyframes vehicle-dialog-in {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(72px) scale(0.94) skewY(1deg);
  }
  62% {
    filter: blur(0);
    transform: translateY(-7px) scale(1.008) skewY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) skewY(0);
  }
}

@keyframes vehicle-dialog-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(48px) scale(0.96);
  }
}

@keyframes vehicle-backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes vehicle-backdrop-out { from { opacity: 1; } to { opacity: 0; } }

/* Route picker: large rounded drawer with full-width branded rows */
.route-dialog {
  padding: 24px;
}

.route-dialog[open] {
  align-items: flex-end;
}

.route-sheet {
  width: min(1120px, calc(100% - 8px));
  min-height: min(720px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
  padding: clamp(30px, 4vw, 52px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.14), transparent 30%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.04), transparent 34%),
    #101010;
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.72),
    0 0 70px rgba(255, 90, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: route-sheet-rise-refined 940ms var(--ease-drawer) both;
}

.route-dialog.is-closing .route-sheet {
  animation: route-sheet-drop-refined 620ms var(--ease-in-out) both;
}

.route-sheet-head {
  gap: 28px;
  padding-bottom: 28px;
}

.route-sheet-head h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.route-sheet-address {
  margin-top: 16px;
  font-size: 12px;
}

.route-sheet-mode {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: rgba(244, 241, 235, 0.38);
  font-family: var(--mono-font);
  font-size: 8px;
  text-transform: uppercase;
}

.route-sheet-mode svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
}

.route-sheet-intro {
  gap: 14px;
  margin-top: 24px;
}

.route-sheet-intro p {
  max-width: 720px;
  font-size: 12px;
}

.route-services {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 30px;
}

.map-service {
  min-height: 112px;
  padding: 18px 22px;
  border-radius: 20px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  animation-duration: 780ms;
}

.map-service:nth-child(2) { --service-delay: 220ms; }
.map-service:nth-child(3) { --service-delay: 340ms; }

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.map-service-copy {
  gap: 7px;
}

.map-service-copy strong {
  font-size: clamp(18px, 2vw, 24px);
}

.map-service-copy small {
  font-size: 11px;
}

.map-service-arrow {
  width: 42px;
  height: 42px;
}

@keyframes route-sheet-rise-refined {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(115%) scale(0.94);
  }
  68% {
    filter: blur(0);
    transform: translateY(-10px) scale(1.008);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes route-sheet-drop-refined {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(115%) scale(0.95);
  }
}

@media (hover: hover) and (pointer: fine) {
  .request-form:hover {
    border-color: rgba(255, 90, 0, 0.48);
    box-shadow:
      0 44px 116px rgba(0, 0, 0, 0.56),
      0 0 0 1px rgba(255, 90, 0, 0.1),
      0 0 70px rgba(255, 90, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
  }

  .about-visual:hover img {
    filter: saturate(1.02) contrast(1.08);
    transform: scale(1.045);
  }
}

@media (max-width: 900px) {
  .hero-instrument {
    width: 150px;
    padding: 11px 12px;
  }

  .hero-instrument-left { left: 18px; }
  .hero-instrument-right { right: 18px; }

  .about-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .about-heading > p {
    max-width: 500px;
  }

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

  .about-visual,
  .about-manifesto {
    min-height: 360px;
  }

  .about-stats strong {
    font-size: 24px;
  }

  .request-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
    gap: 42px;
  }

  .request-form {
    min-height: 650px;
  }

  .gallery-dialog {
    width: min(920px, calc(100% - 24px));
  }

  .vehicle-detail-modal {
    height: min(820px, calc(100dvh - 24px));
  }

  .gallery-main {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .vehicle-detail-modal .gallery-viewport {
    min-height: 360px;
    max-height: 46vh;
  }

  .vehicle-detail-aside {
    overflow: visible;
    padding: 22px 24px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-brand-lockup {
    gap: 4px;
  }

  .hero-brand-mark {
    width: 58px;
  }

  .hero-brand-word {
    font-size: clamp(34px, 11vw, 54px);
  }

  .hero-instrument {
    display: none;
  }

  .hero-signal {
    width: 48vw;
  }

  .about-section {
    padding: 96px 0 100px;
  }

  .about-heading h2 {
    font-size: 34px;
  }

  .about-manifesto,
  .about-visual {
    min-height: 330px;
    border-radius: 10px;
  }

  .about-manifesto {
    padding: 22px;
  }

  .about-manifesto h3 {
    padding-top: 48px;
    font-size: 27px;
  }

  .about-manifesto p {
    font-size: 11px;
  }

  .about-visual-overlay {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .about-visual-overlay strong {
    font-size: 23px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats article,
  .about-stats article:nth-child(3) {
    min-height: 102px;
    padding: 18px 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-stats article:nth-child(odd) {
    border-left: 0;
  }

  .about-stats strong {
    font-size: 21px;
  }

  .about-stats span {
    font-size: 7px;
    line-height: 1.35;
  }

  .rate-panel {
    min-width: 0;
    width: 100%;
  }

  .rate-auto-state {
    padding: 0 6px;
    font-size: 6px;
  }

  .request-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .request-form {
    min-height: 0;
    padding: 22px;
    border-radius: 20px;
  }

  .request-form-head h3 {
    font-size: 26px;
  }

  .gallery-dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
  }

  .vehicle-detail-modal {
    height: calc(100dvh - 12px);
    border-radius: 24px;
  }

  .vehicle-detail-modal .gallery-top {
    min-height: 72px;
    padding: 14px 16px;
  }

  .vehicle-detail-modal .gallery-top strong {
    font-size: 17px;
  }

  .vehicle-detail-modal .gallery-top small {
    font-size: 8px;
  }

  .vehicle-detail-modal .gallery-viewport {
    min-height: 240px;
    max-height: 35vh;
    margin: 10px;
    border-radius: 14px;
  }

  .vehicle-detail-modal .gallery-viewport img,
  .vehicle-detail-modal .gallery-viewport video {
    border-radius: 13px;
  }

  .gallery-swipe-hint {
    right: 10px;
    bottom: 10px;
    font-size: 7px;
  }

  .vehicle-detail-aside {
    padding: 18px 16px 20px;
  }

  .vehicle-detail-description {
    margin-top: 16px;
    font-size: 11px;
  }

  .vehicle-detail-prices {
    margin-top: 17px;
  }

  .vehicle-detail-price-main strong {
    font-size: 27px;
  }

  .vehicle-detail-prices strong {
    font-size: 14px;
  }

  .vehicle-detail-facts div {
    grid-template-columns: 1fr 1.3fr;
  }

  .route-dialog {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }

  .route-sheet {
    width: 100%;
    min-height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    padding: 22px 16px 18px;
    border-radius: 26px;
  }

  .route-sheet-head {
    gap: 12px;
    padding-bottom: 20px;
  }

  .route-sheet-head h2 {
    max-width: calc(100vw - 100px);
    font-size: 29px;
  }

  .route-sheet-address {
    align-items: flex-start;
    margin-top: 11px;
    font-size: 10px;
    line-height: 1.4;
  }

  .route-sheet-mode {
    margin-top: 10px;
    font-size: 7px;
  }

  .route-sheet-intro {
    margin-top: 18px;
  }

  .route-sheet-intro p {
    font-size: 10px;
  }

  .route-services {
    gap: 10px;
    margin-top: 20px;
  }

  .map-service {
    min-height: 88px;
    padding: 12px;
    border-radius: 16px;
    gap: 12px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .map-service-copy strong {
    font-size: 15px;
  }

  .map-service-copy small {
    font-size: 9px;
  }

  .map-service-arrow {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-lockup,
  .hero-brand-mark,
  .hero-instrument,
  .hero-signal,
  .gallery-dialog[open],
  .route-sheet {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Vehicle prices and detail surface: three clear zones with a live counter. */
.price-stack {
  display: grid;
  gap: 5px;
  margin-top: 20px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.price-stack-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  padding: 7px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.price-stack-row > span {
  flex: 0 0 auto;
  color: rgba(244, 241, 235, 0.38);
  font-family: var(--mono-font);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-stack-row > strong {
  min-width: 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: right;
  white-space: nowrap;
}

.price-stack-row.is-primary {
  padding: 10px 8px;
  border: 1px solid rgba(255, 90, 0, 0.24);
  border-radius: 7px;
  background: linear-gradient(110deg, rgba(255, 90, 0, 0.13), rgba(255, 255, 255, 0.015));
}

.price-stack-row.is-primary > span {
  color: rgba(255, 141, 86, 0.8);
}

.price-stack-row.is-primary > strong {
  color: var(--orange);
  font-size: 20px;
}

.price-stack-row > strong.is-ticking,
.vehicle-detail-prices strong.is-ticking {
  animation: price-number-roll 900ms var(--ease-out);
}

@keyframes price-number-roll {
  0% {
    filter: blur(3px);
    opacity: 0.45;
    transform: translateY(10px);
  }
  55% {
    filter: blur(0);
    opacity: 0.86;
    transform: translateY(-2px);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.vehicle-detail-modal {
  height: min(900px, calc(100dvh - 14px));
}

.gallery-dialog {
  width: min(1480px, calc(100% - 16px));
  max-height: calc(100dvh - 12px);
}

.vehicle-detail-modal .gallery-top {
  min-height: 74px;
  padding: 12px 20px;
}

.gallery-main {
  grid-template-columns: minmax(540px, 1.42fr) minmax(280px, 0.76fr) minmax(340px, 0.82fr);
  grid-template-rows: minmax(390px, 1.18fr) minmax(250px, 0.72fr);
  gap: 0;
  overflow: hidden;
}

.vehicle-detail-modal .gallery-viewport {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  min-height: 0;
  margin: 12px 10px 10px 12px;
  border-radius: 14px;
}

.vehicle-detail-modal .gallery-viewport img,
.vehicle-detail-modal .gallery-viewport video {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  scale: 1;
  border-radius: 13px;
}

.vehicle-detail-modal .gallery-viewport .gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  max-width: calc(100% - 32px);
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(9px);
}

.vehicle-detail-modal .gallery-viewport .gallery-dots button {
  flex: 0 1 24px;
  width: 24px;
  min-width: 12px;
}

.gallery-arrow[hidden],
.gallery-swipe-hint[hidden],
.gallery-dots[hidden],
.gallery-viewport.is-single-media .gallery-arrow,
.gallery-viewport.is-single-media .gallery-swipe-hint,
.gallery-viewport.is-single-media .gallery-dots {
  display: none !important;
}

.gallery-viewport.is-single-media {
  touch-action: auto;
}

.vehicle-media.is-portrait-media,
.vehicle-media.is-external-preview,
.vehicle-detail-modal .gallery-viewport.is-external-preview {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 90, 0, 0.1), transparent 42%),
    #070707;
}

.vehicle-media.is-portrait-media img,
.vehicle-media.is-external-preview img {
  object-fit: contain;
  object-position: center;
  transform: none;
}

.vehicle-media.is-external-preview img,
.vehicle-detail-modal .gallery-viewport.is-external-preview img {
  object-fit: scale-down;
}

@media (hover: hover) and (pointer: fine) {
  .vehicle-card:hover .vehicle-media.is-portrait-media img,
  .vehicle-card:hover .vehicle-media.is-external-preview img {
    transform: none;
  }
}

.vehicle-detail-facts a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(255, 90, 0, 0.72);
  text-underline-offset: 3px;
}

.vehicle-detail-zone-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-detail-zone-label::before {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.gallery-viewport > .vehicle-detail-zone-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  padding: 7px 9px;
  border: 1px solid rgba(255, 90, 0, 0.34);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(8px);
}

.vehicle-detail-overview {
  display: flex;
  flex-direction: column;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 18px 22px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 90, 0, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.008);
}

.vehicle-detail-overview-heading {
  margin-top: 16px;
}

.vehicle-detail-overview-heading > span {
  color: rgba(244, 241, 235, 0.42);
  font-family: var(--mono-font);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-detail-overview-heading h3 {
  max-width: 460px;
  margin-top: 6px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(23px, 1.6vw, 28px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.vehicle-detail-overview-copy {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(244, 241, 235, 0.62);
  font-size: 10.5px;
  line-height: 1.45;
}

.vehicle-detail-overview-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
  padding-top: 0;
}

.vehicle-detail-overview-list > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-detail-overview-list svg {
  width: 16px;
  height: 16px;
  padding: 8px;
  border: 1px solid rgba(255, 90, 0, 0.35);
  border-radius: 9px;
  color: var(--orange);
  box-sizing: content-box;
}

.vehicle-detail-overview-list span {
  display: grid;
  gap: 3px;
}

.vehicle-detail-overview-list small {
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-detail-overview-list strong {
  color: var(--paper);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.35;
}

.vehicle-detail-overview-note {
  display: none;
}

.vehicle-detail-aside {
  display: flex;
  flex-direction: column;
  grid-column: 3;
  grid-row: 1 / 3;
  min-width: 0;
  overflow: auto hidden;
  padding: 26px 24px 22px;
  border-top: 0;
  border-left: 0;
  background: rgba(255, 255, 255, 0.012);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 90, 0, 0.55) transparent;
  container-type: inline-size;
}

.vehicle-detail-aside > .vehicle-detail-zone-label {
  margin-bottom: 18px;
}

.vehicle-detail-status {
  margin-bottom: 0;
}

.vehicle-detail-price-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: clamp(34px, 6vh, 64px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.vehicle-detail-price-caption {
  display: block;
  color: rgba(244, 241, 235, 0.7);
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
}

.vehicle-detail-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 14px;
  margin-top: 18px;
}

.vehicle-detail-prices > div {
  display: grid;
  justify-items: center;
  width: 100%;
  min-width: 0;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.vehicle-detail-prices .vehicle-detail-price-main {
  padding: 0 0 4px;
  border: 0;
  background: none;
}

.vehicle-detail-prices span {
  color: rgba(244, 241, 235, 0.38);
  font-family: var(--mono-font);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-align: center;
}

.vehicle-detail-prices strong {
  max-width: 100%;
  color: rgba(244, 241, 235, 0.68);
  font-family: var(--display-font);
  font-size: clamp(21px, 5.7cqw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.vehicle-detail-price-main strong {
  color: var(--orange);
  font-size: clamp(38px, 11cqw, 52px);
}

.vehicle-detail-prices > div:nth-child(2) strong {
  color: var(--paper);
  font-size: clamp(28px, 7.5cqw, 36px);
}

.vehicle-detail-prices > div:nth-child(3) strong {
  color: rgba(244, 241, 235, 0.68);
  font-size: clamp(19px, 5.2cqw, 26px);
}

.gallery-detail-actions {
  margin-top: auto;
  padding-top: 14px;
}

.gallery-detail-actions .primary-button,
.gallery-detail-actions .ghost-button {
  min-height: 44px;
}

.vehicle-detail-info {
  grid-column: 1 / 3;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  overflow: auto;
  padding: 18px 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 90, 0, 0.55) transparent;
}

.vehicle-detail-info-head {
  display: block;
}

.vehicle-detail-info-head h3 {
  margin-top: 6px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 600;
  line-height: 1.08;
}

.vehicle-detail-info-description {
  width: 100%;
  max-width: none;
  margin: 13px 0 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 241, 235, 0.6);
  font-size: 11px;
  line-height: 1.55;
}

.vehicle-detail-info-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1.62fr);
  align-items: start;
  gap: 24px;
  margin-top: 14px;
}

.vehicle-detail-info .vehicle-detail-specs {
  margin-top: 0;
  align-content: start;
  gap: 8px;
}

.vehicle-detail-info .vehicle-detail-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  margin-top: 0;
  border-top: 0;
}

.vehicle-detail-info .vehicle-detail-facts div {
  grid-template-columns: minmax(82px, 0.68fr) minmax(0, 1.32fr);
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
}

.vehicle-detail-info .vehicle-detail-facts dd {
  font-size: 9px;
  line-height: 1.35;
}

.vehicle-detail-info .vehicle-detail-specs span {
  padding: 7px 9px;
  font-size: 8px;
}

.vehicle-detail-modal .gallery-bottom {
  min-height: 48px;
  padding: 8px 20px;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .vehicle-detail-modal {
    height: min(900px, calc(100dvh - 24px));
  }

  .gallery-main {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 42vh) max-content max-content max-content;
    overflow-y: auto;
  }

  .vehicle-detail-modal .gallery-viewport {
    grid-column: 1;
    grid-row: 1;
    margin: 14px;
    min-height: 300px;
  }

  .vehicle-detail-overview {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    min-height: max-content;
    overflow: visible;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 0;
    border-left: 0;
  }

  .vehicle-detail-overview-heading {
    margin-top: 38px;
  }

  .vehicle-detail-overview-list {
    margin-top: 28px;
  }

  .vehicle-detail-aside {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    min-height: max-content;
    overflow: visible;
    padding: 20px 24px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .gallery-detail-actions {
    margin-top: 12px;
    padding-top: 0;
  }

  .vehicle-detail-info {
    grid-column: 1;
    grid-row: 4;
    align-self: start;
    min-height: max-content;
    overflow: visible;
    padding: 20px 24px 24px;
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .gallery-dialog {
    width: calc(100% - 16px);
    margin: auto;
  }

  .vehicle-detail-modal {
    height: calc(100dvh - 14px);
    border-radius: 20px;
  }

  .vehicle-detail-modal .gallery-top {
    min-height: 72px;
    padding: 14px 16px;
  }

  .vehicle-detail-modal .gallery-top strong {
    font-size: 18px;
  }

  .gallery-main {
    grid-template-rows: minmax(270px, 38vh) max-content max-content;
  }

  .vehicle-detail-modal .gallery-viewport {
    min-height: 270px;
    margin: 12px;
  }

  .vehicle-detail-modal .gallery-viewport .gallery-dots {
    bottom: 10px;
    gap: 4px;
    max-width: calc(100% - 20px);
    padding: 6px 8px;
  }

  .vehicle-detail-modal .gallery-viewport .gallery-dots button {
    flex-basis: 18px;
    width: 18px;
    min-width: 8px;
  }

  .vehicle-detail-overview {
    display: none;
  }

  .vehicle-detail-aside {
    grid-row: 2;
    padding: 18px 16px 20px;
  }

  .vehicle-detail-price-panel {
    margin-top: 28px;
  }

  .vehicle-detail-price-caption {
    font-size: 10px;
  }

  .vehicle-detail-info {
    grid-row: 3;
    padding: 18px 16px 22px;
  }

  .vehicle-detail-info-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vehicle-detail-info .vehicle-detail-facts {
    grid-template-columns: 1fr;
  }

  .vehicle-detail-prices {
    gap: 14px;
    margin-top: 20px;
  }

  .vehicle-detail-prices strong {
    font-size: clamp(20px, 6vw, 23px);
  }

  .vehicle-detail-prices .vehicle-detail-price-main strong {
    font-size: clamp(36px, 10.5vw, 43px);
  }

  .vehicle-detail-prices > div:nth-child(2) strong {
    font-size: clamp(27px, 8vw, 31px);
  }

  .vehicle-detail-prices > div:nth-child(3) strong {
    font-size: clamp(18px, 5.4vw, 21px);
  }

  .gallery-detail-actions {
    margin-top: 24px;
  }

  .vehicle-detail-info .vehicle-detail-facts div {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-stack-row > strong,
  .vehicle-detail-prices strong {
    animation: none;
  }
}

/* Final navigation pass: larger controls, a softer capsule, and no hover popover. */
.site-header {
  border-radius: 34px;
}

.desktop-nav {
  gap: 10px;
}

.desktop-nav a {
  min-height: 46px;
  gap: 8px;
  overflow: visible;
  padding: 0 15px;
  border-radius: 18px;
  font-size: 12px;
  transition:
    color 180ms ease,
    transform 220ms var(--ease-out);
}

.desktop-nav a::before {
  display: none;
}

.desktop-nav a > span {
  transition: transform 240ms var(--ease-out);
}

.desktop-nav a svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
  transition: transform 240ms var(--ease-out), color 180ms ease;
}

.icon-button,
.header-cta {
  border-radius: 18px;
}

.header-cta {
  min-width: 184px;
  height: 46px;
  border: 1px solid var(--orange);
  border-radius: 18px;
  background: var(--orange);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.header-cta::before {
  display: none;
}

[data-tooltip]::after,
[data-tooltip]:hover::after {
  display: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover {
    color: var(--paper);
    transform: translateY(-2px);
  }

  .desktop-nav a:hover svg {
    color: var(--orange);
    transform: translateX(-2px) rotate(-4deg) scale(1.08);
  }

  .desktop-nav a:hover > span {
    transform: translateX(2px);
  }

  .header-cta:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--black);
    box-shadow: 0 14px 32px rgba(244, 241, 235, 0.14);
    transform: translate(var(--mag-x, 0), calc(var(--mag-y, 0) - 3px));
  }

  .header-cta:hover svg {
    color: var(--orange);
    transform: translate(4px, -3px) rotate(6deg) scale(1.08);
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .desktop-nav a {
    gap: 7px;
    padding: 0 10px;
    font-size: 11px;
  }

  .desktop-nav a svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 640px) {
  .site-header {
    border-radius: 28px;
  }

  .header-cta {
    border-radius: 16px;
  }
}

/* Catalog prices: plain hierarchy, without a currency frame or labels. */
.price-stack {
  display: grid;
  gap: 3px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.price-stack > strong,
.price-stack > span {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  white-space: nowrap;
}

.price-stack > strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.price-stack > span {
  color: rgba(244, 241, 235, 0.52);
  font-family: var(--mono-font);
  font-size: 12px;
  line-height: 1.25;
}

.price-stack > span:last-child {
  color: rgba(244, 241, 235, 0.36);
  font-size: 10px;
}

.price-stack > [data-price-vehicle].is-ticking {
  animation: price-number-roll 900ms var(--ease-out);
}

@media (max-width: 640px) {
  .price-stack > strong {
    font-size: 23px;
  }

  .vehicle-card .price-stack > span {
    display: none;
  }
}

/* Route drawer sits on the viewport edge and shows every service without scrolling. */
.route-dialog {
  padding: 0;
  overflow: hidden;
}

.route-dialog[open] {
  align-items: flex-end;
}

.route-sheet {
  width: min(1180px, calc(100% - 24px));
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0 auto;
  padding: 32px 52px 34px;
  overflow: hidden;
  border-bottom: 0;
  border-radius: 64px 64px 0 0;
}

.route-sheet-head {
  padding-bottom: 18px;
}

.route-sheet-head h2 {
  margin-top: 9px;
  font-size: clamp(32px, 3.2vw, 50px);
}

.route-sheet-address {
  margin-top: 10px;
  font-size: 10px;
}

.route-sheet-mode {
  margin-top: 9px;
  font-size: 7px;
}

.route-sheet-intro {
  margin-top: 14px;
}

.route-sheet-intro p {
  font-size: 10px;
}

.route-services {
  gap: 10px;
  margin-top: 18px;
}

.map-service {
  min-height: 92px;
  padding: 13px 18px;
  border-radius: 18px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
}

.map-service-copy strong {
  font-size: clamp(17px, 1.8vw, 22px);
}

.map-service-copy small {
  font-size: 10px;
}

@media (max-width: 640px) {
  .route-dialog {
    padding: 0;
  }

  .route-sheet {
    width: 100%;
    min-height: min(560px, calc(100dvh - 28px));
    max-height: none;
    padding: 28px 20px calc(26px + env(safe-area-inset-bottom));
    border-radius: 54px 54px 0 0;
  }

  .route-sheet-head {
    gap: 16px;
    padding-bottom: 22px;
  }

  .route-sheet-head h2 {
    max-width: calc(100vw - 118px);
    font-size: 32px;
    line-height: 1.04;
  }

  .route-sheet-address {
    margin-top: 13px;
    font-size: 11px;
  }

  .route-sheet-mode {
    margin-top: 12px;
    font-size: 8px;
  }

  .route-sheet-intro {
    gap: 12px;
    margin-top: 20px;
  }

  .route-sheet-intro p {
    font-size: 11px;
    line-height: 1.5;
  }

  .route-services {
    gap: 12px;
    margin-top: 20px;
  }

  .map-service {
    min-height: 86px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }
}

/* Compact model selector: the catalog stays intact, only its control is folded. */
.model-filter {
  position: relative;
  z-index: 100;
  display: block;
  width: min(320px, 100%);
  overflow: visible;
}

.order-section .section-shell {
  position: relative;
  isolation: isolate;
}

.order-grid {
  position: relative;
  z-index: 1;
}

.motion-ready .model-filter[data-reveal="rise"].is-visible {
  filter: none;
}

.model-filter .model-filter-trigger {
  display: grid;
  grid-template-columns: 1fr auto 18px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper);
  text-align: left;
}

.model-filter-trigger span {
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 700;
}

.model-filter-trigger strong {
  overflow: hidden;
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 9px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-filter-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms var(--ease-out);
}

.model-filter.is-open .model-filter-trigger {
  border-color: rgba(255, 90, 0, 0.72);
}

.model-filter.is-open .model-filter-trigger svg {
  transform: rotate(180deg);
}

.model-filter-menu {
  position: relative;
  top: auto;
  left: auto;
  z-index: 24;
  display: grid;
  width: 100%;
  max-height: 0;
  margin-top: 0;
  padding: 0 6px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 9px;
  background: rgba(12, 12, 12, 0.98);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: 50% 0;
  transition:
    opacity 140ms ease-out,
    transform 180ms var(--ease-out),
    max-height 180ms var(--ease-out),
    margin-top 180ms var(--ease-out),
    padding 180ms var(--ease-out),
    border-color 140ms ease-out,
    visibility 0s linear 180ms;
  pointer-events: none;
}

.model-filter.is-open .model-filter-menu {
  max-height: 190px;
  margin-top: 8px;
  padding: 6px;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.48);
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
  pointer-events: auto;
}

.model-filter .model-filter-menu button {
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: rgba(244, 241, 235, 0.66);
  text-align: left;
}

.model-filter .model-filter-menu button:hover,
.model-filter .model-filter-menu button:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.model-filter .model-filter-menu button.is-active {
  background: rgba(255, 90, 0, 0.14);
  color: var(--orange);
}

.route-mobile-progress {
  display: none;
}

@media (max-width: 640px) {
  .route-line {
    display: none;
  }

  .route-mobile-progress {
    position: absolute;
    top: 230px;
    bottom: 14px;
    left: 18px;
    z-index: 2;
    display: block;
    width: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .route-mobile-progress span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    background: var(--orange);
    box-shadow: 0 0 14px rgba(255, 90, 0, 0.28);
    transform: scaleY(var(--route-progress, 0));
    transform-origin: 50% 0;
    transition: transform 80ms linear;
  }

  .model-filter {
    width: min(100%, 296px);
  }

  /* The four route cards follow a single zigzag staircase on mobile. */
  .route-steps {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .route-step {
    right: auto !important;
    width: calc(100% - 96px);
    will-change: transform, opacity;
  }

  .route-step:nth-child(1) {
    top: 28% !important;
    left: 56px !important;
  }

  .route-step:nth-child(2) {
    top: 39% !important;
    left: 76px !important;
  }

  .route-step:nth-child(3) {
    top: 50% !important;
    left: 44px !important;
  }

  .route-step:nth-child(4) {
    top: 61% !important;
    left: 68px !important;
  }
}

/* Final cascade lock for the approved Transit Aperture hero. */
.hero.hero {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 78, 0, 0.075), transparent 34%),
    linear-gradient(180deg, #030303 0%, #050403 54%, #020202 100%);
}

.hero .hero-backdrop {
  z-index: -3;
  background:
    radial-gradient(
      520px circle at var(--hero-pointer-x) var(--hero-pointer-y),
      rgba(255, 90, 0, 0.105),
      rgba(255, 90, 0, 0.025) 32%,
      transparent 70%
    ),
    radial-gradient(ellipse at 50% 49%, rgba(255, 102, 22, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.05), rgba(2, 2, 2, 0.72));
  filter: none;
  transform: none;
  animation: none;
}

.hero .hero-grid {
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(244, 241, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 235, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0%, rgba(0, 0, 0, 0.58) 43%, transparent 82%);
}

.hero.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.94) 0%, transparent 18%, transparent 82%, rgba(2, 2, 2, 0.94) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.92) 0%, transparent 19%, transparent 79%, rgba(2, 2, 2, 0.94) 100%);
}

.hero.hero::after {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0%, transparent 27%, rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, 0.48));
}

.hero .hero-transit-portal i {
  border-color: rgba(244, 241, 235, 0.14);
}

.hero .hero-transit-portal i:nth-child(3),
.hero .hero-transit-portal i:nth-child(5) {
  border-color: rgba(255, 90, 0, 0.3);
}

.hero .hero-rails,
.hero .hero-instrument,
.hero .hero-signal,
.hero .hero-side-note {
  display: none;
}

@media (max-width: 640px) {
  .hero .hero-grid {
    opacity: 0.11;
    background-size: 44px 44px;
  }

  .hero.hero::before {
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.58), transparent 15%, transparent 85%, rgba(2, 2, 2, 0.58)),
      linear-gradient(180deg, rgba(2, 2, 2, 0.88), transparent 17%, transparent 80%, rgba(2, 2, 2, 0.94));
  }
}

/* Hero rebuild / Cinematic automotive stage. Replaces the rejected abstract scene. */
.hero.hero {
  background: #050403;
}

.hero.hero::before,
.hero.hero::after {
  background: none;
}

.hero-cinema {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #050403;
  pointer-events: none;
}

.hero-cinema-image {
  position: absolute;
  inset: -3%;
  z-index: 0;
  background-image: none;
  background-position: 50% 56%;
  background-size: cover;
  filter: saturate(0.92) contrast(1.14) brightness(0.78);
  clip-path: polygon(43% 7%, 57% 7%, 62% 93%, 38% 93%);
  transform: translate3d(var(--scene-x, 0), var(--scene-y, 0), 0) scale(1.08);
  animation: hero-cinema-open 1450ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path, transform;
}

.hero-cinema::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.86) 0%, rgba(3, 3, 3, 0.16) 20%, rgba(3, 3, 3, 0.08) 52%, rgba(3, 3, 3, 0.9) 100%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.72) 0%, transparent 24%, transparent 76%, rgba(3, 3, 3, 0.72) 100%),
    radial-gradient(ellipse at 50% 43%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.48) 100%);
  content: "";
}

.hero-cinema-light {
  position: absolute;
  z-index: 1;
  top: 12%;
  right: 11%;
  width: min(48vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 80, 0, 0.24), rgba(255, 80, 0, 0.07) 35%, transparent 70%);
  filter: blur(22px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(0.94);
  animation: hero-cinema-light-in 1100ms cubic-bezier(0.16, 1, 0.3, 1) 900ms forwards;
}

.hero-cinema-scan {
  position: absolute;
  z-index: 3;
  top: 9%;
  bottom: 8%;
  left: -22%;
  width: 16%;
  background: linear-gradient(90deg, transparent, rgba(255, 96, 18, 0.02), rgba(255, 225, 205, 0.18), transparent);
  filter: blur(11px);
  opacity: 0;
  transform: skewX(-14deg);
  animation: hero-cinema-scan 8.5s cubic-bezier(0.65, 0, 0.35, 1) 2.1s infinite;
}

.hero-cinema-route {
  position: absolute;
  z-index: 4;
  display: grid;
  color: rgba(244, 241, 235, 0.58);
  font-family: var(--mono-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-cinema-meta-in 700ms cubic-bezier(0.16, 1, 0.3, 1) 1050ms forwards;
}

.hero-cinema-route span {
  margin-bottom: 11px;
  color: var(--orange);
  font-size: 8px;
}

.hero-cinema-route strong {
  color: rgba(244, 241, 235, 0.88);
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 600;
}

.hero-cinema-route i {
  width: 112px;
  height: 1px;
  margin: 10px 0;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-cinema-route b {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 500;
}

.hero-cinema-route-left {
  top: 48%;
  left: clamp(30px, 4.5vw, 88px);
}

.hero-cinema-route-right {
  top: 47%;
  right: clamp(30px, 4.5vw, 88px);
  justify-items: end;
  text-align: right;
  animation-delay: 1160ms;
}

.hero-cinema-counter {
  position: absolute;
  z-index: 4;
  top: 17%;
  right: clamp(30px, 4.5vw, 88px);
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(244, 241, 235, 0.46);
  font-family: var(--mono-font);
  font-size: 8px;
  opacity: 0;
  animation: hero-cinema-meta-in 700ms cubic-bezier(0.16, 1, 0.3, 1) 1250ms forwards;
}

.hero-cinema-counter i {
  width: 46px;
  height: 1px;
  overflow: hidden;
  background: rgba(244, 241, 235, 0.22);
}

.hero-cinema-counter i::after {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--orange);
  content: "";
}

.hero .hero-content {
  top: 43%;
  z-index: 3;
}

.hero .hero-content::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(900px, 92vw);
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 46%, transparent 74%);
  filter: blur(12px);
  content: "";
  transform: translate(-50%, -50%);
}

.hero .hero-kicker {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(5, 5, 5, 0.54);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.hero .hero-statement {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.94);
}

.hero .hero-copy {
  color: rgba(244, 241, 235, 0.78);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.96);
}

.hero .hero-copy span {
  color: rgba(244, 241, 235, 0.58);
}

.hero .hero-model-line-a {
  display: none;
}

@keyframes hero-cinema-open {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate3d(var(--scene-x, 0), var(--scene-y, 0), 0) scale(1.02);
  }
}

@keyframes hero-cinema-light-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-cinema-meta-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-cinema-scan {
  0%, 12% { left: -22%; opacity: 0; }
  18% { opacity: 0.72; }
  42% { left: 108%; opacity: 0; }
  100% { left: 108%; opacity: 0; }
}

@media (max-width: 900px) {
  .hero-cinema-route,
  .hero-cinema-counter {
    display: none;
  }

  .hero .hero-content {
    top: 42%;
  }
}

@media (max-width: 640px) {
  .hero-cinema-image {
    inset: -2%;
    background-position: 62% 50%;
    background-size: auto 104%;
    filter: saturate(0.9) contrast(1.16) brightness(0.6);
    clip-path: polygon(40% 6%, 60% 6%, 66% 94%, 34% 94%);
  }

  .hero-cinema::after {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.24) 18%, rgba(3, 3, 3, 0.18) 55%, rgba(3, 3, 3, 0.92) 100%),
      radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58) 78%);
  }

  .hero-cinema-light {
    top: 24%;
    right: -35%;
    width: 110vw;
    opacity: 0.7;
  }

  .hero-cinema-scan {
    display: none;
  }

  .hero .hero-content {
    top: 41.5%;
  }

  .hero .hero-content::before {
    width: 135vw;
    height: 470px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42) 52%, transparent 76%);
  }

  .hero .hero-copy {
    color: rgba(244, 241, 235, 0.82);
  }

  .hero .hero-copy span {
    color: rgba(244, 241, 235, 0.62);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinema-image,
  .hero-cinema-light,
  .hero-cinema-route,
  .hero-cinema-counter {
    animation: none;
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .hero-cinema-scan {
    display: none;
  }
}

/* Hero rebuild / Four cars emerging from the page edges. */
.hero.hero {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 47%, rgba(255, 83, 0, 0.075) 0%, rgba(255, 83, 0, 0.025) 28%, transparent 58%),
    linear-gradient(180deg, #050505 0%, #070605 54%, #040404 100%);
}

.hero.hero::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 18%,
    transparent 76%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.hero.hero::after {
  background: radial-gradient(
    ellipse at 50% 48%,
    rgba(255, 86, 10, 0.1) 0%,
    rgba(255, 86, 10, 0.035) 26%,
    transparent 58%
  );
}

.hero-grid,
.hero-cinema {
  display: none !important;
  background-image: none !important;
}

.hero-emerge {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--emerge-x, 0px), var(--emerge-y, 0px), 0);
  will-change: transform;
}

.hero-emerge-glow {
  position: absolute;
  top: 49%;
  left: 50%;
  width: min(760px, 62vw);
  height: min(420px, 46vh);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 82, 0, 0.09), transparent 68%);
  filter: blur(18px);
  opacity: 0.76;
  transform: translate(-50%, -50%);
}

.hero-emerge-car {
  position: absolute;
  width: clamp(330px, 22vw, 450px);
  height: auto;
  max-width: none;
  opacity: 0;
  filter:
    drop-shadow(0 28px 38px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 20px rgba(255, 81, 0, 0.055));
  will-change: transform, opacity;
}

.hero-emerge-car-tl {
  top: 13%;
  left: clamp(-130px, -5.5vw, -72px);
  animation: hero-car-enter-tl 980ms cubic-bezier(0.16, 1, 0.3, 1) 160ms forwards;
}

.hero-emerge-car-tr {
  top: 14%;
  right: clamp(-130px, -5.5vw, -72px);
  animation: hero-car-enter-tr 980ms cubic-bezier(0.16, 1, 0.3, 1) 230ms forwards;
}

.hero-emerge-car-bl {
  bottom: 2.5%;
  left: clamp(-140px, -6vw, -78px);
  width: clamp(340px, 23vw, 470px);
  animation: hero-car-enter-bl 1040ms cubic-bezier(0.16, 1, 0.3, 1) 300ms forwards;
}

.hero-emerge-car-br {
  right: clamp(-140px, -6vw, -78px);
  bottom: 2.5%;
  width: clamp(340px, 23vw, 470px);
  animation: hero-car-enter-br 1040ms cubic-bezier(0.16, 1, 0.3, 1) 370ms forwards;
}

.hero .hero-content {
  top: 45%;
  z-index: 3;
}

.hero .hero-content::before {
  width: min(940px, 72vw);
  height: min(470px, 58vh);
  background: radial-gradient(
    ellipse,
    rgba(4, 4, 4, 0.88) 0%,
    rgba(4, 4, 4, 0.66) 36%,
    rgba(4, 4, 4, 0.12) 68%,
    transparent 76%
  );
  filter: blur(7px);
}

.hero .hero-kicker {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(8, 8, 8, 0.64);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
}

.hero .hero-model-line-a {
  display: none;
}

@keyframes hero-car-enter-tl {
  from { opacity: 0; transform: translate3d(-34%, -12%, 0) scale(1.035); }
  to { opacity: 0.96; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes hero-car-enter-tr {
  from { opacity: 0; transform: translate3d(34%, -12%, 0) scale(1.035); }
  to { opacity: 0.96; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes hero-car-enter-bl {
  from { opacity: 0; transform: translate3d(-34%, 14%, 0) scale(1.035); }
  to { opacity: 0.98; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes hero-car-enter-br {
  from { opacity: 0; transform: translate3d(34%, 14%, 0) scale(1.035); }
  to { opacity: 0.98; transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 900px) {
  .hero-emerge-car {
    width: clamp(250px, 42vw, 360px);
  }

  .hero-emerge-car-tl,
  .hero-emerge-car-tr {
    top: 12%;
  }

  .hero-emerge-car-bl,
  .hero-emerge-car-br {
    bottom: 3%;
    width: clamp(260px, 44vw, 380px);
  }

  .hero .hero-content {
    top: 44%;
  }
}

@media (max-width: 640px) {
  .hero.hero {
    background:
      radial-gradient(ellipse at 50% 44%, rgba(255, 83, 0, 0.07), transparent 51%),
      linear-gradient(180deg, #050505 0%, #070605 58%, #040404 100%);
  }

  .hero-emerge-car {
    width: clamp(205px, 58vw, 250px);
    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.76));
  }

  .hero-emerge-car-tl {
    top: 10.5%;
    left: -108px;
  }

  .hero-emerge-car-tr {
    top: 14%;
    right: -112px;
  }

  .hero-emerge-car-bl {
    bottom: 2.5%;
    left: -116px;
    width: clamp(215px, 61vw, 265px);
  }

  .hero-emerge-car-br {
    right: -118px;
    bottom: 7.5%;
    width: clamp(215px, 61vw, 265px);
  }

  .hero-emerge-glow {
    width: 118vw;
    height: 380px;
    opacity: 0.62;
  }

  .hero .hero-content {
    top: 44.5%;
  }

  .hero .hero-content::before {
    width: 130vw;
    height: 450px;
    background: radial-gradient(
      ellipse,
      rgba(4, 4, 4, 0.92) 0%,
      rgba(4, 4, 4, 0.7) 42%,
      rgba(4, 4, 4, 0.18) 69%,
      transparent 79%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-emerge-car {
    animation: none;
    opacity: 0.96;
    transform: none;
  }

  .hero-emerge {
    transform: none !important;
  }
}

/* Final polish pass / request 2026-07-29 */
.hero-actions .primary-button.liquid-button {
  min-width: 178px;
  border: 1px solid rgba(255, 90, 0, 0.92);
  box-shadow:
    0 12px 32px rgba(255, 90, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-actions .primary-button.liquid-button:active {
  transform: translate(var(--mag-x, 0), var(--mag-y, 0)) scale(0.975);
}

.hero-actions .primary-button.liquid-button span {
  line-height: 1;
}

.request-layout {
  grid-template-columns: minmax(520px, 560px) minmax(620px, 760px);
  align-items: center;
  justify-content: center;
  gap: clamp(42px, 4vw, 68px);
}

.request-copy {
  min-width: 0;
  padding-right: 0;
  overflow: visible;
}

.request-copy h2 {
  max-width: 600px;
  overflow: visible;
  font-size: clamp(46px, 3.2vw, 58px);
  line-height: 0.94;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: wrap;
}

.request-copy h2 span {
  display: block;
  white-space: nowrap;
}

.request-form {
  justify-self: center;
  width: min(100%, 760px);
  border-color: rgba(255, 255, 255, 0.16);
}

.social-section {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 90, 0, 0.1), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(255, 90, 0, 0.06), transparent 28%),
    #070707;
}

.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 72%);
  pointer-events: none;
}

.social-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: end;
  gap: clamp(36px, 5vw, 90px);
}

.social-copy h2 {
  max-width: 720px;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.96;
}

.social-copy > p:not(.section-index) {
  max-width: 470px;
  margin-top: 24px;
  color: rgba(244, 241, 235, 0.6);
  font-size: 15px;
  line-height: 1.65;
}

.social-grid {
  display: grid;
  gap: 14px;
}

.social-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.16), rgba(255, 255, 255, 0.025) 48%),
    rgba(13, 13, 13, 0.88);
  color: var(--paper);
  text-align: left;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition:
    border-color 180ms ease,
    box-shadow 260ms var(--ease-out),
    transform 200ms var(--ease-out);
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 18% 50%, rgba(255, 90, 0, 0.22), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.social-card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 90, 0, 0.34);
  border-radius: 16px;
  background: rgba(255, 90, 0, 0.12);
  color: var(--orange);
}

.social-card-icon svg {
  width: 22px;
  height: 22px;
}

.social-card-copy {
  display: grid;
  gap: 7px;
}

.social-card-copy small {
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-card-copy strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 600;
  line-height: 1.12;
}

.social-card b {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 241, 235, 0.72);
  font-family: var(--mono-font);
  font-size: 9px;
  white-space: nowrap;
}

.request-form::before,
.request-form::after {
  opacity: 0;
  background: linear-gradient(180deg, rgba(255, 90, 0, 0.95), rgba(255, 90, 0, 0.22));
}

.ipauto-marker {
  width: 68px;
  height: 74px;
}

.ipauto-marker > i {
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid rgba(255, 90, 0, 0.82);
  border-radius: 16px;
  background: rgba(7, 7, 7, 0.92);
  box-shadow:
    0 0 0 7px rgba(255, 90, 0, 0.12),
    0 18px 32px rgba(0, 0, 0, 0.44);
  transform: translateX(-50%) rotate(0deg);
}

.ipauto-marker > i img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ipauto-marker > i::after {
  inset: -12px;
  border-color: rgba(255, 90, 0, 0.34);
  border-radius: 18px;
}

.ipauto-marker > span {
  top: 38px;
  left: 50%;
  width: auto;
  min-width: 25px;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 8px;
  transform: translateX(-50%);
}

.ipauto-marker > b {
  display: none;
}

.vehicle-card {
  min-height: 100%;
}

.vehicle-body {
  display: flex;
  min-height: 286px;
  flex-direction: column;
}

.vehicle-card-actions {
  margin-top: auto;
}

.stock-grid .vehicle-card,
.order-grid .vehicle-card {
  align-self: stretch;
}

.vehicle-media img,
.vehicle-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-detail-info-description {
  color: rgba(244, 241, 235, 0.82);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 500;
  line-height: 1.72;
}

.vehicle-detail-info .vehicle-detail-facts dt {
  color: rgba(255, 141, 86, 0.82);
  font-size: 9px;
  font-weight: 700;
}

.vehicle-detail-info .vehicle-detail-facts dd {
  color: rgba(244, 241, 235, 0.86);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 600;
  line-height: 1.5;
}

.vehicle-detail-info .vehicle-detail-specs span {
  border-color: rgba(255, 90, 0, 0.26);
  background: rgba(255, 90, 0, 0.08);
  color: rgba(244, 241, 235, 0.92);
  font-size: 10px;
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  .social-card:hover,
  .social-card:focus-visible {
    border-color: rgba(255, 90, 0, 0.62);
    box-shadow:
      0 34px 84px rgba(0, 0, 0, 0.36),
      0 0 42px rgba(255, 90, 0, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
  }

  .social-card:hover::before,
  .social-card:focus-visible::before {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-copy {
    padding-right: 0;
  }

  .request-copy h2 {
    font-size: clamp(30px, 8.6vw, 48px);
  }

  .social-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vehicle-body {
    min-height: 264px;
  }

  .vehicle-detail-info-description {
    font-size: 13px;
    line-height: 1.62;
  }

  .social-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 104px;
  }

  .social-card b {
    grid-column: 2;
    justify-self: start;
  }
}

/* Final active brand lockup: selected stacked variant 03. */
.hero-brand-lockup {
  display: grid !important;
  place-items: center;
  gap: 0;
}

.hero-brand-mark {
  width: clamp(270px, 33vw, 520px);
  max-width: min(84vw, 560px);
  height: auto;
  filter:
    drop-shadow(0 28px 42px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 28px rgba(255, 90, 0, 0.15));
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero-brand-lockup:hover .hero-brand-mark {
    transform: translateY(-2px) scale(1.012);
  }
}

@media (max-width: 640px) {
  .hero-brand-mark {
    width: min(82vw, 330px);
  }

  .request-copy h2 {
    font-size: clamp(28px, 8.25vw, 36px);
  }
}

/* Hero brand focus: one centered signature without supporting copy. */
.hero .hero-content {
  top: 48%;
}

@media (max-width: 640px) {
  .hero .hero-content {
    top: 48%;
  }
}

/* Final request composition: stable two-line title and useful reassurance. */
.request-copy {
  container-type: inline-size;
}

.request-copy h2 {
  width: 100%;
  max-width: 560px;
  font-size: clamp(44px, 3vw, 54px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.request-copy h2 span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.request-copy h2 span:last-child {
  color: var(--orange);
  text-shadow: 0 0 34px rgba(255, 90, 0, 0.14);
}

.request-copy > p:not(.section-index) {
  max-width: 500px;
  margin-top: 26px;
  color: rgba(244, 241, 235, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

.request-assurances {
  display: grid;
  gap: 10px;
  max-width: 470px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.request-assurances li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: rgba(244, 241, 235, 0.78);
  font-size: 12px;
}

.request-assurances span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 90, 0, 0.34);
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.08);
  color: var(--orange);
  font-family: var(--mono-font);
  font-size: 8px;
  font-weight: 700;
}

/* Social signal scene: central brand object, connected channels and liquid hover. */
.social-section {
  min-height: min(820px, 90svh);
  padding: clamp(100px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 66% 48%, rgba(255, 90, 0, 0.14), transparent 25%),
    radial-gradient(circle at 12% 84%, rgba(255, 90, 0, 0.07), transparent 30%),
    linear-gradient(145deg, #090806, #050505 58%);
}

.social-section::after {
  position: absolute;
  inset: 7% 4%;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 90, 0, 0.018),
    0 0 0 140px rgba(255, 90, 0, 0.012);
  pointer-events: none;
  content: "";
}

.social-layout {
  grid-template-columns: minmax(340px, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  gap: clamp(42px, 5vw, 88px);
}

.social-copy h2 {
  max-width: 620px;
  font-size: clamp(48px, 5.5vw, 82px);
  letter-spacing: -0.05em;
}

.social-proof {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 34px;
}

.social-proof > span {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.social-proof strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1;
}

.social-proof small {
  max-width: 118px;
  color: rgba(244, 241, 235, 0.52);
  font-family: var(--mono-font);
  font-size: 7px;
  line-height: 1.45;
  text-transform: uppercase;
}

.social-proof i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 90, 0, 0.1), 0 0 18px rgba(255, 90, 0, 0.72);
  animation: social-status 2.4s ease-in-out infinite;
}

.social-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 680 / 520;
  min-height: 500px;
}

.social-routes {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.social-routes path {
  fill: none;
  stroke: rgba(255, 90, 0, 0.48);
  stroke-width: 1.4;
  stroke-dasharray: 5 10;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(255, 90, 0, 0.4));
  animation: social-route-flow 8s linear infinite;
}

.social-routes path:nth-child(2) {
  animation-delay: -2.6s;
}

.social-routes path:nth-child(3) {
  animation-delay: -5.2s;
}

.social-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
}

.social-hub-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.9);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(255, 90, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: social-hub-float 4.8s var(--ease-in-out) infinite;
}

.social-hub-core img {
  width: 68px;
  height: 68px;
}

.social-hub-ring {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 90, 0, 0.36);
  border-radius: 50%;
  animation: social-hub-pulse 3.2s var(--ease-out) infinite;
}

.social-hub-ring-two {
  animation-delay: -1.6s;
}

.social-hub small {
  position: absolute;
  top: calc(100% + 2px);
  color: rgba(244, 241, 235, 0.46);
  font-family: var(--mono-font);
  font-size: 7px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.social-grid {
  position: absolute;
  inset: 0;
  display: block;
}

.social-card {
  position: absolute;
  z-index: 2;
  display: grid;
  width: min(45%, 306px);
  min-height: 154px;
  grid-template-columns: 52px minmax(0, 1fr);
  align-content: center;
  gap: 10px 16px;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(14px);
}

.social-card-telegram {
  top: 0;
  left: 0;
}

.social-card-instagram {
  top: 0;
  right: 0;
}

.social-card-whatsapp {
  bottom: 0;
  left: 50%;
  width: min(54%, 372px);
  transform: translateX(-50%);
}

.social-card::before {
  inset: auto -18% -105%;
  height: 190%;
  border-radius: 50% 50% 18% 18%;
  background:
    radial-gradient(circle at 48% 8%, rgba(255, 173, 124, 0.44), transparent 25%),
    linear-gradient(180deg, #ff6a13, #e64400);
  opacity: 0;
  transform: translateY(26%) scale(0.82);
  transition:
    opacity 260ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.social-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(255, 90, 0, 0.1);
}

.social-card-copy {
  gap: 5px;
}

.social-card-copy strong {
  font-size: clamp(19px, 1.55vw, 24px);
}

.social-card-copy > span {
  color: rgba(244, 241, 235, 0.52);
  font-size: 10px;
  line-height: 1.4;
}

.social-card b {
  display: inline-flex;
  grid-column: 2;
  justify-self: start;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(244, 241, 235, 0.64);
}

.social-card b svg {
  width: 12px;
  height: 12px;
}

@media (hover: hover) and (pointer: fine) {
  .social-card:hover,
  .social-card:focus-visible {
    transform: translateY(-5px);
  }

  .social-card-whatsapp:hover,
  .social-card-whatsapp:focus-visible {
    transform: translateX(-50%) translateY(-5px);
  }

  .social-card:hover::before,
  .social-card:focus-visible::before {
    opacity: 0.92;
    transform: translateY(-12%) scale(1.14);
  }

  .social-card:hover .social-card-icon,
  .social-card:focus-visible .social-card-icon {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(7, 7, 7, 0.24);
    color: var(--paper);
  }

  .social-card:hover .social-card-copy small,
  .social-card:hover .social-card-copy > span,
  .social-card:hover b,
  .social-card:focus-visible .social-card-copy small,
  .social-card:focus-visible .social-card-copy > span,
  .social-card:focus-visible b {
    color: var(--paper);
  }
}

@keyframes social-route-flow {
  to { stroke-dashoffset: -120; }
}

@keyframes social-hub-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes social-hub-pulse {
  0% { opacity: 0; transform: scale(0.72); }
  32% { opacity: 0.72; }
  100% { opacity: 0; transform: scale(1.22); }
}

@keyframes social-status {
  50% { opacity: 0.48; transform: scale(0.82); }
}

/* Adaptive Telegram media: sharp foreground, atmospheric crop and zero layout shift. */
.vehicle-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 610px;
}

.vehicle-media {
  isolation: isolate;
}

.vehicle-media-backdrop,
.gallery-media-backdrop {
  position: absolute;
  inset: -9%;
  z-index: 0;
  background-image:
    linear-gradient(rgba(7, 7, 7, 0.14), rgba(7, 7, 7, 0.36)),
    var(--media-backdrop, none);
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(0.82);
  opacity: 0.62;
  transform: scale(1.12);
  pointer-events: none;
}

.vehicle-media img,
.vehicle-media video {
  position: relative;
  z-index: 1;
}

.vehicle-media::before,
.vehicle-media::after {
  z-index: 2;
}

.vehicle-media.is-portrait-media img,
.vehicle-media.is-square-media img {
  object-fit: contain;
}

.gallery-media-backdrop {
  inset: -12%;
  opacity: 0.42;
  filter: blur(30px) saturate(0.8);
}

.vehicle-detail-modal .gallery-viewport img,
.vehicle-detail-modal .gallery-viewport video {
  position: relative;
  z-index: 1;
  background: transparent;
}

@media (max-width: 1280px) and (min-width: 1121px) {
  .request-layout {
    grid-template-columns: minmax(390px, 0.82fr) minmax(540px, 1.18fr);
  }

  .request-copy h2 {
    font-size: clamp(40px, 4vw, 50px);
  }
}

@media (max-width: 1200px) {
  .social-layout {
    grid-template-columns: 1fr;
  }

  .social-copy {
    max-width: 760px;
  }

  .social-stage {
    width: min(100%, 680px);
    margin: 18px auto 0;
  }
}

@media (max-width: 1120px) {
  .request-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .request-copy {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .social-section {
    min-height: 0;
    padding: 88px 0;
  }

  .social-copy h2 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .social-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .social-proof > span {
    min-width: 0;
  }

  .social-stage {
    display: grid;
    min-height: 0;
    aspect-ratio: auto;
    gap: 30px;
  }

  .social-routes {
    display: none;
  }

  .social-hub {
    position: relative;
    top: auto;
    left: auto;
    width: 118px;
    height: 118px;
    margin: 12px auto 0;
    transform: none;
  }

  .social-hub-core {
    width: 82px;
    height: 82px;
  }

  .social-hub-core img {
    width: 62px;
    height: 62px;
  }

  .social-grid {
    position: relative;
    inset: auto;
    display: grid;
    gap: 12px;
  }

  .social-card,
  .social-card-telegram,
  .social-card-instagram,
  .social-card-whatsapp {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 136px;
    transform: none;
  }

  .request-copy h2 {
    font-size: clamp(34px, 10.7vw, 48px);
  }

  .request-copy h2 span {
    white-space: normal;
  }

  .vehicle-media {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-routes path,
  .social-hub-core,
  .social-hub-ring,
  .social-proof i {
    animation: none;
  }
}

/* Final office marks: the transparent brand symbol is the complete surface. */
.office-card-logo {
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.office-card-logo img {
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.ipauto-marker {
  width: 82px;
  height: 82px;
  animation: marker-bob-v2 2800ms var(--ease-in-out) infinite;
}

.ipauto-marker > i {
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.ipauto-marker > i::after,
.ipauto-marker > span,
.ipauto-marker > b {
  display: none;
}

.ipauto-marker > i img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 20px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 12px rgba(255, 90, 0, 0.16));
}

/* Mobile catalog reveal: a floating control above the page plane. */
.catalog-more {
  display: none;
}

@media (max-width: 700px) {
  .office-card-logo {
    width: 82px;
    height: 82px;
  }

  .ipauto-marker > i {
    width: 58px;
    height: 58px;
  }

  .office-card-brand {
    gap: 10px;
  }

  .vehicle-card {
    min-height: 0;
    content-visibility: visible;
    contain-intrinsic-size: none;
  }

  .order-grid {
    align-items: flex-start;
  }

  .order-grid .vehicle-card,
  .stock-grid .vehicle-card {
    height: auto;
    min-height: 0;
    align-self: flex-start;
  }

  .order-grid .vehicle-body,
  .stock-grid .vehicle-body {
    min-height: 0;
  }

  .order-grid .vehicle-card-actions,
  .stock-grid .vehicle-card-actions {
    margin-top: 22px;
  }

  .catalog-more:not([hidden]) {
    position: relative;
    z-index: 8;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 12px;
    margin: 24px auto 38px;
    pointer-events: none;
    overflow-anchor: none;
  }

  .catalog-more-button {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(12, 12, 12, 0.82);
    color: var(--orange);
    backdrop-filter: blur(16px);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.46),
      0 0 0 7px rgba(255, 90, 0, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    transform: translateZ(0);
    transition:
      color 180ms ease,
      border-color 180ms ease,
      background-color 180ms ease,
      box-shadow 220ms ease,
      transform 150ms var(--ease-out);
  }

  .catalog-more-button::before {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: -1;
    border: 1px solid rgba(255, 90, 0, 0.42);
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.08);
    transition:
      background-color 180ms ease,
      transform 220ms var(--ease-out);
  }

  .catalog-more-button-icon {
    display: grid;
    place-items: center;
    transition: transform 220ms var(--ease-out);
  }

  .catalog-more-button-icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.8;
  }

  .catalog-more-meta {
    position: absolute;
    top: -7px;
    right: -9px;
    display: grid;
    place-items: center;
    min-width: 29px;
    height: 22px;
    padding: 0 6px;
    border: 2px solid #0b0b0b;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--mono-font);
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.32);
  }

  .catalog-more-button:active {
    transform: scale(0.96);
  }

  .vehicle-card.is-new-batch {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition:
      opacity 240ms var(--ease-out),
      transform 240ms var(--ease-out),
      border-color 200ms ease,
      box-shadow 240ms ease;
    transition-delay: calc(var(--batch-order, 0) * 38ms);
  }

  .vehicle-card.is-new-batch.is-new-batch-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .vehicle-batch-marker {
    display: flex;
    align-self: flex-start;
    align-items: center;
    gap: 5px;
    min-height: 25px;
    margin: -2px 0 10px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--mono-font);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    pointer-events: none;
  }

  .vehicle-batch-marker svg {
    width: 11px;
    height: 11px;
  }

  @media (hover: hover) and (pointer: fine) {
    .catalog-more-button:hover {
      border-color: rgba(255, 90, 0, 0.78);
      background: rgba(18, 18, 18, 0.94);
      box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.5),
        0 0 0 9px rgba(255, 90, 0, 0.09),
        0 0 28px rgba(255, 90, 0, 0.16);
      transform: translateY(-3px);
    }

    .catalog-more-button:hover::before {
      background: rgba(255, 90, 0, 0.15);
      transform: scale(1.04);
    }

    .catalog-more-button:hover .catalog-more-button-icon {
      transform: translateY(3px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .ipauto-marker {
    animation: none;
  }

  .catalog-more-button,
  .catalog-more-button::before,
  .catalog-more-button-icon,
  .vehicle-card.is-new-batch {
    transition-duration: 0.01ms;
  }
}

/* Request form / ambient halo inspired by the approved portfolio reference.
   The old bottom and right orange tabs are intentionally replaced by a soft,
   non-layout-shifting light field around the whole form. */
.request-form {
  overflow: visible;
  border-color: rgba(244, 241, 235, 0.16);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: none;
  transition:
    border-color 180ms ease,
    box-shadow 240ms var(--ease-out);
}

.request-form::before,
.request-form::after {
  content: "";
  position: absolute;
  width: auto;
  height: auto;
  pointer-events: none;
}

.request-form::before {
  inset: -34px;
  z-index: -2;
  padding: 34px;
  border-radius: 56px;
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 253, 248, 0.72), transparent 34%),
    radial-gradient(circle at 92% 14%, rgba(255, 90, 0, 0.94), transparent 38%),
    radial-gradient(circle at 88% 88%, rgba(255, 138, 61, 0.76), transparent 42%),
    radial-gradient(circle at 10% 86%, rgba(217, 68, 0, 0.7), transparent 38%);
  opacity: 0.16;
  filter: blur(26px) saturate(1.08);
  transform: scale(0.985);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition:
    opacity 240ms ease,
    transform 260ms var(--ease-out);
  will-change: opacity, transform;
}

.request-form::after {
  inset: -1px;
  z-index: -1;
  padding: 1px;
  border-radius: 25px;
  background: linear-gradient(
    128deg,
    rgba(255, 253, 248, 0.74) 0%,
    rgba(255, 90, 0, 0.88) 28%,
    rgba(255, 90, 0, 0.16) 58%,
    rgba(255, 138, 61, 0.78) 100%
  );
  opacity: 0.34;
  transform: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 200ms ease;
}

.request-form:focus-within {
  border-color: rgba(255, 90, 0, 0.52);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 90, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
  transform: none;
}

.request-form:focus-within::before {
  opacity: 0.66;
  transform: scale(1);
}

.request-form:focus-within::after {
  opacity: 0.88;
  transform: none;
}

.request-form.is-success::before {
  opacity: 0.58;
  transform: scale(1);
}

.request-form.is-success::after {
  opacity: 0.86;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .request-form:hover {
    border-color: rgba(255, 90, 0, 0.48);
    box-shadow:
      0 44px 116px rgba(0, 0, 0, 0.58),
      0 0 48px rgba(255, 90, 0, 0.075),
      inset 0 1px 0 rgba(255, 255, 255, 0.075);
    transform: none;
  }

  .request-form:hover::before {
    opacity: 0.9;
    transform: scale(1);
  }

  .request-form:hover::after {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .request-form::before {
    inset: -22px;
    padding: 22px;
    border-radius: 42px;
    filter: blur(20px) saturate(1.06);
  }

  .request-form::after {
    inset: -1px;
    width: auto;
    height: auto;
    border-radius: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .request-form::before {
    transform: scale(1);
    transition: opacity 160ms ease;
  }

  .request-form::after {
    transition: opacity 160ms ease;
  }
}

/* Compact footer: one quiet row, no oversized empty closing panel. */
.site-footer {
  border-top: 1px solid rgba(255, 90, 0, 0.62);
  background: #080808;
}

.footer-minimal {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  gap: 28px;
}

.footer-minimal .footer-brand {
  justify-self: start;
}

.footer-minimal .footer-brand .brand-symbol {
  width: 34px;
  height: 34px;
  border: 0;
}

.footer-note {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.footer-note strong {
  color: var(--orange);
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-note span {
  color: rgba(244, 241, 235, 0.38);
  font-family: var(--mono-font);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-minimal .back-top {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(244, 241, 235, 0.68);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    transform 140ms var(--ease-out);
}

.footer-minimal .back-top:active {
  transform: scale(0.97);
}

.motion-ready .footer-minimal > [data-reveal="rise"] {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

/* Office cards: restrained signal glow instead of the old full orange fill. */
.office-card,
.office-card.is-active {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), transparent 46%),
    #101010;
  color: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transform: none;
}

.office-card.is-active {
  border-color: rgba(255, 90, 0, 0.38);
}

.office-card::before,
.office-card.is-active::before {
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 90, 0, 0.16), transparent 34%),
    linear-gradient(112deg, transparent 22%, rgba(255, 90, 0, 0.055) 52%, transparent 78%);
  clip-path: none;
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 200ms ease,
    transform 240ms var(--ease-out);
}

.office-card::after,
.office-card.is-active::after {
  opacity: 0.82;
  transform: scaleX(0.16);
  transition: transform 220ms var(--ease-out);
}

.office-card-logo,
.office-card:hover .office-card-logo {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.office-card-logo img {
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
  transform: none;
  transition: none;
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  .footer-minimal .back-top:hover {
    border-color: rgba(255, 90, 0, 0.5);
    background: rgba(255, 90, 0, 0.075);
    color: var(--paper);
  }

  .office-card:hover,
  .office-card.is-active:hover {
    border-color: rgba(255, 90, 0, 0.58);
    box-shadow:
      0 22px 58px rgba(0, 0, 0, 0.3),
      inset 0 0 0 1px rgba(255, 90, 0, 0.055);
    transform: none;
  }

  .office-card:hover::before,
  .office-card.is-active:hover::before {
    clip-path: none;
    opacity: 1;
    transform: scale(1);
  }

  .office-card:hover::after,
  .office-card.is-active:hover::after {
    transform: scaleX(1);
  }

  .office-card:hover .office-card-logo,
  .office-card.is-active:hover .office-card-logo {
    box-shadow: none;
    transform: none;
  }

  .office-card:hover .office-card-logo img,
  .office-card.is-active:hover .office-card-logo img {
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
    transform: none;
  }

  .office-card:hover .office-route-icon,
  .office-card.is-active:hover .office-route-icon {
    border-color: rgba(255, 90, 0, 0.72);
    background: rgba(255, 90, 0, 0.11);
    color: var(--orange);
    transform: none;
  }

  .office-card:hover .office-route-icon svg,
  .office-card.is-active:hover .office-route-icon svg {
    transform: translate(1px, -1px);
  }
}

@media (max-width: 700px) {
  .footer-minimal {
    grid-template-columns: 1fr auto;
    min-height: 88px;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .footer-note {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-items: start;
    gap: 4px;
    text-align: left;
  }

  .footer-note strong {
    font-size: 12px;
  }

  .footer-minimal .back-top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .office-card::before,
  .office-card::after,
  .office-card-logo img,
  .office-route-icon,
  .office-route-icon svg,
  .footer-minimal .back-top {
    transition-duration: 0.01ms;
  }
}
