/* Hide brand + header-right on load to prevent FOUC, removed by JS */
body.robotics-page:not(.js-ready) .brand,
body.robotics-page:not(.js-ready) .header-right {
  opacity: 0;
}

/* Hide hero on load to prevent flash on refresh, JS fades in */
body.robotics-page:not(.js-ready) .robotics-hero-fullbleed {
  opacity: 0;
}
body.robotics-page .robotics-hero-fullbleed {
  transition: opacity 0.5s ease;
}

body.robotics-page {
  overflow-x: clip;
  background-color: var(--color-bg-footer, #0f0f0f);
  --robotics-bg: #eff3f6;
  --robotics-surface: rgba(255, 255, 255, 0.92);
  --robotics-surface-strong: #ffffff;
  --robotics-surface-soft: #f7fafc;
  --robotics-text: #16202b;
  --robotics-muted: #5f6c7b;
  --robotics-border: rgba(22, 32, 43, 0.12);
  --robotics-border-strong: rgba(var(--primary-rgb), 0.18);
  --robotics-shadow: 0 24px 60px rgba(15, 23, 32, 0.08);
  background:
    linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.08)),
    radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(106, 214, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #fbfcfd 0%, #eff3f6 100%);
  color: var(--robotics-text);
}

body.robotics-page main {
  width: 100%;
}


@media (max-width: 1072px) {
  body.robotics-page.nav-open::before {
    background: rgba(22, 32, 43, 0.16);
    backdrop-filter: blur(2px);
  }
}

body.robotics-page .footer {
  margin-top: auto;
}

body.robotics-page .footer-link-button,
body.robotics-page .footer a {
  text-decoration: none;
}

.product-hero {
  background: var(--cr-dark, #0e1117);
  height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 22% 55%, rgba(var(--primary-rgb), 0.28) 0%, rgba(var(--primary-rgb), 0.08) 45%, transparent 75%);
  animation: product-hero-glow 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes product-hero-glow {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to   { transform: translate(12%, -8%) scale(1.25); opacity: 1; }
}

.product-hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary, #f7931a);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  opacity: 0;
  animation: product-scroll-ind-in 2.5s ease-in-out infinite 5s;
}

.product-hero__scroll-indicator__text {
  transform: rotate(180deg);
}

.product-hero__scroll-indicator__arrow {
  writing-mode: horizontal-tb;
  font-size: 1rem;
  animation: cr-scroll-bounce 2.5s ease-in-out infinite;
}

@keyframes product-scroll-ind-in {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.85; }
}

@media (max-width: 900px) {
  .product-hero__scroll-indicator { display: none; }
}

.product-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-offset, 80px) + 8vh);
  padding-bottom: 4vh;
  position: relative;
  z-index: 1;
}

.product-hero__image picture {
  display: block;
  width: 100%;
  max-width: 560px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
}

[data-product="gausium-cd-01"] .product-hero__image picture {
  max-width: 280px;
}

[data-product="gausium-mobile-water-tank"] .product-hero__image picture {
  transform: scale(1.35);
}

[data-product="gausium-mobile-water-tank"] .product-hero__image:hover picture {
  transform: translateY(-6px) scale(1.4);
  filter: drop-shadow(0 24px 40px rgba(var(--primary-rgb), 0.12));
}

[data-product="gausium-ws-03"] .product-hero__image picture {
  transform: scale(1.3);
}

[data-product="gausium-ws-03"] .product-hero__image:hover picture {
  transform: translateY(-6px) scale(1.35);
  filter: drop-shadow(0 24px 40px rgba(var(--primary-rgb), 0.12));
}

/* Beetle renders have a flag/banner next to the robot — zoom in so the
   Beetle takes up more of the frame in every view. */
[data-product="gausium-beetle"] .product-hero__image picture {
  transform: scale(1.4);
}

[data-product="gausium-beetle"] .product-hero__image:hover picture {
  transform: translateY(-6px) scale(1.45);
  filter: drop-shadow(0 24px 40px rgba(var(--primary-rgb), 0.12));
}

/* Omnie renders sit in wide whitespace — zoom for a fuller frame */
[data-product="gausium-omnie"] .product-hero__image picture {
  transform: scale(1.4);
}

[data-product="gausium-omnie"] .product-hero__image:hover picture {
  transform: translateY(-6px) scale(1.45);
  filter: drop-shadow(0 24px 40px rgba(var(--primary-rgb), 0.12));
}

.product-hero__image:hover picture {
  transform: translateY(-6px) scale(1.015);
  filter: drop-shadow(0 24px 40px rgba(var(--primary-rgb), 0.12));
}

.product-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Slider wrapper: transparent on desktop, only active slide shown */
.product-hero__slides {
  display: contents;
}
.product-hero__slide:not(.is-active) {
  display: none;
}
.product-hero__slider-dots {
  display: none;
}

.product-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: calc(var(--header-offset, 80px) + 14vh) 3rem 4vh 2.5rem;
  position: relative;
  z-index: 1;
}

.product-hero__intro {
  margin: 1.4rem 0 0;
  color: rgba(244, 248, 252, 0.6);
  font-size: clamp(0.92rem, 0.42vw + 0.8rem, 1.04rem);
  line-height: 1.7;
  font-weight: 400;
  max-width: 28rem;
}

.product-hero__price {
  margin-top: 2.2rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--primary, #f7931a);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-self: flex-start;
}

.product-hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.product-hero__price-prefix {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 248, 252, 0.5);
}

.product-hero__price-value {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: clamp(1.3rem, 1.2vw + 0.7rem, 1.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(245, 247, 250, 0.96);
  line-height: 1;
  white-space: nowrap;
}

.product-hero__price-vat {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(244, 248, 252, 0.45);
}

.product-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem 3.5rem;
  margin-top: 2.4rem;
}

.product-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 9rem;
}

.product-hero__stat-value small {
  font-size: 0.6em;
  vertical-align: 0.45em;
}

.product-hero__stat-value {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: clamp(1.4rem, 1.8vw + 0.6rem, 2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--primary, #f7931a);
  line-height: 1;
  white-space: nowrap;
}

.product-hero__stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244, 248, 252, 0.45);
  white-space: pre-line;
}

.product-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.product-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.product-hero__cta--ghost {
  color: rgba(244, 248, 252, 0.9);
  background: transparent;
  border: 1px solid rgba(244, 248, 252, 0.35);
}

.product-hero__cta--ghost:hover,
.product-hero__cta--ghost:focus-visible {
  color: #ffffff;
  border-color: rgba(244, 248, 252, 0.75);
  background: rgba(244, 248, 252, 0.06);
  transform: translateY(-1px);
}

.product-hero__cta span { font-size: 1em; line-height: 1; }

.product-hero__title {
  margin: 0;
  color: rgba(245, 247, 250, 0.96);
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 2.25vw + 0.95rem, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

/* Stat entrance animations — gated on js-ready to avoid invisible-without-JS */
body.js-ready .product-hero__stat {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
body.js-ready .product-hero__stats.is-visible .product-hero__stat { opacity: 1; transform: none; }
body.js-ready .product-hero__stats.is-visible .product-hero__stat:nth-child(1) { transition-delay: 0.05s; }
body.js-ready .product-hero__stats.is-visible .product-hero__stat:nth-child(2) { transition-delay: 0.13s; }
body.js-ready .product-hero__stats.is-visible .product-hero__stat:nth-child(3) { transition-delay: 0.21s; }
body.js-ready .product-hero__stats.is-visible .product-hero__stat:nth-child(4) { transition-delay: 0.29s; }

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
    position: relative;
  }
  .product-hero::before {
    opacity: 0.3;
  }
  .product-hero__image {
    height: 66svh;
    padding-top: calc(var(--header-offset, 60px) + 1rem);
    padding-bottom: 1rem;
    display: block;
    overflow: hidden;
  }
  /* Mobile: reset desktop picture constraints so slider can take full width */
  .product-hero__image picture {
    max-width: none;
    width: auto;
    transform: none !important;
  }
  /* Reset per-product desktop caps that would otherwise win on specificity */
  [data-product="gausium-cd-01"] .product-hero__image picture {
    max-width: none;
  }
  /* Mobile: hero image becomes horizontal swipe slider */
  .product-hero__slides {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    height: 100%;
  }
  /* Mobile: images must not drag or get selected by touch.
     pointer-events: none on both the picture and the img so every gesture
     reaches the horizontal scroll-snap container. Needed for scaled
     heroes (WS-03, Omnie, Beetle) where the img overflows the slide. */
  .product-hero__slide,
  .product-hero__slide img {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
  }
  .product-hero__slides::-webkit-scrollbar {
    display: none;
  }
  .product-hero__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 1rem;
  }
  .product-hero__slide img {
    max-width: 320px;
    width: auto;
    max-height: 100%;
    object-fit: contain;
  }
  [data-product="gausium-cd-01"] .product-hero__slide img {
    max-width: 260px;
    transform: scale(0.5);
  }
  [data-product="gausium-ws-03"] .product-hero__slide img {
    transform: scale(1.3);
  }
  /* Front and rear renders have extra whitespace — zoom closer */
  [data-product="gausium-ws-03"] .product-hero__slide[data-index="1"] img,
  [data-product="gausium-ws-03"] .product-hero__slide[data-index="3"] img {
    transform: scale(1.6);
  }
  [data-product="gausium-mobile-water-tank"] .product-hero__slide img {
    transform: scale(1.25);
  }
  /* Beetle renders include a flag/banner — zoom in so the robot dominates */
  [data-product="gausium-beetle"] .product-hero__slide img {
    transform: scale(1.4);
  }
  [data-product="gausium-omnie"] .product-hero__slide img {
    transform: scale(1.4);
  }
  [data-product="gausium-ws-01"] .product-hero__slide img {
    transform: scale(1.3);
  }
  [data-product="gausium-omnie"] .product-hero__slide[data-index="0"] img,
  [data-product="gausium-omnie"] .product-hero__slide[data-index="1"] img,
  [data-product="gausium-omnie"] .product-hero__slide[data-index="2"] img,
  [data-product="gausium-omnie"] .product-hero__slide[data-index="3"] img {
    transform: scale(1.7);
  }
  .product-hero__slider-dots {
    display: flex;
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 0.4rem;
    z-index: 3;
  }
  .product-hero__slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(244, 248, 252, 0.28);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .product-hero__slider-dot.is-active {
    background: rgba(244, 248, 252, 0.9);
    transform: scale(1.3);
  }
  .product-hero__content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
  }
  .product-hero__title {
    align-self: center;
    text-align: center;
    margin: 1.8rem 0 0;
  }
  .product-hero__intro {
    margin: 1.5rem 0 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .product-hero__intro.is-visible {
    opacity: 1;
    transform: none;
  }
  .product-hero__price {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .product-hero__price.is-visible {
    opacity: 1;
    transform: none;
  }
  .product-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
    margin: 2.5rem auto 0;
    width: 100%;
    max-width: 340px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
  }
  .product-hero__stats.is-visible {
    opacity: 1;
    transform: none;
  }
  .product-hero__stat {
    max-width: none;
    text-align: center;
  }
}

/* ─── Reveal stack: hero scrolls up, video revealed behind ─── */
@media (min-width: 901px) {
  .product-reveal-stack {
    position: relative;
    height: 250svh;
  }
  .product-reveal-stack .product-hero {
    z-index: 2;
  }
  .product-reveal-stack .product-video {
    position: sticky;
    top: 0;
    margin-top: -100svh;
    height: 100svh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-offset, 80px) + 1rem) min(8vw, 5rem) 3rem;
    box-sizing: border-box;
  }
  .product-reveal-stack .product-video__header {
    margin-bottom: 2rem;
  }

  /* Wipe line — sits at hero's bottom edge, moves up as hero scrolls out */
  .product-reveal-stack__wipe {
    position: absolute;
    left: 0;
    right: 0;
    top: 100svh;
    height: 1px;
    background: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 0 14px 1px rgba(var(--primary-rgb), 0.22);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    transform: translateY(-0.5px);
  }
  .product-reveal-stack.is-wiping .product-reveal-stack__wipe {
    opacity: 1;
  }

}

/* ─── Product Video ─── */
.product-video {
  position: relative;
  z-index: 3;
  background: var(--cr-dark, #0e1117);
  padding: 4rem min(8vw, 5rem) 5rem;
  overflow: hidden;
}

.product-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 30%, rgba(var(--primary-rgb), 0.22) 0%, rgba(var(--primary-rgb), 0.06) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.product-video__header {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.product-video__headline {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: rgba(245, 247, 250, 0.96);
}

.product-video__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  background: #000;
  aspect-ratio: 16 / 9;
}

.product-video__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  /* Mobile: video is part of the hero dark narrative — no forced viewport */
  .product-video {
    padding: 3rem 1rem 8rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  /* Disable duplicate glow on mobile — the hero glow already sets the mood,
     the video glow creates a visible seam at the section boundary */
  .product-video::before {
    display: none;
  }
  .product-video__header {
    margin: 0;
    padding: 0 0.25rem;
    text-align: left;
  }
  .product-video__headline {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
    text-wrap: balance;
  }
  .product-video__frame {
    border-radius: 0.85rem;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
  }
}

/* ─── Product Use-cases (Einsatzbereiche) ─── */
.product-usecases {
  position: relative;
  z-index: 3;
  padding: clamp(1.75rem, 3.5vw, 3rem) 1.5rem clamp(5rem, 11vw, 10rem);
  background:
    linear-gradient(180deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb), 0.06)),
    radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(106, 214, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfcfd 0%, #eff3f6 100%);
}

.product-usecases__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.product-usecases__runway {
  height: 0;
  pointer-events: none;
}

@media (min-width: 901px) {
  .product-usecases__runway {
    height: 40vh;
  }
}

.product-usecases__header {
  margin: 0 0 clamp(0.9rem, 1.6vw, 1.4rem);
  max-width: 780px;
}

.product-usecases__headline {
  margin: 0 0 0.9rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 1.9vw + 1rem, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--robotics-text, #16202b);
}

.product-usecases__seo {
  margin: 0;
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--robotics-muted, #5f6c7b);
}

.product-usecases__sticky {
  position: sticky;
  top: 4.5rem;
  z-index: 5;
}

@media (min-width: 901px) {
  .product-usecases__sticky {
    padding-bottom: clamp(1.5rem, 3.5vw, 3rem);
  }
}

.product-usecases__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.4rem;
  padding: 0 0 0.15rem;
  background: transparent;
}

.product-usecases__tab {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0.85rem 1.15rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--robotics-muted, #5f6c7b);
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}

.product-usecases__tab::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-usecases__tab:hover,
.product-usecases__tab:focus-visible {
  color: var(--robotics-text, #16202b);
  outline: none;
}

.product-usecases__tab.is-active {
  color: var(--robotics-text, #16202b);
  font-weight: 600;
}

.product-usecases__tab.is-active::after {
  transform: scaleX(1);
}

.product-usecases__tab.is-pending {
  color: rgba(95, 108, 123, 0.45);
  cursor: not-allowed;
}

.product-usecases__tab.is-pending::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: rgba(95, 108, 123, 0.35);
  vertical-align: middle;
}

.product-usecases__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cr-dark, #0e1117);
  box-shadow: var(--robotics-shadow, 0 24px 60px rgba(15, 23, 32, 0.08));
  isolation: isolate;
}

.product-usecases__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.product-usecases__panel.is-active {
  opacity: 1;
}

.product-usecases__panel[hidden] {
  display: block;
}

.product-usecases__media {
  position: absolute;
  inset: 0;
  background: #0e1117;
}

.product-usecases__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* Shopping render is framed with the robot in the upper-middle; anchor
   toward the top so the subject lands below the midline of the panel. */
.product-usecases__panel[data-scenario="shopping"] .product-usecases__media img {
  object-position: center 60%;
}

.product-usecases__panel[data-scenario="parking"] .product-usecases__media img {
  object-position: center 60%;
}

.product-usecases__panel[data-scenario="sports"] .product-usecases__media img {
  object-position: center 40%;
}

.product-usecases__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 40%, rgba(var(--primary-rgb), 0.18) 0%, transparent 55%),
    linear-gradient(165deg, #2d3845 0%, #1a222d 100%);
}

.product-usecases__placeholder-note {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-usecases__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 23, 0) 35%, rgba(14, 17, 23, 0.55) 70%, rgba(14, 17, 23, 0.92) 100%);
  pointer-events: none;
}

.product-usecases__overlay {
  position: absolute;
  left: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(2rem, 4vw, 3rem);
  z-index: 1;
  max-width: 560px;
  color: #fff;
}

.product-usecases__title {
  margin: 0 0 0.5rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 1.2vw + 0.9rem, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
}

.product-usecases__lead {
  margin: 0;
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.product-usecases__dots {
  display: none;
}

.product-usecases__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 32, 43, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.product-usecases__dot.is-active {
  background: var(--primary, #f7931a);
  width: 22px;
  border-radius: 4px;
}

.product-usecases__dot:hover,
.product-usecases__dot:focus-visible {
  background: rgba(22, 32, 43, 0.45);
  outline: none;
}

.product-usecases__dot.is-active:hover,
.product-usecases__dot.is-active:focus-visible {
  background: var(--primary, #f7931a);
}

@media (max-width: 900px) {
  .product-usecases {
    padding: 2.5rem 1rem 3rem;
    overflow-x: hidden;
  }
  .product-usecases__inner {
    position: relative;
  }
  .product-usecases__header {
    margin-bottom: 1.1rem;
  }
  .product-usecases__headline {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    margin-bottom: 0.65rem;
  }
  .product-usecases__seo {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .product-usecases__sticky {
    position: static;
    top: auto;
    padding-bottom: 0;
  }
  .product-usecases__tabs {
    display: none;
  }
  .product-usecases__stage {
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-usecases__stage::-webkit-scrollbar { display: none; }
  .product-usecases__panel {
    position: relative;
    inset: auto;
    flex: 0 0 100%;
    opacity: 1;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: none;
  }
  .product-usecases__panel[hidden] {
    display: flex;
  }
  .product-usecases__panel::after {
    background: linear-gradient(180deg, rgba(14, 17, 23, 0) 25%, rgba(14, 17, 23, 0.65) 60%, rgba(14, 17, 23, 0.95) 100%);
  }
  .product-usecases__overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .product-usecases__title {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
  }
  .product-usecases__lead {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .product-usecases__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 0;
  }
  .product-usecases__runway {
    display: none;
  }
}

/* ─── Product Highlights (Produkt-Übersicht) ─── */
.product-highlights {
  position: relative;
  z-index: 3;
  padding: clamp(4.5rem, 10vw, 7.5rem) 1.5rem clamp(4.5rem, 9vw, 6.5rem);
  background:
    radial-gradient(ellipse 65% 45% at 50% 0%, rgba(var(--primary-rgb), 0.16), transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 100%, rgba(106, 214, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #121822 0%, #0d131b 100%);
  color: rgba(244, 248, 252, 0.7);
}

@media (min-width: 901px) {
  .product-hero + .product-highlights,
  .product-reveal-stack + .product-highlights {
    padding-top: clamp(7rem, 15vw, 11rem);
  }
}

.product-highlights__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.product-highlights__header {
  margin: 0 0 clamp(2.2rem, 4vw, 3.5rem);
  max-width: 760px;
}

.product-highlights__headline {
  margin: 0 0 0.9rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 2.2vw + 1rem, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: rgba(245, 247, 250, 0.96);
  text-wrap: balance;
}

.product-highlights__lead {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.1rem);
  line-height: 1.6;
  color: rgba(244, 248, 252, 0.62);
}

.product-highlights__composition {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) minmax(0, 1fr);
  grid-template-rows: repeat(3, minmax(42vh, auto));
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: start;
}

/* center product stage — sticky so items scroll past it */
.product-highlights__product {
  position: sticky;
  top: max(5.5rem, calc((100vh - 440px) / 2));
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 100%;
}

.product-highlights__product img {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.5));
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 2;
}

.product-highlights.is-in-view .product-highlights__product img {
  opacity: 1;
  transform: scale(1);
}

/* animated rings around the product */
.product-highlights__halo {
  position: absolute;
  top: calc(50% + var(--hl-ring-offset-y, 0%));
  left: calc(50% + var(--hl-ring-offset-x, 0%));
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.24) 0%, rgba(var(--primary-rgb), 0.06) 45%, transparent 72%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 1.1s ease 0.2s;
  z-index: 0;
}

.product-highlights.is-in-view .product-highlights__halo { opacity: 1; }

.product-highlights__ring {
  position: absolute;
  top: calc(50% + var(--hl-ring-offset-y, 0%));
  left: calc(50% + var(--hl-ring-offset-x, 0%));
  border-radius: 50%;
  border: 1px dashed rgba(var(--primary-rgb), 0.32);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 1.1s ease 0.35s;
  pointer-events: none;
  z-index: 1;
}

/* Per-product ring center fine-tuning (compensate for image asymmetry) */
[data-product="gausium-phantas"].product-highlights {
  --hl-ring-offset-x: 2%;
  --hl-ring-offset-y: 0%;
}

.product-highlights__ring--outer {
  width: 78%;
  aspect-ratio: 1;
  border-color: rgba(var(--primary-rgb), 0.28);
  animation: hl-spin-slow 60s linear infinite;
}

.product-highlights__ring--inner {
  width: 58%;
  aspect-ratio: 1;
  border-width: 2px;
  border-style: dashed;
  border-color: rgba(106, 214, 255, 0.65);
  box-shadow: 0 0 16px rgba(106, 214, 255, 0.18);
  animation: hl-spin-slow 35s linear infinite reverse;
}

.product-highlights.is-in-view .product-highlights__ring {
  opacity: 1;
}

@keyframes hl-spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* feature items */
.product-highlights__item {
  position: relative;
  padding: 1.5rem 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 14px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease var(--hl-delay, 0ms),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) var(--hl-delay, 0ms),
              box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-highlights.is-in-view .product-highlights__item {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .product-highlights.is-in-view .product-highlights__item {
    opacity: var(--hl-scroll-opacity, 1);
    transition: opacity 0.35s ease,
                transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) var(--hl-delay, 0ms),
                box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  }
}

.product-highlights__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(var(--primary-rgb), 0.32);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 22px 42px rgba(0, 0, 0, 0.32);
}

/* subtle connector node (the "callout dot" toward the product) */
.product-highlights__item::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.22), 0 0 14px rgba(var(--primary-rgb), 0.5);
  opacity: 0;
  transform: translateY(-50%) scale(0.6);
  transition: opacity 0.5s ease calc(var(--hl-delay, 0ms) + 120ms),
              transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) calc(var(--hl-delay, 0ms) + 120ms);
}

.product-highlights.is-in-view .product-highlights__item::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.product-highlights__item--tl::before,
.product-highlights__item--ml::before,
.product-highlights__item--bl::before { right: -7px; }

.product-highlights__item--tr::before,
.product-highlights__item--mr::before,
.product-highlights__item--br::before { left: -7px; }

.product-highlights__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.16);
  color: var(--primary);
  font-size: 1.05rem;
}

.product-highlights__title {
  margin: 0.1rem 0 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.2rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: rgba(245, 247, 250, 0.94);
  text-wrap: balance;
}

.product-highlights__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(244, 248, 252, 0.6);
}

/* grid positions */
.product-highlights__item--tl { grid-column: 1; grid-row: 1; }
.product-highlights__item--tr { grid-column: 3; grid-row: 1; }
.product-highlights__item--ml { grid-column: 1; grid-row: 2; }
.product-highlights__item--mr { grid-column: 3; grid-row: 2; }
.product-highlights__item--bl { grid-column: 1; grid-row: 3; }
.product-highlights__item--br { grid-column: 3; grid-row: 3; }

/* alignment: left-column cards right-align text direction feel */
.product-highlights__item--tl,
.product-highlights__item--ml,
.product-highlights__item--bl { text-align: right; }
.product-highlights__item--tl .product-highlights__icon,
.product-highlights__item--ml .product-highlights__icon,
.product-highlights__item--bl .product-highlights__icon { align-self: flex-end; }

/* runtime chart inside a card */
.product-highlights__runtime {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-highlights__runtime-row {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(245, 247, 250, 0.9);
  text-align: left;
}

.product-highlights__runtime-label {
  font-weight: 500;
  color: rgba(244, 248, 252, 0.55);
}

.product-highlights__runtime-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.product-highlights__runtime-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.85), var(--primary));
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.35);
  transition: width 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) var(--bar-delay, 0ms);
}

.product-highlights.is-in-view .product-highlights__runtime-fill {
  width: var(--bar-width, 0%);
}

.product-highlights__runtime-value {
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
  color: rgba(245, 247, 250, 0.92);
  min-width: 2.6rem;
  text-align: right;
}

/* runtime card gets a little more breathing room */
.product-highlights__item--runtime {
  padding-bottom: 1.4rem;
}

/* mobile / tablet */
@media (max-width: 1100px) {
  .product-highlights__composition {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px) minmax(0, 1fr);
    gap: 1.25rem;
  }
  .product-highlights__product img { max-width: 360px; }
}

@media (max-width: 900px) {
  .product-highlights {
    padding: 3.5rem 1rem 3.5rem;
  }
  .product-highlights[data-product="gausium-phantas"] {
    --hl-mobile-product-size: clamp(148px, 48vw, 180px);
    --hl-mobile-card-top-gap: clamp(9rem, 30vh, 12rem);
    --hl-mobile-card-gap: clamp(12rem, 30vh, 22rem);
  }
  .product-highlights[data-product="gausium-omnie"] {
    --hl-mobile-product-size: clamp(280px, 76vw, 360px);
    --hl-mobile-card-top-gap: clamp(17rem, 52vw, 22rem);
  }
  .product-highlights__header {
    margin-bottom: 2rem;
  }
  .product-highlights__composition {
    display: block;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 0;
  }
  .product-highlights__product {
    position: sticky;
    top: var(--header-offset, 60px);
    aspect-ratio: auto;
    grid-column: auto;
    grid-row: auto;
    margin: 0 auto 0.75rem;
    min-height: 0;
    max-width: var(--hl-mobile-product-size, 180px);
    z-index: 2;
  }
  .product-highlights__product img { max-width: var(--hl-mobile-product-size, 180px); }
  .product-highlights__halo,
  .product-highlights__ring { display: none; }
  .product-highlights__item {
    position: sticky;
    top: calc(var(--header-offset, 60px) + var(--hl-mobile-card-top-gap, 12rem));
    z-index: calc(5 + var(--hl-stack-index, 0));
    grid-column: 1 !important;
    grid-row: auto !important;
    text-align: left !important;
    padding: 1.1rem 1.1rem 1.2rem;
    margin-bottom: var(--hl-mobile-card-gap, clamp(14rem, 32vh, 22rem));
    background: rgba(20, 28, 40, 0.94);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
  }
  .product-highlights.is-in-view .product-highlights__item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .product-highlights.is-in-view .product-highlights__item.is-card-active {
    opacity: 1;
    transform: translateY(0);
  }
  .product-highlights.is-in-view .product-highlights__item.is-card-passed {
    opacity: 0;
    transform: translateY(-12px);
  }
  .product-highlights__item:last-child {
    margin-bottom: 0;
  }
  .product-highlights__item--tl .product-highlights__icon,
  .product-highlights__item--ml .product-highlights__icon,
  .product-highlights__item--bl .product-highlights__icon { align-self: flex-start; }
  .product-highlights__item::before { display: none; }
  .product-highlights__runtime-row {
    grid-template-columns: 5.5rem 1fr auto;
  }
}

@media (max-width: 900px) and (max-height: 760px) {
  .product-highlights[data-product="gausium-phantas"] {
    --hl-mobile-product-size: clamp(140px, 44vw, 168px);
    --hl-mobile-card-top-gap: clamp(7.75rem, 27vh, 10rem);
    --hl-mobile-card-gap: clamp(10.5rem, 28vh, 16rem);
  }
  .product-highlights[data-product="gausium-omnie"] {
    --hl-mobile-product-size: clamp(260px, 70vw, 310px);
    --hl-mobile-card-top-gap: clamp(15rem, 46vw, 19rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-highlights__product img,
  .product-highlights__halo,
  .product-highlights__ring,
  .product-highlights__item,
  .product-highlights__item::before,
  .product-highlights__runtime-fill {
    transition: none !important;
    animation: none !important;
  }
}

/* ─── Product Ecosystem Video ─── */
.product-ecosystem {
  position: relative;
  z-index: 3;
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem clamp(6.5rem, 13vw, 10rem);
  background:
    radial-gradient(ellipse 65% 45% at 80% 20%, rgba(var(--primary-rgb), 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(106, 214, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #f4f7fa 0%, #eaeff4 100%);
}

.product-ecosystem__inner {
  max-width: 920px;
  margin: 0 auto;
}

.product-ecosystem__header {
  margin: 0 0 clamp(1.4rem, 2.4vw, 2.2rem);
  max-width: 720px;
}

.product-ecosystem__headline {
  margin: 0 0 0.9rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--robotics-text, #16202b);
  text-wrap: balance;
}

.product-ecosystem__lead {
  margin: 0;
  font-size: clamp(0.98rem, 0.45vw + 0.82rem, 1.1rem);
  line-height: 1.6;
  color: var(--robotics-muted, #5f6c7b);
  max-width: 58ch;
}

.product-ecosystem__frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow:
    0 22px 60px rgba(14, 17, 23, 0.22),
    0 0 0 1px rgba(14, 17, 23, 0.06);
  background: #000;
  aspect-ratio: 16 / 9;
}

.product-ecosystem__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .product-ecosystem {
    padding: 2.5rem 1rem 5rem;
  }
  .product-ecosystem__header {
    margin-bottom: 1.2rem;
  }
  .product-ecosystem__headline {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }
  .product-ecosystem__lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .product-ecosystem__frame {
    border-radius: 0.85rem;
    box-shadow:
      0 14px 32px rgba(14, 17, 23, 0.18),
      0 0 0 1px rgba(14, 17, 23, 0.06);
  }
}

/* ─── Product Feature Slides ─── */
.product-features-scroll {
  position: relative;
}

.product-features {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.08)),
    radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(106, 214, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #fbfcfd 0%, #eff3f6 100%);
  border-top: 1px solid var(--robotics-border, rgba(22, 32, 43, 0.12));
}

/* Desktop: pin the features card for ~one extra viewport of scroll
   before it naturally rolls out at the end of its scroll wrapper. */
@media (min-width: 901px) {
  .product-features-scroll {
    height: 200svh;
  }
  .product-features {
    position: sticky;
    top: 0;
  }
}

.product-features__header {
  padding: 4rem min(8vw, 5rem) 0;
  text-align: left;
}

.product-features__headline {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--robotics-text, #16202b);
}

.product-features__track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-features__track::-webkit-scrollbar { display: none; }

.product-features__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  align-items: center;
  padding: 3rem min(8vw, 5rem);
  gap: 4rem;
  box-sizing: border-box;
}

.product-features__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-features__image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.product-features__image:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 14px 32px rgba(22, 32, 43, 0.14));
}

.product-features__content {
  display: flex;
  flex-direction: column;
}

.product-features__title {
  margin: 0 0 1rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 1.5vw + 0.5rem, 1.9rem);
  color: var(--robotics-text, #16202b);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.product-features__text {
  margin: 0;
  color: var(--robotics-muted, #5f6c7b);
  font-size: clamp(0.9rem, 0.4vw + 0.78rem, 1rem);
  line-height: 1.75;
  max-width: 26rem;
}

/* Slide entrance animation — gated on js-ready */
body.js-ready .product-features__slide .product-features__image,
body.js-ready .product-features__slide .product-features__content {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-ready .product-features__slide.is-visible .product-features__image {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}

body.js-ready .product-features__slide.is-visible .product-features__content {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

.product-features__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.25rem min(8vw, 5rem) 2.5rem;
}

.product-features__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  background: none;
  color: var(--primary, #f7931a);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.3s ease;
}

.product-features__arrow:hover:not(:disabled) {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.4);
}

.product-features__arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.product-features__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-features__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--primary-rgb), 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-features__dot:hover {
  background: rgba(var(--primary-rgb), 0.5);
}

.product-features__dot.is-active {
  background: var(--primary, #f7931a);
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .product-features__header {
    padding: 6rem 1.5rem 0;
  }
  .product-features__headline {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    text-wrap: balance;
  }
  .product-features__slide {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .product-features__image img {
    max-width: 280px;
  }
  .product-features__controls {
    padding: 1rem 1.5rem 2rem;
  }
}

/* ─── Product Specs ─── */
.product-specs {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
  border-top: 1px solid var(--robotics-border, rgba(22, 32, 43, 0.12));
  padding: 4rem min(8vw, 5rem) 5rem;
}

.product-specs__header {
  margin: 0 0 1.5rem;
  text-align: left;
}

.product-specs__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-specs__headline {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--robotics-text, #16202b);
}

.product-specs__grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.product-specs__media {
  position: sticky;
  top: calc(var(--header-offset, 96px) + 1.5rem);
  align-self: start;
}

.product-specs__slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-specs__stage {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 8 / 9;
  overflow: hidden;
}

.product-specs__image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.product-specs__image.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* WS-03-S gallery renders have built-in whitespace — zoom all angles */
[data-product="gausium-ws-03"] .product-specs__image img {
  transform: scale(1.5);
  transform-origin: center;
}

[data-product="gausium-ws-03"] .product-specs__image[data-index="1"] img,
[data-product="gausium-ws-03"] .product-specs__image[data-index="3"] img {
  transform: scale(1.9);
  transform-origin: center;
}

/* Omnie renders are landscape (2000×1125) in a 4:5 portrait stage —
   scale image-only, same mechanism as WS-03. overflow:hidden on the
   stage clips the horizontal whitespace that sits around the robot. */
[data-product="gausium-omnie"] .product-specs__image img {
  transform: scale(2.2);
  transform-origin: center;
}

/* Beetle renders have generous top headroom — scale up and anchor to
   the bottom so the robot fills the stage while the empty top clips.
   Exception: the top-down view (data-index="5" in the current gallery
   ordering) stays at natural size so the full footprint is visible. */
[data-product="gausium-beetle"] .product-specs__image img {
  transform: scale(2.5);
  transform-origin: center bottom;
}
[data-product="gausium-beetle"] .product-specs__image[data-index="5"] img {
  transform: scale(1.5);
  transform-origin: center;
}

.product-specs__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-specs__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.product-specs__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  background: transparent;
  color: var(--primary, #f7931a);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.3s ease;
}

.product-specs__arrow:hover:not(:disabled) {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.45);
}

.product-specs__arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.product-specs__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-specs__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--primary-rgb), 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-specs__dot:hover {
  background: rgba(var(--primary-rgb), 0.5);
}

.product-specs__dot.is-active {
  background: var(--primary, #f7931a);
  transform: scale(1.25);
}

.product-specs__cta {
  margin: 2rem 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.7rem 1.3rem;
  width: fit-content;
  border: 1px solid rgba(var(--primary-rgb), 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--primary, #f7931a);
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-specs__cta:hover,
.product-specs__cta:focus-visible {
  background: rgba(var(--primary-rgb), 0.08);
  border-color: rgba(var(--primary-rgb), 0.55);
  outline: none;
}

.product-specs__cta:active {
  transform: translateY(1px);
}

.product-specs__cta i {
  font-size: 0.95rem;
}

.product-specs__cta-meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary, #f7931a);
}

.product-specs__body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: clamp(1.5rem, 2.5vw, 2.75rem);
}

.product-specs__section {
  display: grid;
  grid-template-columns: minmax(9rem, 0.35fr) 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(22, 32, 43, 0.08);
  min-width: 0;
}

.product-specs__section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-specs__section-label {
  margin: 0;
  padding-top: 0.15rem;
  align-self: start;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary, #f7931a);
}

.product-specs__rows {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-specs__row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.9fr) 1.4fr;
  gap: 1rem;
  align-items: baseline;
}

.product-specs__row-label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--robotics-muted, #5f6c7b);
  font-weight: 400;
}

.product-specs__row-value {
  margin: 0;
  font-size: 0.95rem;
  color: var(--robotics-text, #16202b);
  font-weight: 400;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

.product-specs__footnote {
  grid-column: 1 / -1;
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--robotics-muted, #5f6c7b);
  font-style: italic;
  white-space: nowrap;
}

.product-specs__body-pagination {
  display: none;
}

@media (max-width: 900px) {
  .product-specs {
    padding: 2.75rem 1.5rem 3.25rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .product-specs.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .product-specs__header {
    order: 1;
    margin: 0 0 1.5rem;
    text-align: left;
  }
  .product-specs__eyebrow {
    margin-bottom: 1.5rem;
  }
  .product-specs__headline {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    text-wrap: balance;
  }
  .product-specs__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .product-specs__media {
    display: contents;
    position: static;
  }
  /* Image slider is desktop-only — on mobile the specs speak for themselves */
  .product-specs__slider {
    display: none;
  }
  /* Simple vertical spec list — the pattern most competitors use on mobile */
  .product-specs__body {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  .product-specs__section {
    display: block;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(22, 32, 43, 0.1);
    min-width: 0;
  }
  .product-specs__section:first-child {
    padding-top: 0;
  }
  .product-specs__section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .product-specs__section-label {
    margin: 0 0 0.85rem;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary, #f7931a);
    border: 0;
  }
  .product-specs__rows {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 0;
  }
  .product-specs__row {
    display: grid;
    grid-template-columns: minmax(0, 8rem) minmax(0, 1fr);
    gap: 0.85rem;
    align-items: baseline;
  }
  .product-specs__row-label {
    font-size: 0.86rem;
    letter-spacing: 0;
    color: var(--robotics-muted, #5f6c7b);
    font-weight: 400;
    text-transform: none;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .product-specs__row-value {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--robotics-text, #16202b);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .product-specs__footnote {
    margin: 0.85rem 0 0;
    font-size: 0.74rem;
    line-height: 1.5;
    color: var(--robotics-muted, #5f6c7b);
    font-style: italic;
    white-space: normal;
  }
  .product-specs__body-pagination {
    display: none;
  }
  .product-specs__cta {
    order: 3;
    display: flex;
    align-self: center;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 0.9rem 1.25rem;
    font-size: 0.92rem;
  }
}

.robotics-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header-offset, 96px) + 1.5rem) 0 0;
  background: transparent;
}

.robotics-shell--after-hero {
  position: relative;
  z-index: 3;
  padding: 0;
}

.robotics-shell--after-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: var(--robotics-bg, #eff3f6);
  z-index: -1;
}

.robotics-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.robotics-eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--primary-rgb), 1), rgba(106, 214, 255, 0.4));
}

.robotics-hero {
  padding: clamp(1.4rem, 2vw + 1rem, 2.2rem);
  border: 1px solid var(--robotics-border);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.96)),
    radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.08), transparent 34%);
  box-shadow: var(--robotics-shadow);
}

.robotics-hero__grid,
.robotics-product-hero__grid,
.robotics-product-card,
.robotics-split-grid,
.robotics-spec-grid,
.robotics-cta-banner {
  display: grid;
  gap: 1.5rem;
}

.robotics-hero__grid,
.robotics-product-hero__grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.robotics-hero h1,
.robotics-section-title,
.robotics-product-card__title {
  font-family: 'Roboto', system-ui, sans-serif;
}

.robotics-hero h1 {
  font-size: clamp(1.55rem, 2.5vw + 0.4rem, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.robotics-lead {
  max-width: 48rem;
  margin-top: 1rem;
  color: var(--robotics-muted);
  font-size: clamp(0.95rem, 0.6vw + 0.75rem, 1.08rem);
  line-height: 1.7;
}

.robotics-value-list,
.robotics-support-list,
.robotics-checklist,
.robotics-floor-types {
  list-style: none;
}

.robotics-value-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.robotics-value-list li,
.robotics-checklist li,
.robotics-support-list li,
.robotics-floor-types li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--robotics-text);
}

.robotics-value-list li::before,
.robotics-checklist li::before,
.robotics-support-list li::before,
.robotics-floor-types li::before {
  content: '';
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ffcf90);
  box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.12);
}

.robotics-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.robotics-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.robotics-btn:hover,
.robotics-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.12);
  outline: none;
}

.robotics-btn--primary {
  background: linear-gradient(135deg, rgba(247, 147, 26, 1), rgba(255, 194, 108, 0.95));
  color: #111;
}

.robotics-btn--primary:hover,
.robotics-btn--primary:focus-visible {
  color: #111;
}

.robotics-btn--secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--robotics-border);
  color: var(--robotics-text);
}

.robotics-btn--secondary:hover,
.robotics-btn--secondary:focus-visible {
  color: var(--robotics-text);
  border-color: rgba(var(--primary-rgb), 0.35);
}

.robotics-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(245, 247, 250, 0.92);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.robotics-btn--ghost:hover,
.robotics-btn--ghost:focus-visible {
  border-color: rgba(247, 147, 26, 0.45);
  background: rgba(247, 147, 26, 0.1);
  color: rgba(245, 247, 250, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.robotics-note {
  margin-top: 1rem;
  color: var(--robotics-muted);
  font-size: 0.94rem;
}

.robotics-panel,
.robotics-card,
.robotics-stat-card,
.robotics-product-media,
.robotics-product-card__media,
.robotics-gallery-card,
.robotics-faq details,
.robotics-cta-banner {
  border: 1px solid var(--robotics-border);
  background: var(--robotics-surface);
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(15, 23, 32, 0.05);
}

.robotics-panel {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(22, 32, 43, 0.98), rgba(24, 37, 50, 0.98)),
    radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.26), transparent 34%);
  color: #f5f7fa;
}

.robotics-panel__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.robotics-panel .robotics-support-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.robotics-panel .robotics-support-list li {
  color: rgba(255, 255, 255, 0.88);
}

.robotics-panel .robotics-support-list li::before {
  background: linear-gradient(135deg, var(--accent), #c8f5ff);
  box-shadow: 0 0 0 5px rgba(106, 214, 255, 0.16);
}

.robotics-panel .robotics-note {
  color: rgba(245, 247, 250, 0.72);
}

.robotics-panel .robotics-muted-link {
  color: #fff;
}

.robotics-panel .robotics-muted-link:hover,
.robotics-panel .robotics-muted-link:focus-visible {
  color: #fff;
}

.robotics-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.robotics-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 32, 43, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--robotics-text);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.robotics-anchor-nav a:hover,
.robotics-anchor-nav a:focus-visible {
  background: #fff;
  border-color: rgba(var(--primary-rgb), 0.28);
  transform: translateY(-1px);
  outline: none;
}

.robotics-section {
  margin-top: 1.6rem;
  padding: clamp(1.25rem, 1.7vw + 0.8rem, 1.8rem);
  border: 1px solid rgba(22, 32, 43, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(15, 23, 32, 0.04);
}

.robotics-section--dark {
  background:
    linear-gradient(180deg, rgba(22, 32, 43, 0.97), rgba(26, 38, 52, 0.97)),
    radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.2), transparent 34%);
  border-color: rgba(255, 255, 255, 0.06);
  color: #f5f7fa;
}

.robotics-section--dark .robotics-eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.robotics-section--dark .robotics-section-title {
  color: #f5f7fa;
}

.robotics-section--dark .robotics-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.robotics-section--dark .robotics-card h3 {
  color: #f5f7fa;
}

.robotics-section--dark .robotics-card p {
  color: rgba(245, 247, 250, 0.7);
}

.robotics-section-header {
  max-width: 46rem;
  margin-bottom: 1.3rem;
}

.robotics-section-title {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.robotics-section-copy {
  margin-top: 0.7rem;
  color: var(--robotics-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.robotics-card-grid,
.robotics-stat-grid,
.robotics-process-grid,
.robotics-highlight-grid,
.robotics-gallery-grid {
  display: grid;
  gap: 1rem;
}

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

.robotics-card,
.robotics-stat-card,
.robotics-gallery-card {
  padding: 1.2rem;
}

.robotics-card h3,
.robotics-gallery-card h3,
.robotics-product-card__title {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.robotics-card p,
.robotics-stat-card p,
.robotics-product-card p,
.robotics-gallery-card p {
  margin-top: 0.55rem;
  color: var(--robotics-muted);
  line-height: 1.65;
}

.robotics-split-grid,
.robotics-spec-grid,
.robotics-cta-banner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.robotics-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.robotics-stat-grid--standalone {
  margin-top: 1rem;
}

.robotics-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.robotics-stat-card {
  min-height: 100%;
}

.robotics-stat-card__value {
  display: block;
  color: var(--robotics-text);
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: clamp(1.2rem, 1.1vw + 1rem, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.robotics-stat-card__label {
  display: block;
  margin-top: 0.35rem;
  color: var(--robotics-muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.robotics-product-card {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
}

.robotics-product-card__content,
.robotics-product-card__media {
  min-width: 0;
}

.robotics-product-card__media,
.robotics-product-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem;
  background:
    radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.12), transparent 34%),
    linear-gradient(180deg, #fbfcfd 0%, #f2f6f9 100%);
}

.robotics-product-media img,
.robotics-product-card__media img,
.robotics-gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}

.robotics-product-media img,
.robotics-product-card__media img {
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(15, 23, 32, 0.16));
}

.robotics-product-card__copy {
  margin-top: 0.85rem;
  color: var(--robotics-muted);
  line-height: 1.7;
}

.robotics-inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.robotics-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(22, 32, 43, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.robotics-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.robotics-process-step {
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid var(--robotics-border);
  background: var(--robotics-surface);
}

.robotics-process-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.14);
  color: #8c4f06;
  font-weight: 700;
}

.robotics-process-step h3 {
  margin-top: 0.95rem;
  font-size: 1.05rem;
}

.robotics-process-step p {
  margin-top: 0.55rem;
  color: var(--robotics-muted);
}

.robotics-faq {
  display: grid;
  gap: 0.9rem;
}

.robotics-faq details {
  padding: 0.95rem 1.05rem;
}

.robotics-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.robotics-faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.15rem;
  color: #ffffff;
}

.robotics-faq details[open] summary::after {
  content: '−';
}

.robotics-faq p {
  margin-top: 0.8rem;
  color: var(--robotics-muted);
  line-height: 1.7;
}

.robotics-cta-banner {
  align-items: center;
  padding: clamp(1.35rem, 1.8vw + 1rem, 2rem);
  margin-top: 1.6rem;
  background:
    linear-gradient(135deg, rgba(22, 32, 43, 0.98), rgba(29, 43, 56, 0.98)),
    radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.3), transparent 34%);
  color: #f5f7fa;
}


.robotics-cta-banner p {
  margin-top: 0.65rem;
  color: rgba(245, 247, 250, 0.74);
  line-height: 1.7;
}

.robotics-product-hero__grid {
  align-items: center;
}

.robotics-product-media {
  min-height: 100%;
}

.robotics-product-media__caption {
  margin-top: 0.9rem;
  color: var(--robotics-muted);
  font-size: 0.95rem;
}

.robotics-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.robotics-gallery-card {
  overflow: hidden;
  padding: 0;
}

.robotics-gallery-card img {
  padding: 1rem;
  background: linear-gradient(180deg, #fbfcfd 0%, #f3f7f9 100%);
}

.robotics-gallery-card p {
  padding: 0 1rem 1rem;
  margin-top: 0;
}

.robotics-spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 24px;
  overflow: hidden;
  background: var(--robotics-surface);
  border: 1px solid var(--robotics-border);
}

.robotics-spec-table th,
.robotics-spec-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
}

.robotics-spec-table th {
  width: 42%;
  color: var(--robotics-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.robotics-spec-table tr + tr th,
.robotics-spec-table tr + tr td {
  border-top: 1px solid rgba(22, 32, 43, 0.08);
}

.robotics-floor-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1rem;
}

.robotics-floor-types li {
  min-width: 9rem;
}

.robotics-floor-types li::before {
  top: 0.5rem;
}

.robotics-support-block {
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--robotics-border);
  background: var(--robotics-surface-soft);
}

.robotics-support-block h3,
.robotics-support-block h4 {
  letter-spacing: -0.02em;
}

.robotics-support-block > h3 + .robotics-card-grid,
.robotics-support-block > h3 + .robotics-floor-types,
.robotics-support-block > h3 + p {
  margin-top: 0.9rem;
}

.robotics-support-block p {
  margin-top: 0.6rem;
  color: var(--robotics-muted);
  line-height: 1.7;
}

.robotics-muted-link {
  color: var(--robotics-muted);
  text-decoration: none;
}

.robotics-muted-link:hover,
.robotics-muted-link:focus-visible {
  color: var(--robotics-text);
  text-decoration: underline;
  outline: none;
}

@media (max-width: 1120px) {
  .robotics-stat-grid,
  .robotics-process-grid,
  .robotics-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .robotics-card-grid,
  .robotics-card-grid--three,
  .robotics-highlight-grid,
  .robotics-product-card,
  .robotics-hero__grid,
  .robotics-product-hero__grid,
  .robotics-split-grid,
  .robotics-spec-grid,
  .robotics-cta-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .robotics-shell {
    width: calc(100% - 1rem);
    padding-bottom: 0;
  }

  .robotics-hero,
  .robotics-section,
  .robotics-faq details,
  .robotics-panel,
  .robotics-card,
  .robotics-stat-card,
  .robotics-process-step,
  .robotics-product-media,
  .robotics-product-card__media,
  .robotics-cta-banner {
    border-radius: 22px;
  }

  .robotics-card-grid,
  .robotics-highlight-grid,
  .robotics-stat-grid,
  .robotics-process-grid,
  .robotics-gallery-grid {
    grid-template-columns: 1fr;
  }

  .robotics-actions {
    flex-direction: column;
  }

  .robotics-btn {
    width: 100%;
  }

  .robotics-anchor-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .robotics-anchor-nav a {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .robotics-shell {
    width: calc(100% - 0.75rem);
  }

  .robotics-anchor-nav {
    grid-template-columns: 1fr;
  }

  .robotics-floor-types li {
    min-width: 100%;
  }
}

/* Cleaning hub hero and scalable model comparison */
.robotics-hub-hero {
  overflow: hidden;
}

.robotics-hub-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.robotics-hub-hero__intro {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.robotics-inline-meta--card {
  margin-top: 0.2rem;
}

.robotics-model-compare {
  margin-top: 5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.robotics-model-compare__header {
  max-width: 40rem;
  margin: 0 auto 0.82rem;
  padding-top: 0.2rem;
  text-align: center;
}

.robotics-model-compare__header::before {
  content: '';
  display: block;
  width: clamp(22rem, 52vw, 32rem);
  height: 1px;
  margin: 0 auto 1.7rem;
  background: linear-gradient(90deg, rgba(106, 214, 255, 0.08), rgba(247, 147, 26, 0.58) 50%, rgba(106, 214, 255, 0.08));
}

.robotics-model-compare__title {
  margin: 0 0 2.2rem;
  color: var(--robotics-text);
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: clamp(1.6rem, 1.45vw + 1.05rem, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.robotics-model-grid {
  display: grid;
  gap: 1rem;
}

.robotics-model-card {
  display: grid;
  grid-template-rows: minmax(12.6rem, 13.4rem) 1fr;
  gap: 0;
  color: inherit;
  height: 100%;
  border: 1px solid rgba(113, 123, 138, 0.14);
  border-radius: 1.4rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  box-shadow: 0 12px 28px rgba(15, 23, 32, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.robotics-model-card:hover,
.robotics-model-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 32, 0.08);
  border-color: rgba(var(--primary-rgb), 0.22);
}

.robotics-model-card__media {
  position: relative;
  min-height: 12.6rem;
  background:
    radial-gradient(circle at 22% 14%, rgba(106, 214, 255, 0.16), transparent 42%),
    radial-gradient(circle at 84% 18%, rgba(var(--primary-rgb), 0.08), transparent 26%),
    linear-gradient(145deg, rgba(245, 248, 251, 0.98), rgba(235, 240, 245, 1));
}

.robotics-model-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 0.95rem 1rem 0.5rem;
}

.robotics-model-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  padding: 1.05rem 1.05rem 1.1rem;
}

.robotics-model-card__label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: rgba(22, 32, 43, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.robotics-model-card__title {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.robotics-model-card__summary {
  margin: 0;
  color: rgba(22, 32, 43, 0.68);
  font-size: 0.92rem;
  line-height: 1.52;
}

.robotics-model-card__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.15rem 0 0;
  padding: 0;
}

.robotics-model-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(106, 214, 255, 0.2);
  background: rgba(106, 214, 255, 0.075);
  color: rgba(22, 32, 43, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
}

.robotics-model-card__footer {
  margin-top: auto;
  padding-top: 0.55rem;
}

.robotics-model-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  background: linear-gradient(135deg, rgba(247, 147, 26, 1), rgba(255, 194, 108, 0.95));
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.robotics-model-card__cta::after {
  content: '→';
  transition: transform 180ms ease;
}

.robotics-model-card__cta:hover,
.robotics-model-card__cta:focus-visible {
  background: linear-gradient(135deg, rgba(243, 142, 22, 1), rgba(255, 186, 95, 0.98));
  border-color: rgba(var(--primary-rgb), 0.26);
  box-shadow: 0 12px 24px rgba(15, 23, 32, 0.08);
  outline: none;
}

.robotics-model-card:hover .robotics-model-card__cta::after,
.robotics-model-card:focus-within .robotics-model-card__cta::after,
.robotics-model-card__cta:hover::after,
.robotics-model-card__cta:focus-visible::after {
  transform: translateX(3px);
}

.robotics-benefits-bridge {
  --robotics-benefits-panel-height: 100vh;
  width: 100%;
  min-height: 195vh;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.robotics-benefits-bridge__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(7rem, 14vh, 9.5rem);
  background: transparent;
  overflow: clip;
  isolation: isolate;
}

.robotics-benefits-bridge__sticky::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: var(--robotics-benefits-panel-height);
  background: rgba(var(--primary-rgb), 0.25);
  z-index: -1;
}

.robotics-benefits-bridge__inner {
  width: min(1200px, calc(100% - 4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
  min-height: var(--robotics-benefits-panel-height);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  text-align: left;
}

.robotics-benefits-bridge__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
  max-width: 38rem;
  margin: 0;
  align-self: start;
}

.robotics-benefits-bridge__title {
  width: auto;
  max-width: 100%;
  margin: 0;
  color: var(--robotics-text);
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: clamp(2.1rem, 2vw + 1.2rem, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-align: left;
}

.robotics-benefits-bridge__subtitle {
  width: auto;
  max-width: 100%;
  margin: 0.9rem 0 0;
  color: rgba(22, 32, 43, 0.78);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.18rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
}

.robotics-benefits-bridge__pills {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  width: fit-content;
  max-width: min(100%, 32rem);
  align-self: start;
  padding-top: 0;
}

.robotics-benefits-bridge__pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.72rem;
  min-height: 72px;
  width: 100%;
  max-width: 100%;
  padding: 1.08rem 1.55rem;
  border-radius: 999px;
  border: 1px solid rgba(106, 214, 255, 0.36);
  background: rgba(106, 214, 255, 0.18);
  color: rgba(22, 32, 43, 0.88);
  font-size: 1.18rem;
  font-weight: 550;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.robotics-benefits-bridge__pill.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.robotics-benefits-bridge__pill strong {
  font-weight: 650;
}

.robotics-benefits-bridge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--primary);
  flex: 0 0 auto;
}

.robotics-benefits-bridge__icon i {
  font-size: 1.1rem;
  line-height: 1;
}

.robotics-benefits-bridge + .robotics-section {
  margin-top: 1rem;
}

.robotics-support-block--compare-cta {
  margin-top: 1.4rem;
}

@media (min-width: 760px) {
  .robotics-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .robotics-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .robotics-benefits-bridge__pills {
    align-self: start;
  }

  .robotics-benefits-bridge__pill {
    white-space: normal;
  }

  .robotics-hub-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .robotics-model-compare__header {
    margin-bottom: 0.9rem;
  }

  .robotics-model-compare__header::before {
    margin-bottom: 1.2rem;
  }

  .robotics-model-card {
    grid-template-rows: minmax(12rem, 12.8rem) 1fr;
  }

  .robotics-benefits-bridge {
    --robotics-benefits-panel-height: auto;
    min-height: 0;
    padding: 1.2rem 0 1.6rem;
  }

  .robotics-benefits-bridge__sticky {
    position: static;
    top: auto;
    min-height: 0;
    display: block;
    overflow: visible;
    isolation: auto;
  }

  .robotics-benefits-bridge__sticky::before {
    display: none;
  }

  .robotics-benefits-bridge__inner {
    width: min(44rem, calc(100% - 2rem));
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 0;
    padding: 0;
  }

  .robotics-benefits-bridge__copy {
    justify-content: flex-start;
    padding-top: 0;
    max-width: none;
  }

  .robotics-benefits-bridge__title {
    font-size: clamp(1.35rem, 4vw + 0.7rem, 1.75rem);
  }

  .robotics-benefits-bridge__pills {
    grid-template-columns: 1fr;
    gap: 0.58rem;
    width: 100%;
  }

  .robotics-benefits-bridge__pill {
    width: 100%;
    justify-content: flex-start;
    min-height: 0;
    padding: 0.66rem 0.8rem;
    font-size: 0.88rem;
  }

  .robotics-model-card__media {
    min-height: 12rem;
  }

  .robotics-model-card__body {
    padding: 0.98rem;
    gap: 0.66rem;
  }

  .robotics-model-card__title {
    font-size: 1.2rem;
  }

  .robotics-model-card__summary {
    font-size: 0.9rem;
  }

  .robotics-model-card__pill {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .robotics-shell--after-hero {
    padding-top: 0;
  }

  .robotics-benefits-bridge {
    padding: 1rem 0 1.4rem;
    border-width: 0;
    border-radius: 0;
  }

  .robotics-benefits-bridge__inner {
    width: min(44rem, calc(100% - 1.5rem));
  }

  .robotics-benefits-bridge__pill {
    font-size: 0.88rem;
  }
}

/* ── Full-Bleed Hero Background (Cleaning Robots) ── */

.robotics-hero-fullbleed {
  position: relative;
  width: 100%;
  height: 100vh;
  height: min(calc(var(--app-vh, 1vh) * 100), 100dvh);
  background-color: #0d131a;
  overflow: hidden;
}

.robotics-hero-fullbleed__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.robotics-hero-fullbleed__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.robotics-hero-fullbleed__bg.is-playing {
  opacity: 1;
}

/* Reduced motion: no video, poster stays via background-image on __media */
@media (prefers-reduced-motion: reduce) {
  .robotics-hero-fullbleed__bg {
    display: none;
  }
}

.robotics-hero-fullbleed__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.7) 0%, rgba(8, 12, 18, 0.55) 26%, rgba(8, 12, 18, 0.3) 44%, rgba(8, 12, 18, 0.08) 64%, rgba(8, 12, 18, 0.02) 100%),
    radial-gradient(circle at 18% 18%, rgba(var(--primary-rgb), 0.1), transparent 26%),
    linear-gradient(180deg, rgba(6, 9, 14, 0.08), rgba(6, 9, 14, 0.2));
  pointer-events: none;
  z-index: 1;
}

.robotics-hero-fullbleed__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(1360px, calc(100% - 3rem));
  margin: 0 auto;
  height: 100%;
  padding: calc(var(--header-offset, 96px) + 0.25rem) 0 clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(18rem, 1.8fr) minmax(0, 0.6fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.robotics-hero-fullbleed__content {
  display: grid;
  gap: 1.2rem;
  max-width: 75rem;
  padding-inline: clamp(0.85rem, 1.8vw, 2rem);
  align-content: start;
}

.robotics-hero-fullbleed__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.58rem;
  margin-bottom: 0.9rem;
  color: var(--primary);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.robotics-hero-fullbleed__eyebrow::before {
  content: '';
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(247, 147, 26, 0.92), rgba(247, 147, 26, 0.14));
}

.robotics-hero-fullbleed__title {
  margin: 0 0 0.18rem;
  color: rgba(245, 247, 250, 0.96);
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 2.25vw + 0.95rem, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.robotics-hero-fullbleed__copy {
  margin: 0;
  max-width: 29.5rem;
  color: rgba(244, 248, 252, 0.9);
  font-size: clamp(0.92rem, 0.42vw + 0.8rem, 1.04rem);
  line-height: 1.64;
  font-weight: 400;
}

.robotics-hero-fullbleed__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.95rem;
  padding-top: 2.2rem;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
}

/* Hero scroll-driven reveal: initial hidden states (prevents FOUC) */
.robotics-hero-scroll .robotics-hero-fullbleed__title {
  opacity: 0;
}
.robotics-hero-scroll .robotics-hero-fullbleed__copy {
  opacity: 0;
  transform: scale(0.85);
}
@media (max-width: 900px) {
  .robotics-hero-scroll .robotics-hero-fullbleed__copy {
    transform: translateY(2rem);
  }
}
.robotics-hero-scroll .robotics-hero-fullbleed__actions {
  opacity: 0;
  transform: scale(0.85);
}
@media (max-width: 900px) {
  .robotics-hero-scroll .robotics-hero-fullbleed__actions {
    opacity: 0;
    transform: translateY(1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .robotics-hero-scroll .robotics-hero-fullbleed__title,
  .robotics-hero-scroll .robotics-hero-fullbleed__copy,
  .robotics-hero-scroll .robotics-hero-fullbleed__actions {
    opacity: 1;
    transform: none;
  }
}

/* Scroll container for hero sticky reveal */
.robotics-hero-scroll {
  position: relative;
  height: 200vh;
  z-index: 1;
}

.robotics-hero-scroll .robotics-hero-fullbleed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.robotics-hero-fullbleed__visual {
  min-height: clamp(30rem, 74vh, 48rem);
}

@media (min-width: 901px) {
  .robotics-hero-fullbleed__inner {
    padding-top: calc(var(--header-offset, 96px) + clamp(1.2rem, 2.7vw, 2.2rem));
    grid-template-columns: minmax(24rem, 1.8fr) minmax(0, 0.6fr);
    gap: clamp(2.5rem, 4.8vw, 5.8rem);
  }

  .robotics-hero-fullbleed__content {
    gap: 1.85rem;
    max-width: 75rem;
    padding-inline: clamp(1.8rem, 3.6vw, 4rem);
    align-content: start;
  }

  .robotics-hero-fullbleed__eyebrow {
    margin-bottom: 1.3rem;
    font-size: 0.76rem;
  }

  .robotics-hero-fullbleed__title {
    margin-bottom: 0.7rem;
    font-size: clamp(2.45rem, 2.8vw + 1rem, 4.4rem);
    line-height: 0.98;
  }

  .robotics-hero-fullbleed__copy {
    max-width: 36rem;
    font-size: clamp(1rem, 0.5vw + 0.86rem, 1.16rem);
    line-height: 1.68;
    font-weight: 450;
  }

  .robotics-hero-fullbleed__actions {
    gap: 1.2rem;
    padding-top: 1.1rem;
  }

  .robotics-hero-fullbleed__actions .robotics-btn {
    min-height: 44px;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    white-space: nowrap;
  }

  .robotics-hero-fullbleed__actions .robotics-btn--primary {
    box-shadow: 0 16px 34px rgba(247, 147, 26, 0.28), 0 12px 28px rgba(0, 0, 0, 0.22);
  }
}

@media (min-width: 1400px) {
  .robotics-hero-fullbleed__inner {
    grid-template-columns: minmax(28rem, 1.25fr) minmax(0, 1.15fr);
  }

  .robotics-hero-fullbleed__content {
    max-width: 48rem;
    padding-left: clamp(4.5rem, 8vw, 8rem);
  }
}

@media (max-width: 1400px) {
  .robotics-hero-fullbleed__inner {
    width: min(1360px, calc(100% - 5rem));
  }

  .robotics-hero-fullbleed__bg {
    object-position: center center;
  }
}

@media (max-width: 1024px) {
  .robotics-hero-fullbleed__inner {
    width: min(1360px, calc(100% - 6rem));
    grid-template-columns: minmax(17rem, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .robotics-hero-fullbleed__title {
    font-size: clamp(1.9rem, 2vw + 0.82rem, 3rem);
  }
}

@media (max-width: 900px) {
  .robotics-hero-fullbleed__bg {
    object-position: 50% center;
  }

  .robotics-hero-fullbleed__overlay {
    background:
      linear-gradient(180deg, rgba(8, 12, 18, 0.65) 0%, rgba(8, 12, 18, 0.5) 44%, rgba(8, 12, 18, 0.25) 72%, rgba(8, 12, 18, 0.1) 100%),
      radial-gradient(circle at 18% 18%, rgba(var(--primary-rgb), 0.1), transparent 30%);
  }

  .robotics-hero-fullbleed__inner {
    width: min(100%, calc(100% - 7rem));
    height: 100%;
    min-height: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;
    align-items: start;
    padding-top: calc(var(--header-offset, 96px) + 1.5rem);
    padding-bottom: 2.2rem;
  }

  .robotics-hero-fullbleed__content {
    min-height: 100%;
    max-width: 34rem;
    align-content: start;
    padding-inline: 2.4rem;
  }

  .robotics-hero-fullbleed__title {
    font-size: clamp(2.8rem, 9vw, 3.8rem);
    line-height: 1;
  }

  .robotics-hero-fullbleed__copy {
    max-width: 28rem;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .robotics-hero-fullbleed__visual {
    display: none;
  }

  .robotics-hero-fullbleed__actions .robotics-btn {
    white-space: nowrap;
    padding: 0.82rem 1.3rem;
  }

  .robotics-hero-fullbleed__actions .robotics-btn--primary {
    box-shadow: 0 14px 28px rgba(247, 147, 26, 0.26), 0 10px 24px rgba(0, 0, 0, 0.24);
  }
}

@media (max-width: 480px) {
  .robotics-hero-fullbleed {
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
  }

  .robotics-hero-fullbleed__inner {
    width: calc(100% - 1.6rem);
    padding-top: calc(var(--header-offset, 96px) + 1.2rem);
    padding-bottom: 1.8rem;
  }

  .robotics-hero-fullbleed__content {
    max-width: 100%;
    padding-inline: 0.7rem;
  }

  .robotics-hero-fullbleed__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.11em;
  }

  .robotics-hero-fullbleed__eyebrow::before {
    width: 2rem;
  }

  .robotics-hero-fullbleed__title {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1.02;
  }

  .robotics-hero-fullbleed__copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.62;
    font-weight: 500;
  }

  .robotics-hero-fullbleed__actions .robotics-btn {
    font-size: 0.92rem;
  }
}

/* --- 2026-04 product page refinement pass --- */
.robotics-hero h1,
.robotics-section-title,
.robotics-product-card__title,
.robotics-model-card__title,
.robotics-card h3,
.robotics-process-step h3,
.robotics-support-block h3,
.robotics-support-block h4,
.robotics-faq summary,
.robotics-product-media__caption,
.robotics-model-card__summary,
.robotics-lead,
.robotics-section-copy,
.robotics-card p,
.robotics-gallery-card p,
.robotics-product-card p,
.robotics-faq p,
.robotics-support-block p,
.robotics-stat-card__label,
.robotics-product-media__facts dd,
.robotics-product-media__facts dt {
  overflow-wrap: anywhere;
}

.robotics-pill {
  background: rgba(22, 32, 43, 0.06);
  color: rgba(22, 32, 43, 0.82);
  border: 1px solid rgba(22, 32, 43, 0.08);
}

.robotics-card-grid,
.robotics-highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

/* ── Hub Hero: Layout & Hierarchy ─────────── */

.robotics-hero-fullbleed__inner {
  align-items: stretch;
}

.robotics-hero-fullbleed__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: clamp(2rem, 8vh, 6rem);
  padding-bottom: clamp(1.5rem, 4vh, 2.75rem);
}

.robotics-hero-fullbleed__title {
  max-width: 20ch;
  margin-bottom: clamp(1.1rem, 2.2vh, 1.6rem);
}

.robotics-hero-fullbleed__copy {
  margin-bottom: clamp(1.8rem, 3.5vh, 2.8rem);
  max-width: 34rem;
  color: rgba(244, 248, 252, 0.84);
  font-size: clamp(1.02rem, 0.55vw + 0.9rem, 1.2rem);
  line-height: 1.68;
  font-weight: 420;
}

.robotics-hero-fullbleed__actions {
  margin-top: auto;
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
  justify-content: flex-start;
  margin-left: 0;
  padding-top: 0;
}

.robotics-hero-fullbleed__models {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: visible;
  padding-bottom: 2px;
}

/* ── Hub Hero: Model Pills ───────────────── */

.robotics-hero-model-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 17, 0.32);
  backdrop-filter: blur(12px);
  color: rgba(245, 247, 250, 0.72);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.robotics-hero-model-link::after {
  content: '→';
  font-size: 0.78rem;
  opacity: 0.35;
  transition: opacity 200ms ease, transform 200ms ease;
}

.robotics-hero-model-link:hover,
.robotics-hero-model-link:focus-visible {
  border-color: rgba(247, 147, 26, 0.45);
  background: rgba(247, 147, 26, 0.1);
  color: rgba(245, 247, 250, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  outline: none;
}

.robotics-hero-model-link:hover::after,
.robotics-hero-model-link:focus-visible::after {
  opacity: 0.9;
  transform: translateX(3px);
}

.robotics-hero-model-link__name {
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

/* ── Hub Hero: Mobile Overrides ──────────── */

@media (max-width: 900px) {
  .robotics-hero-fullbleed__content {
    padding-top: clamp(3rem, 10vh, 6rem);
  }

  .robotics-hero-fullbleed__title {
    max-width: none;
  }

  .robotics-hero-fullbleed__copy {
    font-size: 0.86rem;
    line-height: 1.52;
    max-width: 26rem;
  }

  .robotics-hero-fullbleed__actions {
    justify-content: center;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6rem;
    margin-bottom: 0;
    padding-top: 0;
    gap: 0.7rem;
  }

  .robotics-hero-fullbleed__models {
    display: none;
  }
}

@media (max-width: 480px) {

  .robotics-hero-fullbleed__copy {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .robotics-hero-fullbleed__actions {
    gap: 0.55rem;
  }

  .robotics-hero-fullbleed__actions .robotics-btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.86rem;
  }
}

.robotics-hub-benefits {
  margin-top: -2.8rem;
  position: relative;
  z-index: 4;
  padding: 1.25rem;
  border: 1px solid rgba(22, 32, 43, 0.08);
  border-radius: 1.7rem;
  background: rgba(255, 248, 239, 0.96);
  box-shadow: 0 20px 44px rgba(15, 23, 32, 0.08);
}

.robotics-hub-benefits__intro {
  max-width: 38rem;
}

.robotics-hub-benefits__title {
  margin: 0;
  color: var(--robotics-text);
  font-size: clamp(1.45rem, 1.2vw + 1rem, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.robotics-hub-benefits__subtitle {
  margin: 0.55rem 0 0;
  color: rgba(22, 32, 43, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.robotics-hub-benefits__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
}

.robotics-hub-benefits__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  min-height: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(22, 32, 43, 0.06);
  color: rgba(22, 32, 43, 0.84);
  line-height: 1.45;
}

.robotics-hub-benefits__card strong {
  font-weight: 700;
}

.robotics-hub-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(247, 147, 26, 0.12);
  color: var(--primary);
}

.robotics-model-compare {
  margin-top: 2.2rem;
}

.robotics-model-compare__header {
  max-width: 34rem;
  margin: 0 0 1.25rem;
  text-align: left;
}

.robotics-model-compare__header::before {
  width: 7rem;
  margin: 0 0 1rem;
}

.robotics-model-compare__title {
  margin-bottom: 0;
}

.robotics-model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.robotics-model-card {
  grid-template-rows: minmax(13.5rem, 14.5rem) 1fr;
  border-radius: 1.55rem;
  box-shadow: 0 18px 40px rgba(15, 23, 32, 0.06);
}

.robotics-model-card__media {
  background:
    radial-gradient(circle at 20% 14%, rgba(106, 214, 255, 0.18), transparent 44%),
    radial-gradient(circle at 82% 16%, rgba(var(--primary-rgb), 0.11), transparent 28%),
    linear-gradient(160deg, rgba(250, 252, 253, 0.98), rgba(238, 243, 247, 1));
}

.robotics-model-card__media img {
  padding: 1.1rem 1.15rem 0.45rem;
}

.robotics-model-card__body {
  padding: 1.2rem;
  gap: 0.75rem;
}

.robotics-model-card__label {
  background: rgba(var(--primary-rgb), 0.09);
  color: rgba(22, 32, 43, 0.72);
}

.robotics-model-card__title {
  font-size: 1.32rem;
}

.robotics-model-card__summary {
  font-size: 0.96rem;
  line-height: 1.58;
}

.robotics-model-card__pills {
  gap: 0.45rem;
}

.robotics-model-card__pill {
  min-height: 28px;
  padding: 0.34rem 0.62rem;
  font-size: 0.78rem;
}

.robotics-product-hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  gap: 1.25rem;
}

.robotics-product-hero__content {
  display: flex;
  flex-direction: column;
}

.robotics-product-fit-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
}

.robotics-product-fit-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--robotics-text);
  line-height: 1.55;
}

.robotics-product-fit-list li::before {
  content: '';
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ffcf90);
  box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.12);
}

.robotics-related-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.robotics-related-inline__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 32, 43, 0.08);
  color: var(--robotics-text);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.robotics-related-inline__link:hover,
.robotics-related-inline__link:focus-visible {
  border-color: rgba(var(--primary-rgb), 0.28);
  background: #fff;
  outline: none;
}

.robotics-product-media {
  gap: 1rem;
  padding: 1.35rem;
}

.robotics-product-media__card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 32, 43, 0.08);
}

.robotics-product-media__caption {
  margin-top: 0;
  color: rgba(22, 32, 43, 0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

.robotics-product-media__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
}

.robotics-product-media__facts div {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(22, 32, 43, 0.1);
}

.robotics-product-media__facts dt {
  color: rgba(22, 32, 43, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.robotics-product-media__facts dd {
  margin: 0.32rem 0 0;
  color: var(--robotics-text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.robotics-stat-grid {
  margin-top: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.robotics-anchor-nav {
  margin-top: 1.2rem;
  gap: 0.55rem;
}

.robotics-anchor-nav a {
  min-height: 40px;
  padding: 0.58rem 0.85rem;
  font-size: 0.92rem;
}

.robotics-section-header {
  max-width: 42rem;
}

.robotics-faq details {
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1120px) {
  .robotics-hub-benefits__grid,
  .robotics-model-grid,
  .robotics-product-media__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .robotics-hub-benefits {
    margin-top: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 767px) {
  .robotics-hub-benefits__grid,
  .robotics-model-grid,
  .robotics-product-media__facts {
    grid-template-columns: 1fr;
  }

  .robotics-product-media {
    padding: 1rem;
  }

  .robotics-product-media__card {
    padding: 0.9rem;
  }

  .robotics-related-inline {
    margin-top: 0.7rem;
  }
}


@media (max-width: 900px) {
  body.robotics-page .site-header {
    top: 0.4rem;
    width: calc(100% - 1rem);
    padding: 0.48rem 1.18rem;
    border-radius: 11px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Product page fullbleed hero (image-only variant)
   ═══════════════════════════════════════════════════════════════ */
.robotics-hero-fullbleed--product .robotics-hero-fullbleed__inner {
  grid-template-columns: 1fr;
}

.robotics-hero-fullbleed--product .robotics-hero-fullbleed__content {
  align-content: end;
  padding-bottom: clamp(1rem, 3vh, 2.5rem);
}

/* Image is 16:9 — matches typical desktop viewport, so cover fits
   cleanly without crop or empty sides. Slow Ken Burns adds depth to
   the still shot. */
.robotics-hero-fullbleed--product .robotics-hero-fullbleed__media {
  background-size: cover;
  background-position: center center;
  transform-origin: center center;
  animation: robotics-hero-breathe 26s ease-in-out infinite alternate;
  will-change: transform;
}

/* Product variant: show image unmodified — no darkening, no vignette. */
.robotics-hero-fullbleed--product .robotics-hero-fullbleed__overlay {
  display: none;
}

/* Text sits on the bright lobby image — switch to black for legibility. */
.robotics-hero-fullbleed--product .robotics-hero-fullbleed__back,
.robotics-hero-fullbleed--product .robotics-hero-fullbleed__title,
.robotics-hero-fullbleed--product .robotics-hero-fullbleed__copy {
  color: #0d131a;
}

.robotics-hero-fullbleed--product .robotics-hero-fullbleed__back:hover,
.robotics-hero-fullbleed--product .robotics-hero-fullbleed__back:focus-visible {
  color: var(--primary);
}

@keyframes robotics-hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* Mobile: portrait viewport — bias position to keep the robot in frame
   when cover crops the sides. */
@media (max-width: 900px) {
  .robotics-hero-fullbleed--product .robotics-hero-fullbleed__media {
    background-position: 68% 55%;
    transform-origin: 68% 55%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .robotics-hero-fullbleed--product .robotics-hero-fullbleed__media {
    animation: none;
    transform: none;
  }
}

.robotics-hero-fullbleed__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  color: rgba(245, 247, 250, 0.78);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s ease;
}

.robotics-hero-fullbleed__back:hover,
.robotics-hero-fullbleed__back:focus-visible {
  color: var(--primary);
}

.robotics-hero-fullbleed--product .robotics-hero-fullbleed__actions {
  margin-left: 0;
  padding-top: 1.6rem;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .robotics-hero-fullbleed--product .robotics-hero-fullbleed__actions {
    flex-wrap: wrap;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   PRODUCT COMPANION — system components / related products
   Dark "zoom out to system" moment between specs and CTA.
   Intro block + card grid. Scales 1→2→3+ cards.
   ═══════════════════════════════════════════ */
.product-companion {
  position: relative;
  z-index: 3;
  padding: clamp(4rem, 8vw, 6rem) min(8vw, 5rem);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), 0.12), transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(106, 214, 255, 0.06), transparent 45%),
    linear-gradient(180deg, #161b20 0%, #0e1117 100%);
  overflow: hidden;
}

/* Desktop: section capped at viewport height; inner/grid/media flex-fill so
   cards never exceed screen and every card-media has identical height. */
@media (min-width: 901px) {
  .product-companion {
    min-height: 100svh;
    max-height: 100svh;
    padding-top: clamp(4rem, 9vh, 6.5rem);
    padding-bottom: clamp(2rem, 5vh, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product-companion__inner {
    flex: 1 1 auto;
    min-height: 0;
  }
  .product-companion__intro {
    flex: 0 0 auto;
  }
  .product-companion__grid {
    flex: 1 1 auto;
    min-height: 0;
    grid-auto-rows: minmax(0, 1fr);
  }
  .product-companion__card-media {
    aspect-ratio: auto;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }
  .product-companion__card-body {
    flex: 0 0 auto;
  }
  /* Single card: opt out of the vertical stretch that equalises heights
     for multi-card rows. With one card it just bloats the media box. */
  .product-companion__grid[data-count="1"] {
    flex: 0 0 auto;
    grid-auto-rows: auto;
  }
  .product-companion__grid[data-count="1"] .product-companion__card-media {
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
  }
}

.product-companion__inner {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.product-companion__intro {
  max-width: 640px;
  color: #f5f7fa;
}

.product-companion__eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary, #f7931a);
}

.product-companion__title {
  margin: 0 0 0.9rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.product-companion__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.72);
}

.product-companion__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.product-companion__grid[data-count="1"] {
  grid-template-columns: minmax(0, 280px);
  justify-content: start;
}

.product-companion__grid[data-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: start;
}

.product-companion__grid[data-count="3"] {
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: start;
}

.product-companion__card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-companion__card:hover,
.product-companion__card:focus-visible {
  border-color: rgba(var(--primary-rgb), 0.45);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  outline: none;
}

.product-companion__card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.product-companion__card-media::before {
  content: '';
  position: absolute;
  inset: 15% 15%;
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15), transparent 65%);
  filter: blur(24px);
  z-index: 0;
  transition: opacity 0.25s ease;
}

.product-companion__card:hover .product-companion__card-media::before,
.product-companion__card:focus-visible .product-companion__card-media::before {
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.22), transparent 65%);
}

.product-companion__card-media img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transform-origin: center;
  transition: transform 0.25s ease;
}

/* Per-product zoom — renders with built-in whitespace are scaled up,
   tight-cropped renders (CD-01) scaled down so all products look evenly sized */
.product-companion__card[data-slug="gausium-phantas"] .product-companion__card-media img {
  transform: scale(1.2);
}
.product-companion__card[data-slug="gausium-mobile-water-tank"] .product-companion__card-media img {
  transform: scale(1.4);
}
.product-companion__card[data-slug="gausium-omnie"] .product-companion__card-media img {
  transform: scale(1.4);
}
.product-companion__card[data-slug="gausium-cd-01"] .product-companion__card-media img {
  transform: scale(0.6);
}
.product-companion__card[data-slug="gausium-cd-04"] .product-companion__card-media img {
  transform: scale(1);
}
.product-companion__card[data-slug="gausium-ws-01"] .product-companion__card-media img {
  transform: scale(1.6);
}

.product-companion__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-companion__card-name {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.product-companion__card-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(245, 247, 250, 0.6);
}

.product-companion__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary, #f7931a);
}

.product-companion__card-cta i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.product-companion__card:hover .product-companion__card-cta i,
.product-companion__card:focus-visible .product-companion__card-cta i {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .product-companion {
    min-height: 100vh;
    min-height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    padding: 3rem 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product-companion__inner {
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .product-companion__intro {
    max-width: none;
    flex: 0 0 auto;
  }
  .product-companion__eyebrow {
    margin-bottom: 0.6rem;
  }
  .product-companion__title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    margin-bottom: 0.6rem;
  }
  .product-companion__lead {
    font-size: 0.95rem;
  }
  /* Single-column stack, cards fill remaining viewport via flex */
  .product-companion__grid[data-count] {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 1fr;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-height: 0;
  }
  .product-companion__card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem;
    border-radius: 1rem;
    min-height: 0;
  }
  .product-companion__card-media {
    flex: 0 0 40%;
    aspect-ratio: auto;
    height: 100%;
    margin-bottom: 0;
    min-width: 0;
    min-height: 0;
  }
  .product-companion__card-media::before {
    inset: 10%;
  }
  /* Mobile: extra zoom — compact container amplifies whitespace in renders */
  .product-companion__card[data-slug="gausium-phantas"] .product-companion__card-media img {
    transform: scale(1.35);
  }
  .product-companion__card[data-slug="gausium-mobile-water-tank"] .product-companion__card-media img {
    transform: scale(1.7);
  }
  .product-companion__card[data-slug="gausium-omnie"] .product-companion__card-media img {
    transform: scale(1.7);
  }
  .product-companion__card[data-slug="gausium-cd-01"] .product-companion__card-media img {
    transform: scale(0.65);
  }
  .product-companion__card[data-slug="gausium-ws-01"] .product-companion__card-media img {
    transform: scale(1.9);
  }
  .product-companion__card-body {
    gap: 0.25rem;
    min-width: 0;
  }
  .product-companion__card-name {
    font-size: 1rem;
  }
  .product-companion__card-sub {
    font-size: 0.82rem;
  }
  .product-companion__card-cta {
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }
  /* Single-card: revert to vertical layout so the image dominates the card
     instead of being squeezed into a 40% side column of a stretched row.
     Also cap the card width (overrides the 1fr from [data-count] above) so
     it doesn't stretch full-viewport, and center the single cell. */
  .product-companion__grid[data-count="1"] {
    grid-template-columns: minmax(0, 280px);
    grid-auto-rows: auto;
    justify-content: start;
    flex: 0 0 auto;
  }
  .product-companion__grid[data-count="1"] .product-companion__card {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .product-companion__grid[data-count="1"] .product-companion__card-media {
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    height: auto;
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* ═══════════════════════════════════════════
   FINAL CTA — shared with hub (.cr-cta)
   Copied from cleaning-hub.css so product pages
   don't need to load the full hub stylesheet
   ═══════════════════════════════════════════ */
.cr-cta {
  position: relative;
  z-index: 3;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(7.5rem, 20vw, 12.5rem);
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15), transparent 40%),
    linear-gradient(135deg, #F7931A, #e8850f 40%, #FFC46C);
}

.cr-cta__inner {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cr-cta__content {
  text-align: left;
  padding-left: clamp(1rem, 3vw, 2rem);
}

.cr-cta__title {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.8vw + 0.9rem, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111;
}

.cr-cta__text {
  margin: 0.85rem 0 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.cr-cta__btn.cr-cta__btn--mobile {
  display: none;
}

.cr-cta__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cr-cta__form-row {
  display: flex;
  gap: 0.6rem;
}

.cr-cta__form input,
.cr-cta__form textarea {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: inherit;
  font-size: 0.88rem;
  color: #111;
  transition: border-color 0.2s, background 0.2s;
}

.cr-cta__form input::placeholder,
.cr-cta__form textarea::placeholder {
  color: rgba(17, 17, 17, 0.4);
}

.cr-cta__form input:focus,
.cr-cta__form textarea:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.cr-cta__form textarea {
  resize: vertical;
  min-height: 4rem;
}

.cr-cta__privacy {
  font-size: 0.7rem;
  color: rgba(17, 17, 17, 0.5);
  margin: 0;
  line-height: 1.4;
}

.cr-cta__privacy a {
  color: #111;
  text-decoration: underline;
}

.cr-cta__submit {
  align-self: flex-start;
  padding: 0.65rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cr-cta__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cr-cta__status {
  font-size: 0.85rem;
  min-height: 1.2em;
}

.cr-cta__status.error {
  color: #7a1a1a;
}

.cr-cta__status.show {
  opacity: 1;
}

@media (max-width: 900px) {
  .cr-cta {
    padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(7.5rem, 20vw, 12.5rem);
  }
  .cr-cta__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cr-cta__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cr-cta__content .cr-cta__title,
  .cr-cta__content .cr-cta__text {
    align-self: flex-start;
  }
  .cr-cta__form {
    display: none;
  }
  .cr-cta__btn.cr-cta__btn--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 1.25rem;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    width: auto;
  }
}
