:root {
  color-scheme: light;
  --ink: #111315;
  --ink-soft: #555b60;
  --paper: #f5f4f0;
  --paper-deep: #e9e7e1;
  --white: #fff;
  --line: rgba(17, 19, 21, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --night: #080b0e;
  --night-soft: #12171b;
  --accent: #e32036;
  --accent-blue: #165db7;
  --success: #43a46e;
  --display: "Barlow Condensed", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --page: min(1440px, calc(100vw - 64px));
  --header-height: 78px;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(9, 12, 14, 0.12);
}

/* Clear site architecture: focused navigation, seven core routes, and newsroom */
.site-header .desktop-nav {
  gap: clamp(13px, 1.45vw, 24px);
}

.site-header .desktop-nav a {
  font-size: 11.5px;
  white-space: nowrap;
}

.site-pathways {
  padding: 86px 0 94px;
  color: var(--ink);
  background: var(--white);
}

.site-pathways-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.site-pathways-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.site-pathways-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.site-pathways-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.site-pathways-grid a {
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  align-items: start;
  gap: 16px;
  min-height: 154px;
  padding: 28px 24px;
  color: var(--ink);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-pathways-grid a:hover {
  color: var(--white);
  background: var(--night);
  transform: translateY(-2px);
}

.site-pathways-grid a > svg:first-child {
  width: 25px;
  height: 25px;
  color: var(--accent);
}

.site-pathways-grid a > svg:last-child {
  width: 17px;
  height: 17px;
  opacity: 0.55;
}

.site-pathways-grid span {
  display: grid;
  gap: 9px;
}

.site-pathways-grid strong {
  font-size: 15px;
}

.site-pathways-grid small {
  color: var(--ink-soft);
  font-size: 10.5px;
  line-height: 1.55;
}

.site-pathways-grid a:hover small {
  color: rgba(255, 255, 255, 0.66);
}

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

.dealer-route-grid article {
  position: relative;
  min-height: 320px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dealer-route-grid article > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 54px;
  color: var(--accent);
}

.dealer-route-grid article > span {
  position: absolute;
  top: 34px;
  right: 30px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-weight: 700;
}

.dealer-route-grid h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.dealer-route-grid p {
  min-height: 78px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.news-hero {
  padding: 72px 0;
  color: var(--white);
  background: var(--night);
}

.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 54px;
}

.news-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 36px;
}

.news-hero-copy h1 {
  max-width: 620px;
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.news-hero-copy p {
  max-width: 540px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.news-feature {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: #15191c;
}

.news-feature::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(4, 6, 8, 0.94));
}

.news-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-feature:hover img {
  transform: scale(1.025);
}

.news-feature > span {
  position: absolute;
  z-index: 1;
  inset: auto 34px 34px;
  display: grid;
  gap: 13px;
}

.news-feature small,
.news-card-grid small {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-feature strong {
  max-width: 680px;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
}

.news-feature em,
.news-card-grid em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.news-feature em svg,
.news-card-grid em svg {
  width: 15px;
  height: 15px;
}

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

.news-card-grid > a {
  display: grid;
  grid-template-rows: 260px 1fr;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card-grid > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.news-card-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-grid > a > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.news-card-grid strong {
  margin: 13px 0;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.02;
  text-transform: uppercase;
}

.news-card-grid p {
  flex: 1;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 11.5px;
  line-height: 1.65;
}

.news-articles .shell {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.news-articles article {
  padding: 58px clamp(28px, 6vw, 88px);
  background: var(--white);
  scroll-margin-top: 110px;
}

.news-articles h2 {
  max-width: 900px;
  margin: 12px 0 18px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  text-transform: uppercase;
}

.news-articles p {
  max-width: 960px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.news-articles article > div {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .site-header .desktop-nav {
    display: none;
  }

  .site-header .menu-button {
    display: inline-grid;
  }

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

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

@media (max-width: 760px) {
  .site-pathways {
    padding: 60px 0 68px;
  }

  .site-pathways-heading,
  .news-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-pathways-grid,
  .dealer-route-grid,
  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .site-pathways-grid a {
    min-height: 124px;
  }

  .dealer-route-grid article {
    min-height: 0;
  }

  .dealer-route-grid p {
    min-height: 0;
  }

  .news-hero {
    padding: 44px 0;
  }

  .news-feature {
    min-height: 440px;
  }

  .news-card-grid > a {
    grid-template-rows: 230px 1fr;
  }
}

/* Corporate homepage: manufacturer proof, real operations, and partner value */
.corporate-proof-strip {
  color: var(--white);
  background: #0d1114;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.corporate-proof-strip .shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.corporate-proof-strip a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 118px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease;
}

.corporate-proof-strip a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.corporate-proof-strip a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.corporate-proof-strip svg {
  width: 27px;
  height: 27px;
  color: var(--accent);
}

.corporate-proof-strip span {
  display: grid;
  gap: 6px;
}

.corporate-proof-strip strong {
  font-size: 13px;
  line-height: 1.25;
}

.corporate-proof-strip small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.5;
}

.corporate-proof-strip + .vehicle-finder {
  margin-top: 0;
}

.company-story-section {
  padding-block: 96px;
  background: #eef0ef;
}

.company-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  align-items: stretch;
  min-height: 690px;
  background: var(--white);
  border: 1px solid var(--line);
}

.company-story-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #cfd5d2;
}

.company-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-story-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 10, 0.78));
  pointer-events: none;
}

.company-story-media figcaption {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: grid;
  gap: 7px;
  max-width: 500px;
  color: var(--white);
}

.company-story-media figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-story-media figcaption strong {
  font-size: 18px;
  line-height: 1.35;
}

.company-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(34px, 4vw, 68px);
}

.company-story-copy h2 {
  margin: 15px 0 22px;
  font-size: clamp(34px, 3.4vw, 53px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.company-story-copy > p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.company-capability-list {
  display: grid;
  margin: 18px 0 28px;
  border-top: 1px solid var(--line);
}

.company-capability-list > div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.company-capability-list dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-capability-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.company-story-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.industry-section {
  color: var(--white);
  background: #0a0e11;
}

.industry-section .company-section-heading > p,
.why-ant-section .company-section-heading > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.65;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.industry-grid article {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 180ms ease, transform 180ms ease;
}

.industry-grid article:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.industry-grid svg {
  width: 27px;
  height: 27px;
  margin-bottom: 35px;
  color: var(--accent);
}

.industry-grid strong {
  font-size: 14px;
}

.industry-grid span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.why-ant-section {
  background: #101417;
  color: var(--white);
}

.why-ant-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.why-ant-grid article {
  position: relative;
  min-height: 245px;
  padding: 31px 28px;
  background: #12181c;
}

.why-ant-grid article > span {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.why-ant-grid svg {
  width: 29px;
  height: 29px;
  margin-bottom: 42px;
  color: var(--accent);
}

.why-ant-grid h3 {
  margin: 0 0 11px;
  font-size: 15px;
}

.why-ant-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .corporate-proof-strip .shell,
  .why-ant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate-proof-strip a:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .corporate-proof-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .company-story-media {
    min-height: 560px;
  }

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

@media (max-width: 700px) {
  .corporate-proof-strip .shell,
  .industry-grid,
  .why-ant-grid {
    grid-template-columns: 1fr;
  }

  .corporate-proof-strip a {
    min-height: 104px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .company-story-section {
    padding-block: 56px;
  }

  .company-story-media {
    min-height: 360px;
  }

  .company-story-media figcaption {
    left: 22px;
    right: 22px;
    bottom: 20px;
  }

  .company-story-copy {
    padding: 38px 24px 44px;
  }

  .company-capability-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(22, 93, 183, 0.65);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 max(24px, calc((100vw - min(1440px, calc(100vw - 64px))) / 2));
  color: var(--white);
  background: rgba(8, 11, 14, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--accent);
}

.brand-word {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-word strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.brand-word small {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.68;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.desktop-nav a,
.header-link {
  position: relative;
  padding: 29px 0 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.header-link:hover {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.button,
.icon-button,
.menu-button,
.search-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-red {
  background: var(--accent);
  color: var(--white);
}

.button-outline {
  border: 1px solid currentColor;
  background: transparent;
}

.search-open,
.menu-button {
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.search-open svg,
.menu-button svg,
.button svg,
.icon-button svg {
  width: 17px;
  height: 17px;
}

.menu-button {
  display: none;
}

.mobile-nav {
  display: none;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: start center;
  padding-top: 12vh;
}

.site-search[hidden] {
  display: none;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 7, 9, 0.74);
  backdrop-filter: blur(10px);
}

.search-panel {
  position: relative;
  width: min(720px, calc(100vw - 32px));
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.search-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.search-heading span,
.eyebrow,
.section-kicker,
.card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.search-heading h2 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 42px;
  line-height: 0.95;
  text-transform: uppercase;
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.search-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.search-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  font-size: 17px;
  background: transparent;
}

.search-field kbd {
  padding: 4px 7px;
  font-size: 10px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.search-results {
  display: grid;
  gap: 8px;
  max-height: 42vh;
  margin-top: 18px;
  overflow: auto;
}

.search-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 14px;
  border-radius: 12px;
}

.search-result:hover,
.search-result:focus-visible {
  background: var(--paper);
}

.search-result span:first-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.search-result strong,
.search-result small {
  display: block;
}

.search-result small,
.search-empty {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.page-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 820px);
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.page-hero-media,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  background: linear-gradient(90deg, rgba(7, 10, 12, 0.92) 0%, rgba(7, 10, 12, 0.55) 48%, rgba(7, 10, 12, 0.08) 100%), linear-gradient(0deg, rgba(7, 10, 12, 0.5), transparent 55%);
}

.page-hero.is-centered::after {
  background: linear-gradient(0deg, rgba(7, 10, 12, 0.82), rgba(7, 10, 12, 0.25) 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding-block: 80px;
}

.page-hero.is-centered .page-hero-content {
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.page-hero h1,
.section-heading h2,
.split-copy h2,
.model-copy h1,
.legal-layout h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(64px, 9.5vw, 150px);
  line-height: 0.78;
}

.page-hero.is-centered h1 {
  max-width: 1100px;
}

.page-hero-lede {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.page-hero-meta span {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-hero-meta strong {
  color: var(--white);
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
}

.section {
  padding-block: clamp(80px, 10vw, 150px);
}

.section-dark {
  color: var(--white);
  background: var(--night);
}

.section-soft {
  background: var(--paper-deep);
}

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

.section-heading h2,
.split-copy h2,
.legal-layout h1 {
  max-width: 940px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.84;
}

.section-kicker,
.card-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
}

.section-heading p,
.split-copy > p,
.intro-copy,
.legal-layout p,
.legal-layout li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.section-dark .section-heading p,
.section-dark .intro-copy {
  color: rgba(255, 255, 255, 0.62);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.model-card {
  position: relative;
  grid-column: span 4;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--night-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.model-card-image,
.model-card-image::after {
  position: absolute;
  inset: 0;
}

.model-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .65, .2, 1);
}

.model-card-image::after {
  content: "";
  background: linear-gradient(0deg, rgba(7, 9, 11, 0.96), rgba(7, 9, 11, 0.02) 70%);
}

.model-card:hover .model-card-image img {
  transform: scale(1.035);
}

.model-card-copy {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  padding: 30px;
}

.model-card h3 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.model-card p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.model-card .icon-button {
  color: var(--white);
  border-color: var(--line-dark);
}

.compare-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.compare-strip > div {
  min-width: 0;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.compare-strip > div:last-child {
  border-right: 0;
}

.compare-strip span,
.data-list dt,
.contact-detail span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-strip strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy > p {
  max-width: 620px;
  margin: 28px 0;
}

.data-list {
  display: grid;
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.data-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.data-list dt,
.data-list dd {
  margin: 0;
}

.data-list dd {
  font-size: 14px;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 280px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.section-dark .feature-card {
  background: var(--night-soft);
  border-color: var(--line-dark);
}

.feature-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 52px;
  color: var(--accent);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.6);
}

.model-detail {
  background: var(--night);
  color: var(--white);
}

.model-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.6fr);
  min-height: calc(100vh - var(--header-height));
}

.model-gallery {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #1b2228;
}

.model-gallery-main {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.model-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5, 8, 10, 0.68), transparent 45%);
}

.model-thumbs {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
}

.model-thumb {
  position: relative;
  height: 84px;
  padding: 0;
  overflow: hidden;
  background: #181c20;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
}

.model-thumb.is-active {
  border-color: var(--white);
}

.model-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 90px);
  background: var(--night);
}

.model-copy h1 {
  font-size: clamp(62px, 7vw, 110px);
  line-height: 0.78;
}

.model-copy > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.model-copy .data-list {
  border-color: var(--line-dark);
}

.model-copy .data-list div {
  border-color: var(--line-dark);
}

.model-copy .data-list dt {
  color: rgba(255, 255, 255, 0.45);
}

.model-copy .page-hero-actions {
  margin-top: 10px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-button {
  padding: 12px 18px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

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

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

.inventory-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.inventory-card[hidden] {
  display: none;
}

.inventory-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d6d0;
}

.inventory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(8, 11, 14, 0.8);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

.inventory-copy {
  padding: 24px;
}

.inventory-copy h3 {
  margin: 6px 0 10px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.inventory-copy p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.inventory-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 30px;
  padding: 18px 20px;
  color: var(--ink-soft);
  background: rgba(22, 93, 183, 0.07);
  border: 1px solid rgba(22, 93, 183, 0.18);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.notice svg {
  width: 20px;
  height: 20px;
  color: var(--accent-blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-step {
  min-height: 280px;
  padding: 28px;
  background: var(--paper);
}

.process-step span {
  display: block;
  margin-bottom: 76px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 30px;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.faq-list {
  max-width: 980px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 25px;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--body);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 780px;
  margin: -4px 0 28px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 130px);
}

.contact-copy h1 {
  margin: 14px 0 25px;
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 118px);
  line-height: 0.8;
  text-transform: uppercase;
}

.contact-copy > p {
  max-width: 560px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 46px;
}

.contact-detail {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-detail strong,
.contact-detail a {
  font-size: 15px;
}

.contact-form {
  padding: clamp(28px, 5vw, 64px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.is-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(22, 93, 183, 0.1);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.form-note,
.form-status {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.form-status {
  min-height: 18px;
  margin-top: 14px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--accent);
}

.cta-band::before {
  content: "ANT";
  position: absolute;
  inset: -0.22em -0.04em auto auto;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: min(42vw, 620px);
  font-weight: 700;
  line-height: 1;
}

.cta-band .shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  min-height: 430px;
  padding-block: 80px;
}

.cta-band h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 9vw, 140px);
  font-weight: 600;
  line-height: 0.78;
  text-transform: uppercase;
}

.cta-band .button-light {
  min-width: 160px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 130px);
  padding-block: clamp(80px, 10vw, 150px);
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  display: grid;
  gap: 12px;
}

.legal-nav a {
  color: var(--ink-soft);
  font-size: 13px;
}

.legal-nav a:hover {
  color: var(--ink);
}

.legal-copy {
  max-width: 850px;
}

.legal-copy h2 {
  margin: 58px 0 14px;
  font-family: var(--display);
  font-size: 36px;
  text-transform: uppercase;
}

.legal-copy h2:first-of-type {
  margin-top: 34px;
}

.legal-copy ul {
  padding-left: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--night);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.45fr));
  gap: 42px;
  padding-block: 70px;
}

.footer-intro p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px 26px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 40px, 1120px);
  }

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

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: absolute;
    inset: var(--header-height) 0 auto;
    display: grid;
    padding: 12px 20px 24px;
    background: rgba(8, 11, 14, 0.98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

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

  .mobile-nav a {
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 600;
  }

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

  .model-card:last-child {
    grid-column: span 12;
  }

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

  .model-gallery {
    min-height: min(72vw, 760px);
  }

  .model-copy {
    min-height: 620px;
  }

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

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

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 28px);
    --header-height: 70px;
    --radius: 16px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-word strong {
    font-size: 19px;
  }

  .brand-mark {
    width: 32px;
    font-size: 20px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    display: none;
  }

  .page-hero {
    min-height: 660px;
  }

  .page-hero::after {
    background: linear-gradient(0deg, rgba(7, 10, 12, 0.92) 0%, rgba(7, 10, 12, 0.52) 70%, rgba(7, 10, 12, 0.18) 100%);
  }

  .page-hero-content {
    padding-block: 54px;
  }

  .page-hero h1 {
    font-size: clamp(58px, 20vw, 90px);
  }

  .page-hero-meta {
    gap: 18px;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading,
  .split-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading h2,
  .split-copy h2,
  .legal-layout h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .model-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .model-card,
  .model-card:nth-child(1),
  .model-card:nth-child(2),
  .model-card:last-child {
    grid-column: 1;
    min-height: 470px;
  }

  .model-card-copy {
    padding: 22px;
  }

  .compare-strip {
    grid-template-columns: 1fr;
  }

  .compare-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compare-strip > div:last-child {
    border-bottom: 0;
  }

  .split-media {
    min-height: 430px;
  }

  .feature-grid,
  .inventory-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 240px;
  }

  .model-gallery {
    min-height: 570px;
  }

  .model-thumbs {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .model-thumb {
    height: 70px;
  }

  .model-copy {
    min-height: auto;
    padding: 60px 20px 72px;
  }

  .data-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process-step {
    min-height: 230px;
  }

  .process-step span {
    margin-bottom: 48px;
  }

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

  .form-field.is-wide {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band .shell {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 480px;
  }

  .cta-band h2 {
    font-size: clamp(64px, 20vw, 96px);
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Company-site direction: product sales, dealer network, and owner support */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  display: block;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.company-utility {
  background: #090b0d;
  color: rgba(255, 255, 255, 0.82);
}

.company-utility .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.company-utility a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 500;
}

.company-utility a:hover {
  color: var(--white);
}

.company-utility svg {
  width: 13px;
  height: 13px;
}

.site-header-main {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: var(--page);
  min-height: 76px;
  margin-inline: auto;
}

.site-header .brand {
  color: var(--ink);
}

.site-header .brand-mark {
  color: var(--ink);
  border-color: rgba(17, 19, 21, 0.55);
  background: var(--white);
}

.site-header .brand-word small {
  opacity: 0.62;
}

.site-header .desktop-nav {
  gap: clamp(16px, 2vw, 31px);
}

.site-header .desktop-nav a,
.site-header .header-link {
  padding-block: 29px 27px;
  color: #303438;
  font-size: 12px;
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a[aria-current="page"],
.site-header .header-link:hover {
  color: var(--accent);
}

.site-header .desktop-nav a::after {
  inset: auto 0 17px;
}

.site-header .header-actions {
  gap: 10px;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 7px 12px;
  color: var(--ink);
  border: 1px solid rgba(17, 19, 21, 0.16);
  border-radius: 4px;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-whatsapp:hover {
  color: var(--accent);
  border-color: currentColor;
}

.header-whatsapp svg {
  width: 18px;
  height: 18px;
}

.header-whatsapp span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.header-whatsapp small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.header-whatsapp strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.site-header .search-open,
.site-header .menu-button {
  color: var(--ink);
  border-color: rgba(17, 19, 21, 0.16);
}

.site-header .button-square,
.button-square {
  min-height: 46px;
  border-radius: 4px;
}

.company-home {
  background: var(--white);
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(0, 1.18fr);
  min-height: 560px;
  background: var(--white);
}

.company-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 68px 52px 92px max(32px, calc((100vw - min(1440px, calc(100vw - 64px))) / 2));
}

.company-eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.company-hero h1 {
  max-width: 650px;
  margin: 18px 0 22px;
  font-family: var(--body);
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.company-hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.company-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.company-hero-actions .button-outline {
  color: var(--ink);
  border-color: rgba(17, 19, 21, 0.55);
}

.company-hero-media {
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  background: #eee;
}

.company-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.vehicle-finder {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
  min-height: 170px;
  margin-top: -54px;
  color: var(--white);
  background: #101315;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  box-shadow: 0 22px 52px rgba(12, 16, 18, 0.18);
  overflow: hidden;
}

.finder-intro,
.finder-option {
  padding: 28px 24px;
}

.finder-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.finder-intro span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.finder-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.55;
}

.finder-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 18px;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.finder-option:hover,
.finder-option.is-active {
  background: var(--accent);
}

.finder-option > svg:first-child {
  grid-column: 1 / -1;
  width: 30px;
  height: 30px;
  stroke-width: 1.6;
}

.finder-option > svg:last-child {
  align-self: center;
  width: 16px;
  height: 16px;
}

.finder-option span {
  display: grid;
  gap: 8px;
}

.finder-option strong {
  font-size: 14px;
}

.finder-option small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.5;
}

.finder-option:hover small,
.finder-option.is-active small {
  color: rgba(255, 255, 255, 0.86);
}

.company-section {
  padding-block: 84px;
}

.lineup-section {
  padding-top: 72px;
}

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

.company-section-heading h2 {
  max-width: 500px;
  margin: 10px 0 0;
  font-family: var(--body);
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.text-link svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.company-model-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-model-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-model-card[hidden] {
  display: none;
}

.company-model-image {
  display: block;
  aspect-ratio: 1.17;
  overflow: hidden;
  background: #f3f3f1;
}

.company-model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.company-model-card:hover .company-model-image img {
  transform: scale(1.025);
}

.company-model-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px 24px;
}

.company-model-body > div:first-child {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.company-model-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.company-model-body > div:first-child > span {
  color: var(--ink-soft);
  font-size: 10px;
}

.model-uses {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 13px;
  margin-top: 18px;
  color: #444a4f;
}

.model-uses span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
}

.model-uses svg {
  width: 13px;
  height: 13px;
}

.company-model-body p {
  margin: 18px 0 24px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.6;
}

.company-model-body .text-link {
  margin-top: auto;
}

.company-service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 10px;
  background: #f5f5f3;
  border: 1px solid var(--line);
}

.company-service-strip > a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  min-height: 176px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.company-service-strip > a:last-child {
  border-right: 0;
}

.company-service-strip > a:hover {
  background: var(--white);
}

.company-service-strip > a > svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

.company-service-strip span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.company-service-strip strong {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-service-strip small {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.company-service-strip em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.company-service-strip em svg {
  width: 13px;
  height: 13px;
}

.company-pillars {
  padding-top: 36px;
  padding-bottom: 90px;
}

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

.company-pillar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px 8px;
  border-right: 1px solid var(--line);
}

.company-pillar > img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  margin-bottom: 28px;
}

.company-pillar h3 {
  max-width: 330px;
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 0.98;
  text-transform: uppercase;
}

.company-pillar p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.company-pillar ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.company-pillar li {
  position: relative;
  padding-left: 21px;
  color: #404549;
  font-size: 11px;
  line-height: 1.4;
}

.company-pillar li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.company-pillar .text-link {
  margin-top: auto;
}

.site-footer {
  background: #0d1012;
}

.site-footer .footer-top {
  grid-template-columns: 1.45fr repeat(4, minmax(120px, 0.8fr));
}

.site-footer .brand-mark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 1180px) {
  .site-header .desktop-nav {
    display: none;
  }

  .site-header-main {
    grid-template-columns: 1fr auto;
  }

  .site-header .menu-button {
    display: inline-flex;
  }

  .site-header .mobile-nav {
    position: absolute;
    inset: 76px 0 auto;
    display: grid;
    padding-inline: 22px;
    background: rgba(255, 255, 255, 0.99);
    border-bottom-color: var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-header .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header .mobile-nav a {
    color: #303438;
    border-bottom-color: var(--line);
  }

  .company-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vehicle-finder {
    grid-template-columns: repeat(4, 1fr);
  }

  .finder-intro {
    grid-column: 1 / -1;
    min-height: 108px;
    padding-block: 20px;
  }
}

@media (max-width: 860px) {
  .company-hero {
    grid-template-columns: 1fr;
  }

  .company-hero-copy {
    padding: 64px max(22px, calc((100vw - var(--page)) / 2)) 54px;
  }

  .company-hero-media {
    min-height: 460px;
  }

  .vehicle-finder {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

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

  .company-service-strip > a:nth-child(2) {
    border-right: 0;
  }

  .company-service-strip > a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .company-pillar-grid {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--line);
  }

  .company-pillar {
    padding: 0 0 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .company-pillar:last-child {
    margin-bottom: 0;
  }

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

@media (max-width: 640px) {
  .company-utility .shell {
    justify-content: flex-start;
  }

  .company-utility a:nth-child(n + 2) {
    display: none;
  }

  .site-header-main {
    min-height: 70px;
  }

  .site-header .mobile-nav {
    inset: 70px 0 auto;
  }

  .site-header .search-open {
    display: none;
  }

  .site-header .header-actions .button {
    display: none;
  }

  .company-hero {
    min-height: 0;
  }

  .company-hero-copy {
    padding-block: 52px 46px;
  }

  .company-hero h1 {
    margin-top: 14px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.01;
  }

  .company-hero-copy > p {
    font-size: 14px;
  }

  .company-hero-actions {
    width: 100%;
  }

  .company-hero-actions .button {
    width: 100%;
  }

  .company-hero-media {
    min-height: 320px;
  }

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

  .finder-intro {
    grid-column: auto;
  }

  .finder-option {
    min-height: 142px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .company-section {
    padding-block: 62px;
  }

  .lineup-section {
    padding-top: 58px;
  }

  .company-section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .company-model-grid {
    grid-template-columns: 1fr;
  }

  .company-model-image {
    aspect-ratio: 1.35;
  }

  .company-service-strip {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .company-service-strip > a,
  .company-service-strip > a:nth-child(2) {
    min-height: 156px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-service-strip > a:last-child {
    border-bottom: 0;
  }

  .company-pillars {
    padding-top: 0;
  }

  .company-pillar h3 {
    font-size: 31px;
  }

  .site-footer .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-intro {
    grid-column: 1 / -1;
  }
}

/* Homepage video masthead */
body[data-page="home"] .site-header {
  position: absolute;
  inset: 0 0 auto;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

body[data-page="home"] .company-utility {
  display: none;
}

body[data-page="home"] .site-header-main {
  width: min(1500px, calc(100vw - 44px));
  min-height: 112px;
}

body[data-page="home"] .site-header .brand,
body[data-page="home"] .site-header .desktop-nav a,
body[data-page="home"] .site-header .header-link {
  color: var(--white);
}

body[data-page="home"] .site-header .brand-mark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(9, 12, 14, 0.08);
}

body[data-page="home"] .site-header .desktop-nav a:hover,
body[data-page="home"] .site-header .desktop-nav a[aria-current="page"] {
  color: var(--white);
}

body[data-page="home"] .site-header .search-open,
body[data-page="home"] .site-header .menu-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

body[data-page="home"] .header-whatsapp {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(9, 12, 14, 0.12);
}

body[data-page="home"] .header-whatsapp:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

body[data-page="home"] .site-header .header-actions .button {
  color: var(--ink);
  background: var(--white);
}

.motion-hero {
  position: relative;
  min-height: clamp(780px, 100vh, 1120px);
  overflow: hidden;
  color: var(--white);
  background: #070a0c;
}

.motion-hero-media,
.motion-slide,
.motion-hero-shade {
  position: absolute;
  inset: 0;
}

.motion-hero-media {
  z-index: 1;
}

.motion-slide {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.motion-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.motion-slide > video,
.motion-slide > .motion-scene-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.motion-hero-shade {
  z-index: 2;
  background: rgba(4, 7, 9, 0.43);
  pointer-events: none;
}

.motion-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: clamp(780px, 100vh, 1120px);
  align-items: center;
  padding-top: 110px;
  padding-bottom: 120px;
}

.motion-copy {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.motion-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.motion-eyebrow i {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
}

.motion-copy h1,
.motion-copy h2 {
  margin: 36px 0 28px;
  font-family: var(--display);
  font-size: clamp(92px, 8.6vw, 148px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.motion-copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.motion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.motion-actions .button {
  min-height: 66px;
  padding-inline: 28px;
  border-radius: 4px;
  font-size: 15px;
}

.motion-primary {
  min-width: 260px;
}

.motion-secondary {
  min-width: 190px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(8, 11, 14, 0.34);
}

.motion-mark {
  position: absolute;
  top: 170px;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-transform: uppercase;
}

.motion-mark strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: 25px;
}

.motion-mark span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.68;
}

.motion-model-shade {
  background:
    linear-gradient(90deg, rgba(4, 7, 9, 0.93) 0%, rgba(4, 7, 9, 0.64) 35%, rgba(4, 7, 9, 0.08) 72%),
    linear-gradient(0deg, rgba(4, 7, 9, 0.82) 0%, transparent 54%, rgba(4, 7, 9, 0.22) 100%);
}

.motion-model-copy {
  width: min(43vw, 720px);
}

.motion-model-copy h2 {
  font-size: clamp(92px, 9.2vw, 158px);
}

.motion-model-specs {
  display: flex;
  margin: 38px 0 0;
}

.motion-model-specs div {
  min-width: 135px;
  padding-right: 30px;
}

.motion-model-specs div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.motion-model-specs dt {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
}

.motion-model-specs dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-model-stage {
  position: absolute;
  z-index: 3;
  top: 15%;
  right: -2.5%;
  width: min(58vw, 930px);
  height: 70%;
  cursor: grab;
  outline: none;
  touch-action: pan-y;
}

.motion-model-stage:active {
  cursor: grabbing;
}

.motion-model-stage:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}

.motion-vehicle-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 34px 30px rgba(0, 0, 0, 0.52));
  transform: scale(1.06);
  transition: opacity 150ms ease, filter 220ms ease, transform 220ms ease;
  user-select: none;
}

.motion-vehicle-frame.is-active {
  opacity: 1;
}

.motion-model-stage:hover .motion-vehicle-frame.is-active {
  transform: scale(1.075) translateY(-3px);
}

.motion-angle-meter {
  position: absolute;
  right: 10%;
  bottom: 1%;
  display: grid;
  grid-template-columns: 18px repeat(8, 30px);
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: rgba(8, 11, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.motion-angle-meter svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.motion-angle-meter button {
  width: 30px;
  height: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.motion-angle-meter button::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.26);
}

.motion-angle-meter button.is-active::after {
  background: var(--accent);
}

.motion-model-status {
  position: absolute;
  z-index: 5;
  top: 16%;
  right: 4.5%;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-model-status i {
  width: 8px;
  height: 8px;
  margin-top: 3px;
  background: #43d879;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(67, 216, 121, 0.7);
}

.motion-model-status span,
.motion-model-status strong {
  display: block;
}

.motion-model-status strong {
  margin-bottom: 4px;
  color: var(--white);
}

.motion-engineering-link {
  position: absolute;
  z-index: 5;
  top: 52%;
  right: 1.2%;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(8, 11, 14, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.motion-engineering-link svg {
  width: 16px;
  height: 16px;
}

.motion-face-dock {
  position: absolute;
  z-index: 6;
  right: max(4vw, 54px);
  bottom: 0;
  left: max(4vw, 54px);
  display: grid;
  grid-template-columns: 180px repeat(3, minmax(120px, 1fr));
  min-height: 76px;
  align-items: stretch;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(7, 10, 12, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.motion-face-dock > span {
  display: flex;
  align-items: center;
  padding-left: 22px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.motion-face-dock button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.47);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.motion-face-dock button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
}

.motion-face-dock button:hover,
.motion-face-dock button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.motion-face-dock button.is-active::after {
  background: var(--accent);
}

.motion-face-dock b {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--display);
  font-size: 15px;
}

.motion-inventory-shade {
  background:
    linear-gradient(90deg, rgba(4, 7, 9, 0.88) 0%, rgba(4, 7, 9, 0.55) 34%, rgba(4, 7, 9, 0.05) 66%),
    linear-gradient(0deg, rgba(4, 7, 9, 0.56) 0%, transparent 55%);
}

.motion-inventory-copy {
  width: min(48vw, 760px);
}

.motion-inventory-copy h2 {
  font-size: clamp(88px, 8.2vw, 142px);
}

.motion-arrow {
  position: absolute;
  z-index: 4;
  bottom: 82px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(7, 10, 12, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  cursor: pointer;
}

.motion-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.motion-arrow svg {
  width: 22px;
  height: 22px;
}

.motion-arrow-prev {
  left: 42px;
}

.motion-arrow-next {
  right: 42px;
}

.motion-pagination {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 78px;
  display: grid;
  grid-template-columns: repeat(3, 72px);
  padding: 0 14px;
  background: rgba(10, 12, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.motion-pagination button {
  position: relative;
  min-height: 62px;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.motion-pagination button::after {
  content: "";
  position: absolute;
  inset: auto 8px 0;
  height: 3px;
  background: transparent;
}

.motion-pagination button.is-active {
  color: var(--white);
}

.motion-pagination button.is-active::after {
  background: var(--accent);
}

.motion-hero + .vehicle-finder {
  margin-top: 0;
}

/* Integrated wheel, tire, and color configurator */
.home-builder {
  padding-block: 96px 104px;
  background: #edf0ef;
}

.home-builder-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 46px;
  margin-bottom: 38px;
}

.home-builder-heading h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 0.92;
  text-transform: uppercase;
}

.home-builder-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.home-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(420px, 1fr);
  align-items: stretch;
  background: var(--white);
  border: 1px solid rgba(17, 19, 21, 0.14);
}

.home-builder-preview {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
}

.home-builder-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
  background: #e8ebeb;
}

.home-builder-stage img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 170ms ease;
}

.home-builder-stage.is-color-showcase > [data-builder-vehicle] {
  visibility: hidden;
  opacity: 0;
}

.home-builder-color-showcase {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background-color: #071725;
  background-image: url("assets/community-blue-hour.png");
  background-position: center;
  background-size: cover;
}

.home-builder-color-showcase[hidden] {
  display: none;
}

.home-builder-color-source,
.home-builder-color-canvas {
  position: absolute !important;
  z-index: 1 !important;
  inset: -5%;
  display: block;
  width: 110% !important;
  height: 110% !important;
  object-fit: contain !important;
  object-position: center !important;
  pointer-events: none;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.48));
}

.home-builder-color-canvas {
  z-index: 2 !important;
}

.home-builder-stage img.is-changing {
  opacity: 0.36;
}

.home-builder-summary {
  display: grid;
  grid-template-columns: auto minmax(170px, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 146px;
  padding: 26px 42px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.home-builder-number {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
}

.home-builder-summary > div {
  display: grid;
  gap: 9px;
}

.home-builder-summary > div span,
.home-builder-selector-head span {
  color: #7a8187;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-builder-summary strong {
  font-size: 18px;
}

.home-builder-summary p {
  margin: 0;
  color: #6d747a;
  font-size: 13px;
  font-weight: 600;
}

.home-builder-selector {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: var(--white);
  background: #0b0f12;
}

.home-builder-selector-head {
  display: flex;
  min-height: 124px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.home-builder-selector-head > div {
  display: grid;
  gap: 9px;
}

.home-builder-selector-head strong {
  font-family: var(--display);
  font-size: 30px;
}

.home-builder-selector-head button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 3px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
}

.home-builder-selector-head button:hover {
  color: var(--white);
  background: var(--accent);
}

.home-builder-selector-head svg {
  width: 22px;
  height: 22px;
}

.home-builder-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-builder-panel[hidden] {
  display: none;
}

.home-builder-option,
.home-color-option {
  display: grid;
  min-height: 128px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.56);
  text-align: left;
  background: #10151a;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.home-builder-option {
  grid-template-columns: 72px 1fr;
}

.home-builder-option:nth-child(even),
.home-color-option:nth-child(even) {
  border-right: 0;
}

.home-builder-option:hover,
.home-builder-option.is-active,
.home-color-option:hover,
.home-color-option.is-active {
  color: var(--white);
  background: #171d22;
  box-shadow: inset 4px 0 0 var(--accent);
}

.home-builder-option img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.home-builder-option > span,
.home-color-option > span:last-child {
  display: grid;
  gap: 8px;
}

.home-builder-option strong,
.home-color-option strong {
  font-size: 14px;
}

.home-builder-option small,
.home-color-option small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.home-builder-color-grid {
  min-height: 384px;
}

.home-color-option {
  grid-template-columns: 70px 1fr;
  min-height: 128px;
}

.home-color-option:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.home-color-swatch {
  display: block;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.home-color-red {
  background: #e32036;
}

.home-color-blue {
  background: #165db7;
}

.home-color-green {
  background: #007e60;
}

.home-color-white {
  background: #f3f3ef;
}

.home-color-black {
  background: #111315;
}

.home-builder-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-builder-steps button {
  min-height: 54px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.home-builder-steps button:last-child {
  border-right: 0;
}

.home-builder-steps button.is-active {
  color: var(--white);
  background: rgba(227, 32, 54, 0.14);
}

.home-builder-quote {
  min-height: 58px;
  margin: 18px 24px 24px;
}

@media (max-width: 1180px) {
  body[data-page="home"] .site-header-main {
    width: min(100% - 40px, 1120px);
    grid-template-columns: 1fr auto;
  }

  body[data-page="home"] .site-header .mobile-nav {
    inset: 112px 0 auto;
  }

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

  .home-builder-stage {
    min-height: min(62vw, 700px);
  }

  .motion-model-stage {
    right: -8%;
    width: 64vw;
  }

  .motion-model-status,
  .motion-engineering-link {
    display: none;
  }

  .motion-face-dock {
    right: 28px;
    left: 28px;
    grid-template-columns: 140px repeat(3, minmax(105px, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .site-header-main {
    width: calc(100% - 28px);
    min-height: 82px;
  }

  body[data-page="home"] .site-header .mobile-nav {
    inset: 82px 0 auto;
    background: rgba(8, 11, 14, 0.98);
  }

  body[data-page="home"] .site-header .mobile-nav a {
    color: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .motion-hero,
  .motion-hero-content {
    min-height: 760px;
  }

  .motion-hero-content {
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 174px;
  }

  .motion-copy h1,
  .motion-copy h2 {
    margin-block: 25px 22px;
    font-size: clamp(68px, 22vw, 102px);
  }

  .motion-copy > p {
    font-size: 16px;
  }

  .motion-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .motion-actions .button {
    width: 100%;
  }

  .motion-mark {
    display: none;
  }

  .motion-model-copy,
  .motion-inventory-copy {
    width: 100%;
  }

  .motion-model-copy h2,
  .motion-inventory-copy h2 {
    font-size: clamp(64px, 19vw, 92px);
  }

  .motion-model-specs {
    display: none;
  }

  .motion-model-stage {
    top: 86px;
    right: -24%;
    width: 118%;
    height: 45%;
    opacity: 0.86;
  }

  .motion-angle-meter {
    right: 18%;
    bottom: 0;
    grid-template-columns: 16px repeat(8, 20px);
    gap: 4px;
    padding: 10px;
  }

  .motion-angle-meter button {
    width: 20px;
  }

  .motion-face-dock {
    right: 0;
    left: 0;
    grid-template-columns: 92px repeat(3, 104px);
    min-height: 72px;
    overflow-x: auto;
  }

  .motion-face-dock > span {
    padding-left: 12px;
  }

  .motion-face-dock button {
    padding-inline: 8px;
  }

  .motion-arrow {
    bottom: 90px;
    width: 50px;
    height: 50px;
  }

  .motion-arrow-prev {
    left: 14px;
  }

  .motion-arrow-next {
    right: 14px;
  }

  .motion-pagination {
    bottom: 88px;
    grid-template-columns: repeat(3, 48px);
  }

  .motion-pagination button {
    min-height: 52px;
  }

  .home-builder {
    padding-block: 70px;
  }

  .home-builder-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }

  .home-builder-stage {
    min-height: 360px;
  }

  .home-builder-summary {
    grid-template-columns: auto 1fr;
    gap: 18px;
    min-height: 124px;
    padding: 22px 18px;
  }

  .home-builder-summary p {
    grid-column: 2;
  }

  .home-builder-number {
    width: 58px;
    height: 58px;
    font-size: 25px;
  }

  .home-builder-selector-head {
    min-height: 108px;
    padding: 20px;
  }

  .home-builder-panel {
    grid-template-columns: 1fr;
  }

  .home-builder-option,
  .home-color-option {
    min-height: 108px;
    border-right: 0;
  }

  .home-builder-color-grid {
    min-height: 0;
  }

  .home-builder-steps button {
    min-height: 62px;
    font-size: 9px;
  }
}

@media (max-width: 700px) {
  .industry-section .company-section-heading,
  .why-ant-section .company-section-heading {
    align-items: flex-start;
  }
}

/* Focused homepage summaries; full detail lives on the destination pages. */
.company-model-grid.is-home-teaser {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-story-section.is-compact .company-story-layout {
  min-height: 520px;
}

.company-story-section.is-compact .company-story-copy {
  padding-block: 48px;
}

.company-story-section.is-compact .company-story-copy > p {
  max-width: 580px;
  margin-bottom: 28px;
}

.industry-section .company-section-heading .text-link {
  color: var(--white);
}

.home-build-teaser {
  padding-block: 86px;
  background: #edf0ef;
}

.home-build-teaser-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(390px, 0.7fr);
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: #0a0e11;
}

.home-build-teaser-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.home-build-teaser-scene,
.home-build-teaser-vehicle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-build-teaser-scene {
  object-fit: cover;
}

.home-build-teaser-vehicle {
  z-index: 1;
  object-fit: contain;
  transform: scale(1.04);
  filter: drop-shadow(0 30px 24px rgba(0, 0, 0, 0.5));
}

.home-build-teaser-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, transparent 52%, rgba(8, 12, 15, 0.25));
  pointer-events: none;
}

.home-build-teaser-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 54px clamp(34px, 4vw, 68px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home-build-teaser-copy h2 {
  margin: 15px 0 20px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.home-build-teaser-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.home-build-teaser-copy ul {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.home-build-teaser-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-build-teaser-copy li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

@media (max-width: 980px) {
  .company-model-grid.is-home-teaser,
  .home-build-teaser-layout {
    grid-template-columns: 1fr;
  }

  .home-build-teaser-visual {
    min-height: 520px;
  }

  .home-build-teaser-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .company-model-grid.is-home-teaser {
    grid-template-columns: repeat(3, minmax(270px, 84vw));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .company-model-grid.is-home-teaser .company-model-card {
    scroll-snap-align: start;
  }

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

  .industry-section .industry-grid article {
    min-height: 165px;
    padding: 20px 16px;
  }

  .industry-section .industry-grid svg {
    margin-bottom: 24px;
  }

  .home-build-teaser {
    padding-block: 54px;
  }

  .home-build-teaser-visual {
    min-height: 350px;
  }

  .home-build-teaser-copy {
    padding: 38px 24px 44px;
  }
}

@media (min-width: 1181px) {
  .site-header .desktop-nav {
    gap: clamp(13px, 1.45vw, 24px);
  }

  .site-header .desktop-nav a {
    font-size: 11.5px;
    white-space: nowrap;
  }
}

.ant6-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  min-height: 720px;
  color: var(--white);
  background: var(--night);
}

.ant6-detail-media {
  min-width: 0;
  overflow: hidden;
}

.ant6-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ant6-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(34px, 5vw, 78px);
}

.ant6-detail-copy h1 {
  margin: 14px 0 18px;
  font-family: var(--display);
  font-size: clamp(82px, 10vw, 146px);
  line-height: 0.82;
  text-transform: uppercase;
}

.ant6-detail-copy > p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.75;
}

.ant6-detail-copy .data-list {
  margin-bottom: 32px;
}

.ant6-detail-copy .data-list div {
  border-color: rgba(255, 255, 255, 0.16);
}

.ant6-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, 330px);
  gap: 16px;
}

.ant6-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ant6-gallery img:first-child {
  grid-row: 1 / 3;
}

@media (max-width: 920px) {
  .ant6-detail-hero {
    grid-template-columns: 1fr;
  }

  .ant6-detail-media {
    min-height: 520px;
  }

  .ant6-detail-copy {
    padding-block: 58px;
  }
}

@media (max-width: 640px) {
  .ant6-detail-media {
    min-height: 360px;
  }

  .ant6-detail-copy h1 {
    font-size: 78px;
  }

  .ant6-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
  }

  .ant6-gallery img:first-child {
    grid-row: auto;
  }
}


.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-back:hover {
  background: rgba(8, 10, 12, 0.48);
  border-color: rgba(255, 255, 255, 0.4);
}

.page-back i {
  width: 16px;
  height: 16px;
}

.site-header.is-scrolled .page-back,
.site-header:not(.is-transparent) .page-back {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.site-header-main {
  gap: 14px;
}

@media (max-width: 720px) {
  .page-back span {
    display: none;
  }

  .page-back {
    min-width: 40px;
    padding: 0;
    justify-content: center;
  }
}
