:root {
  --black: #090909;
  --black-soft: #111111;
  --graphite: #1b1b1b;
  --paper: #f3f1ec;
  --paper-strong: #fffdf8;
  --white: #ffffff;
  --muted: #9a9a96;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(9, 9, 9, 0.16);
  --orange: #ff5a00;
  --orange-deep: #d84600;
  --acid: #dfff48;
  --green: #57d38c;
  --red: #ff5f5f;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --header-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.section-index,
.eyebrow {
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-index::before,
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background: currentColor;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-content: center;
  gap: 18px;
  background: var(--black);
  transition:
    opacity 480ms var(--ease-out),
    visibility 0ms linear 480ms;
}

.site-loader::before,
.site-loader::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: scaleX(0);
  animation: loader-line 1100ms var(--ease-in-out) forwards;
}

.site-loader::before {
  top: 28%;
  left: 0;
  right: 42%;
  transform-origin: left;
}

.site-loader::after {
  right: 0;
  bottom: 28%;
  left: 42%;
  transform-origin: right;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-word {
  display: flex;
  justify-content: center;
  overflow: hidden;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.loader-word span {
  transform: translateY(110%);
  animation: loader-word 700ms var(--ease-out) forwards;
}

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

.loader-rail {
  width: 240px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.loader-rail i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: translateX(-100%);
  animation: loader-progress 1250ms var(--ease-in-out) forwards;
}

.loader-status {
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

@keyframes loader-word {
  to {
    transform: translateY(0);
  }
}

@keyframes loader-progress {
  to {
    transform: translateX(0);
  }
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1440px, calc(100% - 32px));
  height: var(--header-height);
  padding: 0 10px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(9, 9, 9, 0.58);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px) saturate(1.2);
  transform: translateX(-50%);
  transition:
    top 220ms var(--ease-out),
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(9, 9, 9, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-width: max-content;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: var(--paper);
}

.brand-symbol i,
.brand-symbol b {
  position: absolute;
  display: block;
  background: var(--black);
}

.brand-symbol i {
  top: 5px;
  bottom: 5px;
  left: 6px;
  width: 4px;
}

.brand-symbol b {
  top: 5px;
  right: 5px;
  width: 9px;
  height: 11px;
  border-right: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
  background: transparent;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--orange);
}

.brand-word {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 500;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    border-color 160ms ease,
    background-color 160ms ease;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.menu-trigger i:empty::before {
  content: "";
  display: block;
  width: 17px;
  height: 12px;
  background:
    linear-gradient(currentColor, currentColor) top / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) bottom / 100% 1px no-repeat;
}

.icon-button:active,
.header-cta:active,
.primary-button:active,
.ghost-button:active,
.submit-button:active,
.card-cta:active,
.office-card:active,
.model-filter button:active,
.stock-filters button:active {
  transform: scale(0.97);
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 20;
  width: max-content;
  padding: 6px 8px;
  border-radius: 3px;
  background: var(--paper);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transform-origin: top right;
  transition:
    opacity 125ms var(--ease-out),
    transform 125ms var(--ease-out);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 5px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    background-color 160ms ease;
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

.menu-trigger {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 24px;
  background: var(--orange);
  color: var(--black);
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 360ms var(--ease-drawer),
    opacity 200ms ease,
    visibility 0ms linear 360ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transition-delay: 0ms;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.mobile-menu .icon-button {
  border-color: rgba(0, 0, 0, 0.32);
  background: transparent;
}

.mobile-menu nav {
  display: grid;
  margin: auto 0;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open nav a:nth-child(2) {
  transition-delay: 35ms;
}

.mobile-menu.is-open nav a:nth-child(3) {
  transition-delay: 70ms;
}

.mobile-menu.is-open nav a:nth-child(4) {
  transition-delay: 105ms;
}

.mobile-menu.is-open nav a:nth-child(5) {
  transition-delay: 140ms;
}

.mobile-menu nav span {
  width: 24px;
  font-size: 10px;
}

.mobile-menu > .primary-button {
  background: var(--black);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 700px;
  height: 92svh;
  max-height: 980px;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.hero-backdrop,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-backdrop {
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.48), rgba(9, 9, 9, 0.04) 45%, rgba(9, 9, 9, 0.74)),
    linear-gradient(90deg, rgba(9, 9, 9, 0.42), transparent 44%),
    var(--black);
  transform: scale(1.04);
  animation: hero-settle 1600ms var(--ease-out) 600ms both;
}

.hero-grid {
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 55%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    600px circle at var(--hero-x, 50%) var(--hero-y, 50%),
    rgba(255, 90, 0, 0.12),
    transparent 58%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 46%;
  left: 50%;
  width: min(1100px, calc(100% - 40px));
  opacity: calc(1 - var(--hero-fold, 0) * 0.72);
  text-align: center;
  transform:
    translate(-50%, calc(-50% - var(--hero-fold, 0) * 42px))
    scale(calc(1 - var(--hero-fold, 0) * 0.055));
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: hero-rise 700ms var(--ease-out) 850ms forwards;
}

.hero h1 {
  display: flex;
  justify-content: center;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-size: 164px;
  font-weight: 800;
  line-height: 0.82;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
}

.hero h1 span,
.hero h1 strong {
  display: block;
  font-weight: inherit;
  transform: translateY(115%) rotate(3deg);
  animation: hero-title 880ms var(--ease-out) 680ms forwards;
}

.hero h1 strong {
  color: var(--orange);
  animation-delay: 760ms;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 34px auto 0;
  color: var(--white);
  font-size: 19px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 700ms var(--ease-out) 980ms forwards;
}

.hero-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 700ms var(--ease-out) 1080ms forwards;
}

.primary-button,
.ghost-button,
.submit-button,
.card-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 18px;
  overflow: hidden;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.primary-button,
.submit-button {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--white);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(9, 9, 9, 0.34);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.primary-button svg,
.ghost-button svg,
.submit-button svg,
.card-cta svg {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
}

.liquid-button::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  border-radius: 48% 52% 42% 58%;
  background: var(--paper);
  transform: translateY(118%) rotate(-4deg);
  transition: transform 420ms var(--ease-out);
}

.liquid-button > * {
  position: relative;
  z-index: 2;
}

.liquid-button:hover {
  color: var(--black);
}

.liquid-button:hover::before {
  transform: translateY(0) rotate(0);
}

.hero-meta {
  position: absolute;
  right: 32px;
  bottom: 26px;
  left: 32px;
  display: flex;
  gap: 36px;
  opacity: calc(1 - var(--hero-fold, 0) * 0.9);
  transform: translateY(calc(var(--hero-fold, 0) * 24px));
  will-change: transform, opacity;
}

.hero-meta div {
  display: grid;
  gap: 2px;
}

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

.hero-meta span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  opacity: calc(1 - var(--hero-fold, 0));
  transform: translateY(calc(var(--hero-fold, 0) * 18px));
  text-transform: uppercase;
  will-change: transform, opacity;
}

.scroll-cue svg {
  width: 17px;
  height: 17px;
  animation: scroll-cue 1500ms var(--ease-in-out) infinite;
}

@keyframes hero-title {
  to {
    transform: translateY(0) rotate(0);
  }
}

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

@keyframes hero-settle {
  from {
    filter: blur(4px);
    transform: scale(1.1);
  }
  to {
    filter: blur(0);
    transform: scale(1.04);
  }
}

@keyframes scroll-cue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.car-flow-section {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px 0 24px;
  overflow: hidden;
  background: var(--paper);
  color: var(--black);
}

.car-flow-section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  pointer-events: none;
}

.car-flow-row {
  width: 100%;
  overflow: hidden;
}

.car-flow-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.flow-car {
  position: relative;
  flex: 0 0 260px;
  height: 112px;
  margin-right: 8px;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.18);
  border-radius: 4px;
  background: var(--black);
}

.flow-car img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.05);
}

.flow-car::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7));
}

.flow-car span {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 8px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-band {
  padding: 150px 0;
  background: var(--paper);
  color: var(--black);
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.7fr 2.4fr 1fr;
  align-items: start;
  gap: 36px;
}

.intro-layout h2 {
  max-width: 930px;
  font-size: 70px;
  font-weight: 600;
  line-height: 0.98;
}

.intro-layout h2 span {
  display: block;
  color: rgba(9, 9, 9, 0.32);
}

.intro-copy {
  align-self: end;
  max-width: 340px;
  color: rgba(9, 9, 9, 0.66);
  font-size: 15px;
}

.reveal-text {
  background:
    linear-gradient(var(--black), var(--black)) 0 0 / var(--reveal, 0%) 100% no-repeat,
    rgba(9, 9, 9, 0.18);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.route-story {
  position: relative;
  height: 380vh;
  background: var(--black);
}

.route-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--black);
  background-size: 64px 64px;
}

.route-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black), transparent 12%, transparent 88%, var(--black)),
    linear-gradient(180deg, var(--black), transparent 18%, transparent 88%, var(--black));
  pointer-events: none;
}

.route-heading {
  position: absolute;
  top: 98px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  transform: translateX(-50%);
}

.route-heading h2 {
  margin-top: 10px;
  font-size: 68px;
  font-weight: 600;
  line-height: 0.92;
}

.route-heading > p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.route-line {
  position: absolute;
  top: 150px;
  left: 50%;
  z-index: 1;
  width: min(1320px, calc(100% - 64px));
  height: calc(100% - 160px);
  overflow: visible;
  transform: translateX(-50%);
}

.route-line path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

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

.route-line-progress {
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-width: 22;
  stroke-dasharray: 0 2;
  stroke-dashoffset: 0;
  opacity: 0;
}

.route-steps {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.route-step {
  position: absolute;
  width: 260px;
  min-height: 178px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(12, 12, 12, 0.84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  opacity: 0.45;
  transform: translateY(16px) rotate(var(--step-rotate));
  transition:
    opacity 260ms ease,
    transform 320ms var(--ease-out),
    border-color 260ms ease;
  backdrop-filter: blur(12px);
}

.route-step:nth-child(1) {
  top: 28%;
  left: 6%;
  --step-rotate: -2deg;
}

.route-step:nth-child(2) {
  top: 40%;
  left: 39%;
  --step-rotate: 1.5deg;
}

.route-step:nth-child(3) {
  top: 59%;
  right: 4%;
  --step-rotate: -1deg;
}

.route-step:nth-child(4) {
  bottom: 4%;
  left: 21%;
  --step-rotate: 1deg;
}

.route-step.is-active,
.route-step.is-current {
  border-color: rgba(255, 90, 0, 0.74);
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.route-step-fill {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--orange);
  clip-path: inset(calc((1 - var(--step-fill, 0)) * 100%) 0 0 0);
  transition: clip-path 160ms linear;
}

.route-step-fill::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -10%;
  width: 120%;
  height: 44px;
  border-radius: 48% 52% 44% 56%;
  background: var(--orange);
}

.route-step-number {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.route-step-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.route-step-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.route-step h3 {
  font-size: 24px;
  font-weight: 600;
}

.route-step p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.route-step.is-active p,
.route-step.is-current p {
  color: rgba(255, 255, 255, 0.86);
}

.route-step-meta {
  display: block;
  margin-top: 14px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-section {
  padding: 140px 0;
}

.order-section {
  background: var(--paper);
  color: var(--black);
}

.stock-section {
  background: #121212;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: 64px;
  font-weight: 600;
  line-height: 0.96;
}

.section-heading > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
}

.order-section .section-heading > p,
.team-section .section-heading > p,
.offices-section .section-heading > p {
  color: rgba(9, 9, 9, 0.56);
}

.rate-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-width: 330px;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
}

.rate-panel > div {
  display: grid;
}

.rate-panel strong {
  font-size: 12px;
}

.rate-panel span {
  color: rgba(9, 9, 9, 0.54);
  font-size: 10px;
}

.rate-panel .icon-button {
  border-color: var(--line-light);
  color: var(--black);
}

.rate-panel.is-refreshing .icon-button svg {
  animation: spin 600ms linear infinite;
}

.rate-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(87, 211, 140, 0.42);
  animation: rate-pulse 1800ms ease-out infinite;
}

.rate-panel.is-fallback .rate-pulse {
  background: var(--orange);
}

@keyframes rate-pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(87, 211, 140, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(87, 211, 140, 0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.model-filter,
.stock-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.model-filter::-webkit-scrollbar,
.stock-filters::-webkit-scrollbar {
  display: none;
}

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

.model-filter button,
.stock-filters button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  background: transparent;
  color: rgba(9, 9, 9, 0.62);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.model-filter button.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vehicle-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: var(--paper-strong);
  color: var(--black);
  transition:
    transform 260ms var(--ease-out),
    border-color 200ms ease,
    box-shadow 260ms ease;
}

.vehicle-card.is-hidden {
  display: none;
}

.vehicle-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #d7d5d0;
  cursor: zoom-in;
}

.vehicle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 50%, rgba(0, 0, 0, 0.24)),
    linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.08));
  pointer-events: none;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.media-open-button {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 3px;
  background: rgba(9, 9, 9, 0.82);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.vehicle-badge.is-stock {
  background: var(--acid);
  color: var(--black);
}

.media-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border-radius: 3px;
  background: rgba(9, 9, 9, 0.72);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.media-count svg {
  width: 13px;
  height: 13px;
}

.vehicle-body {
  padding: 18px;
}

.vehicle-kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(9, 9, 9, 0.5);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.vehicle-body h3 {
  margin-top: 8px;
  font-size: 23px;
  font-weight: 650;
}

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

.vehicle-specs span {
  padding: 5px 7px;
  border: 1px solid rgba(9, 9, 9, 0.13);
  border-radius: 3px;
  color: rgba(9, 9, 9, 0.62);
  font-size: 9px;
}

.price-stack {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.price-stack strong,
.price-stack span {
  display: block;
  transform-origin: left center;
}

.price-stack strong {
  font-size: 25px;
  font-weight: 700;
}

.price-stack span {
  color: rgba(9, 9, 9, 0.56);
  font-size: 11px;
}

.price-stack span:last-child {
  font-size: 10px;
}

.price-stack .price-pop {
  animation: price-pop 320ms var(--ease-out);
}

@keyframes price-pop {
  0% {
    opacity: 0;
    filter: blur(2px);
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.vehicle-card-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 6px;
  margin-top: 18px;
}

.card-cta {
  min-height: 44px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.card-gallery-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.card-gallery-button svg {
  width: 17px;
  height: 17px;
}

.stock-heading {
  align-items: flex-start;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.search-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.search-field svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 13px;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.search-field kbd {
  padding: 2px 6px;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  color: var(--muted);
  font-family: inherit;
  font-size: 10px;
}

.stock-filters button {
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.58);
}

.stock-filters button.is-active {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--black);
}

.result-count {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stock-grid .vehicle-card:nth-child(1),
.stock-grid .vehicle-card:nth-child(6) {
  grid-column: span 2;
}

.stock-grid .vehicle-card:nth-child(1) .vehicle-media,
.stock-grid .vehicle-card:nth-child(6) .vehicle-media {
  aspect-ratio: 16 / 8.7;
}

.empty-state {
  min-height: 340px;
  place-content: center;
  justify-items: center;
  gap: 12px;
  border: 1px dashed var(--line-dark);
  text-align: center;
}

.empty-state:not([hidden]) {
  display: grid;
}

.empty-state > svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.empty-state h3 {
  font-size: 26px;
}

.empty-state p {
  color: var(--muted);
  font-size: 13px;
}

.empty-state .primary-button {
  margin-top: 10px;
}

.automation-section {
  position: relative;
  padding: 140px 0 110px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #080b09;
  background-size: 48px 48px;
}

.automation-heading {
  display: grid;
  grid-template-columns: 0.6fr 2fr 1fr;
  align-items: end;
  gap: 32px;
}

.automation-heading h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 0.96;
}

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

.automation-heading > p {
  color: var(--muted);
  font-size: 13px;
}

.automation-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 0.9fr 90px 1fr;
  align-items: center;
  width: min(1320px, calc(100% - 64px));
  min-height: 620px;
  margin: 80px auto 60px;
  perspective: 1200px;
}

.automation-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(17, 21, 18, 0.92);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  opacity: calc(0.24 + var(--window-progress, 0) * 0.76);
  filter: blur(calc((1 - var(--window-progress, 0)) * 2px));
  transform:
    translateY(calc((1 - var(--window-progress, 0)) * 44px))
    rotateX(calc((1 - var(--window-progress, 0)) * 9deg));
  transition:
    opacity 120ms linear,
    filter 120ms linear,
    transform 120ms linear;
}

.automation-parser {
  margin-top: 90px;
}

.automation-result {
  margin-top: 180px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.window-bar > span:first-child {
  background: var(--orange);
}

.window-bar b {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 600;
}

.telegram-post {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.post-image {
  min-height: 210px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18)),
    url("/assets/images/lixiang-white.webp") center / cover;
}

.telegram-post > div:last-child {
  display: grid;
  gap: 4px;
}

.telegram-post strong {
  font-size: 18px;
}

.telegram-post span {
  color: var(--muted);
  font-size: 10px;
}

.telegram-post b {
  color: var(--acid);
  font-size: 15px;
}

.automation-parser ul {
  display: grid;
  gap: 1px;
  padding: 16px;
  margin: 0;
  list-style: none;
}

.automation-parser li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.035);
}

.automation-parser li span {
  color: var(--muted);
  font-size: 10px;
}

.automation-parser li b {
  font-size: 11px;
}

.result-preview {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.result-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
}

.result-preview > div {
  display: grid;
  gap: 4px;
}

.result-preview span {
  color: var(--acid);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.result-preview strong {
  font-size: 18px;
}

.result-preview b {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.automation-rail {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.automation-rail i {
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform: scaleX(var(--rail-progress, 0));
  transform-origin: left;
}

.automation-rail::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  opacity: var(--rail-progress, 0);
  box-shadow: 0 0 18px rgba(223, 255, 72, 0.65);
}

.integration-statuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.integration-statuses > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 90px;
  padding: 16px;
  border-right: 1px solid var(--line-dark);
}

.integration-statuses > div:last-child {
  border-right: 0;
}

.integration-statuses > div > div {
  display: grid;
  gap: 3px;
}

.integration-statuses strong {
  font-size: 12px;
}

.integration-statuses span {
  color: var(--muted);
  font-size: 10px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 0, 0.12);
}

.status-dot.is-ready {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(87, 211, 140, 0.12);
}

.team-section {
  padding: 140px 0;
  background: var(--paper);
  color: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.66fr 0.66fr;
  align-items: end;
  gap: 10px;
}

.team-member {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--black);
  color: var(--white);
}

.team-member-lead {
  min-height: 660px;
}

.team-member-second {
  min-height: 540px;
}

.team-member img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transform: scale(1.02);
  transition:
    filter 300ms ease,
    transform 700ms var(--ease-out);
}

.team-member::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.86));
}

.team-member > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.team-member span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
}

.team-member h3 {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

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

.team-member p {
  max-width: 320px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.offices-section {
  padding: 140px 0 0;
  background: var(--paper);
  color: var(--black);
}

.map-wrap {
  position: relative;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: #151515;
}

.office-map {
  height: 580px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #151515;
  background-size: 44px 44px;
}

.map-loading {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  height: 100%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-transform: uppercase;
}

.map-loading svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
}

.office-map .leaflet-tile-pane {
  filter: grayscale(1) invert(0.92) contrast(1.15) brightness(0.46) sepia(0.18);
}

.ipauto-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  animation: marker-bob 2200ms var(--ease-in-out) infinite;
}

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

.ipauto-marker::after {
  animation-delay: 900ms;
}

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

@keyframes marker-wave {
  0% {
    opacity: 1;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.map-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.map-crosshair::before,
.map-crosshair::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.24);
}

.map-crosshair::before {
  top: 50%;
  left: -9px;
  width: 50px;
  height: 1px;
}

.map-crosshair::after {
  top: -9px;
  left: 50%;
  width: 1px;
  height: 50px;
}

.office-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px 0 140px;
}

.office-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid var(--line-light);
  border-radius: 5px;
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.office-card.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.office-card > div {
  display: grid;
  gap: 4px;
}

.office-card strong {
  font-size: 18px;
}

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

.office-card > div span {
  opacity: 0.62;
}

.office-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 700;
}

.office-card svg {
  width: 20px;
  height: 20px;
}

.request-section {
  position: relative;
  min-height: 760px;
  padding: 140px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.62)),
    var(--black);
  isolation: isolate;
}

.request-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.request-road {
  position: absolute;
  right: -10%;
  bottom: -26%;
  width: 72%;
  height: 68%;
  border: 1px solid rgba(255, 90, 0, 0.3);
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 90, 0, 0.5) 49%, rgba(255, 90, 0, 0.5) 51%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 48px);
  transform: perspective(500px) rotateX(62deg) rotateZ(-12deg);
  transform-origin: bottom;
}

.request-particles {
  position: absolute;
  inset: 0;
}

.request-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange);
  opacity: var(--particle-opacity);
  transform: translate3d(var(--particle-x), var(--particle-y), 0);
  transition: transform 900ms var(--ease-out);
}

.request-layout {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 580px);
  align-items: center;
  gap: 100px;
}

.request-copy h2 {
  margin-top: 14px;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.92;
}

.request-copy > p:not(.section-index) {
  max-width: 470px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.request-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.request-contact-links a,
.request-contact-links button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: rgba(9, 9, 9, 0.46);
  color: var(--white);
  font: inherit;
  font-size: 10px;
  font-weight: 650;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    border-color 160ms ease,
    background-color 160ms ease;
}

.request-contact-links svg {
  width: 16px;
  height: 16px;
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(13, 13, 13, 0.84);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
}

.request-form label:not(.consent) {
  display: grid;
  gap: 7px;
}

.request-form label > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 600;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  outline: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.request-form input,
.request-form select {
  height: 48px;
  padding: 0 12px;
}

.request-form textarea {
  min-height: 92px;
  padding: 12px;
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.07);
}

.request-form select option {
  background: var(--black);
  color: var(--white);
}

.request-form small {
  min-height: 12px;
  color: var(--red);
  font-size: 9px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.consent span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.submit-button {
  width: 100%;
  min-height: 54px;
  border: 0;
}

.submit-button:disabled {
  background: #4a4a48;
  color: rgba(255, 255, 255, 0.58);
  cursor: not-allowed;
}

.submit-button:disabled::before {
  display: none;
}

.form-status {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  text-align: center;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--red);
}

.site-footer {
  background: var(--orange);
  color: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 150px;
}

.footer-brand .brand-symbol {
  border-color: var(--black);
}

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

.footer-top p {
  font-size: 20px;
  font-weight: 600;
}

.back-top {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.back-top svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 68px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 9px;
  text-transform: uppercase;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom span:last-child {
  text-align: right;
}

dialog {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.gallery-dialog {
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100dvh - 24px);
  overflow: hidden;
}

.gallery-dialog[open] {
  animation: dialog-in 260ms var(--ease-out);
}

.gallery-modal {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: min(760px, calc(100dvh - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: var(--black);
}

.gallery-top,
.gallery-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 12px 16px;
}

.gallery-top > div {
  display: grid;
  gap: 3px;
}

.gallery-top span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
}

.gallery-top strong {
  font-size: 17px;
}

.gallery-viewport {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #111;
  touch-action: pan-y;
}

.gallery-viewport img,
.gallery-viewport video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080808;
  transition:
    opacity 180ms ease,
    transform 320ms var(--ease-out),
    filter 180ms ease;
}

.gallery-viewport img[hidden],
.gallery-viewport video[hidden] {
  display: none;
}

.gallery-viewport img.is-switching,
.gallery-viewport video.is-switching {
  opacity: 0.5;
  filter: blur(2px);
  transform: scale(0.98);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.66);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 160ms ease,
    transform 140ms var(--ease-out);
  backdrop-filter: blur(8px);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-arrow svg {
  width: 20px;
  height: 20px;
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background-color 160ms ease;
}

.gallery-dots button.is-active {
  background: var(--orange);
}

.drawer-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
}

.drawer-dialog[open] {
  display: flex;
  justify-content: flex-end;
}

.drawer-panel {
  display: flex;
  flex-direction: column;
  width: min(480px, 100%);
  height: 100%;
  padding: 20px;
  background: var(--paper);
  color: var(--black);
  animation: drawer-in 360ms var(--ease-drawer);
}

.drawer-head,
.route-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.drawer-head span,
.route-sheet-head span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
}

.drawer-head h2,
.route-sheet-head h2 {
  margin-top: 5px;
  font-size: 34px;
  line-height: 1;
}

.drawer-head .icon-button,
.route-sheet-head .icon-button {
  border-color: var(--line-light);
  color: var(--black);
}

.drawer-request {
  margin-top: auto;
}

.route-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
}

.route-dialog[open] {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.route-sheet {
  width: min(900px, 100%);
  padding: 22px;
  border-radius: 7px 7px 0 0;
  background: var(--paper);
  color: var(--black);
  animation: route-sheet-in 360ms var(--ease-drawer);
}

.route-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.map-service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 140ms var(--ease-out);
}

.map-service:active {
  transform: scale(0.98);
}

.map-service > svg {
  width: 17px;
  height: 17px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  font-size: 20px;
  font-weight: 800;
}

.yandex-service {
  background: #ffdf33;
  color: #1a1a1a;
}

.yandex-service .service-icon {
  background: #ffffff;
  color: #ff2e2e;
}

.gis-service {
  background: #49b94e;
  color: #ffffff;
}

.gis-service .service-icon {
  background: #ffffff;
  color: #49b94e;
}

.google-service {
  border: 1px solid #d7d7d7;
  background: #ffffff;
  color: #202124;
}

.google-g {
  position: relative;
  background: #f1f3f4;
  color: transparent;
  font-weight: 800;
}

.google-g::after {
  content: "G";
  position: absolute;
  background: conic-gradient(
    from -42deg,
    #4285f4 0 27%,
    #34a853 27% 47%,
    #fbbc05 47% 66%,
    #ea4335 66% 82%,
    #4285f4 82% 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.toast-region {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 250;
  display: grid;
  gap: 8px;
  width: min(360px, calc(100% - 32px));
  pointer-events: none;
}

.toast {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(18, 18, 18, 0.94);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  transition:
    opacity 240ms ease,
    transform 320ms var(--ease-out);
  @starting-style {
    opacity: 0;
    transform: translateY(100%);
  }
}

.toast.is-leaving {
  opacity: 0;
  transform: translateY(16px);
}

.toast-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
}

.toast-icon svg {
  width: 15px;
  height: 15px;
}

.toast strong {
  display: block;
  font-size: 11px;
}

.toast span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawer-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes route-sheet-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover {
    color: var(--white);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .icon-button:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
  }

  [data-tooltip]:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  .header-cta:hover {
    background: var(--orange-deep);
  }

  .vehicle-card:hover {
    z-index: 2;
    border-color: rgba(255, 90, 0, 0.72);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    transform: translateY(-5px);
  }

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

  .team-member:hover img {
    filter: grayscale(0) contrast(1.02);
    transform: scale(1.07);
  }

  .office-card:hover:not(.is-active) {
    border-color: var(--orange);
  }

  .request-contact-links a:hover,
  .request-contact-links button:hover {
    border-color: var(--orange);
    background: rgba(255, 90, 0, 0.12);
  }

  .gallery-arrow:hover {
    background: var(--orange);
  }
}

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

  .desktop-nav {
    gap: 18px;
  }

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

  .intro-layout h2 {
    font-size: 58px;
  }

  .route-heading h2,
  .section-heading h2,
  .automation-heading h2 {
    font-size: 54px;
  }

  .route-step:nth-child(1) {
    left: 3%;
  }

  .route-step:nth-child(2) {
    left: 35%;
  }

  .route-step:nth-child(3) {
    right: 2%;
  }

  .order-grid,
  .stock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stock-grid .vehicle-card:nth-child(1),
  .stock-grid .vehicle-card:nth-child(6) {
    grid-column: auto;
  }

  .stock-grid .vehicle-card:nth-child(1) .vehicle-media,
  .stock-grid .vehicle-card:nth-child(6) .vehicle-media {
    aspect-ratio: 3 / 2;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .result-count {
    justify-self: end;
  }

  .automation-stage {
    grid-template-columns: 1fr 50px 0.9fr 50px 1fr;
  }

  .team-grid {
    grid-template-columns: 1.2fr 1fr 0.75fr;
  }

  .team-member:last-child {
    grid-column: 3;
  }

  .request-layout {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    padding-left: 12px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-trigger {
    display: inline-grid;
  }

  .hero {
    min-height: 680px;
    height: 90svh;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.58), rgba(9, 9, 9, 0.02) 42%, rgba(9, 9, 9, 0.82)),
      var(--black);
  }

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

  .hero-meta {
    gap: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 500px;
  }

  .route-story {
    height: 340vh;
  }

  .route-heading {
    top: 86px;
    align-items: flex-start;
  }

  .route-heading > p {
    max-width: 240px;
  }

  .route-line {
    top: 180px;
    height: calc(100% - 190px);
  }

  .route-step {
    width: 230px;
  }

  .route-step:nth-child(1) {
    top: 32%;
    left: 3%;
  }

  .route-step:nth-child(2) {
    top: 44%;
    left: 35%;
  }

  .route-step:nth-child(3) {
    top: 62%;
    right: 2%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading > p {
    max-width: 540px;
  }

  .rate-panel {
    width: 100%;
  }

  .automation-heading {
    grid-template-columns: 1fr;
  }

  .automation-heading > p {
    max-width: 540px;
  }

  .automation-stage {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    margin-top: 56px;
  }

  .automation-window {
    width: min(560px, 100%);
  }

  .automation-source {
    justify-self: start;
  }

  .automation-parser {
    justify-self: center;
    margin-top: 0;
  }

  .automation-result {
    justify-self: end;
    margin-top: 0;
  }

  .automation-rail {
    width: 2px;
    height: 46px;
    margin-left: 25%;
  }

  .automation-rail i {
    transform: scaleY(var(--rail-progress, 0));
    transform-origin: top;
  }

  .automation-rail::after {
    top: auto;
    right: -3px;
    bottom: 0;
  }

  .integration-statuses {
    grid-template-columns: 1fr;
  }

  .integration-statuses > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .integration-statuses > div:last-child {
    border-bottom: 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member,
  .team-member-lead,
  .team-member-second {
    min-height: 440px;
  }

  .team-member:last-child {
    grid-column: auto;
  }

  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-copy {
    max-width: 680px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top p {
    display: none;
  }
}

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

  .section-index,
  .eyebrow {
    font-size: 9px;
  }

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

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

  .site-header {
    height: 56px;
  }

  .site-header .icon-button {
    width: 38px;
    height: 38px;
  }

  .mobile-menu nav a {
    font-size: 29px;
  }

  .hero {
    min-height: 650px;
    height: 88svh;
    max-height: 820px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.66), rgba(9, 9, 9, 0.02) 40%, rgba(9, 9, 9, 0.9)),
      var(--black);
    transform: scale(1.02);
  }

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

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

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 68px;
    padding-bottom: 8px;
    margin-bottom: -8px;
    line-height: 1;
  }

  .hero-copy {
    max-width: 360px;
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(360px, 100%);
    margin: 22px auto 0;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button {
    width: 100%;
  }

  .hero-meta {
    right: 16px;
    bottom: 18px;
    left: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-meta div {
    padding-right: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-meta div:last-child {
    border-right: 0;
  }

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

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

  .car-flow-section {
    gap: 6px;
    padding: 12px 0 16px;
  }

  .flow-car {
    flex-basis: 180px;
    height: 78px;
    margin-right: 6px;
  }

  .flow-car span {
    right: 7px;
    bottom: 5px;
    left: 7px;
    font-size: 8px;
  }

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

  .intro-layout {
    gap: 28px;
  }

  .intro-layout h2 {
    font-size: 41px;
    line-height: 1;
  }

  .intro-copy {
    font-size: 13px;
  }

  .route-story {
    height: 360vh;
  }

  .route-sticky {
    min-height: 620px;
  }

  .route-heading {
    top: 80px;
    display: block;
  }

  .route-heading h2 {
    font-size: 42px;
    line-height: 0.96;
  }

  .route-heading > p {
    max-width: 300px;
    margin-top: 12px;
    font-size: 11px;
  }

  .route-line {
    top: 230px;
    left: 25px;
    width: 22px;
    height: calc(100% - 250px);
    transform: none;
  }

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

  .route-line path {
    d: path("M11 0 L11 1160");
  }

  .route-step {
    top: 54% !important;
    right: 16px !important;
    bottom: auto !important;
    left: 48px !important;
    width: calc(100% - 64px);
    min-height: 214px;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(34px) scale(0.97);
  }

  .route-step.is-active {
    opacity: 0;
  }

  .route-step.is-current {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .route-step-icon {
    margin-bottom: 30px;
  }

  .route-step h3 {
    font-size: 30px;
  }

  .route-step p {
    max-width: 300px;
    font-size: 12px;
  }

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

  .section-heading h2,
  .automation-heading h2 {
    font-size: 42px;
    line-height: 0.98;
  }

  .section-heading > p,
  .automation-heading > p {
    font-size: 12px;
  }

  .rate-panel {
    min-width: 0;
  }

  .model-filter {
    width: calc(100% + 16px);
  }

  .order-grid,
  .stock-grid {
    grid-template-columns: 1fr;
  }

  .order-grid {
    display: flex;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .order-grid::-webkit-scrollbar {
    display: none;
  }

  .order-grid .vehicle-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .vehicle-body {
    padding: 15px;
  }

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

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

  .catalog-tools {
    gap: 10px;
  }

  .search-field {
    height: 50px;
  }

  .search-field kbd {
    display: none;
  }

  .result-count {
    justify-self: start;
  }

  .automation-stage {
    width: calc(100% - 32px);
    margin-bottom: 44px;
  }

  .automation-window {
    width: 92%;
  }

  .automation-source,
  .automation-result {
    justify-self: center;
  }

  .automation-rail {
    margin-left: 50%;
  }

  .automation-result {
    margin-left: 8%;
  }

  .post-image {
    min-height: 170px;
  }

  .integration-statuses > div {
    min-height: 74px;
  }

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

  .team-member,
  .team-member-lead,
  .team-member-second {
    min-height: 430px;
  }

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

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

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

  .office-map {
    height: 470px;
  }

  .office-list {
    grid-template-columns: 1fr;
    padding-bottom: 92px;
  }

  .office-card {
    min-height: 82px;
  }

  .request-section {
    min-height: auto;
    padding: 92px 0;
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.84), rgba(9, 9, 9, 0.76)),
      var(--black);
  }

  .request-layout {
    gap: 48px;
  }

  .request-copy h2 {
    font-size: 48px;
    line-height: 0.96;
  }

  .request-copy > p:not(.section-index) {
    font-size: 12px;
  }

  .request-form {
    padding: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
  }

  .footer-bottom span,
  .footer-bottom span:nth-child(2),
  .footer-bottom span:last-child {
    text-align: left;
  }

  .gallery-dialog {
    width: 100%;
    margin: auto 0 0;
  }

  .gallery-modal {
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 7px 7px 0 0;
  }

  .gallery-viewport {
    min-height: 0;
  }

  .gallery-viewport img,
  .gallery-viewport video {
    object-fit: contain;
  }

  .gallery-arrow {
    width: 42px;
    height: 42px;
  }

  .gallery-bottom {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .gallery-dots {
    justify-content: center;
  }

  .gallery-bottom .primary-button {
    width: 100%;
  }

  .drawer-panel {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .route-sheet {
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .route-services {
    grid-template-columns: 1fr;
  }

  .map-service {
    min-height: 66px;
  }

  .toast-region {
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .hero-backdrop,
  .hero h1 span,
  .hero h1 strong,
  .hero-eyebrow,
  .hero-copy,
  .hero-actions {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .car-flow-track {
    transform: none !important;
  }
}
