.vx-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 73, 0.98), rgba(13, 44, 103, 0.92)),
    var(--navy);
}

.vx-hero::before {
  position: absolute;
  inset: auto -16% -28% 36%;
  height: 60%;
  content: "";
  background: rgba(245, 155, 25, 0.16);
  transform: skewY(-8deg);
}

.vx-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.86fr);
  gap: 50px;
  align-items: center;
  min-height: 720px;
  padding: 78px 0 96px;
}

.vx-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: 3.395rem;
  font-weight: 900;
  line-height: 1.03;
}

.vx-hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.vx-product-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.vx-player-trigger {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.vx-player-trigger::after {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 69px;
  height: 69px;
  content: "";
  border-radius: 50%;
  background: transparent url("/images/layout/angeltrax-playback-button-gold.png") center / 350% auto no-repeat;
  box-shadow: 0 0 28px rgba(255, 210, 4, 0.42), 0 14px 34px rgba(0, 0, 0, 0.52);
  transition: filter 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vx-player-trigger:hover::after {
  filter: brightness(1.12) saturate(1.08);
  box-shadow: 0 0 36px rgba(255, 210, 4, 0.62), 0 10px 24px rgba(0, 0, 0, 0.48);
  transform: scale(1.08);
}

.vx-player-trigger:focus-visible {
  outline: 3px solid #ffd204;
  outline-offset: -5px;
}

.vx-side {
  width: min(100%, 500px);
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.3));
}

.vx-front {
  position: absolute;
  right: 28px;
  bottom: 34px;
  width: 38%;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.24));
}

.vx-callout {
  position: absolute;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.vx-callout::before {
  width: 10px;
  height: 10px;
  margin-right: 8px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.vx-callout.road {
  left: 7%;
  top: 16%;
}

.vx-callout.cab {
  right: 6%;
  top: 25%;
}

.vx-callout.ai {
  left: 9%;
  bottom: 16%;
}

.vx-proof-band {
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--orange);
}

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

.vx-proof-grid div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 18px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.vx-proof-grid div:first-child {
  border-left: 0;
}

.vx-proof-grid strong {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.vx-proof-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.vx-overview-section,
.view-section,
.vx-downloads-section {
  background: var(--soft);
}

.vx-overview-layout,
.ai-layout,
.specs-layout,
.connected-layout,
.downloads-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.view-card,
.connected-media {
  min-height: 460px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.94), rgba(255, 255, 255, 0.88)),
    var(--soft);
  box-shadow: var(--shadow);
}

.view-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 18px 20px rgba(6, 27, 73, 0.15));
}

.vx-overview-player-trigger {
  width: 100%;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vx-overview-player-trigger:hover {
  border-color: rgba(255, 210, 4, 0.78);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34), 0 0 28px rgba(255, 210, 4, 0.18);
  transform: translateY(-3px);
}

.vx-overview-player-trigger:focus-visible {
  outline: 3px solid #ffd204;
  outline-offset: 4px;
}

.vx-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.vx-spec-grid div,
.spec-list div,
.software-list div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 28, 72, 0.06);
}

.vx-spec-grid strong,
.spec-list strong,
.software-list strong {
  display: block;
  color: var(--navy);
  line-height: 1.16;
}

.vx-spec-grid span,
.spec-list span,
.software-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.ai-section {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 68%, #173f83 100%);
}

.ai-section h2,
.ai-section p {
  color: var(--white);
}

.ai-section p {
  color: rgba(255, 255, 255, 0.8);
}

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

.ai-card-grid article {
  min-height: 260px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.ai-card-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  object-fit: contain;
}

.ai-card-grid h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.16;
}

.ai-card-grid p {
  color: var(--muted);
}

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

.view-grid article,
.download-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 28, 72, 0.08);
}

.view-grid article {
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.view-grid img {
  width: 100%;
  height: 250px;
  padding: 16px;
  object-fit: contain;
  background: #000;
}

.vx-view-player-trigger {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  cursor: pointer;
}

.vx-view-player-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 69px;
  height: 69px;
  background: transparent url("/images/layout/angeltrax-playback-button-gold.png") center / 350% auto no-repeat;
  filter: drop-shadow(0 0 18px rgba(255, 210, 4, 0.42));
  transition: filter 180ms ease, transform 180ms ease;
}

.vx-view-player-trigger:hover {
  box-shadow: inset 0 0 0 2px #ffd204;
}

.vx-view-player-trigger:hover::after {
  filter: brightness(1.12) saturate(1.08) drop-shadow(0 0 24px rgba(255, 210, 4, 0.62));
  transform: scale(1.08);
}

.vx-view-player-trigger:focus-visible {
  outline: 3px solid #ffd204;
  outline-offset: -3px;
}

.view-grid h3,
.view-grid p {
  margin-left: 22px;
  margin-right: 22px;
}

.view-grid h3 {
  margin-top: 22px;
  color: var(--navy);
  line-height: 1.16;
}

.view-grid p {
  color: var(--muted);
}

.specs-section,
.connected-section {
  background: var(--white);
}

.specs-layout {
  align-items: start;
}

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

.spec-list div {
  min-height: 112px;
}

.spec-list.spec-bullet-list {
  gap: 10px 22px;
  margin: 0;
  padding: 6px 0 0;
  list-style: none;
}

.spec-bullet-list li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 22px;
  color: var(--muted);
  line-height: 1.42;
}

.spec-bullet-list li::before {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0.58em;
  left: 0;
  content: "";
  border-radius: 50%;
  background: var(--atx-accent, var(--orange));
  box-shadow: 0 0 12px rgba(255, 210, 4, 0.38);
}

.spec-bullet-list strong {
  display: inline;
}

.vx4ai-detail-page #platform .connected-media.vx-platform-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.vx-platform-product-card {
  position: relative;
  display: grid;
  align-content: end;
  color: inherit;
  min-height: 450px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 210, 4, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #101010;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.36);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.vx-platform-product-card:hover,
.vx-platform-product-card:focus-within {
  border-color: var(--atx-accent, var(--orange));
  background: #252529;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 210, 4, 0.34);
  transform: translateY(-4px);
}

.vx-platform-product-card img {
  align-self: center;
  justify-self: center;
  width: min(88%, 430px);
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.45));
}

.vx-platform-product-card .software-img {
  width: 100%;
  max-width: none;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.vx-platform-product-copy {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 0 24px 22px;
}

.vx-platform-product-copy span {
  color: var(--atx-accent, var(--orange));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vx-platform-product-copy strong {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.12;
}

.downloads-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
}

.download-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.download-card h3 {
  margin: 0;
  color: var(--navy);
}

.download-card a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--navy);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.download-card a:hover,
.download-card a:focus-visible {
  border-color: rgba(245, 155, 25, 0.55);
  background: rgba(245, 155, 25, 0.08);
}

.vx-cta {
  background: var(--white);
}

@media (max-width: 1080px) {
  .vx-hero-inner,
  .vx-overview-layout,
  .ai-layout,
  .specs-layout,
  .connected-layout,
  .downloads-layout {
    grid-template-columns: 1fr;
  }

  .vx-hero-copy h1 {
  font-size: 2.8rem;
  }

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

  .vx-proof-grid div:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .vx-player-trigger::after {
    right: 14px;
    top: 14px;
    width: 56px;
    height: 56px;
  }

  .vx-view-player-trigger::after {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }

  .vx-hero-inner {
    min-height: auto;
    padding: 56px 0 66px;
  }

  .vx-hero-copy h1 {
  font-size: 2.135rem;
  }

  .vx-product-stage {
    min-height: 390px;
    padding: 18px;
  }

  .vx-side {
    max-height: 250px;
  }

  .vx-front {
    position: static;
    width: 54%;
    margin-top: 10px;
  }

  .vx-callout {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .vx-proof-grid,
  .vx-spec-grid,
  .ai-card-grid,
  .view-grid,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .vx-proof-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .vx-proof-grid div:first-child {
    border-top: 0;
  }

  .view-card,
  .connected-media {
    min-height: 360px;
    padding: 18px;
  }

  .vx4ai-detail-page #platform .connected-media.vx-platform-product-grid {
    grid-template-columns: 1fr;
  }

  .vx-platform-product-card {
    min-height: 360px;
  }

.vx-platform-product-card img,
  .vx-platform-product-card .software-img {
    height: 230px;
  }
}

.vx-proof-grid div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: center;
  column-gap: 12px;
}

.vx-proof-grid div::before {
  content: "";
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  align-self: center;
  border: 1px solid rgba(255, 210, 4, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--orange) 0 4px, transparent 5px),
    rgba(255, 210, 4, 0.08);
  box-shadow: 0 0 18px rgba(255, 210, 4, 0.18);
}

.vx-proof-grid strong,
.vx-proof-grid span {
  grid-column: 2;
}

.vx-spec-grid div {
  min-height: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  column-gap: 13px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vx-spec-grid div::before {
  content: "";
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  align-self: start;
  border: 1px solid rgba(255, 210, 4, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(var(--orange), var(--orange)) center / 2px 14px no-repeat,
    linear-gradient(var(--orange), var(--orange)) center / 14px 2px no-repeat,
    rgba(255, 210, 4, 0.08);
}

.vx-spec-grid strong,
.vx-spec-grid span {
  grid-column: 2;
}

.ai-card-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.ai-card-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 14px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ai-card-grid img {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(255, 210, 4, 0.38);
  border-radius: 50%;
  background: rgba(255, 210, 4, 0.08);
  object-fit: contain;
}

.ai-card-grid h3,
.ai-card-grid p {
  grid-column: 2;
}

.ai-card-grid p {
  margin: 6px 0 0;
}
