:root {
  --robotics-ink: #0c131c;
  --robotics-charcoal: #334255;
  --robotics-slate: #6c7b8e;
  --robotics-line: #d9e1ea;
  --robotics-paper: #f8fafc;
  --robotics-ice: #eaf2fb;
  --robotics-blue: #397fbf;
  --robotics-font: "Barlow", sans-serif;
  --robotics-container: 1440px;
  --robotics-header: 86px;
  --robotics-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--robotics-ink);
  background: var(--robotics-paper);
  font-family: var(--robotics-font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.robotics-container {
  width: min(calc(100% - 64px), var(--robotics-container));
  margin-inline: auto;
}

.robotics-kicker {
  margin: 0 0 12px;
  color: var(--robotics-blue);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.27em;
  line-height: 1.3;
  text-transform: uppercase;
}

.robotics-section-heading {
  margin-bottom: clamp(42px, 6vw, 74px);
  text-align: center;
}

.robotics-section-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

/* Header */
.robotics-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(90deg, rgba(250, 252, 254, 0.88), rgba(250, 252, 254, 0.36));
  backdrop-filter: blur(5px);
  transition:
    background 240ms ease-out,
    border-color 240ms ease-out,
    backdrop-filter 240ms ease-out;
}

.robotics-header.is-scrolled,
.robotics-header.is-open {
  border-color: rgba(178, 190, 204, 0.52);
  background: rgba(249, 251, 253, 0.88);
  backdrop-filter: blur(18px);
}

.robotics-header__inner {
  display: flex;
  min-height: var(--robotics-header);
  align-items: center;
  justify-content: space-between;
  transition: min-height 240ms var(--robotics-ease);
}

.robotics-header.is-scrolled .robotics-header__inner {
  min-height: 56px;
}

.robotics-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  transition: opacity 220ms ease-out;
}

.robotics-brand:hover {
  opacity: 0.62;
}

.robotics-brand__mark {
  width: 40px;
  height: auto;
  fill: var(--robotics-ink);
}

.robotics-brand > span {
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}

.robotics-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(28px, 4vw, 62px);
}

.robotics-nav a,
.robotics-mobile-nav a {
  position: relative;
  color: #1e2b3a;
  font-size: 0.86rem;
  font-weight: 500;
}

.robotics-nav > a:not(.robotics-nav__contact)::after,
.robotics-footer a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--robotics-ease);
}

.robotics-nav > a:hover::after,
.robotics-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.robotics-nav__contact {
  display: inline-flex;
  min-height: 40px;
  padding-inline: 18px;
  align-items: center;
  gap: 14px;
  border: 1px solid #8f9baa;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.46);
  transition:
    color 220ms ease-out,
    background 220ms ease-out,
    transform 220ms var(--robotics-ease);
}

.robotics-nav__contact:hover {
  color: white;
  background: var(--robotics-ink);
  transform: translateY(-2px);
}

.robotics-nav__contact:active {
  transform: scale(0.98);
}

.robotics-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--robotics-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 1.4rem;
  transition:
    border-color 220ms ease-out,
    transform 220ms var(--robotics-ease);
}

.robotics-menu-button:hover {
  border-color: var(--robotics-ink);
  transform: translateY(-2px);
}

.robotics-menu-button:active {
  transform: scale(0.98);
}

.robotics-mobile-nav {
  display: none;
}

/* Shared controls */
.robotics-button {
  display: inline-flex;
  min-height: 52px;
  padding-inline: 22px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    color 220ms ease-out,
    background 220ms ease-out,
    border-color 220ms ease-out,
    box-shadow 220ms ease-out,
    transform 220ms var(--robotics-ease);
}

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

.robotics-button:active {
  transform: scale(0.98);
}

.robotics-button iconify-icon {
  display: none;
}

.robotics-button--dark {
  color: white;
  background: var(--robotics-ink);
  box-shadow: 0 12px 26px rgba(17, 27, 39, 0.16);
}

.robotics-button--dark:hover {
  background: #243547;
  box-shadow: 0 16px 30px rgba(17, 27, 39, 0.22);
}

.robotics-button--light {
  border-color: #8996a6;
  background: rgba(255, 255, 255, 0.54);
}

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

.robotics-button:focus-visible,
.robotics-header a:focus-visible,
.robotics-menu-button:focus-visible,
.robotics-footer a:focus-visible {
  outline: 2px solid #72ace0;
  outline-offset: 4px;
}

/* Hero */
.robotics-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 40%, rgba(208, 225, 244, 0.5), transparent 35%),
    linear-gradient(120deg, #fbfcfe 0%, #eef4fa 100%);
}

.robotics-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: saturate(0.94) contrast(1.015);
}

.robotics-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 720px;
  padding-top: var(--robotics-header);
  align-items: center;
}

.robotics-hero__content {
  width: min(44%, 570px);
}

.robotics-hero__content .robotics-kicker {
  display: none;
}

.robotics-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(4.5rem, 8vw, 8.2rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.robotics-hero__lead {
  max-width: 440px;
  margin: 0;
  color: #243448;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1.2;
}

.robotics-hero__body {
  max-width: 480px;
  margin: 25px 0 0;
  color: #53647a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.robotics-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 18px;
}

/* Benefits */
.robotics-benefits {
  padding: clamp(74px, 9vw, 126px) 0;
  border-bottom: 1px solid var(--robotics-line);
  background: #fbfcfe;
}

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

.robotics-benefit {
  padding: 0 clamp(24px, 4vw, 58px);
  text-align: center;
}

.robotics-benefit + .robotics-benefit {
  border-left: 1px solid var(--robotics-line);
}

.robotics-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  place-items: center;
  border: 1px solid #a6c4df;
  border-radius: 50%;
  color: var(--robotics-blue);
  background: rgba(248, 252, 255, 0.7);
  font-size: 1.5rem;
}

.robotics-benefit h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 500;
}

.robotics-benefit p {
  max-width: 245px;
  margin: 0 auto;
  color: var(--robotics-slate);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Technology */
.robotics-technology {
  padding: clamp(90px, 11vw, 158px) 0;
  border-bottom: 1px solid var(--robotics-line);
  background: linear-gradient(140deg, #f6f9fc, #eaf1f8);
}

.robotics-technology__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.robotics-technology__copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.robotics-technology__copy > p:not(.robotics-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #53647a;
  font-size: 0.93rem;
  line-height: 1.65;
}

.robotics-feature-list {
  display: grid;
  margin-top: 44px;
  gap: 25px;
}

.robotics-feature-list article {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}

.robotics-feature-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #aac5df;
  border-radius: 50%;
  color: var(--robotics-blue);
  font-size: 1.05rem;
}

.robotics-feature-list h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 500;
}

.robotics-feature-list p {
  margin: 0;
  color: var(--robotics-slate);
  font-size: 0.78rem;
  line-height: 1.5;
}

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

.robotics-technology__gallery figure {
  position: relative;
  min-width: 0;
  height: 590px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(175, 188, 203, 0.54);
  border-radius: 8px;
  background: #e8eef5;
}

.robotics-technology__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 280ms ease-out,
    transform 280ms var(--robotics-ease);
}

.robotics-technology__gallery figure:hover img {
  filter: saturate(1.05);
  transform: scale(1.025);
}

.robotics-technology__gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px 18px 17px;
  background: linear-gradient(180deg, transparent, rgba(244, 248, 252, 0.9));
  font-size: 0.88rem;
  font-weight: 500;
}

/* Applications */
.robotics-applications {
  padding: clamp(86px, 10vw, 142px) 0;
  background: #fbfcfe;
}

.robotics-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.robotics-application-card {
  overflow: hidden;
  border: 1px solid var(--robotics-line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 32px rgba(56, 76, 99, 0.07);
  transition:
    box-shadow 240ms ease-out,
    transform 240ms var(--robotics-ease);
}

.robotics-application-card:hover {
  box-shadow: 0 22px 42px rgba(56, 76, 99, 0.13);
  transform: translateY(-5px);
}

.robotics-application-card > picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.25;
}

.robotics-application-card > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms var(--robotics-ease);
}

.robotics-application-card:hover > picture > img {
  transform: scale(1.025);
}

.robotics-application-card > div {
  position: relative;
  min-height: 154px;
  padding: 23px 22px 24px;
  border-top: 1px solid var(--robotics-line);
}

.robotics-application-card h3 {
  margin: 0 0 9px;
  font-size: 1rem;
  font-weight: 500;
}

.robotics-application-card p {
  margin: 0;
  color: var(--robotics-slate);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Partners */
.robotics-partners {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #eef4fa;
}

.robotics-partners > picture {
  position: absolute;
  inset: 0;
  display: block;
}

.robotics-partners > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.robotics-partners__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 430px;
  align-items: center;
}

.robotics-partners__inner > div {
  width: min(48%, 590px);
}

.robotics-partners h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.3vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.robotics-partners__inner p:not(.robotics-kicker) {
  max-width: 540px;
  margin: 23px 0 30px;
  color: #53647a;
  font-size: 0.9rem;
  line-height: 1.6;
}

.robotics-partners a.robotics-button iconify-icon {
  display: none;
}

/* Footer */
.robotics-footer {
  padding: 54px 0 25px;
  background: #fbfcfe;
}

.robotics-footer__main {
  display: grid;
  padding-bottom: 45px;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 80px;
}

.robotics-footer__links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
}

.robotics-footer__links > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.robotics-footer h2 {
  margin: 0 0 3px;
  font-size: 0.78rem;
  font-weight: 500;
}

.robotics-footer a {
  position: relative;
  color: var(--robotics-slate);
  font-size: 0.72rem;
}

.robotics-footer__legal {
  display: flex;
  min-height: 58px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--robotics-line);
  color: var(--robotics-slate);
}

.robotics-footer__legal p {
  margin: 0;
  font-size: 0.7rem;
}

.robotics-footer__legal nav {
  display: flex;
  gap: 38px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 280ms ease-out,
    transform 280ms var(--robotics-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
  .robotics-nav {
    gap: 24px;
  }

  .robotics-hero__content {
    width: 46%;
  }

  .robotics-technology__layout {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 45px;
  }

  .robotics-technology__gallery figure {
    height: 500px;
  }

  .robotics-application-grid {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  :root {
    --robotics-header: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .robotics-menu-button {
    display: grid;
  }

  .robotics-mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-inline: 24px;
    background: rgba(249, 251, 253, 0.98);
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 260ms ease-out,
      opacity 220ms ease-out,
      visibility 220ms ease-out;
  }

  .robotics-mobile-nav.is-open {
    max-height: calc(100vh - var(--robotics-header));
    padding-block: 24px 34px;
    opacity: 1;
    visibility: visible;
  }

  .robotics-mobile-nav a {
    padding-block: 15px;
    border-bottom: 1px solid var(--robotics-line);
    font-size: 1rem;
  }

  .robotics-hero {
    min-height: 760px;
  }

  .robotics-hero__image {
    opacity: 0.45;
    object-position: 62% center;
  }

  .robotics-hero__inner {
    min-height: 760px;
  }

  .robotics-hero__content {
    width: min(72%, 560px);
  }

  .robotics-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }

  .robotics-benefit:nth-child(3) {
    border-left: 0;
  }

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

  .robotics-technology__copy {
    max-width: 680px;
  }

  .robotics-technology__gallery figure {
    height: 530px;
  }

  .robotics-application-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .robotics-partners__inner > div {
    width: 58%;
  }

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

@media (max-width: 620px) {
  .robotics-container {
    width: min(calc(100% - 32px), var(--robotics-container));
  }

  .robotics-hero {
    min-height: 720px;
  }

  .robotics-hero__image {
    opacity: 0.22;
    object-position: 68% center;
  }

  .robotics-hero__inner {
    min-height: 720px;
  }

  .robotics-hero__content {
    width: 100%;
  }

  .robotics-hero h1 {
    font-size: clamp(4.2rem, 21vw, 6rem);
  }

  .robotics-hero__lead {
    max-width: 340px;
    font-size: 1.45rem;
  }

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

  .robotics-button {
    width: 100%;
  }

  .robotics-benefit-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .robotics-benefit {
    padding-block: 35px;
  }

  .robotics-benefit + .robotics-benefit {
    border-top: 1px solid var(--robotics-line);
    border-left: 0;
  }

  .robotics-technology__gallery {
    overflow-x: auto;
    padding-bottom: 12px;
    grid-template-columns: repeat(3, 82vw);
    scroll-snap-type: x mandatory;
  }

  .robotics-technology__gallery figure {
    height: 520px;
    scroll-snap-align: start;
  }

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

  .robotics-partners {
    min-height: 560px;
  }

  .robotics-partners > picture > img {
    opacity: 0.4;
    object-position: 68% center;
  }

  .robotics-partners__inner {
    min-height: 560px;
  }

  .robotics-partners__inner > div {
    width: 100%;
  }

  .robotics-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 24px;
  }

  .robotics-footer__legal {
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Desktop section snapping and viewport fit */
@media (min-width: 901px) {
  html {
    scroll-padding-top: 0;
  }

  main > section:nth-child(-n + 4) {
    min-height: 100svh;
  }

  .robotics-hero,
  .robotics-hero__inner {
    min-height: 100svh;
  }

  .robotics-partners,
  .robotics-partners__inner {
    min-height: 55svh;
    height: 55svh;
  }

  .robotics-partners__inner {
    padding-top: 56px;
  }

  .robotics-footer {
    min-height: 40svh;
  }

  .robotics-benefits,
  .robotics-technology,
  .robotics-applications {
    display: flex;
    padding-top: clamp(76px, 9vh, 110px);
    padding-bottom: clamp(62px, 8vh, 96px);
    align-items: center;
  }

  .robotics-benefits > .robotics-container,
  .robotics-technology > .robotics-container,
  .robotics-applications > .robotics-container {
    width: min(calc(100% - 64px), var(--robotics-container));
  }

  .robotics-benefits .robotics-section-heading,
  .robotics-applications .robotics-section-heading {
    margin-bottom: clamp(30px, 5vh, 56px);
  }

  .robotics-technology__gallery figure {
    height: clamp(330px, 56vh, 540px);
  }

  .robotics-application-card > picture {
    height: clamp(180px, 27vh, 300px);
    aspect-ratio: auto;
  }

  .robotics-application-card > div {
    min-height: clamp(116px, 15vh, 150px);
    padding-top: 19px;
    padding-bottom: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }
}

/* Official logo */
.robotics-brand__image {
  display: block;
  width: 120px;
  height: auto;
}

.robotics-footer .robotics-brand__image {
  width: 92px;
}

/* Mobile-only full-screen section paging for technology subpages. */
@media (max-width: 900px) {
  html.subpage.technology-subpage {
    scroll-padding-top: 0;
    scroll-snap-type: y mandatory;
  }

  html.subpage.technology-subpage main > section,
  html.subpage.technology-subpage body > .robotics-footer {
    min-height: 100svh;
    height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  html.subpage.technology-subpage main > section {
    overflow: hidden;
  }

  html.subpage.technology-subpage .robotics-hero,
  html.subpage.technology-subpage .robotics-hero__inner {
    min-height: 100svh;
    height: 100svh;
  }

  html.subpage.technology-subpage .robotics-hero__inner {
    padding-top: var(--robotics-header);
  }

  html.subpage.technology-subpage .robotics-benefits {
    display: flex;
    padding: calc(var(--robotics-header) + 18px) 0 18px;
    align-items: center;
  }

  html.subpage.technology-subpage .robotics-benefits > .robotics-container {
    width: min(calc(100% - 24px), var(--robotics-container));
  }

  html.subpage.technology-subpage .robotics-benefits .robotics-section-heading {
    margin-bottom: 20px;
  }

  html.subpage.technology-subpage .robotics-section-heading .robotics-kicker {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  html.subpage.technology-subpage .robotics-section-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
    line-height: 1.02;
  }

  html.subpage.technology-subpage .robotics-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  html.subpage.technology-subpage .robotics-benefit {
    min-height: clamp(240px, 33svh, 320px);
    padding: clamp(16px, 2.4svh, 24px) clamp(10px, 2.4vw, 18px);
    justify-content: center;
  }

  html.subpage.technology-subpage .robotics-benefit:nth-child(3),
  html.subpage.technology-subpage .robotics-benefit:nth-child(4) {
    border-top: 1px solid var(--robotics-line);
  }

  html.subpage.technology-subpage .robotics-benefit:nth-child(3) {
    border-left: 0;
  }

  html.subpage.technology-subpage .robotics-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    font-size: 1.2rem;
  }

  html.subpage.technology-subpage .robotics-benefit h3 {
    margin-bottom: 7px;
    font-size: 0.82rem;
  }

  html.subpage.technology-subpage .robotics-benefit p {
    font-size: 0.7rem;
    line-height: 1.38;
  }

  html.subpage.technology-subpage .robotics-technology {
    display: flex;
    padding: calc(var(--robotics-header) + 12px) 0 12px;
    align-items: center;
  }

  html.subpage.technology-subpage .robotics-technology__layout {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 14px;
  }

  html.subpage.technology-subpage .robotics-technology__copy {
    max-width: none;
  }

  html.subpage.technology-subpage .robotics-technology__copy .robotics-kicker {
    margin-bottom: 7px;
    font-size: 0.64rem;
  }

  html.subpage.technology-subpage .robotics-technology__copy h2 {
    max-width: none;
    font-size: clamp(1.9rem, 7.8vw, 2.25rem);
    line-height: 1;
  }

  html.subpage.technology-subpage .robotics-technology__copy > p:not(.robotics-kicker) {
    max-width: none;
    margin-top: 9px;
    font-size: 0.74rem;
    line-height: 1.38;
  }

  html.subpage.technology-subpage .robotics-feature-list {
    margin-top: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  html.subpage.technology-subpage .robotics-feature-list article {
    padding: 8px 4px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    text-align: center;
  }

  html.subpage.technology-subpage .robotics-feature-list article > span {
    width: 34px;
    height: 34px;
    font-size: 0.88rem;
  }

  html.subpage.technology-subpage .robotics-feature-list h3 {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  html.subpage.technology-subpage .robotics-feature-list p {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  html.subpage.technology-subpage .robotics-technology__gallery {
    width: 100%;
    overflow: hidden;
    padding-bottom: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  html.subpage.technology-subpage .robotics-technology__gallery figure {
    height: clamp(240px, 31svh, 320px);
    scroll-snap-align: none;
  }

  html.subpage.technology-subpage .robotics-technology__gallery figcaption {
    padding: 24px 7px 8px;
    font-size: 0.58rem;
    line-height: 1.15;
  }

  html.subpage.technology-subpage .robotics-applications {
    display: flex;
    padding: calc(var(--robotics-header) + 14px) 0 14px;
    align-items: center;
  }

  html.subpage.technology-subpage .robotics-applications > .robotics-container {
    width: min(calc(100% - 24px), var(--robotics-container));
  }

  html.subpage.technology-subpage .robotics-applications .robotics-section-heading {
    margin-bottom: 18px;
  }

  html.subpage.technology-subpage .robotics-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  html.subpage.technology-subpage .robotics-application-card > picture {
    height: clamp(138px, 21svh, 210px);
    aspect-ratio: auto;
  }

  html.subpage.technology-subpage .robotics-application-card > div {
    min-height: clamp(112px, 15svh, 150px);
    padding: clamp(12px, 1.6svh, 16px);
  }

  html.subpage.technology-subpage .robotics-application-card h3 {
    margin-bottom: 5px;
    font-size: 0.78rem;
  }

  html.subpage.technology-subpage .robotics-application-card p {
    font-size: 0.66rem;
    line-height: 1.35;
  }

  html.subpage.technology-subpage .robotics-partners,
  html.subpage.technology-subpage .robotics-partners__inner {
    min-height: 100svh;
    height: 100svh;
  }

  html.subpage.technology-subpage .robotics-partners__inner {
    padding-top: var(--robotics-header);
  }

  html.subpage.technology-subpage body > .robotics-footer {
    display: flex;
    min-height: 100svh;
    height: 100svh;
    padding-top: max(24px, env(safe-area-inset-top));
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    align-items: center;
  }

  html.subpage.technology-subpage body > .robotics-footer .footer-container {
    width: min(calc(100% - 32px), 1440px);
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  html.subpage.technology-subpage body > .robotics-footer .footer-container {
    display: flex;
    min-height: 100%;
    padding-block: calc(var(--robotics-header) + 28px) 32px;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  html.subpage.technology-subpage {
    scroll-snap-type: none;
  }
}
