/* FAS homepage — custom coded foundation */
:root {
  --red: #d71920;
  --red-bright: #f2262e;
  --red-dark: #9d0e13;
  --black: #050505;
  --ink: #090909;
  --surface: #101010;
  --surface-2: #171717;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --white: #f6f5f1;
  --muted: #a8a8a4;
  --muted-light: #d0cfca;
  --container: 1220px;
  --header-height: 90px;
  --font-heading: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--red);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--red);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.utility-bar {
  position: relative;
  z-index: 120;
  color: #d2d2cf;
  background: #050505;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .035em;
}

.utility-bar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__intro {
  color: #92928f;
}

.utility-bar__links {
  display: flex;
  align-items: stretch;
  min-height: 40px;
}

.utility-bar__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 18px;
  border-left: 1px solid var(--line);
  transition: color .2s ease, background .2s ease;
}

.utility-bar__links a:last-child {
  border-right: 1px solid var(--line);
}

.utility-bar__links a:hover,
.utility-bar__links a:focus-visible {
  color: #fff;
  background: #111;
}

.utility-bar svg {
  width: 14px;
  height: 14px;
  fill: var(--red-bright);
}

.site-header {
  position: sticky;
  z-index: 110;
  top: 0;
  height: var(--header-height);
  background: rgba(7, 7, 7, .82);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: height .25s var(--ease), background .25s ease, box-shadow .25s ease;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(5, 5, 5, .95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: 244px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 72px;
  height: 51px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .095em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand__text strong {
  font: inherit;
}

.brand__text span {
  margin-top: 5px;
  color: var(--red-bright);
  font-size: 12px;
  letter-spacing: .38em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 34px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding-block: 30px;
  color: #d7d7d3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .055em;
  white-space: nowrap;
  transition: color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 23px;
  border: 1px solid transparent;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button--header {
  min-width: 152px;
  margin-left: 4px;
  background: var(--red);
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%, 0 28%);
}

.button--header:hover,
.button--header:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-bright);
  box-shadow: 0 12px 30px rgba(215, 25, 32, .22);
}

.language-switcher {
  flex: 0 0 auto;
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, .05);
}

.language-switcher a {
  min-width: 26px;
  min-height: 27px;
  display: inline-grid;
  place-items: center;
  color: #aaa9a5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.language-switcher a.is-active {
  color: #fff;
  background: var(--red);
}

.language-switcher span {
  color: rgba(255, 255, 255, .28);
  font-size: 10px;
}

.button--primary {
  min-height: 58px;
  padding-inline: 28px;
  background: var(--red);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.button--outline {
  border-color: var(--line-strong);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.button--light {
  color: var(--red-dark);
  background: #fff;
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--red);
  background: var(--white);
}

.button--ghost {
  border-color: rgba(255, 255, 255, .48);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red-bright);
  font-size: 19px;
  transition: transform .2s var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -2px);
}

.hero {
  position: relative;
  min-height: min(840px, calc(100svh - var(--header-height) - 40px));
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 38%, rgba(78, 0, 3, .23), transparent 35%),
    linear-gradient(125deg, #080808 0 52%, #0f0f0f 52% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 51%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,.12), transparent);
  transform: skewX(-14deg);
}

.hero__grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 72%);
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero__circuit {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  opacity: .72;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 77% 48%, #000 0 42%, transparent 77%);
  mask-image: radial-gradient(ellipse at 77% 48%, #000 0 42%, transparent 77%);
}

.hero__circuit svg {
  width: 100%;
  height: 100%;
}

.hero__circuit path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__circuit-base path {
  stroke: rgba(215, 25, 32, .18);
  stroke-width: 1;
}

.hero__circuit-flow path {
  stroke: rgba(242, 38, 46, .82);
  stroke-width: 1.6;
  stroke-dasharray: 5 128;
  filter: drop-shadow(0 0 5px rgba(242, 38, 46, .65));
  animation: circuit-flow 6.8s linear infinite;
}

.hero__circuit-flow path:nth-child(2) { animation-delay: -1.4s; animation-duration: 7.6s; }
.hero__circuit-flow path:nth-child(3) { animation-delay: -3.7s; animation-duration: 8.2s; }
.hero__circuit-flow path:nth-child(4) { animation-delay: -5.1s; animation-duration: 7.1s; }
.hero__circuit-flow path:nth-child(5) { animation-delay: -2.5s; animation-duration: 9s; }

.hero__circuit-nodes circle {
  fill: var(--red-bright);
  opacity: .42;
  transform-box: fill-box;
  transform-origin: center;
  animation: circuit-node 3.6s ease-in-out infinite;
}

.hero__circuit-nodes circle:nth-child(2n) { animation-delay: -1.8s; }
.hero__circuit-nodes circle:nth-child(3n) { animation-delay: -.9s; }

@keyframes circuit-flow {
  to { stroke-dashoffset: -266; }
}

@keyframes circuit-node {
  0%, 72%, 100% { opacity: .28; transform: scale(.8); }
  82% { opacity: 1; transform: scale(1.75); }
}

.hero__flare {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero__flare--one {
  top: -320px;
  right: 4%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(215, 25, 32, .23);
  box-shadow: inset 0 0 120px rgba(215, 25, 32, .04);
}

.hero__flare--two {
  right: 8%;
  bottom: -270px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(215,25,32,.15), transparent 67%);
}

.hero__word {
  position: absolute;
  z-index: -2;
  right: -32px;
  bottom: -108px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(210px, 25vw, 420px);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  user-select: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 28px;
  padding-block: 78px 104px;
}

.hero__content {
  position: relative;
  z-index: 4;
  padding-left: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  position: relative;
  width: 38px;
  height: 2px;
  background: currentColor;
}

.eyebrow > span::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.eyebrow--light {
  color: #fff;
}

.hero h1,
.section h2,
.process h2,
.contact h2 {
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(62px, 6.3vw, 104px);
}

.hero h1 em,
.section h2 em,
.process h2 em,
.contact h2 em {
  color: var(--red-bright);
  font-style: normal;
}

.hero__lead {
  max-width: 575px;
  margin-bottom: 34px;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 37px 0 0;
  padding: 0;
  color: #b5b5b1;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__trust span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(215,25,32,.16);
  border: 1px solid rgba(215,25,32,.5);
  border-radius: 50%;
  font-size: 10px;
}

.hero__visual {
  position: relative;
  z-index: 2;
  min-height: 550px;
  display: flex;
  align-items: center;
}

.hero__image-frame {
  position: absolute;
  top: 50%;
  right: -9%;
  width: 118%;
  transform: translateY(-49%);
  animation: hero-vehicle-enter 1.15s var(--ease) .12s both;
  will-change: transform, opacity;
}

.hero__image-frame::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: 7%;
  left: 12%;
  height: 15%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.72), rgba(0,0,0,0) 72%);
  filter: blur(15px);
  transform: skewX(-10deg);
}

.hero__red-shape {
  position: absolute;
  z-index: -2;
  top: 5%;
  right: 8%;
  width: 65%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(215,25,32,.95), rgba(97,2,7,.3));
  clip-path: polygon(20% 0, 100% 5%, 84% 100%, 0 76%);
  opacity: .5;
  filter: drop-shadow(0 30px 70px rgba(176,0,7,.18));
}

.hero__ring {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: 3%;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.018), 0 0 0 90px rgba(215,25,32,.025);
}

.hero__car {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(0,0,0,.48)) drop-shadow(0 0 18px rgba(255,255,255,.055));
  animation: hero-vehicle-float 5.5s ease-in-out 1.25s infinite;
  transform-origin: 52% 64%;
  will-change: transform;
}

@keyframes hero-vehicle-enter {
  from {
    opacity: 0;
    transform: translate3d(30%, -49%, 0) scale(.92);
  }
  to {
    opacity: 1;
    transform: translate3d(0, -49%, 0) scale(1);
  }
}

@keyframes hero-vehicle-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(.01deg); }
  50% { transform: translate3d(0, -9px, 0) rotate(-.18deg); }
}

.hero__badge {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 62px;
  min-width: 248px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  background: rgba(9,9,9,.88);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero__badge-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--red);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.hero__badge-icon svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

.hero__badge > span:last-child {
  display: grid;
}

.hero__badge strong {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: .04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__badge small {
  color: var(--muted);
  font-size: 11px;
}

.hero__location {
  position: absolute;
  top: 41px;
  right: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c4c4c0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__location span {
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(215,25,32,.15);
}

.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 29px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #888884;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.hero__scroll i {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.15);
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.service-strip {
  position: relative;
  z-index: 6;
  background: #101010;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc((100vw - min(calc(100vw - 48px), var(--container))) / 2 + min(calc(100vw - 48px), var(--container)) * .75);
  background: #0d0d0d;
}

.service-strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
}

.service-strip__item,
.service-strip__cta {
  min-height: 116px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.service-strip__item:first-child {
  border-left: 1px solid var(--line);
}

.service-strip__item strong {
  font-family: var(--font-heading);
  font-size: 25px;
  letter-spacing: .02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-strip__item span {
  margin-top: 7px;
  color: #888884;
  font-size: 11px;
}

.service-strip__cta {
  position: relative;
  color: #fff;
  background: var(--red);
  border: 0;
  overflow: hidden;
}

.service-strip__cta::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.service-strip__cta:hover::after,
.service-strip__cta:focus-visible::after {
  transform: scale(1.22);
}

.service-strip__cta span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  opacity: .76;
  text-transform: uppercase;
}

.service-strip__cta strong {
  margin-top: 3px;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: .02em;
}

.service-strip__cta svg {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  transform: translateY(-50%);
}

.section {
  position: relative;
  padding-block: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  align-items: end;
  gap: 65px;
  margin-bottom: 65px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section h2,
.process h2,
.contact h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(45px, 5vw, 72px);
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 15px;
}

.services {
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 24%),
    var(--black);
}

.services-motion {
  display: none;
}

@media (min-width: 981px) and (pointer: fine) {
  .services-motion {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .55s ease;
  }

  .services.is-motion-visible .services-motion {
    opacity: 1;
  }

  .services-motion__road {
    position: absolute;
    top: 38px;
    left: -9%;
    width: 118%;
    height: 490px;
    overflow: hidden;
    opacity: .42;
    background:
      linear-gradient(180deg, transparent 0 43%, rgba(215,25,32,.055) 43.2%, transparent 44%),
      repeating-linear-gradient(90deg, transparent 0 112px, rgba(255,255,255,.035) 113px 114px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: perspective(680px) rotateX(61deg) scaleX(1.08);
    transform-origin: 50% 100%;
  }

  .services-motion__road::before,
  .services-motion__road::after {
    content: "";
    position: absolute;
    right: -20%;
    bottom: 70px;
    left: -20%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(215,25,32,.62) 0 70px, transparent 70px 132px);
    animation: services-road-flow 4.2s linear infinite;
    animation-play-state: paused;
  }

  .services-motion__road::after {
    bottom: 160px;
    height: 1px;
    opacity: .28;
    animation-duration: 6.8s;
    animation-direction: reverse;
  }

  .services-motion__road span {
    position: absolute;
    bottom: 12px;
    width: 24%;
    height: 1px;
    opacity: .35;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
    animation: services-road-glint 5.5s linear infinite;
    animation-play-state: paused;
  }

  .services-motion__road span:nth-child(2) { animation-delay: -1.8s; }
  .services-motion__road span:nth-child(3) { animation-delay: -3.6s; }

  .services-motion__arrival {
    position: absolute;
    z-index: 1;
    inset: 0;
    transform-origin: 76% 4%;
    animation: services-vehicle-arrive 1.28s cubic-bezier(.18,.78,.18,1) both;
    animation-play-state: paused;
    will-change: transform, opacity;
  }

  .services-motion__vehicle {
    position: absolute;
    top: 54px;
    left: 0;
    width: clamp(510px, 54vw, 790px);
    opacity: .23;
    transform: translate3d(45vw, 0, 0);
    animation: services-vehicle-drive 13.5s linear 1.28s infinite;
    animation-play-state: paused;
    will-change: transform, opacity;
  }

  .services-motion__vehicle img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    filter: saturate(.72) contrast(1.08) drop-shadow(0 28px 28px rgba(0,0,0,.72)) drop-shadow(0 0 16px rgba(215,25,32,.18));
  }

  .services-motion__vehicle > span {
    position: absolute;
    right: 7%;
    bottom: 17%;
    left: 6%;
    height: 12%;
    border-radius: 50%;
    opacity: .72;
    background: radial-gradient(ellipse, rgba(215,25,32,.22), rgba(0,0,0,.72) 62%, transparent 74%);
    filter: blur(17px);
    transform: skewX(-12deg);
  }

  .services-motion__signal {
    position: absolute;
    z-index: 1;
    top: 88px;
    right: 5.5%;
    width: 44px;
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 10px 8px 12px;
    opacity: .66;
    background: linear-gradient(145deg, #1b1b1d, #050506);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 16px 32px rgba(0,0,0,.55), 0 0 24px rgba(215,25,32,.08);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  }

  .services-motion__signal::before {
    content: "FAS";
    position: absolute;
    top: -17px;
    color: rgba(255,255,255,.32);
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
  }

  .services-motion__signal i {
    position: absolute;
    top: 100%;
    width: 3px;
    height: 104px;
    background: linear-gradient(#4b4b4d, rgba(255,255,255,.04));
    box-shadow: 0 0 0 1px rgba(0,0,0,.5);
  }

  .services-motion__lamp {
    width: 19px;
    height: 19px;
    border: 2px solid rgba(255,255,255,.07);
    border-radius: 50%;
    background: #202022;
    box-shadow: inset 0 3px 7px rgba(0,0,0,.85);
    animation-duration: 13.5s;
    animation-delay: 1.28s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: paused;
  }

  .services-motion__lamp--red { animation-name: services-signal-red; }
  .services-motion__lamp--amber { animation-name: services-signal-amber; }
  .services-motion__lamp--green { animation-name: services-signal-green; }

  .services-motion__scanline {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: -30%;
    width: 24%;
    opacity: .16;
    background: linear-gradient(90deg, transparent, rgba(215,25,32,.22), transparent);
    transform: skewX(-18deg);
    animation: services-scanline 8s ease-in-out infinite;
    animation-play-state: paused;
  }

  .services.is-motion-visible:not(.is-motion-paused) .services-motion__arrival,
  .services.is-motion-visible:not(.is-motion-paused) .services-motion__vehicle,
  .services.is-motion-visible:not(.is-motion-paused) .services-motion__lamp,
  .services.is-motion-visible:not(.is-motion-paused) .services-motion__road::before,
  .services.is-motion-visible:not(.is-motion-paused) .services-motion__road::after,
  .services.is-motion-visible:not(.is-motion-paused) .services-motion__road span,
  .services.is-motion-visible:not(.is-motion-paused) .services-motion__scanline {
    animation-play-state: running;
  }
}

@keyframes services-vehicle-arrive {
  0% {
    opacity: 0;
    transform: perspective(1000px) translate3d(18vw, -520px, 0) rotateY(-175deg) rotateZ(-10deg) scale(1.12);
  }
  58% {
    opacity: .78;
    transform: perspective(1000px) translate3d(1vw, 28px, 0) rotateY(13deg) rotateZ(2deg) scale(.98);
  }
  78% {
    transform: perspective(1000px) translate3d(0, -8px, 0) rotateY(-4deg) rotateZ(-.6deg) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) translate3d(0, 0, 0) rotateY(0) rotateZ(0) scale(1);
  }
}

@keyframes services-vehicle-drive {
  0%   { opacity: .23; transform: translate3d(45vw, 0, 0); }
  16%  { opacity: .25; transform: translate3d(32vw, -2px, 0); }
  22%  { opacity: .25; transform: translate3d(28vw, 0, 0); }
  48%  { opacity: .25; transform: translate3d(28vw, 0, 0); }
  55%  { opacity: .26; transform: translate3d(14vw, -2px, 0); }
  77%  { opacity: .22; transform: translate3d(-66vw, 0, 0); }
  78%  { opacity: 0; transform: translate3d(-70vw, 0, 0); }
  79%  { opacity: 0; transform: translate3d(98vw, 0, 0); }
  82%  { opacity: .22; transform: translate3d(88vw, -1px, 0); }
  100% { opacity: .23; transform: translate3d(45vw, 0, 0); }
}

@keyframes services-signal-red {
  0%, 21%, 49%, 100% { background: #261214; box-shadow: inset 0 3px 7px rgba(0,0,0,.85); }
  22%, 48% { background: #f2262e; box-shadow: 0 0 15px rgba(242,38,46,.85), 0 0 32px rgba(242,38,46,.45), inset 0 0 5px #fff; }
}

@keyframes services-signal-amber {
  0%, 15%, 23%, 100% { background: #282113; box-shadow: inset 0 3px 7px rgba(0,0,0,.85); }
  16%, 22% { background: #ffb21a; box-shadow: 0 0 14px rgba(255,178,26,.82), 0 0 28px rgba(255,178,26,.35), inset 0 0 5px #fff; }
}

@keyframes services-signal-green {
  0%, 15%, 49%, 100% { background: #26dc72; box-shadow: 0 0 15px rgba(38,220,114,.75), 0 0 32px rgba(38,220,114,.32), inset 0 0 5px #fff; }
  16%, 48% { background: #10281a; box-shadow: inset 0 3px 7px rgba(0,0,0,.85); }
}

@keyframes services-road-flow {
  from { transform: translateX(0); }
  to { transform: translateX(-202px); }
}

@keyframes services-road-glint {
  from { left: -26%; }
  to { left: 112%; }
}

@keyframes services-scanline {
  0%, 12% { left: -30%; opacity: 0; }
  30% { opacity: .16; }
  70% { opacity: .12; }
  88%, 100% { left: 112%; opacity: 0; }
}

.services::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 6%;
  right: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255,255,255,.035);
  border-radius: 50%;
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px 34px 42px;
  background: #0b0b0b;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transform-origin: center;
  transition: background .35s ease, transform .4s var(--ease), box-shadow .4s ease, border-color .35s ease;
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(145deg, rgba(215,25,32,.1), transparent 58%);
  transition: opacity .3s ease;
}

.service-card:hover {
  z-index: 2;
  background: #121212;
  transform: perspective(900px) translateY(-11px) scale(1.018);
  box-shadow: 0 24px 55px rgba(0,0,0,.6), 0 0 0 1px rgba(242,38,46,.2), inset 0 1px 0 rgba(255,255,255,.045);
}

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

.service-card__number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: rgba(255,255,255,.15);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}

.service-card__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: var(--red-bright);
  background: rgba(215,25,32,.08);
  border: 1px solid rgba(215,25,32,.27);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease), box-shadow .35s ease;
}

.service-card__icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transform-origin: 50% 50%;
  transition: transform .7s var(--ease), filter .35s ease;
}

.service-card:hover .service-card__icon {
  color: #fff;
  background: rgba(215,25,32,.2);
  border-color: rgba(242,38,46,.62);
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 10px 24px rgba(215,25,32,.2);
}

.service-card:hover .service-card__icon svg {
  transform: rotate(360deg) scale(1.05);
  filter: drop-shadow(0 4px 7px rgba(0,0,0,.5));
}

.service-card h3 {
  position: relative;
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 27px;
  letter-spacing: .01em;
  line-height: 1.05;
  text-transform: uppercase;
  transition: color .35s ease, text-shadow .35s ease, transform .35s var(--ease);
}

.service-card p {
  position: relative;
  margin: 0;
  color: #9a9a96;
  font-size: 14px;
  line-height: 1.65;
  transition: color .35s ease, text-shadow .35s ease, transform .35s var(--ease);
}

.service-card:hover h3 {
  color: #fff;
  text-shadow: 0 4px 13px rgba(0,0,0,.85), 0 0 22px rgba(242,38,46,.2);
  transform: translateY(-2px);
}

.service-card:hover p {
  color: #c3c3bf;
  text-shadow: 0 3px 9px rgba(0,0,0,.8);
  transform: translateY(-1px);
}

.service-card__line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.service-card:hover .service-card__line {
  transform: scaleX(1);
  transform-origin: left;
}

.services__more {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 30px 33px;
  background: #121212;
  border: 1px solid var(--line);
  border-top: 0;
}

.services__more > div {
  display: grid;
  gap: 4px;
}

.services__more p {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.services__more > div > span {
  color: #979793;
  font-size: 13px;
}

.services__more .text-link {
  justify-self: end;
}

.about {
  overflow: hidden;
  background: #0c0c0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 62%);
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.about::after {
  content: "";
  display: none;
}

@media (min-width: 981px) and (pointer: fine) {
  .about::before {
    inset: -124px;
    opacity: 1;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='62' height='62' viewBox='0 0 62 62'%3E%3Ctext x='31' y='35' text-anchor='middle' fill='%23d71920' fill-opacity='.2' font-family='Arial,sans-serif' font-size='10' font-style='italic' font-weight='900' letter-spacing='1'%3EFAS%3C/text%3E%3C/svg%3E"),
      linear-gradient(rgba(255,255,255,.052) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.052) 1px, transparent 1px);
    background-size: 62px 62px, 62px 62px, 62px 62px;
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.68) 65%, rgba(0,0,0,.3));
    mask-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.68) 65%, rgba(0,0,0,.3));
    animation: about-grid-drift 24s linear infinite;
    animation-play-state: paused;
    will-change: transform;
  }

  .about::after {
    position: absolute;
    z-index: 0;
    top: 9%;
    right: -3%;
    width: 470px;
    height: 470px;
    display: block;
    opacity: .62;
    background:
      linear-gradient(90deg, transparent 49.7%, rgba(215,25,32,.2) 50%, transparent 50.3%),
      linear-gradient(transparent 49.7%, rgba(255,255,255,.11) 50%, transparent 50.3%);
    border: 1px solid rgba(255,255,255,.11);
    box-shadow:
      0 0 0 68px rgba(255,255,255,.022),
      0 0 0 136px rgba(215,25,32,.025);
    transform: rotate(12deg) translate3d(0,0,0);
    animation: about-frame-float 17s ease-in-out infinite alternate;
    animation-play-state: paused;
    pointer-events: none;
    will-change: transform, opacity;
  }

  .about.is-ambient-active::before,
  .about.is-ambient-active::after {
    animation-play-state: running;
  }
}

@keyframes about-grid-drift {
  from { transform: translate3d(-42px, -34px, 0); }
  to { transform: translate3d(82px, 90px, 0); }
}

@keyframes about-frame-float {
  0% { opacity: .28; transform: rotate(10deg) translate3d(0, -18px, 0) scale(.96); }
  48% { opacity: .45; transform: rotate(14deg) translate3d(-34px, 20px, 0) scale(1.025); }
  100% { opacity: .34; transform: rotate(8deg) translate3d(-68px, -3px, 0) scale(.985); }
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about__visual {
  position: relative;
  min-height: 600px;
}

.about__image-wrap {
  position: absolute;
  inset: 0 0 35px;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 72px, 100% 100%, 72px 100%, 0 calc(100% - 72px));
}

.about__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(215,25,32,.22), transparent 42%, rgba(0,0,0,.42));
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(.78) contrast(1.08);
  transition: transform 1s var(--ease), filter .5s ease;
}

.about__visual:hover .about__image-wrap img {
  transform: scale(1.035);
  filter: saturate(.92) contrast(1.08);
}

.about__stamp {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: 0;
  width: 175px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  color: #0b0b0b;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
}

.about__stamp img {
  width: 83px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: none;
}

.about__stamp span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.about__accent {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 120px;
  height: 120px;
  border-top: 4px solid var(--red);
  border-left: 4px solid var(--red);
}

.about__content h2 {
  margin-bottom: 30px;
  font-size: clamp(42px, 4vw, 60px);
}

.about__lead {
  max-width: 610px;
  margin-bottom: 39px;
  color: #b0b0ac;
  font-size: 17px;
}

.about__points {
  margin-bottom: 39px;
  border-top: 1px solid var(--line);
}

.about__points > div {
  display: grid;
  grid-template-columns: 44px 145px 1fr;
  align-items: center;
  gap: 16px;
  padding-block: 19px;
  border-bottom: 1px solid var(--line);
}

.about__points span {
  color: var(--red-bright);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
}

.about__points h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 19px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.about__points p {
  margin: 0;
  color: #8f8f8b;
  font-size: 13px;
}

.process {
  position: relative;
  padding-block: 90px 100px;
  overflow: hidden;
  background: var(--red);
}

.process::before {
  content: "FAS";
  position: absolute;
  top: -116px;
  right: -20px;
  color: rgba(0,0,0,.075);
  font-family: var(--font-heading);
  font-size: 360px;
  font-weight: 900;
  line-height: 1;
}

.process__angle {
  position: absolute;
  top: 0;
  right: 0;
  width: 18%;
  height: 100%;
  background: #b20f15;
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%);
}

.process .container {
  position: relative;
  z-index: 1;
}

.process__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 58px;
}

.process__heading .eyebrow {
  margin-bottom: 13px;
}

.process h2 {
  color: #fff;
}

.process h2 em {
  color: #090909;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.38);
  border-bottom: 1px solid rgba(255,255,255,.38);
  list-style: none;
}

.process__steps li {
  min-height: 174px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,.38);
}

.process__steps li:first-child {
  border-left: 1px solid rgba(255,255,255,.38);
}

.process__number {
  color: rgba(0,0,0,.28);
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.process__steps h3 {
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1.1;
  text-transform: uppercase;
}

.process__steps p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.55;
}

.vehicles {
  overflow: hidden;
  background:
    linear-gradient(115deg, #060606 0 58%, rgba(123,4,10,.35) 58% 100%),
    #060606;
  border-bottom: 1px solid var(--line);
}

.vehicles::before {
  content: "";
  position: absolute;
  inset: 0 0 0 58%;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

.vehicles__logo {
  position: absolute;
  top: 50%;
  right: -22px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: 280px;
  font-weight: 900;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255,255,255,.09);
  transform: translateY(-50%);
}

.vehicles__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.vehicles__content h2 {
  margin-bottom: 28px;
}

.vehicles__content > p {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
}

.vehicles__details {
  display: grid;
  gap: 16px;
}

.vehicles__card {
  display: grid;
  grid-template-columns: 65px 1fr;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(7,7,7,.72);
  border: 1px solid rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.vehicles__card svg {
  width: 53px;
  height: 53px;
  fill: none;
  stroke: var(--red-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.vehicles__card div {
  display: grid;
}

.vehicles__card strong {
  font-family: var(--font-heading);
  font-size: 21px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.vehicles__card span {
  color: #989894;
  font-size: 12px;
}

.reviews {
  background: #0b0b0b;
}

.section-heading--reviews {
  grid-template-columns: 1fr auto;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.slider-controls button {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}

.slider-controls button:hover,
.slider-controls button:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.slider-controls button:disabled {
  cursor: default;
  opacity: .25;
}

.slider-controls svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 2);
  gap: 22px;
  transition: transform .55s var(--ease);
  will-change: transform;
}

.testimonial {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 38px 40px;
  background: #111;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  overflow: hidden;
  transform: translateZ(0) scale(.985);
  transform-origin: center;
  transition: background .35s ease, border-color .35s ease, box-shadow .4s ease, transform .4s var(--ease);
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 12% 8%, rgba(242,38,46,.15), transparent 42%);
  transition: opacity .35s ease;
  pointer-events: none;
}

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

.testimonial:hover {
  background: #161616;
  border-color: rgba(242,38,46,.48);
  border-top-color: var(--red-bright);
  box-shadow: 0 18px 42px rgba(0,0,0,.45), inset 0 0 0 1px rgba(242,38,46,.08);
  transform: translateZ(0) scale(1);
}

.testimonial:hover::before {
  opacity: 1;
}

.testimonial__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.testimonial__quote {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: .7;
  transition: color .35s ease, filter .35s ease, transform .35s var(--ease);
}

.testimonial__stars {
  color: #ffc429;
  font-size: 13px;
  letter-spacing: .13em;
}

.testimonial blockquote {
  flex: 1;
  margin: 0 0 34px;
  color: #d7d7d2;
  font-size: 17px;
  line-height: 1.75;
  transition: color .35s ease, text-shadow .35s ease;
}

.testimonial:hover .testimonial__quote {
  color: var(--red-bright);
  filter: drop-shadow(0 0 12px rgba(242,38,46,.32));
  transform: translateY(-2px) scale(1.05);
}

.testimonial:hover blockquote {
  color: #f1f1ed;
  text-shadow: 0 4px 12px rgba(0,0,0,.6);
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.testimonial footer > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--red-dark);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
}

.testimonial footer div {
  display: grid;
}

.testimonial footer strong {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.testimonial footer small {
  color: #777773;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.slider-progress {
  height: 2px;
  margin-top: 34px;
  background: rgba(255,255,255,.08);
}

.slider-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--red);
  transition: width .4s var(--ease), transform .5s var(--ease);
}

.faq {
  background: #080808;
  border-top: 1px solid var(--line);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(65px, 10vw, 145px);
}

.faq__intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq__intro h2 {
  margin-bottom: 28px;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 400px;
  margin-bottom: 25px;
  color: var(--muted);
}

.faq__list {
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line-strong);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 0;
  color: #e8e8e4;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--red-bright);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details[open] summary {
  color: #fff;
}

.faq details p {
  max-width: 680px;
  margin: -6px 0 27px;
  padding-right: 48px;
  color: #93938f;
  font-size: 14px;
}

.contact {
  position: relative;
  padding-block: 105px;
  overflow: hidden;
  background: var(--red);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 58px 58px;
}

.contact::after {
  content: "";
  display: none;
}

.contact__red-block {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 100%;
  background: var(--red-dark);
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 981px) and (pointer: fine) {
  .contact::before {
    inset: -90px;
    opacity: .18;
    animation: contact-grid-drift 19s linear infinite;
    animation-play-state: paused;
    will-change: transform;
  }

  .contact::after {
    position: absolute;
    z-index: 0;
    top: -18%;
    bottom: -18%;
    left: -32%;
    width: 25%;
    display: block;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
    filter: blur(8px);
    transform: skewX(-18deg);
    animation: contact-light-sweep 9.5s ease-in-out infinite;
    animation-play-state: paused;
    pointer-events: none;
    will-change: left, opacity;
  }

  .contact__red-block::before {
    content: "";
    position: absolute;
    inset: -35%;
    opacity: .52;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,.34) 0 1px, transparent 1px 46px);
    animation: contact-data-flow 14s linear infinite;
    animation-play-state: paused;
    will-change: transform;
  }

  .contact__red-block::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 11%;
    width: 260px;
    aspect-ratio: 1;
    opacity: .5;
    border: 1px solid rgba(255,255,255,.23);
    border-radius: 50%;
    box-shadow:
      0 0 0 42px rgba(255,255,255,.045),
      0 0 0 84px rgba(0,0,0,.055);
    transform: translateY(-50%);
    animation: contact-ring-breathe 11s ease-in-out infinite alternate;
    animation-play-state: paused;
    will-change: transform, opacity;
  }

  .contact.is-ambient-active::before,
  .contact.is-ambient-active::after,
  .contact.is-ambient-active .contact__red-block::before,
  .contact.is-ambient-active .contact__red-block::after {
    animation-play-state: running;
  }
}

@keyframes contact-grid-drift {
  from { transform: translate3d(-34px, -28px, 0); }
  to { transform: translate3d(82px, 88px, 0); }
}

@keyframes contact-light-sweep {
  0%, 14% { left: -32%; opacity: 0; }
  28% { opacity: .16; }
  68% { opacity: .1; }
  84%, 100% { left: 112%; opacity: 0; }
}

@keyframes contact-data-flow {
  from { transform: translate3d(-34px, -34px, 0); }
  to { transform: translate3d(98px, 98px, 0); }
}

@keyframes contact-ring-breathe {
  0% { opacity: .24; transform: translateY(-50%) scale(.92); }
  52% { opacity: .42; transform: translateY(-50%) scale(1.04); }
  100% { opacity: .31; transform: translateY(-50%) scale(.98); }
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.contact h2 {
  max-width: 690px;
  color: #fff;
  font-size: clamp(48px, 5.1vw, 76px);
}

.contact h2 em {
  color: #090909;
}

.contact__content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 33px;
  color: rgba(255,255,255,.78);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-card {
  display: grid;
  padding: 34px;
  color: #fff;
  background: #090909;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 30px 70px rgba(76,0,4,.27);
  font-style: normal;
}

.contact-card__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-card__item:first-child {
  padding-top: 0;
}

.contact-card__item--hours {
  margin: 8px -10px 0;
  padding: 18px 10px;
  background: linear-gradient(90deg, rgba(215,25,32,.18), rgba(215,25,32,.035));
  border: 1px solid rgba(242,38,46,.34);
}

.contact-card__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
}

.contact-card__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-card__item div {
  display: grid;
}

.contact-card__hours {
  width: 100%;
  display: grid;
  gap: 5px;
  margin: 3px 0 0;
  color: #f1f1ed;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: .02em;
  line-height: 1.25;
}

.contact-card__hours-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.contact-card__hours strong {
  color: var(--red-bright);
  font-size: 18px;
}

.contact-card small {
  color: #777773;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card__item a {
  width: fit-content;
  color: #f1f1ed;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.25;
  transition: color .2s ease;
}

.contact-card__item a:hover,
.contact-card__item a:focus-visible {
  color: var(--red-bright);
}

.contact-card__map {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-card__map span {
  color: var(--red-bright);
  font-size: 18px;
}

.site-footer {
  background: #050505;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.35fr .65fr .95fr 1.05fr;
  gap: 55px;
  padding-block: 80px;
}

.brand--footer {
  min-width: 0;
  margin-bottom: 23px;
}

.site-footer__brand > p {
  max-width: 320px;
  margin: 0;
  color: #777773;
  font-size: 13px;
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.site-footer__column h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column > span {
  color: #888884;
  font-size: 12px;
  line-height: 1.6;
  transition: color .2s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: var(--red-bright);
}

.site-footer__column--cta {
  padding-left: 28px;
  border-left: 2px solid var(--red);
}

.site-footer__column--cta h2 {
  max-width: 220px;
  font-size: 22px;
  line-height: 1.18;
}

.site-footer__column--cta .text-link {
  margin-top: 8px;
  color: #fff;
}

.site-footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #666662;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .05em;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  gap: 17px;
}

.site-footer__legal a {
  color: #aaa;
  transition: color .2s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible,
.site-footer__legal a[aria-current="page"] {
  color: var(--red-bright);
}

.site-footer__bottom > a {
  display: flex;
  gap: 9px;
  color: #aaa;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__bottom > a span {
  color: var(--red-bright);
  font-size: 14px;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal--delay {
  transition-delay: .14s;
}

.reveal--delay-sm {
  transition-delay: .08s;
}

.reveal--delay-md {
  transition-delay: .16s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 80px;
  }

  .brand {
    min-width: 215px;
  }

  .brand img {
    width: 62px;
    height: 45px;
  }

  .brand__text {
    font-size: 13px;
  }

  .primary-nav {
    gap: 19px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .button--header {
    min-width: 140px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  }

  .hero__content {
    padding-left: 0;
  }

  .hero__image-frame {
    right: -24%;
    width: 135%;
  }

  .hero__badge {
    right: -6px;
  }

  .service-strip__item,
  .service-strip__cta {
    padding-inline: 20px;
  }

  .service-strip__cta strong {
    font-size: 20px;
  }

  .service-strip__cta svg {
    display: none;
  }
}

@media (max-width: 980px) {
  .utility-bar__intro {
    display: none;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .site-header__inner {
    gap: 20px;
  }

  .brand {
    min-width: 64px;
  }

  .brand__text {
    display: none;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 11px;
  }

  .button--header {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(60px, 8vw, 80px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__image-frame {
    right: -45%;
    width: 158%;
  }

  .hero__badge {
    right: -15px;
    bottom: 80px;
  }

  .hero__location {
    right: 0;
  }

  .service-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-strip__cta {
    grid-column: 1 / -1;
    min-height: 86px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .service-strip__cta svg {
    display: block;
  }

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

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

  .about__visual {
    min-height: 520px;
  }

  .about__stamp {
    right: 18px;
  }

  .process__steps li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vehicles__inner {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .faq__grid {
    gap: 55px;
  }

  .site-footer__main {
    grid-template-columns: 1.4fr .7fr 1fr;
  }

  .site-footer__column--cta {
    grid-column: 1 / -1;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    gap: 12px;
  }

  .language-switcher {
    height: 36px;
    padding-inline: 6px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 62px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    height: var(--header-height);
    background: rgba(5, 5, 5, .98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    height: 66px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .brand img {
    width: 59px;
    height: 42px;
  }

  .brand__text {
    font-size: 12px;
  }

  .brand__text span {
    font-size: 10px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid var(--line-strong);
  }

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

  .nav-toggle__icon {
    width: 21px;
    display: grid;
    gap: 5px;
  }

  .nav-toggle__icon i {
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease;
  }

  .nav-toggle[aria-expanded="true"] i:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] i:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] i:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 28px 78px;
    background:
      linear-gradient(145deg, rgba(215,25,32,.11), transparent 45%),
      rgba(5,5,5,.985);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .25s ease, transform .3s var(--ease), visibility .3s;
  }

  .primary-nav::after {
    content: "FAS";
    position: absolute;
    right: -18px;
    bottom: -30px;
    color: transparent;
    font-family: var(--font-heading);
    font-size: 190px;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255,255,255,.055);
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a,
  .primary-nav a:nth-child(4) {
    width: 100%;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-heading);
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: .02em;
    line-height: 1;
    text-transform: uppercase;
  }

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

  .hero {
    min-height: auto;
    display: block;
  }

  .hero::before,
  .hero__scroll {
    display: none;
  }

  .hero__grid {
    background-size: 48px 48px;
  }

  .hero__circuit {
    opacity: .52;
    -webkit-mask-image: radial-gradient(ellipse at 68% 68%, #000 0 34%, transparent 75%);
    mask-image: radial-gradient(ellipse at 68% 68%, #000 0 34%, transparent 75%);
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-block: 70px 45px;
  }

  .hero__content {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(53px, 16vw, 78px);
  }

  .hero__lead {
    max-width: 540px;
    margin-bottom: 28px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__trust {
    margin-top: 29px;
  }

  .hero__visual {
    width: 100%;
    min-height: 355px;
  }

  .hero__image-frame {
    top: 45%;
    right: -25%;
    width: 142%;
  }

  .hero__red-shape {
    right: 6%;
    width: 58%;
  }

  .hero__ring {
    right: 6%;
    width: 58%;
  }

  .hero__badge {
    right: 0;
    bottom: 6px;
    min-width: 210px;
    padding: 11px 13px;
  }

  .hero__badge-icon {
    width: 36px;
    height: 36px;
  }

  .hero__badge strong {
    font-size: 15px;
  }

  .hero__badge small {
    font-size: 9px;
  }

  .hero__location {
    top: 8px;
    right: auto;
    left: 0;
  }

  .service-strip::before {
    width: 100%;
  }

  .service-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-strip__item {
    min-height: 100px;
    padding: 18px 15px;
    border-bottom: 1px solid var(--line);
  }

  .service-strip__item:first-child {
    border-left: 0;
  }

  .service-strip__item:nth-child(3) {
    grid-column: 1 / -1;
    align-items: center;
    min-height: 80px;
  }

  .service-strip__item strong {
    font-size: 20px;
  }

  .service-strip__item span {
    font-size: 9px;
  }

  .service-strip__cta {
    min-height: 83px;
    padding: 18px;
  }

  .service-strip__cta strong {
    font-size: 17px;
  }

  .service-strip__cta svg {
    position: static;
    transform: none;
  }

  .section {
    padding-block: 88px;
  }

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

  .section-heading > *,
  .about__content,
  .faq__intro,
  .contact__content {
    min-width: 0;
  }

  .section h2,
  .process h2,
  .contact h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(42px, 12vw, 60px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .about__content h2,
  .section-heading--reviews h2 {
    font-size: clamp(38px, 10.5vw, 52px);
  }

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

  .service-card {
    min-height: 0;
    padding: 30px 28px 35px;
  }

  .service-card__icon {
    margin-bottom: 34px;
  }

  .services__more {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 27px;
  }

  .services__more .text-link {
    justify-self: start;
  }

  .about__visual {
    min-height: 440px;
  }

  .about__accent {
    top: -18px;
    left: -10px;
  }

  .about__stamp {
    right: 0;
    width: 140px;
  }

  .about__stamp img {
    width: 67px;
  }

  .about__stamp span {
    font-size: 12px;
  }

  .about__points > div {
    grid-template-columns: 36px 1fr;
  }

  .about__points p {
    grid-column: 2;
  }

  .process {
    padding-block: 75px 80px;
  }

  .process__heading {
    display: block;
    margin-bottom: 40px;
  }

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

  .process__steps li,
  .process__steps li:first-child {
    min-height: 0;
    grid-template-columns: 65px 1fr;
    padding: 25px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.34);
    border-left: 0;
  }

  .process__steps li:last-child {
    border-bottom: 0;
  }

  .process__number {
    font-size: 40px;
  }

  .vehicles::before {
    inset: 54% 0 0;
  }

  .vehicles__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vehicles__logo {
    top: auto;
    bottom: 10px;
    font-size: 160px;
    transform: none;
  }

  .vehicles__card {
    background: rgba(7,7,7,.87);
  }

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

  .slider-controls {
    margin-top: 4px;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .testimonial {
    min-height: 380px;
    padding: 32px 26px;
  }

  .testimonial blockquote {
    font-size: 16px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 49px;
  }

  .faq__intro {
    position: static;
  }

  .faq summary {
    padding-block: 23px;
    font-size: 18px;
  }

  .faq details p {
    padding-right: 0;
  }

  .contact {
    padding-block: 85px;
  }

  .contact__red-block {
    display: none;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .contact__content,
  .contact-card {
    min-width: 0;
  }

  .contact h2 {
    font-size: clamp(38px, 10.4vw, 48px);
  }

  .contact h2 em {
    hyphens: manual;
  }

  .contact h2 em {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #090909;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
  }

  .contact-card {
    padding: 27px 22px;
  }

  .contact-card__hours {
    gap: 4px;
  }

  .contact-card__hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .text-link,
  .contact-card__item a,
  .site-footer__column a,
  .site-footer__bottom a {
    min-height: 44px;
  }

  .contact-card__item a,
  .site-footer__column a,
  .site-footer__bottom a {
    display: inline-flex;
    align-items: center;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 28px;
    padding-block: 65px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__column--cta {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
  }

  .site-footer__legal {
    flex-wrap: wrap;
  }

  .site-footer__legal small {
    flex-basis: 100%;
  }

  .mobile-actions {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #080808;
    border-top: 1px solid var(--line-strong);
    box-shadow: 0 -12px 32px rgba(0,0,0,.28);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .mobile-actions a + a {
    background: var(--red);
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
}

@media (max-width: 430px) {
  .brand__text {
    display: none;
  }

  .hero__inner {
    padding-top: 57px;
  }

  .hero h1 {
    font-size: clamp(49px, 15.6vw, 68px);
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__image-frame {
    right: -32%;
    width: 156%;
  }

  .hero__trust {
    display: grid;
  }

  .service-strip__item strong {
    font-size: 18px;
  }

  .service-strip__cta strong {
    font-size: 15px;
  }

  .about__visual {
    min-height: 380px;
  }

  .about__stamp {
    width: 122px;
  }

  .vehicles__card {
    grid-template-columns: 52px 1fr;
    padding: 20px;
  }

  .vehicles__card svg {
    width: 43px;
    height: 43px;
  }

  .contact__actions {
    display: grid;
  }

  .contact-card__item a {
    font-size: 15px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__column--cta {
    grid-column: auto;
  }
}

/* Vehicle offers page */
.vehicle-page {
  background: #070707;
}

.vehicle-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 42%, rgba(215,25,32,.2), transparent 30%),
    linear-gradient(135deg, #050505 0%, #0d0d0d 62%, #160507 100%);
}

.vehicle-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -230px;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,.018), 0 0 0 150px rgba(215,25,32,.025);
}

.vehicle-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 72%);
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.vehicle-hero__mark {
  position: absolute;
  right: -30px;
  bottom: -40px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(210px, 28vw, 430px);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.06em;
  -webkit-text-stroke: 1px rgba(255,255,255,.065);
}

.vehicle-hero__inner {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
  padding-block: 105px 120px;
}

.vehicle-hero__content,
.vehicle-hero__panel {
  min-width: 0;
}

.vehicle-hero h1 {
  max-width: 900px;
  margin: 0 0 30px;
  font-family: var(--font-heading);
  font-size: clamp(68px, 7.3vw, 112px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .83;
  text-transform: uppercase;
}

.vehicle-hero h1 em {
  color: var(--red-bright);
  font-style: normal;
}

.vehicle-hero__content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 38px;
  color: #c5c4bf;
  font-size: 18px;
}

.vehicle-hero__actions,
.vehicle-empty__actions,
.vehicle-contact-strip__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.vehicle-hero__panel {
  position: relative;
  display: grid;
  padding: 38px 36px;
  background: rgba(9,9,9,.78);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 75px rgba(0,0,0,.36);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.vehicle-hero__panel-number {
  margin-bottom: 6px;
  color: var(--red-bright);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
}

.vehicle-hero__panel strong {
  font-family: var(--font-heading);
  font-size: 23px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.vehicle-hero__panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.vehicle-hero__panel-line {
  height: 1px;
  margin: 28px 0;
  background: var(--line);
}

.vehicle-listing {
  color: #141414;
  background: #f2f1ed;
}

.vehicle-listing .section-heading > p,
.vehicle-listing .vehicle-empty > div > p:not(.eyebrow) {
  color: #5e5e5a;
}

.vehicle-listing h2 em {
  color: var(--red);
}

.vehicle-offers {
  margin-top: clamp(45px, 6vw, 82px);
}

.vehicle-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  overflow: hidden;
  color: #f7f7f4;
  background: #0b0b0c;
  box-shadow: 0 28px 70px rgba(0,0,0,.16);
}

.vehicle-card__visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 64%, rgba(215,25,32,.2), transparent 33%),
    linear-gradient(145deg, #252527 0%, #111113 52%, #050506 100%);
}

.vehicle-card__visual::before {
  content: "FAS";
  position: absolute;
  left: 5%;
  bottom: -3%;
  color: rgba(255,255,255,.035);
  font-family: var(--font-heading);
  font-size: clamp(150px, 19vw, 300px);
  line-height: .75;
}

.vehicle-card__demo,
.vehicle-card__count {
  position: absolute;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.vehicle-card__demo {
  top: 26px;
  left: 26px;
  padding: 10px 13px;
  color: #fff;
  background: var(--red);
}

.vehicle-card__count {
  right: 26px;
  bottom: 24px;
  color: rgba(255,255,255,.62);
}

.vehicle-card__illustration {
  position: relative;
  z-index: 1;
  width: 95%;
  height: auto;
  filter: drop-shadow(0 28px 24px rgba(0,0,0,.5));
  transform: translateY(3%);
}

.vehicle-card__ground {
  fill: none;
  stroke: rgba(255,255,255,.18);
  stroke-width: 2;
}

.vehicle-card__content {
  min-width: 0;
  padding: clamp(38px, 5vw, 68px);
}

.vehicle-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  color: #8e8e8b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vehicle-card__topline span:first-child {
  color: var(--red-bright);
}

.vehicle-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(44px, 4.8vw, 72px);
  letter-spacing: -.025em;
  line-height: .94;
  text-transform: uppercase;
}

.vehicle-card__variant {
  margin: 12px 0 36px;
  color: #aaa9a5;
  font-size: 14px;
}

.vehicle-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.vehicle-card__specs div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.vehicle-card__specs div:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.vehicle-card__specs div:nth-child(even) {
  padding-left: 18px;
}

.vehicle-card__specs dt {
  margin-bottom: 5px;
  color: #777774;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vehicle-card__specs dd {
  margin: 0;
  color: #f4f3ef;
  font-size: 14px;
  font-weight: 700;
}

.vehicle-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}

.vehicle-card__price small {
  display: block;
  margin-bottom: 4px;
  color: #777774;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vehicle-card__price strong {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
}

.vehicle-card__actions {
  display: flex;
  gap: 9px;
}

.button--dark-outline {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: transparent;
}

.button--dark-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.vehicle-offers__note {
  max-width: 760px;
  margin: 22px 0 0;
  color: #666661;
  font-size: 13px;
}

.vehicle-empty {
  min-height: 390px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 85px);
  padding: clamp(42px, 7vw, 86px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215,25,32,.11), transparent 45%),
    #0b0b0b;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}

.vehicle-empty__icon {
  width: 160px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(215,25,32,.055);
}

.vehicle-empty__icon svg {
  width: 88px;
  fill: none;
  stroke: var(--red-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.vehicle-empty h3 {
  max-width: 760px;
  margin: 0 0 17px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -.025em;
  line-height: .96;
  text-transform: uppercase;
  hyphens: manual;
}

.vehicle-empty > div > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 0 30px;
}

.vehicle-benefits {
  position: relative;
  padding-block: 115px 125px;
  overflow: hidden;
  background: #090909;
}

.vehicle-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(215,25,32,.15), transparent 31%);
  pointer-events: none;
}

.vehicle-benefits .container {
  position: relative;
  z-index: 1;
}

.vehicle-benefits h2 {
  margin: 0 0 60px;
  font-family: var(--font-heading);
  font-size: clamp(54px, 6vw, 86px);
  letter-spacing: -.035em;
  line-height: .88;
  text-transform: uppercase;
}

.vehicle-benefits h2 em {
  color: var(--red-bright);
  font-style: normal;
}

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

.vehicle-benefits article {
  min-height: 240px;
  padding: 36px 38px;
  border-right: 1px solid var(--line);
}

.vehicle-benefits article:last-child {
  border-right: 0;
}

.vehicle-benefits article > span {
  color: var(--red-bright);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
}

.vehicle-benefits h3 {
  margin: 24px 0 9px;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.vehicle-benefits article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.vehicle-contact-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--red);
}

.vehicle-contact-strip::after {
  content: "FAS";
  position: absolute;
  right: -15px;
  bottom: -50px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: 230px;
  font-weight: 900;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255,255,255,.16);
}

.vehicle-contact-strip__inner {
  position: relative;
  z-index: 1;
  min-height: 310px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.vehicle-contact-strip h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(44px, 5vw, 70px);
  letter-spacing: -.02em;
  line-height: .95;
  text-transform: uppercase;
}

.vehicle-contact-strip .text-link {
  color: #fff;
}

/* Legal notice and privacy policy */
.legal-page {
  background: #f3f1ec;
}

.legal-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 25%, rgba(215, 25, 32, .22), transparent 28%),
    linear-gradient(120deg, #050505 0%, #101010 58%, #080808 100%);
}

.legal-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.legal-hero__mark {
  position: absolute;
  right: -25px;
  bottom: -62px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(190px, 25vw, 390px);
  font-weight: 900;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255,255,255,.11);
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 440px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-block: 75px;
}

.legal-hero h1 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(68px, 10vw, 132px);
  letter-spacing: -.045em;
  line-height: .82;
  text-transform: uppercase;
}

.legal-hero h1 span {
  color: var(--red-bright);
}

.privacy-page .legal-hero h1 {
  font-size: clamp(50px, 8vw, 104px);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-hero__inner > p:last-child {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted-light);
  font-size: 17px;
}

.legal-content {
  color: var(--ink);
  background: #f3f1ec;
}

.legal-content__layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.legal-content__aside {
  position: sticky;
  top: 135px;
}

.legal-content__aside h2 {
  margin: 22px 0 38px;
  font-family: var(--font-heading);
  font-size: clamp(45px, 5vw, 68px);
  letter-spacing: -.03em;
  line-height: .92;
  text-transform: uppercase;
}

.legal-content__aside h2 em {
  color: var(--red);
  font-style: normal;
}

.legal-content__aside .text-link {
  color: var(--ink);
}

.legal-card {
  border-top: 4px solid var(--red);
  background: #fff;
  box-shadow: 0 24px 70px rgba(20, 20, 20, .09);
}

.legal-card__section {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 45px 52px;
  border-bottom: 1px solid #dddcd7;
}

.legal-card__section:last-child {
  border-bottom: 0;
}

.legal-card__number {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.legal-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 30px;
  letter-spacing: -.01em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-card p,
.legal-card address {
  margin: 0 0 16px;
  color: #4d4d49;
  font-style: normal;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card strong {
  color: var(--ink);
}

.legal-details {
  margin: 0;
}

.legal-details > div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid #ecebe7;
}

.legal-details > div:last-child {
  border-bottom: 0;
}

.legal-details dt {
  color: #777772;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-details dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.legal-details a {
  text-decoration: underline;
  text-decoration-color: rgba(215, 25, 32, .35);
  text-underline-offset: 4px;
}

.legal-details a:hover,
.legal-details a:focus-visible {
  color: var(--red);
}

.legal-card .legal-card__value {
  margin: 22px 0 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .vehicle-hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 90px;
  }

  .vehicle-hero__panel {
    grid-template-columns: 46px 1fr;
    gap: 0 18px;
  }

  .vehicle-hero__panel-number,
  .vehicle-hero__panel strong,
  .vehicle-hero__panel p {
    grid-column: auto;
  }

  .vehicle-hero__panel p {
    grid-column: 2;
  }

  .vehicle-hero__panel-line {
    grid-column: 1 / -1;
    width: 100%;
  }

  .vehicle-benefits article {
    padding-inline: 25px;
  }

  .vehicle-contact-strip__inner {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 70px;
  }

  .legal-content__layout {
    grid-template-columns: 1fr;
  }

  .legal-content__aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .vehicle-hero {
    min-height: auto;
  }

  .vehicle-hero__inner {
    gap: 40px;
    padding-block: 72px 80px;
  }

  .vehicle-hero h1 {
    font-size: clamp(48px, 12.8vw, 64px);
  }

  .vehicle-hero__content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .vehicle-hero__panel {
    padding: 28px 24px;
  }

  .vehicle-empty {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 27px 48px;
  }

  .vehicle-empty__icon {
    width: 112px;
  }

  .vehicle-empty__icon svg {
    width: 62px;
  }

  .vehicle-empty h3 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .vehicle-card {
    grid-template-columns: 1fr;
  }

  .vehicle-card__visual {
    min-height: 310px;
  }

  .vehicle-card__content {
    padding: 34px 24px 38px;
  }

  .vehicle-card__topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
  }

  .vehicle-card h3 {
    font-size: clamp(42px, 13vw, 58px);
    overflow-wrap: anywhere;
  }

  .vehicle-card__specs {
    grid-template-columns: 1fr;
  }

  .vehicle-card__specs div:nth-child(odd),
  .vehicle-card__specs div:nth-child(even) {
    padding: 15px 0;
    border-right: 0;
  }

  .vehicle-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .vehicle-card__actions {
    flex-direction: column;
  }

  .vehicle-card__actions .button {
    width: 100%;
  }

  .vehicle-benefits {
    padding-block: 85px;
  }

  .vehicle-benefits h2 {
    margin-bottom: 40px;
    font-size: clamp(46px, 13vw, 62px);
  }

  .vehicle-benefits__grid {
    grid-template-columns: 1fr;
  }

  .vehicle-benefits article {
    min-height: 0;
    padding: 30px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vehicle-benefits article:last-child {
    border-bottom: 0;
  }

  .vehicle-contact-strip__actions,
  .vehicle-empty__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vehicle-contact-strip__actions .button,
  .vehicle-empty__actions .button {
    width: 100%;
  }

  .legal-hero,
  .legal-hero__inner {
    min-height: 355px;
  }

  .legal-hero__inner {
    padding-block: 62px;
  }

  .legal-hero h1 {
    font-size: clamp(62px, 19vw, 86px);
  }

  .legal-content__layout {
    gap: 46px;
  }

  .legal-card__section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 34px 26px 38px;
  }

  .legal-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-motion {
    display: none !important;
  }

  .about::before,
  .about::after,
  .contact::before,
  .contact::after,
  .contact__red-block::before,
  .contact__red-block::after {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Interactive vehicle-component explorer */
@media (min-width: 981px) {
  .site-header__inner {
    gap: 24px;
  }

  .primary-nav {
    gap: clamp(12px, 1.25vw, 21px);
  }

  .primary-nav a {
    font-size: 12px;
  }

  .button--header {
    min-width: 142px;
  }
}

.explorer-page {
  background: #060607;
}

.explorer-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 46%, rgba(215,25,32,.2), transparent 32%),
    linear-gradient(125deg, #050506 0%, #0a0a0b 58%, #140406 100%);
}

.explorer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,6,.98) 0%, rgba(5,5,6,.6) 48%, transparent 78%);
}

.explorer-hero__grid {
  position: absolute;
  inset: -70px;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.28) 72%, transparent);
}

.explorer-hero__scan {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 2px;
  opacity: .78;
  background: linear-gradient(transparent, rgba(242,38,46,.95), transparent);
  box-shadow: 0 0 34px 7px rgba(215,25,32,.26);
  animation: explorer-scan 7s ease-in-out infinite alternate;
}

.explorer-hero__mark {
  position: absolute;
  right: -22px;
  bottom: -54px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(210px, 27vw, 420px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255,255,255,.075);
}

.explorer-hero__inner {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
  padding-block: 105px 118px;
}

.explorer-hero__content,
.explorer-hero__visual {
  min-width: 0;
}

.explorer-hero h1 {
  margin: 12px 0 30px;
  font-family: var(--font-heading);
  font-size: clamp(76px, 8vw, 124px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .8;
  text-transform: uppercase;
}

.explorer-hero h1 em {
  color: var(--red-bright);
  font-style: normal;
}

.explorer-hero__content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 38px;
  color: #c3c2bd;
  font-size: 18px;
}

.explorer-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.explorer-hero__actions > span {
  color: #8e8e8a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.explorer-hero__actions > span strong {
  margin-right: 7px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 23px;
}

.explorer-hero__visual {
  position: relative;
}

.explorer-hero__visual svg {
  width: 112%;
  height: auto;
  overflow: visible;
  transform: translateX(-4%);
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.52));
}

.explorer-hero__rings ellipse {
  fill: none;
  stroke: rgba(255,255,255,.1);
  stroke-width: 1;
  stroke-dasharray: 8 14;
  transform-origin: 350px 228px;
  animation: explorer-ring 18s linear infinite;
}

.explorer-hero__rings ellipse:nth-child(2) {
  stroke: rgba(215,25,32,.26);
  animation-direction: reverse;
  animation-duration: 14s;
}

.explorer-hero__rings ellipse:nth-child(3) {
  animation-duration: 11s;
}

.explorer-hero__car {
  fill: rgba(8,8,9,.56);
  stroke: rgba(247,247,243,.66);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.explorer-hero__car path:nth-child(2),
.explorer-hero__car path:nth-child(5) {
  fill: none;
  stroke: rgba(242,38,46,.7);
}

.explorer-hero__nodes circle {
  fill: var(--red-bright);
  filter: drop-shadow(0 0 8px rgba(242,38,46,.8));
  animation: explorer-node-pulse 2.4s ease-in-out infinite;
}

.explorer-hero__nodes circle:nth-child(2n) { animation-delay: -.8s; }
.explorer-hero__nodes circle:nth-child(3n) { animation-delay: -1.5s; }

@keyframes explorer-scan {
  0% { transform: translateX(-12vw); opacity: .12; }
  45% { opacity: .78; }
  100% { transform: translateX(45vw); opacity: .08; }
}

@keyframes explorer-ring {
  to { stroke-dashoffset: 190; }
}

@keyframes explorer-node-pulse {
  0%, 100% { opacity: .38; transform: scale(.72); }
  50% { opacity: 1; transform: scale(1); }
}

.component-lab {
  position: relative;
  padding-block: 115px 125px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 24%, rgba(215,25,32,.12), transparent 27%),
    #080809;
}

.component-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 83%);
  pointer-events: none;
}

.component-lab > .container {
  position: relative;
  z-index: 1;
}

.component-lab__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .55fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.component-lab__heading h2,
.component-guide h2 {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(58px, 6.7vw, 96px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .84;
  text-transform: uppercase;
}

.component-lab__heading h2 em,
.component-guide h2 em {
  color: var(--red-bright);
  font-style: normal;
}

.component-lab__heading > p {
  margin: 0 0 4px;
  color: #aaa9a4;
}

.component-tools {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(360px, .76fr) minmax(0, 1.24fr);
  align-items: end;
  gap: 24px 34px;
  margin-top: 65px;
}

.component-search {
  position: relative;
}

.component-search > label {
  display: block;
  margin-bottom: 9px;
  color: #949490;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.component-search__field {
  min-height: 60px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding-left: 20px;
  background: #111113;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}

.component-search__field:focus-within {
  border-color: rgba(242,38,46,.72);
  box-shadow: 0 0 0 3px rgba(215,25,32,.08), 0 18px 45px rgba(0,0,0,.28);
}

.component-search__field svg {
  width: 21px;
  fill: none;
  stroke: var(--red-bright);
  stroke-width: 1.7;
}

.component-search__field input {
  min-width: 0;
  height: 58px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}

.component-search__field input::placeholder {
  color: #696965;
}

.component-search__field button {
  align-self: stretch;
  padding-inline: 22px;
  color: #fff;
  background: var(--red);
  border: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.component-search__results {
  position: absolute;
  z-index: 30;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  overflow: hidden;
  background: #111113;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 60px rgba(0,0,0,.52);
}

.component-search__results[hidden] {
  display: none;
}

.component-search__results > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  color: #f5f5f2;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  cursor: pointer;
}

.component-search__results > button:hover,
.component-search__results > button:focus-visible {
  background: rgba(215,25,32,.14);
}

.component-search__results > button span {
  font-weight: 800;
}

.component-search__results > button small {
  color: #8d8d89;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.component-search__results > p {
  margin: 0;
  padding: 18px;
  color: #aaa9a5;
  font-size: 13px;
}

.component-view-switcher,
.component-subsystems {
  min-width: 0;
}

.component-view-switcher > span,
.component-subsystems > span {
  display: block;
  margin-bottom: 9px;
  color: #949490;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.component-view-switcher > div,
.component-subsystems > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.component-view-switcher > div {
  justify-content: flex-end;
}

.component-subsystems {
  grid-column: 1 / -1;
  padding: 18px 20px 20px;
  background: linear-gradient(105deg, rgba(215,25,32,.085), rgba(255,255,255,.018) 36%, rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.12);
}

.component-subsystems > div {
  justify-content: flex-start;
}

.component-view-switcher button,
.component-subsystems button {
  min-height: 42px;
  padding: 9px 15px;
  color: #969691;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.13);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.component-subsystems button {
  min-height: 38px;
  padding: 8px 13px;
  background: rgba(0,0,0,.22);
}

.component-subsystems button small {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 6px;
  place-items: center;
  color: #c9c9c5;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  font-size: 9px;
}

.component-view-switcher button:hover,
.component-view-switcher button:focus-visible,
.component-subsystems button:hover,
.component-subsystems button:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.32);
  transform: translateY(-2px);
}

.component-view-switcher button.is-active,
.component-subsystems button.is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 28px rgba(215,25,32,.2);
}

.component-subsystems button.is-active small {
  color: #fff;
  background: rgba(0,0,0,.22);
}

.component-explorer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .65fr);
  margin-top: 26px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 32px 90px rgba(0,0,0,.35);
}

.component-viewer {
  min-width: 0;
  background: rgba(5,5,6,.86);
  border-right: 1px solid rgba(255,255,255,.14);
}

.component-viewer__status {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: #777773;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.component-viewer__status span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.component-viewer__status i {
  width: 7px;
  height: 7px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(215,25,32,.1), 0 0 14px rgba(242,38,46,.65);
}

.component-viewer__status strong {
  color: #d8d7d2;
}

.component-viewer__stage {
  position: relative;
  height: clamp(540px, 49vw, 680px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
    radial-gradient(circle at 50% 54%, rgba(215,25,32,.08), transparent 38%);
  background-size: 58px 58px, 58px 58px, auto;
  outline: 0;
}

.component-viewer__stage:focus-visible {
  box-shadow: inset 0 0 0 2px var(--red-bright);
}

.component-viewer__stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.component-viewer__stage.is-dragging canvas {
  cursor: grabbing;
}

.component-hotspots {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.component-hotspot {
  --hotspot-depth: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: var(--hotspot-depth);
  color: #fff;
  background: transparent;
  border: 0;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity .25s ease, visibility .25s;
}

.component-hotspot.is-filtered-out {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.component-hotspot::before,
.component-hotspot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(242,38,46,.72);
  border-radius: 50%;
}

.component-hotspot::after {
  inset: -5px;
  opacity: .35;
  animation: component-hotspot-pulse 2s ease-out infinite;
}

.component-hotspot i {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,255,255,.8);
}

.component-hotspot > span {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  min-width: max-content;
  padding: 7px 9px;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  background: rgba(8,8,9,.94);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translate(-50%, 6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  pointer-events: none;
}

.component-hotspot:hover > span,
.component-hotspot:focus-visible > span,
.component-hotspot.is-selected > span {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.component-hotspot.is-selected::before {
  background: var(--red-bright);
  border-color: #fff;
  box-shadow: 0 0 0 7px rgba(215,25,32,.16), 0 0 24px rgba(242,38,46,.72);
}

.component-hotspot.is-selected i {
  position: relative;
  z-index: 1;
}

@keyframes component-hotspot-pulse {
  0% { opacity: .6; transform: scale(.72); }
  85%, 100% { opacity: 0; transform: scale(1.65); }
}

.component-viewer__hint {
  position: absolute;
  z-index: 5;
  bottom: 19px;
  left: 21px;
  margin: 0;
  color: #858581;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  pointer-events: none;
}

.component-viewer__hint span {
  margin-right: 7px;
  color: var(--red-bright);
  font-size: 16px;
}

.component-viewer__axis {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 21px;
  width: 50px;
  height: 50px;
  color: #777;
  font-size: 8px;
  font-weight: 900;
  pointer-events: none;
}

.component-viewer__axis::before,
.component-viewer__axis::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(255,255,255,.25);
}

.component-viewer__axis::before { width: 28px; height: 1px; }
.component-viewer__axis::after { width: 1px; height: 28px; }
.component-viewer__axis span:first-child { position: absolute; top: 0; right: 7px; }
.component-viewer__axis span:last-child { position: absolute; right: 0; bottom: 5px; }

.component-viewer__controls {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.component-viewer__controls button {
  min-height: 38px;
  padding: 8px 13px;
  color: #9e9e99;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.component-viewer__controls button:hover,
.component-viewer__controls button:focus-visible {
  color: #fff;
  border-color: rgba(242,38,46,.65);
}

.component-viewer__controls > span {
  flex: 1;
}

.component-viewer__controls [data-zoom] {
  width: 38px;
  padding: 0;
  font-size: 20px;
}

.component-panel {
  position: relative;
  min-width: 0;
  padding: clamp(34px, 4vw, 55px) clamp(28px, 3.6vw, 48px);
  background:
    linear-gradient(145deg, rgba(215,25,32,.11), transparent 37%),
    #111112;
}

.component-panel::after {
  content: "FAS";
  position: absolute;
  right: -13px;
  bottom: -28px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: 135px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.045);
  pointer-events: none;
}

.component-panel > * {
  position: relative;
  z-index: 1;
}

.component-panel__index {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #555552;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}

.component-panel__category {
  margin: 0 0 17px;
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.component-panel h3 {
  max-width: 100%;
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(39px, 3.7vw, 52px);
  letter-spacing: -.035em;
  line-height: .92;
  text-transform: uppercase;
  overflow-wrap: break-word;
  hyphens: auto;
}

.component-panel h3.component-panel__title--long {
  font-size: clamp(34px, 3.15vw, 45px);
}

.component-panel h3.component-panel__title--compact {
  font-size: clamp(29px, 2.65vw, 38px);
  line-height: .98;
}

.component-panel__lead {
  margin: 0 0 30px;
  color: #c7c6c1;
  font-size: 15px;
}

.component-panel dl {
  margin: 0 0 28px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.component-panel dl > div {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.component-panel dt {
  margin-bottom: 6px;
  color: #777773;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.component-panel dd {
  margin: 0;
  color: #aaa9a5;
  font-size: 13px;
  line-height: 1.6;
}

.component-panel__note {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 12px;
  margin: 0 0 28px;
  padding: 15px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
}

.component-panel__note span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.component-panel__note p {
  margin: 0;
  color: #858581;
  font-size: 11px;
  line-height: 1.55;
}

.component-panel .text-link {
  color: #fff;
}

.component-lab__disclaimer {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 34px;
  margin-top: 22px;
  padding: 22px 25px;
  background: rgba(255,255,255,.025);
  border-left: 3px solid var(--red);
}

.component-lab__disclaimer strong {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.component-lab__disclaimer p {
  margin: 0;
  color: #898985;
  font-size: 13px;
}

.component-guide {
  position: relative;
  padding-block: 105px 120px;
  color: #111;
  background: #f1f0eb;
}

.component-guide h2 {
  max-width: 950px;
}

.component-guide h2 em {
  color: var(--red);
}

.component-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid #c8c7c2;
  border-bottom: 1px solid #c8c7c2;
}

.component-guide article {
  min-height: 260px;
  padding: 36px 38px;
  border-right: 1px solid #d2d1cc;
}

.component-guide article:last-child {
  border-right: 0;
}

.component-guide article > span {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 33px;
  font-weight: 900;
}

.component-guide h3 {
  margin: 25px 0 10px;
  font-family: var(--font-heading);
  font-size: 25px;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.component-guide article p {
  margin: 0;
  color: #666661;
  font-size: 14px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .brand__text {
    display: none;
  }

  .brand {
    min-width: 72px;
  }

  .primary-nav {
    gap: 16px;
  }

  .button--header {
    min-width: 128px;
  }

  .component-explorer {
    grid-template-columns: minmax(0, 1.4fr) minmax(310px, .7fr);
  }
}

@media (max-width: 980px) {
  .explorer-hero {
    min-height: auto;
  }

  .explorer-hero__inner {
    grid-template-columns: 1fr;
    padding-block: 85px 90px;
  }

  .explorer-hero__content {
    max-width: 720px;
  }

  .explorer-hero__visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .component-lab__heading,
  .component-tools {
    grid-template-columns: 1fr;
  }

  .component-tools {
    margin-top: 50px;
  }

  .component-view-switcher > div {
    justify-content: flex-start;
  }

  .component-explorer {
    grid-template-columns: 1fr;
  }

  .component-viewer {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .component-viewer__stage {
    height: min(70vw, 650px);
    min-height: 510px;
  }
}

@media (max-width: 760px) {
  .explorer-hero::before {
    background: linear-gradient(rgba(5,5,6,.68), rgba(5,5,6,.96));
  }

  .explorer-hero__scan,
  .explorer-hero__mark {
    display: none;
  }

  .explorer-hero__inner {
    gap: 45px;
    padding-block: 72px 78px;
  }

  .explorer-hero h1 {
    font-size: clamp(48px, 13vw, 64px);
  }

  .explorer-hero__content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .explorer-hero__visual svg {
    width: 128%;
    transform: translateX(-13%);
  }

  .component-lab {
    padding-block: 80px 86px;
  }

  .component-lab__heading {
    gap: 28px;
  }

  .component-lab__heading h2,
  .component-guide h2 {
    font-size: clamp(44px, 12.7vw, 60px);
  }

  .component-tools {
    margin-top: 38px;
  }

  .component-search__field {
    grid-template-columns: 21px minmax(0, 1fr);
    padding-inline: 16px;
  }

  .component-search__field button {
    grid-column: 1 / -1;
    min-height: 46px;
    margin-inline: -16px;
  }

  .component-view-switcher > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .component-view-switcher button {
    width: 100%;
  }

  .component-subsystems {
    padding: 16px;
  }

  .component-subsystems > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .component-subsystems button {
    width: 100%;
    padding-inline: 9px;
  }

  .component-viewer__stage {
    height: 500px;
    min-height: 0;
  }

  .component-viewer__hint {
    right: 17px;
    bottom: 15px;
    left: 17px;
    text-align: center;
  }

  .component-viewer__axis {
    display: none;
  }

  .component-viewer__controls {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .component-viewer__controls > span {
    display: none;
  }

  .component-viewer__controls button {
    min-width: 0;
    padding-inline: 6px;
  }

  .component-viewer__controls [data-view="reset"] {
    grid-column: span 2;
  }

  .component-hotspot > span {
    max-width: 130px;
    min-width: 0;
    white-space: nowrap;
  }

  .component-panel {
    scroll-margin-top: 76px;
  }

  .component-panel h3 {
    padding-right: 42px;
    font-size: clamp(39px, 11.7vw, 50px);
  }

  .component-panel h3.component-panel__title--long {
    font-size: clamp(32px, 9.7vw, 42px);
  }

  .component-panel h3.component-panel__title--compact {
    font-size: clamp(27px, 8.3vw, 35px);
  }

  .component-lab__disclaimer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .component-guide {
    padding-block: 80px 88px;
  }

  .component-guide__grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .component-guide article {
    min-height: 0;
    padding: 30px 8px;
    border-right: 0;
    border-bottom: 1px solid #d2d1cc;
  }

  .component-guide article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 430px) {
  .component-viewer__stage {
    height: 440px;
  }

  .component-viewer__status {
    padding-inline: 15px;
  }

  .component-viewer__status span {
    font-size: 8px;
  }

  .component-panel {
    padding: 36px 22px 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .explorer-hero__scan,
  .explorer-hero__rings ellipse,
  .explorer-hero__nodes circle,
  .component-hotspot::after {
    animation: none !important;
  }
}
