/* Interaction, navigation and footer layer for the Lumison demo. */
html.js body {
  overflow-x: hidden;
}
.site-header {
  transition:
    height 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(251, 251, 249, 0.96);
  box-shadow: 0 12px 35px rgba(10, 12, 13, 0.06);
}
.nav-item {
  position: relative;
}
.nav-dropdown {
  display: flex !important;
  align-items: center;
  gap: 2px;
  transition: color 0.22s ease;
}
.nav-chevron {
  margin-left: 6px;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.nav-item.is-open .nav-dropdown {
  color: #6a8964;
}
.nav-item.is-open .nav-chevron {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 23px);
  left: -22px;
  width: 300px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #edeeea;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(8, 11, 13, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  backdrop-filter: blur(18px);
}
.nav-item.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.mega-menu p {
  margin: 1px 8px 11px;
  font:
    500 8px "DM Mono",
    monospace;
  letter-spacing: 1.5px;
  color: #8a8e8d;
}
.mega-menu a {
  display: block;
  padding: 11px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: #111415;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.mega-menu a:hover {
  background: #f5f5f7;
  transform: translateX(3px);
}
.mega-menu b {
  display: block;
  font-size: 12px;
  letter-spacing: -0.35px;
}
.mega-menu span {
  display: block;
  margin-top: 3px;
  font-size: 16px;
  color: #7e8481;
}
.mobile-panel {
  display: none;
}

/* Page-entry and in-view motion */
.js .hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: lumison-enter 0.75s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}
.js .hero-copy .eyebrow {
  animation-delay: 0.08s;
}
.js .hero-copy h1 {
  animation-delay: 0.15s;
}
.js .hero-copy .hero-kicker {
  animation-delay: 0.24s;
}
.js .hero-copy .hero-text {
  animation-delay: 0.3s;
}
.js .hero-copy .hero-buttons {
  animation-delay: 0.38s;
}
.js .hero-copy .hero-meta {
  animation-delay: 0.46s;
}
.js .hero-stage > * {
  opacity: 0;
  animation: lumison-fade 0.7s ease forwards;
}
.js .hero-stage .grid-glow {
  animation-delay: 0.15s;
}
.js .hero-stage .hero-robot {
  animation-delay: 0.22s;
}
.js .hero-stage .stage-label {
  animation-delay: 0.35s;
}
.js .hero-stage .featured-chip {
  animation-delay: 0.42s;
}
.js .hero-stage .slide-control,
.js .hero-stage .slide-dots {
  animation-delay: 0.55s;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .product-card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.js .product-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.js .product-card.reveal:nth-child(4) {
  transition-delay: 0.24s;
}
@keyframes lumison-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lumison-fade {
  to {
    opacity: 1;
  }
}

/* Micro-interactions inspired by the reference site's restrained motion. */
.button,
.catalog-button,
.rail-arrow,
.featured-chip,
.product-card,
.humanoid-card,
.solution-panel {
  transition:
    transform 0.28s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}
.button-dark:hover,
.catalog-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.button-text:hover {
  transform: translateX(5px);
}
.featured-chip:hover {
  transform: translateY(-7px) rotate(-1deg);
  box-shadow: 0 22px 54px rgba(12, 19, 12, 0.16);
}
.product-card {
  min-width: calc((100% - 34px) / 3);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 46px rgba(8, 12, 11, 0.11);
  border-color: #dfe3dd;
}
.product-card:hover .card-art {
  transform: translateY(-5px) scale(1.035);
}
.card-art {
  transition: transform 0.5s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.humanoid-card:hover,
.solution-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 12, 11, 0.1);
}
.rail-arrow:hover {
  transform: scale(1.08);
  border-color: #97ad91;
}
.slide-dots button {
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.slide-dots button:hover {
  transform: scaleX(1.25);
}
.trust-logos b {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.trust-logos:hover b {
  opacity: 0.4;
}
.trust-logos b:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Cinematic AS2 film panel */
.motion-film {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(310px, 0.87fr) minmax(480px, 1.13fr);
  min-height: min(55vw, 740px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 79% 48%,
      rgba(47, 120, 218, 0.24),
      transparent 31%
    ),
    #030506;
  color: #f6f8fb;
}

/* Video guide and FAQ: an editorial split section that bridges discovery and contact. */
.video-faq {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(42px, 5vw, 96px);
  padding: clamp(72px, 8vw, 132px) 5.9vw;
  background: #fff;
}
.video-faq__videos {
  min-width: 0;
}
.video-faq__heading {
  margin-bottom: 27px;
}
.video-faq__eyebrow {
  margin: 0 0 12px;
  color: #8c9290;
  font: 500 10px "DM Mono", monospace;
  letter-spacing: 1.8px;
}
.video-faq h2 {
  margin: 0;
  color: #101315;
  font-size: clamp(30px, 3vw, 49px);
  font-weight: 800;
  letter-spacing: -2.8px;
  line-height: 0.95;
}
.video-faq__card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}
.video-faq__card {
  position: relative;
  display: block;
  min-height: 265px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background-color: #242a2f;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 0.3s ease;
}
.video-faq__card--quadruped {
  background-image: url("assets/lumison-quadruped-source.png");
}
.video-faq__card--humanoid {
  background-image: url("assets/cards/h2.png");
  background-size: 88%;
  background-color: #1b2024;
}
.video-faq__card--industry {
  background-image: url("assets/lumison-new-hero-banner.jpg");
  background-position: 61% center;
}
.video-faq__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 10, 0.06) 30%, rgba(3, 7, 10, 0.72) 100%);
}
.video-faq__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border: 2px solid #48a5ff;
  border-radius: 50%;
  background: rgba(6, 21, 33, 0.58);
  box-shadow: 0 0 0 5px rgba(48, 150, 247, 0.22), 0 5px 20px rgba(0, 0, 0, 0.35);
  color: #79bdff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
}
.video-faq__play i {
  margin-left: 3px;
  font-size: 17px;
}
.video-faq__card-title {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 800;
  letter-spacing: -0.9px;
  line-height: 1.12;
}
.video-faq__card:hover,
.video-faq__card:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 16px 30px rgba(8, 11, 13, 0.18);
  outline: none;
  transform: translateY(-5px);
}
.video-faq__card:hover .video-faq__play,
.video-faq__card:focus-visible .video-faq__play {
  background: #197bd1;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-faq__questions {
  align-self: end;
  min-width: 0;
  padding: 0 0 3px clamp(0px, 1vw, 18px);
}
.faq-list {
  border-top: 1px solid #dfe3df;
}
.faq-list__item {
  border-right: 1px solid #dfe3df;
  border-bottom: 1px solid #dfe3df;
  border-left: 1px solid #dfe3df;
  background: #fff;
}
.faq-list__item summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: #202427;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.55px;
  list-style: none;
}
.faq-list__item summary::-webkit-details-marker {
  display: none;
}
.faq-list__item summary::after {
  flex: 0 0 auto;
  color: #202427;
  content: "+";
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.22s ease;
}
.faq-list__item[open] summary::after {
  transform: rotate(45deg);
}
.faq-list__item p {
  max-width: 570px;
  margin: -2px 58px 18px 18px;
  color: #6e7475;
  font-size: 12px;
  line-height: 1.65;
}
.video-faq__contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: #141718;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-decoration: none;
}
.video-faq__contact span {
  font-size: 19px;
  transition: transform 0.22s ease;
}
.video-faq__contact:hover span,
.video-faq__contact:focus-visible span {
  transform: translateX(4px);
}
.motion-film::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    90deg,
    #030506 0%,
    rgba(3, 5, 6, 0.86) 35%,
    rgba(3, 5, 6, 0.24) 50%,
    transparent 68%
  );
  content: "";
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.motion-film__copy {
  z-index: 3;
  align-self: center;
  padding: clamp(70px, 8vw, 140px) 2vw clamp(70px, 8vw, 140px) 5.2vw;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1),
    visibility 0s linear;
}
.motion-film__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 37px;
  color: #39a1ff;
  font:
    700 11px "DM Mono",
    monospace;
  letter-spacing: 3.2px;
}
.motion-film__eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 15px currentColor;
}
.motion-film h2 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font:
    800 clamp(35px, 3.45vw, 58px)/0.98 "Manifold Extd",
    Impact,
    sans-serif;
  letter-spacing: 0.015em;
}
.motion-film__text {
  max-width: 370px;
  margin: 34px 0 44px;
  color: rgba(234, 240, 246, 0.72);
  font:
    500 15px/1.7 "Cabin",
    Arial,
    sans-serif;
}
.motion-film__link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 3px solid #197bd6;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font:
    700 12px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 1.6px;
}
.motion-film__link i {
  font-size: 15px;
  transition: transform 0.25s ease;
}
.motion-film__link:hover i,
.motion-film__link:focus-visible i {
  transform: translateX(5px);
}
.motion-film__link:focus-visible,
.motion-film__play:focus-visible {
  outline: 2px solid #69b8ff;
  outline-offset: 5px;
}
.motion-film__stage {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}
.motion-film__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04) brightness(1);
}
.motion-film__stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 6, 0.72) 0%,
      rgba(3, 5, 6, 0.38) 28%,
      rgba(3, 5, 6, 0.06) 50%,
      transparent 65%
    );
  content: "";
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.motion-film__frame {
  position: absolute;
  z-index: 2;
  inset: 23px;
  border: 1px solid rgba(154, 209, 255, 0.25);
  border-left: 0;
  pointer-events: none;
}
.motion-film__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 52%;
  display: grid;
  width: clamp(86px, 9vw, 134px);
  height: clamp(86px, 9vw, 134px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(5, 11, 18, 0.22);
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(5px);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.motion-film__play i {
  margin-left: 3px;
  font-size: clamp(21px, 2vw, 31px);
}
.motion-film__play:hover {
  background: rgba(28, 127, 219, 0.55);
  transform: translate(-50%, -50%) scale(1.08);
}
.motion-film__quick-toggle {
  position: absolute;
  z-index: 4;
  bottom: clamp(28px, 4vw, 64px);
  left: 5.2vw;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font:
    700 11px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 1.6px;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 2px 16px #000;
  transform: translateY(12px);
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0.35s;
}
.motion-film__quick-toggle i {
  font-size: 12px;
}
.motion-film__quick-toggle:focus-visible {
  outline: 2px solid #69b8ff;
  outline-offset: 5px;
}
.motion-film.is-playing::before {
  opacity: 0;
}
.motion-film.is-playing .motion-film__stage::after {
  opacity: 0.12;
}
.motion-film.is-playing .motion-film__copy {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8%) scale(0.96);
  visibility: hidden;
  transition-delay: 0s, 0s, 0.45s;
}
.motion-film.is-playing .motion-film__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.82);
  visibility: hidden;
}
.motion-film.is-playing .motion-film__quick-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}
.motion-film.is-paused .motion-film__video {
  filter: saturate(0.96) contrast(1.04) brightness(1);
}

/* Product explorer directly after the film: selection is emphasized without reflow. */
.systems-slider {
  --systems-blue: #1878d0;
  padding: clamp(68px, 8vw, 132px) 4.1vw clamp(48px, 5vw, 78px);
  overflow: hidden;
  background: #fff;
  color: #111;
}
.systems-slider__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: clamp(38px, 5vw, 74px);
}
.systems-slider__intro {
  max-width: 820px;
}
.systems-slider__eyebrow {
  margin: 0 0 20px;
  color: var(--systems-blue);
  font:
    600 14px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 2.4px;
}
.systems-slider__intro h2 {
  margin: 0;
  font:
    800 clamp(35px, 3.45vw, 58px)/0.98 "Manifold Extd",
    Impact,
    sans-serif;
  letter-spacing: 0.015em;
}
.systems-slider__intro > p:last-child {
  max-width: 390px;
  margin: 23px 0 0;
  color: #747474;
  font:
    400 18px/1.45 "Cabin",
    Arial,
    sans-serif;
}
.systems-slider__all {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex: none;
  margin-bottom: 3px;
  padding: 17px 22px;
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
  font:
    600 13px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 1.45px;
  text-decoration: none;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}
.systems-slider__all span {
  font-size: 21px;
  line-height: 0;
}
.systems-slider__all:hover,
.systems-slider__all:focus-visible {
  border-color: var(--systems-blue);
  background: var(--systems-blue);
  color: #fff;
  outline: 0;
}
.systems-slider__viewport {
  padding: 8px 0 14px;
  overflow: visible;
  scrollbar-width: none;
}
.systems-slider__viewport::-webkit-scrollbar {
  display: none;
}
.systems-slider__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: flex-end;
  gap: 17px;
  width: 100%;
}
.systems-slider__card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto auto;
  min-width: 0;
  width: 100%;
  min-height: 386px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #161616;
  cursor: pointer;
  text-align: left;
  transform-origin: center bottom;
  transition: transform 0.32s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.systems-slider__card.is-active {
  z-index: 1;
  transform: translateY(-8px) scale(1.055);
}
.systems-slider__card:first-child.is-active {
  transform-origin: left bottom;
}
.systems-slider__card:last-child.is-active {
  transform-origin: right bottom;
}
.systems-slider__image {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  background: #f8f8f6;
  transition: box-shadow 0.32s ease;
}
.systems-slider__card.is-active .systems-slider__image {
  box-shadow: 0 12px 28px rgba(12, 19, 27, 0.1);
}
.systems-slider__number {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  color: var(--systems-blue);
  font:
    600 12px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 0.08em;
  pointer-events: none;
}
.systems-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.52s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.systems-slider__card.is-active .systems-slider__image img {
  transform: scale(1.07);
}
.systems-slider__name {
  display: block;
  margin: 15px 0 3px;
  font:
    600 clamp(16px, 1.3vw, 21px) "Cabin",
    Arial,
    sans-serif;
  letter-spacing: -0.025em;
}
.systems-slider__name b {
  font-weight: 400;
}
.systems-slider__type {
  color: #818181;
  font:
    400 clamp(13px, 1vw, 16px) "Cabin",
    Arial,
    sans-serif;
}
.systems-slider__card:focus-visible {
  outline: 3px solid var(--systems-blue);
  outline-offset: 5px;
}
.systems-slider__progress {
  position: relative;
  height: 3px;
  margin-top: 34px;
  background: #e7e8ea;
}
.systems-slider__progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--systems-blue);
  box-shadow: 0 0 12px rgba(24, 120, 208, 0.3);
  transition: width 0.42s cubic-bezier(0.2, 0.75, 0.2, 1);
}

@media (max-width: 760px) {
  .video-faq {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 20px;
  }
  .video-faq__heading {
    margin-bottom: 22px;
  }
  .video-faq h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .video-faq__card-grid {
    grid-template-columns: repeat(3, minmax(155px, 1fr));
    padding-bottom: 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .video-faq__card-grid::-webkit-scrollbar {
    display: none;
  }
  .video-faq__card {
    min-height: 225px;
  }
  .video-faq__questions {
    padding: 0;
  }
  .faq-list__item summary {
    min-height: 61px;
    padding: 15px;
    font-size: 12px;
  }
  .faq-list__item p {
    margin: -1px 45px 17px 15px;
  }
  .motion-film {
    display: flex;
    min-height: 690px;
    align-items: flex-end;
  }
  .motion-film::before {
    background: linear-gradient(
      180deg,
      rgba(3, 5, 6, 0.05) 0%,
      rgba(3, 5, 6, 0.28) 37%,
      #030506 80%
    );
  }
  .motion-film__video {
    object-position: center;
  }
  .motion-film__copy {
    padding: 45px 25px 42px;
  }
  .motion-film__eyebrow {
    margin-bottom: 21px;
    font-size: 9px;
    letter-spacing: 2.4px;
  }
  .motion-film h2 {
    font-size: clamp(32px, 9.4vw, 44px);
  }
  .motion-film__text {
    max-width: 310px;
    margin: 22px 0 28px;
    font-size: 14px;
  }
  .motion-film__play {
    top: 34%;
    left: 50%;
    width: 82px;
    height: 82px;
  }
  .motion-film__quick-toggle {
    bottom: 24px;
    left: 25px;
  }
  .motion-film__frame {
    inset: 13px;
  }
  .systems-slider {
    padding: 62px 19px 46px;
  }
  .systems-slider__header {
    display: block;
    margin-bottom: 34px;
  }
  .systems-slider__eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 1.9px;
  }
  .systems-slider__intro h2 {
    font-size: clamp(32px, 9.4vw, 44px);
  }
  .systems-slider__intro > p:last-child {
    margin-top: 17px;
    font-size: 15px;
  }
  .systems-slider__all {
    margin-top: 26px;
    padding: 13px 15px;
    font-size: 10px;
  }
  .systems-slider__viewport {
    margin-right: -19px;
    padding: 7px 19px 12px 0;
    overflow-x: auto;
  }
  .systems-slider__track {
    display: flex;
    gap: 13px;
    min-width: max-content;
  }
  .systems-slider__card,
  .systems-slider__card.is-active {
    flex: 0 0 66vw;
    flex-basis: 66vw;
    width: 66vw;
    min-height: 352px;
  }
  .systems-slider__card.is-active {
    transform: translateY(-5px) scale(1.025);
  }
  .systems-slider__name {
    margin-top: 12px;
  }
  .systems-slider__progress {
    margin-top: 23px;
  }
}

/* Reuse the selected-products eyebrow treatment across editorial section labels. */
.section-eyebrow--selected-products.section-eyebrow--selected-products {
  color: var(--systems-blue, #1878d0);
  font:
    600 14px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 2.4px;
}

@media (max-width: 760px) {
  .section-eyebrow--selected-products {
    font-size: 10px;
    letter-spacing: 1.9px;
  }
}

/* Compact video + FAQ composition, matched to the supplied reference. */
.video-faq {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 49px 4.55vw 43px;
}
.video-faq__heading {
  margin-bottom: 27px;
}
.video-faq__accessible-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.video-faq h2 {
  display: none;
}
.video-faq__card-grid {
  gap: 13px;
}
.video-faq__card {
  display: block;
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #202326;
  text-decoration: none;
  transform: none;
}
.video-faq__poster {
  position: relative;
  display: block;
  aspect-ratio: 1.42;
  overflow: hidden;
  border-radius: 11px;
  background-color: #20262b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 0.3s ease;
}
.video-faq__card--quadruped .video-faq__poster {
  background-image: url("assets/menu.jpg");
}
.video-faq__card--humanoid .video-faq__poster {
  background-image: url("assets/cards/h2.png");
  background-size: 87%;
  background-color: #161c21;
}
.video-faq__card--industry .video-faq__poster {
  background-image: url("assets/3 4.jpg");
  background-position: 73% center;
}
.video-faq__shade {
  background: linear-gradient(180deg, rgba(3, 7, 10, 0.02) 39%, rgba(3, 7, 10, 0.38) 100%);
}
.video-faq__play {
  top: auto;
  bottom: 24px;
  left: 47px;
  width: 57px;
  height: 57px;
  border-width: 2px;
  background: rgba(5, 19, 32, 0.5);
  color: #4ba9ff;
  transform: translateX(-50%);
}
.video-faq__play i {
  font-size: 16px;
}
.video-faq__card-title {
  position: static;
  display: block;
  margin: 16px 0 0 18px;
  color: #2b2e30;
  font: 600 clamp(16px, 1.08vw, 21px)/1.06 "Cabin", Arial, sans-serif;
  letter-spacing: -0.8px;
}
.video-faq__card:hover,
.video-faq__card:focus-visible {
  box-shadow: none;
  transform: none;
}
.video-faq__card:hover .video-faq__poster,
.video-faq__card:focus-visible .video-faq__poster {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), 0 12px 25px rgba(8, 11, 13, 0.14);
  transform: translateY(-3px);
}
.video-faq__card:hover .video-faq__play,
.video-faq__card:focus-visible .video-faq__play {
  background: #197bd1;
  transform: translateX(-50%) scale(1.08);
}
.video-faq__questions {
  position: relative;
  align-self: stretch;
  padding: 0 0 0 58px;
}
.video-faq__questions::before {
  position: absolute;
  top: -15px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: #ededeb;
  content: "";
}
.video-faq__questions .video-faq__eyebrow {
  margin: 0 0 19px;
  color: #202326;
  font: 800 clamp(21px, 1.45vw, 29px)/1 "Manifold Extd", Impact, sans-serif;
  letter-spacing: 0;
}
.faq-list {
  border-top-color: #e0e0de;
}
.faq-list__item {
  border-color: #e0e0de;
}
.faq-list__item summary {
  min-height: 54px;
  padding: 12px 17px;
  font: 600 clamp(13px, 0.92vw, 17px)/1.2 "Cabin", Arial, sans-serif;
  letter-spacing: -0.55px;
}
.faq-list__item summary::after {
  font-size: 24px;
}
.faq-list__item p {
  font-family: "Cabin", Arial, sans-serif;
}
.video-faq__contact {
  display: none;
}

@media (max-width: 760px) {
  .video-faq {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 62px 20px 56px;
  }
  .video-faq__heading {
    margin-bottom: 20px;
  }
  .video-faq__card-grid {
    grid-template-columns: repeat(3, minmax(155px, 1fr));
    gap: 12px;
  }
  .video-faq__poster {
    aspect-ratio: 1.42;
  }
  .video-faq__play {
    bottom: 18px;
    left: 40px;
    width: 47px;
    height: 47px;
  }
  .video-faq__card-title {
    margin: 11px 0 0 8px;
    font-size: 14px;
  }
  .video-faq__questions {
    padding-left: 0;
  }
  .video-faq__questions::before {
    display: none;
  }
  .video-faq__questions .video-faq__eyebrow {
    margin-bottom: 17px;
    font-size: 23px;
  }
}

/* Full footer, using the reference site's spacious information architecture. */
.site-footer {
  display: grid;
  grid-template-columns: 1.65fr 1.55fr 1fr 1fr;
  gap: 48px;
  padding: 91px 3.3vw 0;
  background: #fff;
  border-top: 1px solid #e5e7e2;
  color: #101313;
}
.site-footer .brand {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 20px;
}
.footer-lead > p {
  max-width: 330px;
  margin: 0 0 27px;
  color: #707674;
  font-size: 12px;
  line-height: 1.75;
}
.footer-partners {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  color: #151817;
}
.footer-partners span {
  font:
    500 8px "DM Mono",
    monospace;
  letter-spacing: 1.4px;
  color: #929794;
}
.footer-partners b {
  font-size: 11px;
  letter-spacing: 0.3px;
}
.footer-title {
  margin: 3px 0 21px;
  font:
    500 9px "DM Mono",
    monospace;
  letter-spacing: 1.5px;
  color: #8a908d;
}
.footer-contact a {
  display: block;
  position: relative;
  margin: 0 0 20px;
  padding-left: 24px;
  color: #141718;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.35px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.footer-contact a:hover {
  color: #668260;
  transform: translateX(3px);
}
.footer-contact a span {
  position: absolute;
  left: 0;
  top: -2px;
  color: #77a16f;
  font-size: 18px;
  font-weight: 400;
}
.footer-contact a small {
  display: block;
  margin-top: 4px;
  color: #8b908e;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.footer-location {
  margin: 29px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e6e8e4;
  color: #747a77;
  font-size: 11px;
  line-height: 1.75;
}
.footer-links a {
  display: block;
  margin: 0 0 13px;
  color: #3c4140;
  text-decoration: none;
  font-size: 11px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.footer-links a:hover {
  transform: translateX(4px);
  color: #6f9368;
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding: 22px 0;
  border-top: 1px solid #e6e8e4;
  color: #939895;
}
.footer-bottom p {
  margin: 0;
  font-size: 9px;
}
.footer-bottom div {
  display: flex;
  gap: 19px;
}
.footer-bottom a {
  color: #777d79;
  text-decoration: none;
  font-size: 9px;
  transition: color 0.2s ease;
}
.footer-bottom a:first-child {
  color: #111514;
  font-weight: 800;
}
.footer-bottom a:hover {
  color: #6d9065;
}
.footer-bottom b {
  margin-left: 4px;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .product-card {
    min-width: calc((100% - 17px) / 2);
  }
  .site-footer {
    grid-template-columns: 1.4fr 1.35fr 1fr;
    gap: 35px;
  }
  .footer-links:last-of-type {
    grid-column: 3;
  }
  .footer-bottom {
    margin-top: 18px;
  }
}
@media (max-width: 760px) {
  .site-header {
    z-index: 50;
  }
  .site-header.is-scrolled {
    height: 63px;
  }
  .mobile-panel {
    position: fixed;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 3px;
    top: 67px;
    left: 10px;
    right: 10px;
    padding: 17px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #e8ebe5;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(8, 11, 13, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    backdrop-filter: blur(18px);
  }
  body.menu-open {
    overflow: hidden;
  }
  .menu-open .mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-panel a {
    padding: 12px 9px;
    border-radius: 9px;
    color: #141716;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
  }
  .mobile-panel a:hover {
    background: #f2f5ef;
  }
  .mobile-panel .mobile-panel-cta {
    margin-top: 7px;
    background: #101312;
    color: white;
    text-align: center;
    font-size: 10px;
    letter-spacing: 1px;
  }
  .menu-toggle i {
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }
  .menu-open .menu-toggle i:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }
  .menu-open .menu-toggle i:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }
  .product-card {
    min-width: 83vw;
  }
  .site-footer {
    display: block;
    padding: 60px 19px 0;
  }
  .footer-lead {
    margin-bottom: 44px;
  }
  .footer-contact {
    margin-bottom: 39px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
    margin-bottom: 26px;
  }
  .footer-links .footer-title {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    margin-top: 25px;
    padding: 18px 0 23px;
  }
  .footer-bottom p {
    margin-bottom: 14px;
  }
  .footer-bottom div {
    gap: 13px;
  }
  .footer-bottom a {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .hero-copy > *,
  .js .hero-stage > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Brand direction: dark technical hero, Manifold display face and the #25437A accent. */
@font-face {
  font-family: "Manifold Extd";
  src: url("assets/fonts/ManifoldExtendedCF-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabin";
  src: url("assets/fonts/Cabin-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabin";
  src: url("assets/fonts/Cabin-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --brand-blue: #25437a;
  --hero-black: #050505;
  --hero-white: #f7f7f5;
}
body {
  font-family: "Cabin", Arial, sans-serif;
}

/* Transparent at the top; the script adds .is-scrolled after 24px. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  height: 132px;
  padding: 0 4.1vw;
  gap: clamp(20px, 3vw, 58px);
  border-bottom: 0;
  /* Keep the navigation readable without dimming the hero artwork. */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  backdrop-filter: none;
  color: #fff;
}
.site-header.is-scrolled {
  height: 108px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 9px 27px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
  color: #080808;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Cabin", Arial, sans-serif;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
}
.brand-mark {
  position: relative;
  display: grid !important;
  grid-template-columns: 12px 12px;
  grid-template-rows: 13px 13px;
  width: 34px;
  height: 38px;
  gap: 3px;
  transform: skewY(-30deg);
}
.brand-mark i {
  display: block;
  background: #fff;
  transform: skewY(30deg);
}
.brand-mark i:first-child {
  grid-row: 1 / span 2;
  border-radius: 1px 0 0 1px;
}
.brand-mark i:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  border-radius: 0 2px 0 0;
}
.brand-mark i:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  border-radius: 0 0 2px 0;
}
.brand-lockup {
  display: flex !important;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.brand-lockup strong {
  font-size: 23px;
  letter-spacing: 5.4px;
  font-weight: 600;
}
.brand-lockup em {
  font-size: 8px;
  letter-spacing: 5.8px;
  font-style: normal;
  font-weight: 600;
  color: currentColor;
  opacity: 0.84;
}
.site-header.is-scrolled .brand {
  color: #101010;
}
.site-header.is-scrolled .brand-mark i:first-child,
.site-header.is-scrolled .brand-mark i:nth-child(3) {
  background: var(--brand-blue);
}
.site-header.is-scrolled .brand-mark i:nth-child(2) {
  background: #101010;
}
.desktop-nav {
  justify-content: center;
  gap: clamp(18px, 2.15vw, 43px);
}
.desktop-nav a,
.nav-dropdown {
  color: inherit;
  font:
    600 16px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 0;
  padding: 12px 0;
}
.nav-dropdown span {
  border-color: currentColor;
}
.header-actions {
  margin-left: auto;
  gap: 27px;
}
.language {
  display: flex;
  color: inherit;
  font:
    600 15px "Cabin",
    Arial,
    sans-serif;
  gap: 9px;
}
.language b {
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-weight: 600;
}
.language-icon {
  font-size: 20px;
  line-height: 1;
}
.language-chevron {
  font-size: 10px;
}
.catalog-button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 17px 23px;
  border: 2px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font:
    600 15px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 1.6px;
}
.catalog-button b {
  font-size: 21px;
  font-weight: 400;
  line-height: 0;
}
.catalog-button:hover {
  background: #fff;
  color: #111;
  box-shadow: none;
  transform: none;
}
.site-header.is-scrolled .catalog-button:hover {
  background: #111;
  color: #fff;
}
.mega-menu {
  top: calc(100% + 10px);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  padding: 184px 4.1vw 60px;
  grid-template-columns: minmax(470px, 48%) 1fr;
  background: #050505 url("assets/hero-higher.jpg") center center/cover
    no-repeat;
  color: var(--hero-white);
  border-bottom: 0;
}
.hero:before {
  display: none;
}
.hero:after {
  display: none;
}
.hero-copy {
  align-self: center;
  padding-bottom: 31px;
}
.hero .eyebrow {
  font:
    600 14px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 3.1px;
  color: var(--brand-blue);
  margin: 0 0 31px;
}
.hero .eyebrow span {
  width: 42px;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: var(--hero-white);
  margin: 0 18px 5px 0;
}
.hero h1 {
  font-family: "Manifold Extd", Impact, sans-serif;
  font-size: clamp(58px, 5.3vw, 102px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.93;
  color: #fff;
  margin: 0 0 27px;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}
.hero h1 span {
  color: inherit;
}
.hero-kicker {
  display: none;
}
.hero-text {
  max-width: 575px;
  color: #e2e2e0;
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
}
.hero-buttons {
  gap: 26px;
  margin-top: 37px;
}
.hero .button {
  min-height: 58px;
  padding: 0 27px;
  border-radius: 0;
  font:
    600 14px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 1.15px;
  gap: 29px;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}
.hero .button b {
  font-size: 22px;
  font-weight: 400;
}
.button-light {
  background: #fff;
  color: #111;
}
.button-light:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-3px);
}
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: #fff;
}
.button-outline:hover {
  border-color: #fff;
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}
.hero-stage {
  min-height: 0;
  height: 100%;
  position: absolute;
  inset: 132px 0 0 43.5%;
  overflow: hidden;
}
.hero-stage:before {
  display: none;
}
.hero-stage:after {
  display: none;
}
.hero-robot {
  z-index: 0;
  width: min(1070px, 74vw);
  max-width: none;
  top: 5%;
  bottom: auto;
  left: 3%;
  filter: grayscale(1) contrast(1.18) brightness(1.1)
    drop-shadow(0 36px 30px rgba(0, 0, 0, 0.7));
  animation: float 7s ease-in-out infinite;
}
.hero-specs {
  position: absolute;
  z-index: 4;
  right: 4.2vw;
  top: 37%;
  width: min(260px, 19vw);
  display: grid;
  gap: 34px;
}
.hero-specs > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hero-specs i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  font-style: normal;
  font-size: 15px;
}
.hero-specs p {
  display: grid;
  gap: 5px;
  margin: 0;
  line-height: 1.2;
}
.hero-specs b {
  font:
    600 16px "Cabin",
    Arial,
    sans-serif;
  color: #fff;
}
.hero-specs span {
  font-size: 13px;
  color: #c6c6c5;
  line-height: 1.32;
}
.hero-accent-line {
  position: absolute;
  z-index: 4;
  right: 4.3vw;
  top: 7%;
  width: 3px;
  height: 78%;
  background: linear-gradient(
    to bottom,
    transparent,
    #fff 12% 88%,
    transparent
  );
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.85);
}

.site-footer .brand {
  color: #101313;
}
.site-footer .brand:not(:has(.brand-mark)) {
  display: inline-flex;
  font-size: 25px;
}
.site-footer .brand:not(:has(.brand-mark)) span {
  font:
    600 25px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 2px;
}
.site-footer .brand:not(:has(.brand-mark)) em {
  font:
    600 9px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 3px;
  color: #25437a;
  align-self: flex-end;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav a,
  .nav-dropdown {
    font-size: 14px;
  }
  .header-actions {
    gap: 17px;
  }
  .catalog-button {
    padding: 14px 16px;
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 53% 47%;
  }
  .hero-stage {
    left: 40%;
  }
  .hero-specs {
    right: 3vw;
    width: 200px;
  }
  .hero-specs b {
    font-size: 14px;
  }
  .hero-specs span {
    font-size: 11px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 76px;
    padding: 0 19px;
  }
  .site-header.is-scrolled {
    height: 67px;
  }
  .brand {
    gap: 9px;
  }
  .brand-mark {
    width: 27px;
    height: 31px;
    grid-template-columns: 9px 9px;
    grid-template-rows: 10px 10px;
    gap: 2px;
  }
  .brand-lockup strong {
    font-size: 17px;
    letter-spacing: 3.9px;
  }
  .brand-lockup em {
    font-size: 6px;
    letter-spacing: 4.2px;
  }
  .desktop-nav,
  .language {
    display: none;
  }
  .catalog-button {
    padding: 10px 12px;
    border-width: 1px;
    font-size: 9px;
    gap: 12px;
  }
  .catalog-button b {
    font-size: 15px;
  }
  .menu-toggle i {
    background: #fff;
  }
  .site-header.is-scrolled .menu-toggle i {
    background: #111;
  }
  .mobile-panel {
    top: 75px;
  }
  .site-header.is-scrolled ~ main .hero {
    padding-top: 133px;
  }
  .hero {
    display: block;
    min-height: 804px;
    padding: 138px 19px 28px;
    background:
      radial-gradient(circle at 75% 50%, #1c1c1c 0, transparent 30%), #050505;
  }
  .hero:before {
    inset: 76px 0 0;
    background-size:
      33vw 100%,
      100% 100px;
    mask-image: none;
    opacity: 0.55;
  }
  .hero-copy {
    padding: 0;
    position: relative;
    z-index: 5;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 23px;
  }
  .hero .eyebrow span {
    width: 25px;
    margin-right: 11px;
  }
  .hero h1 {
    font-size: clamp(43px, 12vw, 60px);
    line-height: 0.96;
    letter-spacing: 0.01em;
    margin-bottom: 21px;
  }
  .hero-text {
    max-width: 92%;
    font-size: 15px;
    line-height: 1.48;
  }
  .hero-buttons {
    gap: 12px;
    margin-top: 27px;
  }
  .hero .button {
    min-height: 48px;
    padding: 0 13px;
    font-size: 9px;
    gap: 12px;
  }
  .hero .button b {
    font-size: 17px;
  }
  .hero-stage {
    inset: 368px 0 0 0;
    height: auto;
  }
  .hero-stage:before {
    background:
      radial-gradient(
        ellipse at 50% 52%,
        rgba(255, 255, 255, 0.13),
        transparent 42%
      ),
      linear-gradient(180deg, #050505 0%, transparent 26%);
  }
  .hero-stage:after {
    background: linear-gradient(
      90deg,
      transparent 0 63%,
      rgba(0, 0, 0, 0.22) 63% 63.4%,
      transparent 63.4%
    );
  }
  .hero-robot {
    width: 750px;
    top: 2%;
    left: -26%;
    filter: grayscale(1) contrast(1.14) brightness(1.08)
      drop-shadow(0 25px 26px rgba(0, 0, 0, 0.7));
  }
  .hero-specs {
    right: 19px;
    top: 49%;
    width: 184px;
    gap: 16px;
  }
  .hero-specs > div {
    gap: 9px;
  }
  .hero-specs i {
    flex-basis: 23px;
    width: 23px;
    height: 23px;
    font-size: 10px;
  }
  .hero-specs b {
    font-size: 11px;
  }
  .hero-specs span {
    font-size: 9px;
  }
  .hero-accent-line {
    right: 17px;
    top: 10%;
    height: 76%;
    width: 2px;
  }
  .mobile-panel {
    background: #fff;
  }
  .site-footer .brand:not(:has(.brand-mark)) span {
    font-size: 20px;
  }
}

/* Keep supporting copy legible over the metallic hero render. */
.hero-specs {
  gap: 18px;
}
.hero-specs > div {
  padding: 11px 12px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}
.hero-specs p {
  text-shadow: 0 1px 8px #000;
}
.hero-specs span {
  color: #e3e3e1;
}
.cookie {
  display: none;
}

/* Hero altı kategori sliderı: menüdeki Robotlar ve İnsan başlıklarını tek bir keşif alanında toplar. */
.category-slider {
  position: relative;
  z-index: 3;
  padding: 29px 4.1vw 27px;
  background: #f8f8f6;
  border-bottom: 1px solid #e5e6e2;
}
.category-slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 14px;
}
.category-slider__top > p,
.category-slider__hint {
  margin: 0;
  color: #7e827e;
  font:
    600 15px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 2.15px;
}
.category-slider__controls {
  display: flex;
  gap: 8px;
}
.category-slider__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #d7dad5;
  border-radius: 50%;
  background: transparent;
  color: #181b1a;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.category-slider__arrow:hover {
  background: #101312;
  color: #fff;
  transform: translateY(-2px);
}
.category-slider__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 1px 5px;
}
.category-slider__rail::-webkit-scrollbar {
  display: none;
}
.category-card {
  position: relative;
  display: block;
  height: 300px;
  padding: 23px 23px 21px;
  overflow: hidden;
  border: 1px solid #e0e2de;
  border-radius: 10px;
  background: #fff;
  color: #151817;
  text-decoration: none;
  scroll-snap-align: start;
  isolation: isolate;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.75, 0.2, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.category-card:hover,
.category-card:focus-visible {
  z-index: 1;
  border-color: #bfc6be;
  box-shadow: 0 15px 31px rgba(8, 12, 11, 0.1);
  outline: 0;
  transform: translateY(-5px);
}
.category-card__kind {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 12px;
  color: #767b76;
  font:
    600 12px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 1.7px;
}
.category-card h2 {
  position: relative;
  z-index: 2;
  max-width: 58%;
  margin: 0;
  font:
    600 clamp(23px, 1.85vw, 31px) / 1.03 "Cabin",
    Arial,
    sans-serif;
  letter-spacing: -1.25px;
}
.category-card p {
  position: relative;
  z-index: 2;
  max-width: 48%;
  margin: 11px 0 0;
  color: #646a66;
  font-size: 15px;
  line-height: 1.45;
}
.category-card__link {
  position: absolute;
  z-index: 3;
  bottom: 21px;
  left: 23px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #d4d7d3;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.category-card:hover .category-card__link,
.category-card:focus-visible .category-card__link {
  background: #111413;
  color: #fff;
  transform: translateX(4px);
}
.category-card__visual {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.category-card:hover .category-card__visual,
.category-card:focus-visible .category-card__visual {
  transform: scale(1.04);
}
.category-card--education .category-card__visual,
.category-card--humanoid .category-card__visual,
.category-card--application .category-card__visual,
.category-card--hand .category-card__visual {
  background-image:
    linear-gradient(
      90deg,
      #fff 0 42%,
      rgba(255, 255, 255, 0.35) 63%,
      transparent 84%
    ),
    url("assets/lumison-banner.jpg");
  background-size:
    auto,
    735px auto;
}
.category-card--education .category-card__visual {
  background-position:
    0 0,
    63% 52%;
}
.category-card--humanoid .category-card__visual {
  background-position:
    0 0,
    50% 47%;
}
.category-card--application .category-card__visual {
  background-position:
    0 0,
    28% 47%;
}
.category-card--hand .category-card__visual {
  background-position:
    0 0,
    78% 21%;
}
.category-card--industry .category-card__visual {
  background:
    linear-gradient(
      90deg,
      #fff 0 39%,
      rgba(255, 255, 255, 0.25) 67%,
      transparent 100%
    ),
    url("assets/web.jpg") 84% 54% / auto 289px no-repeat;
}
.category-card--perception .category-card__visual {
  background:
    linear-gradient(
      90deg,
      #fff 0 44%,
      rgba(255, 255, 255, 0.1) 74%,
      transparent 100%
    ),
    url("assets/lumison-quadruped-source.png") 93% 47% / auto 238px no-repeat;
}
.category-card--arms .category-card__visual {
  inset: auto 17px -13px auto;
  width: 170px;
  height: 214px;
  background:
    radial-gradient(circle at 69% 19%, #d7dcda 0 10px, transparent 11px),
    linear-gradient(124deg, transparent 0 34%, #b8c0bc 35% 43%, transparent 44%)
      23px 44px / 145px 120px no-repeat,
    linear-gradient(39deg, transparent 0 39%, #737e79 40% 48%, transparent 49%)
      12px 96px / 150px 96px no-repeat;
  filter: drop-shadow(0 16px 12px rgba(22, 29, 26, 0.16));
}
.category-card--arms .category-card__visual i,
.category-card--arms .category-card__visual b,
.category-card--arms .category-card__visual em {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #424c48;
}
.category-card--arms .category-card__visual i {
  width: 28px;
  height: 28px;
  top: 48px;
  left: 57px;
}
.category-card--arms .category-card__visual b {
  width: 22px;
  height: 22px;
  top: 110px;
  left: 103px;
}
.category-card--arms .category-card__visual em {
  width: 18px;
  height: 18px;
  top: 169px;
  left: 49px;
}
.category-card--components .category-card__visual {
  inset: auto -23px -25px auto;
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    #c7ceca 0deg 8deg,
    transparent 8deg 16deg
  );
  opacity: 0.87;
}
.category-card--components .category-card__visual:before,
.category-card--components .category-card__visual:after,
.category-card--components .category-card__visual i,
.category-card--components .category-card__visual b,
.category-card--components .category-card__visual em {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
}
.category-card--components .category-card__visual:before {
  inset: 25px;
  background: #eef0ed;
}
.category-card--components .category-card__visual:after {
  inset: 67px;
  background: #89948d;
}
.category-card--components .category-card__visual i {
  width: 72px;
  height: 72px;
  top: -34px;
  left: -51px;
  background: #8d9991;
}
.category-card--components .category-card__visual b {
  width: 23px;
  height: 23px;
  top: 92px;
  left: 91px;
  background: #eef0ed;
}
.category-card--components .category-card__visual em {
  width: 91px;
  height: 91px;
  top: 89px;
  left: -62px;
  background: #cdd3cf;
}

/* Supplied product renders for the category cards, in their display order. */
.category-card--education .category-card__visual,
.category-card--industry .category-card__visual,
.category-card--arms .category-card__visual,
.category-card--perception .category-card__visual,
.category-card--humanoid .category-card__visual,
.category-card--application .category-card__visual,
.category-card--hand .category-card__visual {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background-repeat: no-repeat;
  background-size: auto calc(100% - 24px);
  filter: none;
  opacity: 1;
}
.category-card--education .category-card__visual {
  background-image: url("assets/cards/go2.png");
  background-position: right 26px bottom 24px;
  background-size: auto calc(100% - 72px);
}
.category-card--industry .category-card__visual {
  background-image: url("assets/cards/a2.png");
  background-position: right 10px bottom 10px;
}
.category-card--arms .category-card__visual {
  background-image: url("assets/cards/z1.png");
  background-position: right 10px bottom 10px;
}
.category-card--perception .category-card__visual {
  background-image: url("assets/cards/4D-lidar.png");
  background-position: right 10px bottom 10px;
}
.category-card--humanoid .category-card__visual {
  background-image: url("assets/cards/h2.png");
  background-position: right 10px bottom 10px;
}
.category-card--application .category-card__visual {
  background-image: url("assets/cards/r1a.png");
  background-position: right 10px bottom 10px;
}
.category-card--hand .category-card__visual {
  background-image: url("assets/cards/dex2-5.png");
  background-position: right 10px bottom 10px;
}
.category-card--arms .category-card__visual i,
.category-card--arms .category-card__visual b,
.category-card--arms .category-card__visual em {
  display: none;
}
.category-slider__hint {
  display: none;
}

/* Supplied Lumison logo variants: white on the hero and colored after scrolling. */
.site-header .brand {
  position: relative;
  display: block;
  flex: 0 0 270px;
  width: 270px;
  height: 76px;
  color: inherit;
}
.site-header .brand-logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 270px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}
.site-header .brand-logo--color {
  opacity: 0;
}
.site-header.is-scrolled .brand-logo--white {
  opacity: 0;
}
.site-header.is-scrolled .brand-logo--color {
  opacity: 1;
}
.site-footer .brand--footer {
  display: block;
  width: 226px;
  height: 77px;
  margin: 0 0 15px;
}
.site-footer .footer-logo {
  display: block;
  width: 226px;
  height: auto;
}

/* Closing contact banner, placed immediately before the site footer. */
.contact-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(205px, 14vw, 250px);
  /* Let this final call-to-action run edge to edge with the viewport. */
  margin: 0;
  padding: clamp(29px, 2.5vw, 44px) clamp(32px, 4.8vw, 92px);
  overflow: hidden;
  background: #050505;
  color: #fff;
}
.contact-banner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse at 93% 58%,
    #252729 0%,
    #101112 31%,
    #050505 68%
  );
  content: "";
}
.contact-banner::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: clamp(-28px, -1.25vw, -8px);
  width: clamp(480px, 48vw, 720px);
  height: 100%;
  background: url("assets/cards/go2.png") right 5% / auto 220% no-repeat;
  filter: drop-shadow(-18px 22px 20px rgba(0, 0, 0, 0.55));
  content: "";
}
.contact-banner__copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(44px, 6vw, 120px);
  max-width: 1140px;
}
.contact-banner h2 {
  flex: 0 0 auto;
  margin: 0;
  font:
    600 clamp(31px, 3vw, 56px) / 0.98 "Cabin",
    Arial,
    sans-serif;
  letter-spacing: -2.1px;
}
.contact-banner__action {
  max-width: 560px;
}
.contact-banner__action p {
  margin: 0 0 24px;
  font:
    500 clamp(14px, 1vw, 17px) / 1.38 "Cabin",
    Arial,
    sans-serif;
  color: rgba(255, 255, 255, 0.78);
}
.contact-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-width: 205px;
  padding: 14px 18px 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  font:
    600 12px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 1.15px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.contact-banner__button span {
  font-size: 20px;
  line-height: 0;
}
.contact-banner__button:hover {
  background: #fff;
  color: #090a0b;
  transform: translateX(4px);
}
@media (max-width: 1400px) and (min-width: 761px) {
  .site-header .brand {
    flex-basis: 238px;
    width: 238px;
  }
  .site-header .brand-logo {
    width: 238px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .desktop-nav a,
  .nav-dropdown {
    font-size: 14px;
  }
  .header-actions {
    gap: 16px;
  }
  .catalog-button {
    padding: 14px 17px;
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  .site-header .brand {
    flex-basis: 148px;
    width: 148px;
    height: 53px;
  }
  .site-header .brand-logo {
    width: 148px;
  }
  .site-footer .brand--footer {
    width: 185px;
    height: 63px;
  }
  .site-footer .footer-logo {
    width: 185px;
  }
  .contact-banner {
    min-height: 360px;
    margin: 0;
    padding: 46px 27px;
  }
  .contact-banner::before {
    background: linear-gradient(
      180deg,
      #050505 0%,
      rgba(5, 5, 5, 0.9) 47%,
      rgba(5, 5, 5, 0.2) 100%
    );
  }
  .contact-banner::after {
    top: auto;
    right: -39px;
    bottom: -30px;
    width: min(470px, 112vw);
    height: 230px;
    background-position: right bottom;
  }
  .contact-banner__copy {
    display: block;
  }
  .contact-banner h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -1.8px;
  }
  .contact-banner__action {
    margin-top: 30px;
  }
  .contact-banner__action p {
    font-size: 16px;
  }
}

/* Full-width category menus inspired by the supplied editorial mega-menu references. */
.site-header {
  --mega-top: 132px;
}
.site-header.is-scrolled {
  --mega-top: 108px;
}
.site-header.is-menu-open {
  background: #fff;
  color: #111;
  border-bottom-color: #e3e5e7;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
}
.site-header.is-menu-open .brand-logo--white {
  opacity: 0;
}
.site-header.is-menu-open .brand-logo--color {
  opacity: 1;
}
.site-header.is-menu-open .catalog-button:hover {
  background: #111;
  color: #fff;
}
.nav-item.is-open .nav-dropdown {
  color: var(--brand-blue);
}
.nav-dropdown:focus {
  outline: none;
}
.nav-dropdown:focus-visible {
  outline: 1px solid var(--brand-blue);
  outline-offset: 5px;
}
.mega-menu--wide {
  position: fixed;
  z-index: 45;
  top: var(--mega-top);
  left: 0;
  width: 100vw;
  height: min(470px, calc(100svh - var(--mega-top)));
  padding: 34px max(4.1vw, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 6vw, 100px);
  background: #fbfbfa;
  border-top: 1px solid #e7e8ea;
  border-bottom: 1px solid #e1e3e5;
  border-radius: 0;
  box-shadow: 0 24px 45px rgba(10, 15, 20, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    opacity 0.25s ease,
    transform 0.3s cubic-bezier(0.2, 0.75, 0.2, 1);
  backdrop-filter: none;
}
.nav-item.is-open .mega-menu--wide {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 70% 20%, #345b9b 0, transparent 36%),
    linear-gradient(135deg, #07101d, #152c52);
  color: #fff;
  isolation: isolate;
}
.mega-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, 0.7));
  z-index: -1;
}
.mega-visual img {
  position: absolute;
  right: -9%;
  bottom: -5%;
  width: 87%;
  height: 90%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.16)
    drop-shadow(0 18px 18px rgba(0, 0, 0, 0.45));
  z-index: -1;
}
.mega-visual > i {
  position: absolute;
  right: 10%;
  top: 17%;
  font-size: clamp(80px, 9vw, 142px);
  color: rgba(255, 255, 255, 0.17);
  z-index: -1;
}
.mega-visual > div {
  position: absolute;
  left: 28px;
  right: 24px;
  bottom: 27px;
  display: grid;
  gap: 10px;
}
.mega-visual span {
  font:
    600 10px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 2px;
  color: #c7d6f0;
}
.mega-visual b {
  font:
    600 clamp(24px, 2.1vw, 34px) "Cabin",
    Arial,
    sans-serif;
  line-height: 1.05;
  letter-spacing: -1px;
}
.mega-visual--robots {
  padding: 0;
  background: none;
}
.mega-visual--robots:after {
  display: none;
}
.mega-visual--robots img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  z-index: 0;
}
.mega-visual--solutions {
  background:
    radial-gradient(circle at 80% 15%, #4576c0 0, transparent 34%),
    linear-gradient(135deg, #101c30, #25437a);
}
.mega-visual--technology {
  background:
    radial-gradient(circle at 75% 25%, #1f80ca 0, transparent 36%),
    linear-gradient(135deg, #081018, #123457);
}
.mega-visual--sectors {
  background:
    radial-gradient(circle at 75% 25%, #567db2 0, transparent 38%),
    linear-gradient(135deg, #0e1620, #253c5a);
}
.mega-visual--references {
  background:
    radial-gradient(circle at 75% 25%, #4f6da2 0, transparent 38%),
    linear-gradient(135deg, #101217, #25437a);
}
.mega-visual--about {
  background:
    radial-gradient(circle at 75% 22%, #7da0dc 0, transparent 35%),
    linear-gradient(135deg, #132644, #1b3152);
}
.mega-links {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-links p {
  margin: 0 0 8px;
  padding: 0;
  color: var(--brand-blue);
  font:
    600 12px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 2.1px;
}
.mega-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-radius: 0;
  border-bottom: 1px solid #dfe2e5;
  color: #141619;
  text-decoration: none;
  font:
    600 clamp(16px, 1.35vw, 21px) "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 0;
  transition:
    color 0.2s ease,
    padding 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.mega-links a:first-of-type {
  border-top: 1px solid #dfe2e5;
}
.mega-links a:hover {
  padding-left: 12px;
  color: var(--brand-blue);
  background: linear-gradient(90deg, rgba(37, 67, 122, 0.08), transparent);
}
.mega-links a i {
  font-size: 14px;
  color: var(--brand-blue);
}
@media (max-width: 1040px) {
  .mega-menu--wide {
    grid-template-columns: minmax(290px, 0.8fr) minmax(390px, 1.2fr);
    gap: 36px;
    padding-inline: 4vw;
  }
  .mega-links a {
    padding-block: 14px;
    font-size: 17px;
  }
}
@media (max-width: 760px) {
  .mega-menu--wide {
    display: none;
  }
  .site-header.is-menu-open {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }
  .site-header.is-menu-open .brand-logo--white {
    opacity: 1;
  }
  .site-header.is-menu-open .brand-logo--color {
    opacity: 0;
  }
}

.mega-visual--humans {
  background:
    radial-gradient(circle at 76% 18%, #5b84c4 0, transparent 36%),
    linear-gradient(135deg, #111824, #25437a);
}

/* Main banner supplied for the home hero. */
.hero-robot {
  display: none;
}
@media (max-width: 760px) {
  .hero {
    background: #050505;
  }
  .hero-stage {
    background: url("assets/hero-higher.jpg") 68% center/cover no-repeat;
  }
  .header-actions {
    gap: 8px;
  }
  .hero h1 {
    font-size: clamp(36px, 9.5vw, 42px);
  }
  .hero-text {
    max-width: 100%;
  }
}

/* Taller hero sizing for the supplied 3840 × 1280 (3:1) main banner. */
.hero {
  height: clamp(640px, 40vw, 780px);
  min-height: 0;
  padding: 150px 4.1vw 50px;
}
.hero-copy {
  padding-bottom: 0;
}
.hero .eyebrow {
  margin-bottom: 21px;
}
.hero h1 {
  font-size: clamp(52px, 4vw, 78px);
  line-height: 0.94;
  margin-bottom: 20px;
}
.hero-text {
  font-size: 18px;
  line-height: 1.45;
}
.hero-buttons {
  margin-top: 26px;
}
.hero .button {
  min-height: 53px;
}
@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 680px;
    padding: 120px 19px 26px;
  }
  .hero h1 {
    font-size: clamp(36px, 9.5vw, 42px);
    line-height: 0.96;
  }
  .hero-text {
    font-size: 15px;
  }
  .hero-stage {
    inset: 340px 0 0 0;
  }
}

/* A quieter header CTA that matches the navigation scale. */
.site-header .catalog-button {
  gap: 17px;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 1.25px;
}
.site-header .catalog-button b {
  font-size: 18px;
}
@media (max-width: 1400px) and (min-width: 761px) {
  .site-header .catalog-button {
    gap: 14px;
    padding: 11px 15px;
    font-size: 11px;
  }
  .site-header .catalog-button b {
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .site-header .catalog-button {
    gap: 10px;
    padding: 9px 11px;
    font-size: 9px;
  }
  .site-header .catalog-button b {
    font-size: 14px;
  }
}
.mega-links--catalog {
  justify-content: flex-start;
  padding-top: 4px;
}
.mega-links--catalog > p {
  margin-bottom: 15px;
}
.mega-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 13px 24px;
}
.mega-catalog-grid section {
  min-width: 0;
}
.mega-catalog-grid h3 {
  margin: 0 0 7px;
  color: #73777d;
  font:
    600 11px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 0.1px;
}
.mega-model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mega-model-list a,
.mega-model-list a:first-of-type {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid #dfe3e7;
  border-radius: 3px;
  background: #fff;
  color: #17191c;
  font:
    600 13px "Cabin",
    Arial,
    sans-serif;
  line-height: 1;
  white-space: nowrap;
}
.mega-model-list a:hover {
  padding-left: 9px;
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
}

@media (max-width: 900px) {
  .category-slider__rail {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}
@media (max-width: 600px) {
  .category-slider {
    padding: 21px 19px 23px;
  }
  .category-slider__top {
    margin-bottom: 12px;
  }
  .category-slider__top > p {
    font-size: 11px;
    letter-spacing: 1.75px;
  }
  .category-slider__arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .category-slider__rail {
    grid-auto-columns: 83vw;
    gap: 13px;
    margin-right: -19px;
    padding-right: 19px;
  }
  .category-card {
    height: 222px;
    padding: 20px 19px;
  }
  .category-card h2 {
    font-size: 27px;
  }
  .category-card p {
    max-width: 50%;
    font-size: 11px;
    line-height: 1.4;
  }
  .category-card__link {
    bottom: 18px;
    left: 19px;
    width: 32px;
    height: 32px;
  }
  .category-slider__hint {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    font-size: 8px;
    letter-spacing: 1.35px;
  }
}

/* Multi-level product navigation: a deliberately calm, editorial mega menu. */
.products-mega.mega-menu--wide {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(54px, 5vw, 108px);
  height: min(540px, calc(100svh - var(--mega-top)));
  padding: 38px 4.1vw;
  overflow: hidden;
}
.products-mega__visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 60% 42%,
      rgba(203, 218, 235, 0.96),
      transparent 35%
    ),
    linear-gradient(135deg, #e6ebf0, #aebdca);
}
.products-mega__visual:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(17, 30, 48, 0.72));
  pointer-events: none;
}
.products-mega__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition:
    opacity 0.26s ease,
    transform 0.32s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.products-mega__visual:hover img {
  transform: scale(1.025);
}
.products-mega__visual-copy {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 25px;
  color: #fff;
}
.products-mega__visual-copy p {
  margin: 0 0 8px;
  color: #d6e4f7;
  font:
    600 10px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 2px;
}
.products-mega__visual-copy strong {
  display: block;
  max-width: 90%;
  font:
    600 clamp(24px, 2.2vw, 35px) "Cabin",
    Arial,
    sans-serif;
  letter-spacing: -1.1px;
  line-height: 1.03;
}
.products-mega__viewport {
  min-width: 0;
  overflow: hidden;
}
.products-mega__track,
.mobile-products__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.31s cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}
.product-panel {
  flex: 0 0 calc(100% / var(--product-panel-count, 1));
  min-width: 0;
  height: 100%;
  padding-right: 3px;
}
.product-panel__eyebrow {
  margin: 0 0 9px;
  color: var(--brand-blue);
  font:
    600 12px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 2.15px;
}
.product-panel h2 {
  margin: 0 0 20px;
  color: #15171a;
  font:
    600 clamp(38px, 3.15vw, 50px) "Cabin",
    Arial,
    sans-serif;
  letter-spacing: -1.8px;
  line-height: 1;
}
.product-panel:not(:first-child) h2 {
  color: var(--brand-blue);
}
.product-panel__list {
  max-height: calc(min(540px, 100svh - var(--mega-top)) - 137px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid #dce0e4;
  scrollbar-width: thin;
  scrollbar-color: #b9c3cd transparent;
}
.product-panel__group + .product-panel__group {
  margin-top: 18px;
}
.product-panel__group h3 {
  margin: 18px 0 3px;
  color: var(--brand-blue);
  font:
    600 14px "Cabin",
    Arial,
    sans-serif;
  letter-spacing: 0.35px;
}
.product-panel__group:first-child h3 {
  margin-top: 18px;
}
@media (min-width: 761px) {
  .product-panel__list:has(.product-panel__group) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 0 28px;
  }
  .product-panel__group + .product-panel__group {
    margin-top: 0;
  }
  .product-panel__group:first-child h3,
  .product-panel__group h3 {
    margin-top: 8px;
  }
  .product-panel__group .product-panel__row {
    min-height: 50px;
    padding-block: 10px;
  }
}
.product-panel__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px 4px 14px 0;
  border: 0;
  border-bottom: 1px solid #dce0e4;
  border-radius: 0;
  background: transparent;
  color: #17191c;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font:
    600 clamp(23px, 1.9vw, 29px) "Cabin",
    Arial,
    sans-serif;
  line-height: 1.15;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    padding 0.2s ease;
}
.product-panel__row i {
  flex: none;
  color: var(--brand-blue);
  font-size: 16px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.product-panel__row--active {
  color: var(--brand-blue);
}
.product-panel__row:hover,
.product-panel__row:focus-visible {
  padding-left: 12px;
  background: #f5f5f7;
  color: var(--brand-blue);
  outline: none;
}
.product-panel__row:hover i,
.product-panel__row:focus-visible i {
  transform: translateX(4px);
}
.product-panel__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #50565c;
  cursor: pointer;
  font:
    600 13px "Cabin",
    Arial,
    sans-serif;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.product-panel__back:hover,
.product-panel__back:focus-visible {
  color: var(--brand-blue);
  transform: translateX(-3px);
  outline: none;
}

@media (max-width: 1040px) and (min-width: 761px) {
  .products-mega.mega-menu--wide {
    grid-template-columns: minmax(280px, 0.78fr) minmax(390px, 1.22fr);
    gap: 38px;
    padding-inline: 4vw;
  }
}

@media (max-width: 760px) {
  .site-header.is-menu-open {
    background: #fff;
    color: #111;
    box-shadow: 0 9px 26px rgba(0, 0, 0, 0.08);
    border-bottom-color: #e3e5e7;
  }
  .site-header.is-menu-open .brand-logo--white {
    opacity: 0;
  }
  .site-header.is-menu-open .brand-logo--color {
    opacity: 1;
  }
  .site-header.is-menu-open .menu-toggle i {
    background: #111;
  }
  .mobile-panel {
    position: fixed;
    z-index: 40;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 23px 19px 21px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fbfbfa;
    box-shadow: none;
  }
  .site-header.is-scrolled + .mobile-panel,
  .site-header.is-scrolled .mobile-panel {
    top: 67px;
  }
  .mobile-panel__main {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .mobile-panel__main[hidden] {
    display: none;
  }
  .mobile-panel__main a,
  .mobile-products-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 59px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #dce0e4;
    border-radius: 0;
    background: transparent;
    color: #16181a;
    text-decoration: none;
    text-align: left;
    font:
      600 20px "Cabin",
      Arial,
      sans-serif;
  }
  .mobile-products-trigger i {
    color: var(--brand-blue);
    font-size: 14px;
  }
  .mobile-panel__main a:hover,
  .mobile-panel__main a:focus-visible,
  .mobile-products-trigger:hover,
  .mobile-products-trigger:focus-visible {
    color: var(--brand-blue);
    outline: none;
  }
  .mobile-products {
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }
  .mobile-products[aria-hidden="true"] {
    display: none;
  }
  .mobile-products__viewport {
    height: 100%;
    overflow: hidden;
  }
  .mobile-products__track {
    height: 100%;
  }
  .product-panel--mobile {
    display: flex;
    flex-direction: column;
    padding: 2px 1px 0;
  }
  .product-panel--mobile .product-panel__eyebrow {
    margin-bottom: 8px;
  }
  .product-panel--mobile h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .product-panel--mobile .product-panel__list {
    display: block;
    max-height: none;
    flex: 1;
  }
  .product-panel--mobile .product-panel__row {
    min-height: 63px;
    font-size: 20px;
  }
  .product-panel--mobile .product-panel__back {
    margin-bottom: 14px;
  }
  .mobile-panel .mobile-panel-cta {
    flex: none;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    min-height: 49px;
    margin-top: 17px;
    padding: 0 17px;
    border: 1px solid #141619;
    background: #141619;
    color: #fff;
    font:
      600 11px "Cabin",
      Arial,
      sans-serif;
    letter-spacing: 1.4px;
  }
}
