/* Right-side OEM hero showcase adapted from the supplied Hero V2 reference. */
.lp-oem .oem-hero-stage {
  --v2-bg: #f4f5f7;
  --v2-ink: #1c2b39;
  --v2-bronze: #a96908;
  --v2-bronze-2: #c08a2e;
  --v2-muted: #7c8794;
  --v2-line: #e5e8ec;
  --v2-card: #fff;
  min-height: clamp(680px, calc(100svh - 148px), 860px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lp-oem .oem-hero-stage::before,
.lp-oem .oem-hero-stage::after {
  display: none;
}

.lp-oem .oem-v2-stage,
.lp-oem .oem-v2-stage * {
  box-sizing: border-box;
}

.lp-oem .oem-v2-stage {
  position: relative;
  min-height: clamp(680px, calc(100svh - 148px), 860px);
  height: 100%;
  overflow: hidden;
  color: var(--v2-ink);
  font-family: Inter, "Chakra Petch", sans-serif;
  pointer-events: none;
}

.lp-oem .oem-v2-stage button,
.lp-oem .oem-v2-stage select,
.lp-oem .oem-v2-stage input {
  pointer-events: none;
  cursor: default;
}

.lp-oem .oem-v2-stage .ground {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  animation: oem-v2-fade-in 1.2s .5s both;
}

.lp-oem .oem-v2-stage .wheel-wrap {
  position: absolute;
  top: 12%;
  left: 24.5%;
  z-index: 1;
  width: 51%;
  animation: oem-v2-float 6s ease-in-out 1.6s infinite;
}

.lp-oem .oem-v2-stage .wheel-canvas {
  display: block;
  width: 100%;
  filter: drop-shadow(0 34px 30px rgba(20, 26, 34, .28));
  animation: oem-v2-wheel-in 1s .35s both cubic-bezier(.2, .7, .3, 1);
  transition: filter .6s ease, transform .25s ease;
  will-change: transform;
}

.lp-oem .oem-v2-stage #wires {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.lp-oem .oem-v2-stage #wires polyline {
  transition: stroke-width .2s, opacity .2s;
}

.lp-oem .oem-v2-stage #wires g.hot polyline {
  stroke-width: 1.8;
  opacity: 1;
}

.lp-oem .oem-v2-stage #wires g.hot circle {
  opacity: 1;
}

.lp-oem .oem-v2-stage .card {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-card);
  box-shadow: 0 6px 18px -10px rgba(28, 43, 57, .14);
  animation: oem-v2-card-in .55s var(--d, .6s) both cubic-bezier(.2, .75, .3, 1.25);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.lp-oem .oem-v2-stage .card:hover {
  transform: translateY(-4px);
  border-color: #ddba77;
  box-shadow: 0 16px 32px -14px rgba(28, 43, 57, .28);
}

.lp-oem .oem-v2-stage .card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

.lp-oem .oem-v2-stage .card-head svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: var(--v2-ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-oem .oem-v2-stage .card-head span {
  font: 700 10.5px/1 "Chakra Petch", sans-serif;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.lp-oem .oem-v2-stage .spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 150px;
  gap: 4px 5px;
  margin: 0 0 9px;
  padding: 0;
  list-style: none;
}

.lp-oem .oem-v2-stage .spec-list li {
  padding: 5px 7px;
  border: 1px solid var(--v2-line);
  border-radius: 4px;
  color: #3a4552;
  background: #f8f9fa;
  font: 600 9px/1 "Chakra Petch", sans-serif;
  letter-spacing: .35px;
  text-align: center;
  white-space: nowrap;
}

.lp-oem .oem-v2-stage .pill {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 3px;
  color: #6b7684;
  background: #eef0f3;
  font: 600 8.5px/1 "Chakra Petch", sans-serif;
  letter-spacing: 1.2px;
}

.lp-oem .oem-v2-stage .row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px;
}

.lp-oem .oem-v2-stage .opt {
  position: relative;
  padding: 3px;
  border: 0;
  border-radius: 7px;
  color: inherit;
  background: none;
  line-height: 0;
  transition: transform .2s, background .2s;
}

.lp-oem .oem-v2-stage .opt.on {
  background: #fbf3e6;
  box-shadow: inset 0 0 0 1.5px var(--v2-bronze-2);
}

.lp-oem .oem-v2-stage #c-area .zone-opt.on {
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.lp-oem .oem-v2-stage #c-finish .finish-opt.on {
  background: none;
  box-shadow: none;
}

.lp-oem .oem-v2-stage .finish-opt {
  display: flex;
  min-width: 48px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #596473;
  font: 700 8px/1 "Chakra Petch", sans-serif;
  letter-spacing: .6px;
}

.lp-oem .oem-v2-stage .sw {
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 5px;
}

.lp-oem .oem-v2-stage .finish-opt .sw {
  width: 30px;
  height: 22px;
}

.lp-oem .oem-v2-stage .dot {
  display: block;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 50%;
}

.lp-oem .oem-v2-stage .cap {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  outline: 1px solid #d6dae0;
  color: #fff;
  font: 700 6.5px/1.25 "Chakra Petch", sans-serif;
  letter-spacing: .6px;
  text-align: center;
}

.lp-oem .oem-v2-stage .cap.silver {
  color: #3a4552;
}

.lp-oem .oem-v2-stage .opt.on .cap {
  outline: 2px solid var(--v2-bronze-2);
}

.lp-oem .oem-v2-stage .color-picker {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 50%;
  background: #fff;
}

.lp-oem .oem-v2-stage .color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.lp-oem .oem-v2-stage .color-picker::-webkit-color-swatch {
  border: 0;
  border-radius: 50%;
}

.lp-oem .oem-v2-stage .pkg {
  width: 44px;
  height: 40px;
}

.lp-oem .oem-v2-stage .veh {
  width: 46px;
  height: 22px;
}

.lp-oem .oem-v2-stage .veh-label {
  margin-bottom: 8px;
  color: #3a4552;
  font: 600 9.5px/1 "Chakra Petch", sans-serif;
  letter-spacing: 1px;
}

.lp-oem .oem-v2-stage .status-note {
  display: block;
  min-height: 13px;
  margin-top: 7px;
  color: #a26e1b;
  font: 400 8px/1 "Chakra Petch", sans-serif;
  letter-spacing: .7px;
}

.lp-oem .oem-v2-stage .status-note.error {
  color: #a83b32;
}

@keyframes oem-v2-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes oem-v2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes oem-v2-wheel-in {
  from { opacity: 0; transform: scale(.86) rotate(-10deg); }
  to { opacity: 1; transform: none; }
}

@keyframes oem-v2-card-in {
  from { opacity: 0; transform: scale(.85) translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* The supplied Hero V2 reference is a full-viewport hero. The existing site
   shell remains unchanged below it; only this first-screen composition breaks
   out of the shell width on desktop. */
@media (min-width: 1101px) {
  .lp-oem .oem-hero {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    grid-template-columns: minmax(0, 41fr) minmax(0, 59fr);
    gap: 24px;
    height: calc(100svh - 84px);
    min-height: 0;
    padding: 0 48px 0 64px;
  }

  .lp-oem .oem-hero-copy {
    top: -150px;
  }

  .lp-oem .oem-hero-stage,
  .lp-oem .oem-v2-stage {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 1100px) {
  .lp-oem .oem-v2-stage {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 40px 24px;
  }

  .lp-oem .oem-v2-stage .card {
    position: static !important;
    min-width: 0;
  }

  .lp-oem .oem-v2-stage .wheel-wrap {
    position: static;
    width: 80%;
    margin: 0 auto 12px;
    grid-column: 1 / -1;
  }

  .lp-oem .oem-v2-stage #wires,
  .lp-oem .oem-v2-stage .ground {
    display: none;
  }
}

@media (max-width: 700px) {
  .lp-oem .oem-hero-stage {
    min-height: 0;
  }

  .lp-oem .oem-v2-stage {
    grid-template-columns: 1fr;
    padding: 28px 16px;
  }

  .lp-oem .oem-v2-stage .wheel-wrap {
    width: 94%;
  }

  .lp-oem .oem-v2-stage .card {
    width: 100%;
  }

  .lp-oem .oem-v2-stage .row {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-oem .oem-v2-stage *,
  .lp-oem .oem-v2-stage *::before,
  .lp-oem .oem-v2-stage *::after {
    animation: none !important;
    transition: none !important;
  }
}
