/* Design Tokens */
:root {
  --color-onyx: #090d10;
  --color-charcoal: #28313c;
  --color-slate: #697483;
  --color-line: #d8dee6;
  --color-light: #f2f5f9;
  --color-white: #fbfcfe;
  --color-ion: #c9dbf1;
  --color-ice: #83b5ec;
  --font-display: "Barlow", sans-serif;
  --container: 1240px;
  --header-height: 120px;
  --radius-sm: 8px;
  --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-onyx);
  background: var(--color-white);
  font-family: var(--font-display);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

.section {
  padding-block: clamp(104px, 13vw, 188px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--color-slate);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(70px, 9vw, 120px);
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

/* Header Section */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 252, 254, 0);
  transition:
    background 240ms ease-out,
    border-color 240ms ease-out,
    backdrop-filter 240ms ease-out;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(188, 199, 212, 0.55);
  background: rgba(251, 252, 254, 0.84);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .header__inner {
  min-height: 60px;
}

.site-header.is-scrolled .brand__mark {
  width: 32px;
}

.site-header.is-scrolled .brand__wordmark {
  font-size: 0.94rem;
}

.site-header.is-scrolled .desktop-nav a {
  font-size: 0.86rem;
}

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

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

.brand:hover {
  opacity: 0.62;
}

.brand:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--color-ice);
  outline-offset: 5px;
}

.brand__mark {
  display: block;
  width: 44px;
  height: auto;
  flex: 0 0 auto;
  fill: var(--color-onyx);
  shape-rendering: geometricPrecision;
  transition: width 240ms var(--ease-premium);
}

.brand__wordmark {
  color: var(--color-onyx);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  transition: font-size 240ms var(--ease-premium);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 54px);
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  color: var(--color-charcoal);
  font-size: 1rem;
  font-weight: 500;
  transition:
    color 220ms ease-out,
    font-size 240ms var(--ease-premium);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-premium);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

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

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

.menu-button:focus-visible {
  outline: 2px solid var(--color-ice);
  outline-offset: 3px;
}

.mobile-nav {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 69% 36%, rgba(207, 222, 239, 0.52), transparent 35%),
    linear-gradient(90deg, #fbfcfe 0%, #f4f7fb 48%, #e7ebf1 100%);
}

.hero__atmosphere {
  display: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  padding-top: var(--header-height);
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 54px 0 100px;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 30px;
  font-size: clamp(3.6rem, 5.9vw, 6.75rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.91;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 430px;
  margin: 0;
  color: var(--color-charcoal);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.55;
}

.hero__copy span {
  display: block;
  margin-top: 5px;
  color: var(--color-slate);
}

.hero__actions {
  display: flex;
  margin-top: 44px;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  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(--ease-premium);
}

.button iconify-icon {
  display: none;
}

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

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

.button:focus-visible {
  outline: 2px solid var(--color-ice);
  outline-offset: 4px;
}

.button--primary {
  color: white;
  background: var(--color-onyx);
  box-shadow: 0 12px 28px rgba(18, 29, 41, 0.18);
}

.button--primary:hover {
  background: #223143;
  box-shadow: 0 16px 34px rgba(18, 29, 41, 0.24);
}

.text-link {
  display: inline-flex;
  padding-block: 8px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--color-slate);
  color: var(--color-charcoal);
  font-size: 0.86rem;
  transition:
    color 220ms ease-out,
    border-color 220ms ease-out;
}

.text-link:hover {
  color: #4d8dca;
  border-color: #4d8dca;
}

.hero__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-top: clamp(104px, 12vh, 132px);
  pointer-events: none;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  filter: saturate(0.82) contrast(0.98);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-slate);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 220ms ease-out;
}

.scroll-cue:hover {
  color: var(--color-onyx);
}

/* Technology Section */
.technology {
  overflow: hidden;
  background: #fbfcfe;
}

.technology-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: center;
}

.technology-step {
  min-width: 0;
}

.step__meta {
  display: flex;
  margin-bottom: 60px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 16px;
}

.step__meta span {
  color: var(--color-slate);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.step__meta h3 {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.technology-step > p {
  max-width: 240px;
  min-height: 44px;
  margin: 56px 0 0;
  color: var(--color-slate);
  font-size: 0.82rem;
  line-height: 1.6;
}

.flow-arrow {
  display: flex;
  margin-top: 20px;
  align-items: center;
  color: var(--color-slate);
}

.flow-arrow span {
  width: 100%;
  height: 1px;
  background: var(--color-line);
}

.flow-arrow iconify-icon {
  flex: 0 0 auto;
}

.tech-object {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 2px;
  background: #f7f9fc;
  transition: transform 280ms var(--ease-premium);
}

.technology-step:hover .tech-object {
  transform: translateY(-5px);
}

.tech-object img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.tech-object--sarcomite .module-cap {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 86px;
  border: 1px solid #a8b5c4;
  border-radius: 15px;
  background:
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(88, 112, 139, 0.24) 7px 8px),
    linear-gradient(145deg, #fdfefe, #aebdce);
  box-shadow: inset 4px 0 8px rgba(255, 255, 255, 0.8);
}

.module-core {
  display: flex;
  width: 170px;
  height: 66px;
  align-items: center;
  justify-content: space-around;
  border-block: 1px solid #bdc9d7;
  background: linear-gradient(180deg, rgba(216, 232, 249, 0.8), rgba(249, 252, 255, 0.5));
  transform: skewX(-5deg);
}

.module-core i {
  width: 8px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #a9c9ea, #ffffff 52%, #89b4df);
  transform: rotate(10deg);
}

.tech-object--fibril {
  justify-content: flex-start;
  padding-left: 20px;
}

.fibril-cap {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 112px;
  border: 9px double #9baaba;
  border-radius: 50%;
  background: #eaf1f8;
}

.fibril-bundle {
  display: grid;
  width: 200px;
  height: 100px;
  margin-left: -25px;
  padding: 18px 12px 18px 34px;
  border: 1px solid #ccd6e2;
  border-left: 0;
  border-radius: 0 50px 50px 0;
  background: rgba(239, 246, 253, 0.78);
  grid-template-rows: repeat(7, 1fr);
  gap: 3px;
}

.fibril-bundle i {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #b3c9e0, #fff 45%, #8bb5df);
  box-shadow: 0 1px 2px rgba(72, 102, 135, 0.2);
}

.tech-object--muscle {
  padding-inline: 14px;
}

.muscle-ring {
  position: relative;
  z-index: 2;
  width: 45px;
  height: 120px;
  border: 8px double #7c8c9d;
  border-radius: 50%;
  background: linear-gradient(90deg, #dce6f0, #778797);
}

.muscle-fibers {
  position: relative;
  display: grid;
  width: 210px;
  height: 102px;
  margin-inline: -16px;
  padding-block: 14px;
  grid-template-rows: repeat(6, 1fr);
}

.muscle-fibers::before,
.muscle-fibers::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(217, 232, 247, 0.26);
  content: "";
  transform: skewX(-13deg);
}

.muscle-fibers i {
  position: relative;
  z-index: 1;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #8eadd0, #ffffff 42%, #adc9e5);
  box-shadow: 0 2px 4px rgba(70, 99, 130, 0.18);
  transform: rotate(-4deg);
}

.technology__statement {
  margin: clamp(90px, 12vw, 160px) 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
  color: var(--color-charcoal);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  letter-spacing: -0.035em;
}

.technology__statement span {
  color: var(--color-slate);
}

/* Applications Section */
.applications {
  border-block: 1px solid var(--color-line);
  background: var(--color-light);
}

.section-heading--row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.section-heading--row > p {
  max-width: 330px;
  margin: 0 0 5px;
  color: var(--color-slate);
  font-size: 0.9rem;
  line-height: 1.7;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.application-card {
  min-width: 0;
  border-left: 1px solid var(--color-line);
}

.application-card[href] {
  cursor: pointer;
}

.application-card[href]:focus-visible {
  position: relative;
  z-index: 3;
  outline: 2px solid var(--color-ice);
  outline-offset: -3px;
}

.application-card:last-child {
  border-right: 1px solid var(--color-line);
}

.application-card__visual {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: #e7ecf3;
  isolation: isolate;
}

.application-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98);
  transition:
    transform 280ms var(--ease-premium),
    filter 280ms ease-out;
}

.application-card:nth-child(1) .application-card__visual img {
  object-position: 50% 30%;
}

.application-card:nth-child(2) .application-card__visual img {
  object-position: 50% 48%;
}

.application-card:nth-child(3) .application-card__visual img {
  object-position: 50% 28%;
}

.application-card:hover .application-card__visual img {
  filter: saturate(0.92) contrast(1);
  transform: scale(1.025);
}

/* Mobile Carousel Controls */
.carousel-viewport {
  width: 100%;
}

.carousel-controls {
  display: none;
}

.carousel-controls > button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-onyx);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 1.25rem;
  transition:
    color 220ms ease-out,
    background 220ms ease-out,
    border-color 220ms ease-out,
    transform 220ms var(--ease-premium);
}

.carousel-controls > button:hover {
  color: white;
  border-color: var(--color-onyx);
  background: var(--color-onyx);
  transform: translateY(-2px);
}

.carousel-controls > button:active {
  transform: scale(0.98);
}

.carousel-controls > button:focus-visible,
.carousel-dots button:focus-visible {
  outline: 2px solid var(--color-ice);
  outline-offset: 3px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aeb8c4;
  cursor: pointer;
  transition:
    width 220ms var(--ease-premium),
    border-radius 220ms ease-out,
    background 220ms ease-out;
}

.carousel-dots button.is-active {
  width: 24px;
  border-radius: 10px;
  background: var(--color-onyx);
}

.application-card__content {
  min-height: 220px;
  padding: 32px 34px 40px;
  border-top: 1px solid var(--color-line);
  background: rgba(251, 252, 254, 0.82);
  transition: background 240ms ease-out;
}

.application-card:hover .application-card__content {
  background: white;
}

.application-card__content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.application-card__content > p:last-child {
  max-width: 260px;
  margin: 0;
  color: var(--color-slate);
  font-size: 0.82rem;
  line-height: 1.6;
}

.figure--robot {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 270px;
  height: 420px;
  transform: translateX(-48%);
  transition: transform 280ms var(--ease-premium);
}

.application-card:hover .figure--robot {
  transform: translateX(-48%) translateY(-7px);
}

.figure__head {
  position: absolute;
  top: 34px;
  left: 101px;
  width: 88px;
  height: 110px;
  border: 1px solid #aebbc9;
  border-radius: 45% 55% 45% 50%;
  background: linear-gradient(135deg, white, #b8c5d3);
  box-shadow: 0 18px 22px rgba(56, 77, 100, 0.18);
}

.figure__head::after {
  position: absolute;
  top: 58px;
  right: -6px;
  width: 72px;
  height: 16px;
  border-radius: 8px;
  background: #1d2936;
  box-shadow: 0 0 12px rgba(93, 161, 225, 0.55);
  content: "";
}

.figure__torso {
  position: absolute;
  top: 139px;
  left: 50px;
  width: 190px;
  height: 250px;
  border: 1px solid #aebdcb;
  border-radius: 82px 82px 30px 30px;
  background: linear-gradient(125deg, #fefefe 10%, #c5d1de 64%, #91a0b0);
  box-shadow: 0 22px 30px rgba(56, 77, 100, 0.2);
}

.figure__torso::before {
  position: absolute;
  inset: 38px 52px auto;
  height: 132px;
  border-radius: 30px;
  background:
    repeating-linear-gradient(90deg, #dcebf9 0 7px, #ffffff 7px 11px, #8fb6dc 11px 13px);
  content: "";
}

.figure__joint {
  position: absolute;
  z-index: 2;
  top: 165px;
  left: 33px;
  width: 64px;
  height: 64px;
  border: 13px double #718295;
  border-radius: 50%;
  background: #17222e;
}

.figure__arm {
  position: absolute;
  top: 211px;
  left: 13px;
  width: 70px;
  height: 180px;
  border-radius: 40px;
  background:
    repeating-linear-gradient(90deg, #c4d9ee 0 8px, #ffffff 8px 13px, #89afd5 13px 15px);
  transform: rotate(7deg);
}

.prosthetic-hand {
  position: absolute;
  right: 18%;
  bottom: -30px;
  width: 220px;
  height: 350px;
  border: 1px solid #9dabb9;
  border-radius: 90px 90px 42px 42px;
  background:
    repeating-linear-gradient(100deg, transparent 0 18px, rgba(95, 126, 159, 0.22) 19px 21px),
    linear-gradient(125deg, #fdfefe, #a6b6c7);
  box-shadow: 0 24px 30px rgba(56, 77, 100, 0.2);
  transform: rotate(-12deg);
  transition: transform 280ms var(--ease-premium);
}

.application-card:hover .prosthetic-hand {
  transform: rotate(-9deg) translateY(-7px);
}

.prosthetic-hand span {
  position: absolute;
  top: 110px;
  left: 50%;
  width: 116px;
  height: 146px;
  border: 12px double #7b8b9d;
  border-radius: 45%;
  background:
    repeating-linear-gradient(90deg, #a8c8e6 0 8px, #fff 8px 13px);
  transform: translateX(-50%);
}

.prosthetic-hand i {
  position: absolute;
  top: -138px;
  width: 36px;
  border: 1px solid #8797a8;
  border-radius: 20px;
  background: linear-gradient(90deg, #a7b6c6, #ffffff 48%, #8494a6);
  box-shadow: inset 0 -34px 0 rgba(84, 110, 139, 0.15);
}

.prosthetic-hand i:nth-child(1) {
  left: 8px;
  height: 200px;
  transform: rotate(-12deg);
}

.prosthetic-hand i:nth-child(2) {
  left: 53px;
  height: 240px;
  transform: rotate(-5deg);
}

.prosthetic-hand i:nth-child(3) {
  left: 99px;
  height: 256px;
}

.prosthetic-hand i:nth-child(4) {
  left: 145px;
  height: 235px;
  transform: rotate(6deg);
}

.prosthetic-hand i:nth-child(5) {
  top: 24px;
  right: -45px;
  height: 160px;
  transform: rotate(55deg);
}

.exo-figure {
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 270px;
  height: 410px;
  transform: translateX(-50%);
  transition: transform 280ms var(--ease-premium);
}

.application-card:hover .exo-figure {
  transform: translateX(-50%) translateY(-7px);
}

.exo-figure__head {
  position: absolute;
  top: 12px;
  left: 103px;
  width: 67px;
  height: 83px;
  border-radius: 46% 48% 42% 44%;
  background: linear-gradient(135deg, #c8b6aa, #8b766d);
}

.exo-figure__body {
  position: absolute;
  top: 91px;
  left: 52px;
  width: 170px;
  height: 270px;
  border-radius: 70px 70px 30px 30px;
  background: linear-gradient(135deg, #e8edf2, #7e8b99);
  box-shadow: 0 22px 28px rgba(56, 77, 100, 0.23);
}

.exo-figure__spine {
  position: absolute;
  z-index: 2;
  top: 91px;
  left: 124px;
  width: 26px;
  height: 252px;
  border: 5px solid #455667;
  border-radius: 14px;
  background:
    repeating-linear-gradient(180deg, #c9dae9 0 12px, #273746 12px 19px);
  box-shadow: 0 0 0 5px rgba(224, 237, 248, 0.45);
}

.exo-figure__left,
.exo-figure__right {
  position: absolute;
  z-index: 1;
  top: 110px;
  width: 34px;
  height: 248px;
  border: 7px double #46586a;
  border-radius: 18px;
  background: linear-gradient(90deg, #b3c5d7, #fff, #8295a8);
}

.exo-figure__left {
  left: 39px;
  transform: rotate(9deg);
}

.exo-figure__right {
  right: 36px;
  transform: rotate(-9deg);
}

/* Contact Section */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 110%, rgba(139, 185, 230, 0.3), transparent 37%),
    var(--color-white);
}

.contact::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(85vw, 1050px);
  height: min(85vw, 1050px);
  border: 1px solid rgba(173, 192, 214, 0.3);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -20%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact h2 {
  margin-bottom: 52px;
}

.button--outline {
  min-height: 62px;
  border-color: var(--color-onyx);
  background: rgba(255, 255, 255, 0.54);
}

.button--outline:hover {
  color: white;
  background: var(--color-onyx);
}

/* Footer Section */
.site-footer {
  border-top: 1px solid var(--color-line);
  background: var(--color-white);
}

.footer__inner {
  display: grid;
  min-height: 112px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand--small {
  gap: 7px;
}

.brand--small .brand__mark {
  width: 28px;
}

.brand--small .brand__wordmark {
  font-size: 0.82rem;
}

.footer__inner p,
.footer__inner > a:last-child {
  margin: 0;
  color: var(--color-slate);
  font-size: 0.68rem;
}

.footer__inner > a:last-child {
  justify-self: end;
  transition: color 220ms ease-out;
}

.footer__inner > a:last-child:hover {
  color: var(--color-onyx);
}

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

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

.technology-flow .reveal:nth-child(3),
.application-card:nth-child(2) {
  transition-delay: 70ms;
}

.technology-flow .reveal:nth-child(5),
.application-card:nth-child(3) {
  transition-delay: 140ms;
}

/* Responsive Layout */
@media (max-width: 1080px) {
  .hero {
    min-height: 100svh;
  }

  .hero__grid {
    min-height: 100svh;
  }

  .hero__visual {
    right: 0;
    width: 100%;
    height: 100%;
  }

  .technology-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }

  .flow-arrow {
    display: none;
  }

  .tech-object {
    height: 190px;
  }

  .technology-step:hover .tech-object {
    transform: translateY(-5px);
  }

  .application-card__visual {
    height: 390px;
  }

  .application-card__content {
    padding-inline: 24px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 92px;
  }

  .hero {
    display: flex;
    min-height: 100svh;
    height: 100svh;
    flex-direction: column;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

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

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

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

  .hero {
    min-height: auto;
  }

  .hero__grid {
    display: flex;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 66px);
    padding-bottom: 48px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    order: 1;
  }

  .hero__content {
    padding: 0;
  }

  .hero__visual {
    display: none;
  }

  .hero__image {
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .scroll-cue {
    display: none;
  }

  .technology-flow {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .technology-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
  }

  .step__meta {
    grid-column: 1 / -1;
    margin-bottom: 15px;
  }

  .technology-step > p {
    margin: 0;
  }

  .section-heading--row {
    display: block;
  }

  .section-heading--row > p {
    margin-top: 32px;
  }

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

  .application-card {
    display: grid;
    border-right: 1px solid var(--color-line);
    grid-template-columns: 1.15fr 0.85fr;
  }

  .application-card__visual {
    height: 440px;
  }

  .application-card__content {
    display: flex;
    height: 440px;
    flex-direction: column;
    justify-content: flex-end;
    border-top: 0;
    border-left: 1px solid var(--color-line);
  }

  .carousel-viewport {
    overflow: hidden;
    touch-action: pan-y;
  }

  [data-carousel].is-carousel {
    display: flex;
    gap: 0;
    cursor: grab;
    transition: transform 280ms var(--ease-premium);
    will-change: transform;
  }

  [data-carousel].is-carousel.is-dragging {
    cursor: grabbing;
    transition: none;
  }

  [data-carousel].is-carousel.is-jumping {
    transition: none;
  }

  [data-carousel].is-carousel [data-carousel-slide] {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .carousel-controls.is-active {
    display: flex;
    margin-top: 28px;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .footer__inner {
    padding-block: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* Header parity with Robotics subpage */
:root {
  --header-height: 86px;
}

.header__inner {
  width: min(calc(100% - 64px), 1440px);
  max-width: none;
}

.site-header:not(.is-scrolled) {
  background: linear-gradient(
    90deg,
    rgba(250, 252, 254, 0.88),
    rgba(250, 252, 254, 0.36)
  );
  backdrop-filter: blur(5px);
}

.site-header:not(.is-scrolled) .brand__mark,
.site-header.is-scrolled .brand__mark {
  width: 40px;
}

.site-header:not(.is-scrolled) .brand__wordmark,
.site-header.is-scrolled .brand__wordmark {
  font-size: 1.12rem;
}

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

.desktop-nav {
  margin-right: 0;
  margin-left: auto;
  gap: clamp(28px, 4vw, 62px);
}

.desktop-nav a,
.site-header.is-scrolled .desktop-nav a {
  font-size: 0.86rem;
  font-weight: 500;
}

.desktop-nav > a:last-child {
  display: inline-flex;
  min-height: 40px;
  padding-inline: 18px;
  align-items: center;
  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(--ease-premium);
}

.desktop-nav > a:last-child::after {
  display: none;
}

.desktop-nav > a:last-child:hover {
  color: white;
  background: var(--color-onyx);
  transform: translateY(-2px);
}

.desktop-nav > a:last-child:active {
  transform: scale(0.98);
}

@media (max-width: 1120px) and (min-width: 821px) {
  .desktop-nav {
    gap: 24px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .header__inner {
    width: min(calc(100% - 64px), 1440px);
  }
}

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

/* Main multi-column footer */
.contact-screen__inner {
  padding-top: clamp(118px, 17vh, 162px);
}

.contact-screen__footer {
  margin-top: 30px;
}

.contact-screen__footer-main {
  display: grid;
  min-height: 142px;
  padding-block: 24px;
  border-block: 1px solid rgba(118, 139, 163, 0.26);
  grid-template-columns: 0.42fr 1.58fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.contact-screen__footer-main .brand {
  margin-top: 2px;
}

.contact-screen__footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(25px, 4vw, 55px);
}

.contact-screen__footer-columns > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.contact-screen__footer-columns h3 {
  margin: 0 0 2px;
  color: var(--color-charcoal);
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-screen__footer .contact-screen__footer-columns a {
  color: var(--color-slate);
  font-size: 0.76rem;
  font-weight: 400;
}

.contact-screen__legal-row {
  min-height: 54px;
}

@media (max-width: 820px) {
  .contact-screen__inner {
    padding-top: calc(var(--header-height) + 36px);
  }

  .contact-screen__footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-screen__footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

/* Hero Reference Composition */
:root {
  --header-height: 86px;
}

.hero__grid {
  width: min(calc(100% - 68px), 1600px);
  max-width: none;
}

.site-header:not(.is-scrolled) {
  border-color: transparent;
  background: linear-gradient(
    90deg,
    rgba(250, 252, 254, 0.88),
    rgba(250, 252, 254, 0.36)
  );
  backdrop-filter: blur(5px);
}

.site-header:not(.is-scrolled) .brand__mark {
  width: 40px;
}

.site-header:not(.is-scrolled) .brand__wordmark {
  font-size: 1.12rem;
}

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

.site-header.is-scrolled .brand__mark {
  width: 40px;
}

.site-header.is-scrolled .brand__wordmark {
  font-size: 1.12rem;
}

.site-header.is-scrolled .desktop-nav a {
  font-size: 0.86rem;
}

.desktop-nav {
  margin-right: 0;
  margin-left: auto;
  gap: clamp(28px, 4vw, 62px);
}

.desktop-nav a {
  font-size: 0.86rem;
  font-weight: 500;
}

.hero {
  background:
    radial-gradient(circle at 65% 40%, rgba(203, 222, 243, 0.42), transparent 34%),
    linear-gradient(110deg, #fbfcfe 0%, #f5f8fc 48%, #eaf1f8 100%);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.hero__content {
  max-width: 660px;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 6.25vw, 6.35rem);
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.hero__copy {
  max-width: 400px;
  color: #485a70;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.48;
}

.hero__actions {
  margin-top: 36px;
}

.hero .button--primary {
  min-width: 220px;
  min-height: 60px;
  padding-inline: 28px;
  justify-content: center;
}

.hero__visual {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  display: block;
  width: 64%;
  height: 100%;
  padding: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.01);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.68) 6%,
    black 15%,
    black 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.68) 6%,
    black 15%,
    black 100%
  );
}

@media (max-width: 1080px) and (min-width: 821px) {
  .desktop-nav {
    margin-right: 0;
    gap: 24px;
  }

  .desktop-nav a {
    font-size: 0.86rem;
  }

  .hero__visual {
    width: 67%;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5rem);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .hero__grid {
    width: min(calc(100% - 32px), 720px);
  }

  .hero__visual {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }
}

/* Section Scroll Snap */
main > section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 821px) {
  html {
    scroll-padding-top: 0;
    scroll-snap-type: y mandatory;
  }

  .technology.section {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 24px);
  }

  .technology .tech-object {
    height: clamp(190px, 23vh, 280px);
  }
}

@media (max-width: 820px) {
  html:not(.subpage) {
    scroll-snap-type: y mandatory;
  }

  html:not(.subpage) main > section {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

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

/* Section Transition Polish */
.has-section-transitions main > section {
  opacity: 0.9;
  filter: saturate(0.9) brightness(0.985);
  transition:
    opacity 280ms ease-out,
    filter 280ms ease-out;
}

.has-section-transitions main > section.is-current-section {
  opacity: 1;
  filter: saturate(1) brightness(1);
}

@media (prefers-reduced-motion: reduce) {
  .has-section-transitions main > section,
  .has-section-transitions main > section.is-current-section {
    opacity: 1;
    filter: none;
  }
}

/* Contact & Footer Screen */
.contact-screen {
  position: relative;
  width: 100%;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 88% 38%, rgba(193, 215, 240, 0.42), transparent 36%),
    radial-gradient(ellipse at 8% 18%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(145deg, #f7f9fc 0%, #edf3f9 100%);
}

.contact-screen::before {
  position: absolute;
  right: -18%;
  bottom: -46%;
  width: 82%;
  height: 90%;
  border: 1px solid rgba(133, 172, 214, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.12),
    0 0 0 96px rgba(151, 186, 222, 0.06);
  content: "";
  pointer-events: none;
  transform: rotate(-14deg);
}

.contact-screen__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  padding-top: clamp(156px, 23vh, 218px);
  padding-bottom: 34px;
  flex-direction: column;
}

.contact-screen__panel {
  display: grid;
  min-height: 225px;
  padding: 44px 56px;
  border: 1px solid rgba(128, 161, 197, 0.26);
  border-radius: 12px;
  background: rgba(226, 236, 248, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.contact-screen__panel h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-screen__panel p {
  margin: 18px 0 0;
  color: #415168;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
}

.contact-screen__button {
  min-width: 220px;
  min-height: 58px;
  color: white;
  background: var(--color-onyx);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(17, 25, 36, 0.18);
}

.contact-screen__button:hover {
  background: #223143;
}

.contact-screen__button iconify-icon {
  display: none;
}

.contact-screen__footer {
  margin-top: 40px;
}

.contact-screen__nav-row,
.contact-screen__legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-screen__nav-row {
  min-height: 86px;
  border-block: 1px solid rgba(118, 139, 163, 0.26);
}

.contact-screen__nav-row nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.contact-screen__footer a {
  position: relative;
  color: #253247;
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 220ms ease-out;
}

.contact-screen__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(--ease-premium);
}

.contact-screen__footer a:hover {
  color: #2879bf;
}

.contact-screen__footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-screen__footer a:focus-visible {
  outline: 2px solid var(--color-ice);
  outline-offset: 5px;
}

.contact-screen__email {
  margin-left: 40px;
  padding-left: 52px;
  border-left: 1px solid rgba(118, 139, 163, 0.26);
}

.contact-screen__legal-row {
  min-height: 72px;
  color: var(--color-slate);
}

.contact-screen__legal-row p {
  margin: 0;
  font-size: 0.84rem;
}

.contact-screen__legal-row nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.contact-screen__legal-row a {
  color: var(--color-slate);
  font-size: 0.84rem;
}

@media (max-width: 820px) {
  .applications .carousel-controls.is-active {
    bottom: 32px;
  }

  .contact-screen {
    min-height: 100svh;
    height: auto;
  }

  .contact-screen__inner {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 28px;
  }

  .contact-screen__panel {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 30px;
  }

  .contact-screen__panel h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .contact-screen__button {
    width: 100%;
    min-width: 0;
  }

  .contact-screen__footer {
    margin-top: 30px;
  }

  .contact-screen__nav-row {
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .contact-screen__nav-row nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
  }

  .contact-screen__email {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .contact-screen__legal-row {
    padding-top: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .contact-screen__legal-row nav {
    gap: 28px;
  }
}

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

  .section {
    padding-block: 96px;
  }

  .section-heading {
    margin-bottom: 60px;
  }

  .hero__grid {
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
  }

  .hero__copy {
    max-width: 330px;
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__visual {
    width: 100%;
    height: auto;
    margin: 16px 0 0;
  }

  .hero__atmosphere {
    top: 38%;
    left: 16%;
    width: 400px;
    height: 400px;
  }

  .technology-step {
    display: block;
  }

  .technology-step > p {
    min-height: 0;
    margin-top: 28px;
  }

  .tech-object {
    height: 210px;
    margin-inline: auto;
    transform: none;
  }

  .technology-step:hover .tech-object {
    transform: translateY(-5px);
  }

  .technology__statement span {
    display: block;
  }

  .application-card {
    display: block;
  }

  .application-card__visual {
    height: 430px;
  }

  .application-card__content {
    height: auto;
    min-height: 196px;
    justify-content: initial;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .contact h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .button--outline {
    width: 100%;
    padding-inline: 18px;
    gap: 12px;
  }

  .footer__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

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

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

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

/* Reference Composition */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.technology.section {
  display: flex;
  min-height: clamp(520px, 62svh, 680px);
  padding: 72px 0 42px;
  align-items: center;
}

.technology > .container {
  width: 100%;
  max-width: none;
}

.technology-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0;
}

.technology-step {
  padding-inline: clamp(24px, 4vw, 72px);
  text-align: center;
}

.step__meta {
  margin: 0 0 10px;
  padding: 0;
  justify-content: center;
  border: 0;
}

.step__meta h3 {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
}

.tech-object {
  height: 320px;
  background: transparent;
}

.flow-arrow {
  margin-top: 3px;
  justify-content: center;
  color: var(--color-charcoal);
}

.flow-arrow span {
  display: none;
}

.technology__statement {
  max-width: 640px;
  margin: 30px auto 0;
  padding: 0;
  border: 0;
  color: var(--color-slate);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-align: center;
}

.applications.section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.applications > .container {
  width: 100%;
  max-width: none;
}

.application-card {
  position: relative;
  height: 640px;
  border-left: 1px solid rgba(163, 176, 191, 0.58);
}

.application-card__visual {
  height: 100%;
}

.application-card__visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(230, 239, 249, 0.82));
  content: "";
  pointer-events: none;
}

.application-card__content {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  min-height: 0;
  height: auto;
  padding: 38px;
  border: 0;
  background: transparent;
}

.application-card__content h3 {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-align: center;
}

.applications__cta {
  position: absolute;
  z-index: 4;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.applications__cta.reveal {
  transform: translate(-50%, 22px);
}

.applications__cta.reveal.is-visible {
  transform: translate(-50%, 0);
}

.applications__cta .button {
  min-width: 430px;
  min-height: 64px;
  background: rgba(247, 250, 253, 0.78);
  backdrop-filter: blur(12px);
}

.site-footer {
  display: none;
}

@media (max-width: 820px) {
  .technology.section {
    padding: 72px 0 42px;
  }

  .technology-step {
    display: block;
    padding-inline: 20px;
  }

  .step__meta {
    display: flex;
    margin-bottom: 12px;
  }

  .tech-object {
    height: 250px;
  }

  .technology__statement {
    margin-top: 36px;
    font-size: 0.86rem;
  }

  .application-card {
    display: block;
    height: 620px;
  }

  .application-card__visual,
  .application-card__content {
    height: 100%;
  }

  .application-card__content {
    min-height: 0;
    padding: 30px 24px;
    border: 0;
  }

  .applications__cta {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex;
    margin: 26px 16px 34px;
    justify-content: center;
    transform: none;
  }

  .applications__cta.reveal,
  .applications__cta.reveal.is-visible {
    transform: none;
  }

  .applications__cta .button {
    width: min(100%, 430px);
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .technology.section {
    padding-top: 58px;
  }

  .tech-object {
    height: 220px;
  }

  .application-card {
    height: 560px;
  }
}

/* Technology Reference Layout */
.technology.section {
  position: relative;
  min-height: clamp(700px, 100svh, 920px);
  padding: clamp(38px, 6vh, 64px) 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(210, 226, 243, 0.34), transparent 42%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  isolation: isolate;
}

.technology.section::before {
  display: none;
}

.technology > .container {
  width: min(calc(100% - 64px), 1440px);
}

.technology__header {
  max-width: 960px;
  margin: 0 auto clamp(12px, 2.5vh, 24px);
  text-align: center;
}

.technology__header .eyebrow {
  margin-bottom: 12px;
  color: #2174bd;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.technology__header h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.technology__header > p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: #3f5269;
  font-size: clamp(0.96rem, 1.25vw, 1.16rem);
  line-height: 1.5;
}

.technology-flow {
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: start;
}

.technology-step {
  padding-inline: clamp(8px, 2vw, 30px);
}

.step__meta {
  height: 26px;
  margin-bottom: 2px;
}

.step__meta h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.flow-arrow {
  display: flex;
  height: 26px;
  margin-top: clamp(121px, calc(11.5vh + 26px), 166px);
  align-items: center;
  justify-content: center;
  color: #317dbf;
  font-size: 2rem;
}

.tech-object {
  height: clamp(210px, 23vw, 310px);
}

.technology .tech-object img {
  mix-blend-mode: normal;
  filter: saturate(0.88) contrast(1.02);
  -webkit-mask-image: none;
  mask-image: none;
}

.technology-step > p {
  max-width: 250px;
  min-height: 0;
  margin: -4px auto 0;
  color: #41536a;
  font-size: 0.88rem;
  line-height: 1.45;
}

.technology-features {
  display: grid;
  margin-top: clamp(24px, 4vh, 42px);
  padding-top: 14px;
  border-top: 1px solid rgba(116, 145, 178, 0.28);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.technology-feature {
  display: grid;
  min-width: 0;
  padding: 0 24px;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.technology-feature + .technology-feature {
  border-left: 1px solid rgba(116, 145, 178, 0.28);
}

.technology-feature__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #78a7d4;
  border-radius: 50%;
  color: #1474c9;
  background: rgba(255, 255, 255, 0.38);
  font-size: 1.65rem;
}

.technology-feature h3 {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.technology-feature p {
  margin: 0;
  color: #52657c;
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .technology.section {
    min-height: auto;
  }

  .technology-feature {
    padding-inline: 16px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
  }

  .technology-feature__icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 820px) {
  .technology.section {
    padding: 72px 0 44px;
  }

  .technology > .container {
    width: min(calc(100% - 32px), 720px);
  }

  .technology__header {
    margin-bottom: 38px;
  }

  .technology__header h2 {
    font-size: clamp(2.35rem, 10vw, 4rem);
  }

  .technology__header > p:last-child {
    font-size: 0.95rem;
  }

  .flow-arrow {
    display: none;
  }

  .step__meta {
    margin-bottom: 12px;
  }

  .tech-object {
    height: min(74vw, 390px);
  }

  .technology-step > p {
    margin-top: 12px;
  }

  .technology-features {
    margin-top: 48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-feature {
    min-height: 94px;
    padding: 16px;
  }

  .technology-feature:nth-child(3),
  .technology-feature:nth-child(4) {
    border-top: 1px solid rgba(116, 145, 178, 0.28);
  }

  .technology-feature:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .technology__header h2 {
    font-size: 2.4rem;
  }

  .technology-features {
    grid-template-columns: 1fr;
  }

  .technology-feature + .technology-feature,
  .technology-feature:nth-child(3) {
    border-top: 1px solid rgba(116, 145, 178, 0.28);
    border-left: 0;
  }
}

/* Full-screen Applications */
.applications.section {
  width: 100%;
  min-height: 100svh;
  height: 100svh;
  padding: 0;
}

.applications > .container,
.applications .carousel-viewport,
.application-grid {
  height: 100%;
}

.application-grid {
  align-items: stretch;
}

.application-card {
  height: 100%;
}

.application-card__visual {
  height: 100%;
}

.application-card__content {
  padding-top: clamp(82px, 10vh, 108px);
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition:
    opacity 0ms ease-in,
    transform 0ms ease-in,
    visibility 0ms;
}

.application-card:hover .application-card__content,
.application-card:focus-within .application-card__content {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 220ms ease-out,
    transform 220ms var(--ease-premium),
    visibility 0ms;
}

@media (hover: none) {
  .application-card__content {
    opacity: 1;
    transform: none;
    visibility: visible;
  }
}

@media (max-width: 820px) {
  .applications.section {
    position: relative;
    min-height: 100svh;
    height: 100svh;
  }

  .applications > .container {
    position: relative;
    height: 100%;
  }

  .applications .carousel-viewport,
  .application-grid,
  .application-card,
  .application-card__visual {
    height: 100%;
  }

  .application-card__content {
    height: auto;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .applications .carousel-controls.is-active {
    position: absolute;
    z-index: 6;
    bottom: 112px;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }

  .applications__cta {
    position: absolute;
    z-index: 7;
    right: 16px;
    bottom: 24px;
    left: 16px;
    margin: 0;
  }
}

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

.brand--small .brand__image {
  width: 92px;
}

.site-header.is-scrolled .brand__image {
  width: 120px;
}

/* Shared header behavior across all pages */
.desktop-nav > a:last-child {
  gap: 14px;
}

.desktop-nav > a:last-child iconify-icon {
  font-size: 1rem;
}

.menu-button {
  width: 46px;
  height: 46px;
  font-size: 1.4rem;
}

@media (max-width: 900px) and (min-width: 821px) {
  :root {
    --header-height: 76px;
  }

  .header__inner {
    width: min(calc(100% - 64px), 1440px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .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;
  }

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

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

@media (max-width: 820px) {
  .mobile-nav {
    padding-inline: 24px;
    background: rgba(249, 251, 253, 0.98);
  }

  .mobile-nav.is-open {
    padding-block: 24px 34px;
  }

  .mobile-nav a {
    padding-block: 15px;
  }
}

/* Contained high-resolution main hero */
.hero__visual {
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: saturate(0.94) contrast(1.015);
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 820px) {
  .hero__visual {
    display: none;
  }
}

/* Scalable hero background */
@media (min-width: 901px) {
  .hero__visual {
    z-index: 0;
  }

  .hero::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(251, 252, 254, 0.98) 0%,
      rgba(248, 250, 253, 0.94) 38%,
      rgba(244, 248, 252, 0.48) 50%,
      transparent 62%
    );
    content: "";
    pointer-events: none;
  }

  .hero__grid {
    z-index: 2;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    height: 100svh;
    background: linear-gradient(135deg, #fbfcfe 0%, #eef4fa 100%);
  }

  .hero::after,
  .hero__visual {
    display: none;
  }

  .hero__grid {
    display: flex;
    width: min(calc(100% - 64px), 720px);
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 44px;
    align-items: center;
  }

  .hero__content {
    width: 100%;
    max-width: 650px;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 11.5vw, 5.2rem);
  }
}

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

/* Centered contact screen with shared footer */
.contact-screen__inner {
  padding-top: var(--header-height);
  padding-bottom: 34px;
  justify-content: center;
}

.robotics-footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

@media (min-width: 901px) {
  .contact-screen {
    min-height: 55svh;
    height: 55svh;
  }

  .contact-screen__inner {
    min-height: 100%;
    padding-top: 56px;
    padding-bottom: 30px;
  }

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

/* iPhone/mobile-only composition. Desktop rules above remain unchanged. */
@media (max-width: 820px) {
  html:not(.subpage) .hero {
    position: relative;
    isolation: isolate;
  }

  html:not(.subpage) .hero__visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  html:not(.subpage) .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: 1;
    filter: saturate(0.82) contrast(1.02);
    transform: scale(1.03);
  }

  html:not(.subpage) .hero::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    background:
      linear-gradient(
        90deg,
        rgba(249, 251, 253, 0.99) 0%,
        rgba(249, 251, 253, 0.96) 44%,
        rgba(249, 251, 253, 0.64) 70%,
        rgba(249, 251, 253, 0.26) 100%
      ),
      linear-gradient(
        180deg,
        rgba(249, 251, 253, 0.22) 0%,
        transparent 34%,
        rgba(249, 251, 253, 0.34) 100%
      );
    content: "";
    pointer-events: none;
  }

  html:not(.subpage) .hero__grid {
    position: relative;
    z-index: 2;
  }

  html:not(.subpage) .technology.section {
    min-height: 100svh;
    height: 100svh;
    padding: 0 0 12px;
    overflow: hidden;
  }

  html:not(.subpage) .technology > .container {
    display: flex;
    height: 100%;
    padding-top: clamp(56px, 7svh, 68px);
    flex-direction: column;
    justify-content: flex-start;
  }

  html:not(.subpage) .technology__header {
    margin-bottom: 16px;
  }

  html:not(.subpage) .technology__header .eyebrow {
    margin-bottom: 7px;
    font-size: 0.68rem;
  }

  html:not(.subpage) .technology__header h2 {
    font-size: clamp(1.95rem, 8.2vw, 2.25rem);
    line-height: 1.02;
  }

  html:not(.subpage) .technology__header > p:last-child {
    margin-top: 12px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  html:not(.subpage) .technology-step {
    padding-inline: 8px;
  }

  html:not(.subpage) .step__meta {
    height: 22px;
    margin-bottom: 2px;
  }

  html:not(.subpage) .step__meta h3 {
    font-size: 0.78rem;
  }

  html:not(.subpage) .tech-object {
    height: min(56vw, 225px);
  }

  html:not(.subpage) .technology-step > p {
    max-width: 280px;
    min-height: 34px;
    margin: 2px auto 0;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  html:not(.subpage) .technology .carousel-controls.is-active {
    margin-top: 10px;
    gap: 18px;
  }

  html:not(.subpage) .technology .carousel-controls > button {
    width: 40px;
    height: 40px;
  }

  html:not(.subpage) .technology-features {
    display: grid;
    margin-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html:not(.subpage) .technology-feature {
    min-height: 80px;
    padding: 8px 6px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 4px;
    border-top: 0;
  }

  html:not(.subpage) .technology-feature:nth-child(3),
  html:not(.subpage) .technology-feature:nth-child(4) {
    border-top: 1px solid rgba(116, 145, 178, 0.28);
  }

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

  html:not(.subpage) .technology-feature__icon {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  html:not(.subpage) .technology-feature h3 {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.2;
    text-align: center;
  }

  html:not(.subpage) .technology-feature p {
    display: none;
  }

  html:not(.subpage) .application-card__content {
    padding: 52px 20px 0;
  }

  html:not(.subpage) .contact-screen {
    min-height: 42svh;
    height: 42svh;
    overflow: hidden;
  }

  html:not(.subpage) .contact-screen__inner {
    min-height: 100%;
    height: 100%;
    padding-top: calc(var(--header-height) + 8px);
    padding-bottom: 8px;
  }

  html:not(.subpage) .contact-screen__panel {
    min-height: 0;
    padding: 16px 18px;
    border-radius: 16px;
    gap: 12px;
  }

  html:not(.subpage) .contact-screen__panel h2 {
    font-size: clamp(1.7rem, 7.4vw, 2rem);
    line-height: 1.02;
  }

  html:not(.subpage) .contact-screen__panel p {
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  html:not(.subpage) .contact-screen__button {
    min-height: 44px;
    font-size: 0.82rem;
  }

}
