:root {
  --public-color-accent: #2f747b;
  --public-color-accent-dark: #215860;
  --public-color-accent-light: #eaf5f4;
  --public-color-ink: #07142d;
  --public-color-muted: #5c6c84;
  --public-color-border: #d5e8e8;
  --public-color-surface: #ffffff;
  --ink: var(--public-color-ink);
  --text: #182846;
  --muted: var(--public-color-muted);
  --blue: var(--public-color-accent);
  --blue-soft: #78aaae;
  --line: var(--public-color-border);
  --line-strong: #b7d5d8;
  --surface: #f7fbff;
  --white: var(--public-color-surface);
  --shadow: 0 22px 70px rgba(18, 45, 92, 0.12);
  --page-pad: clamp(18px, 4.8vw, 74px);
  --section-y: clamp(44px, 6vw, 86px);
  --hero-gap: clamp(30px, 5vw, 88px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Avenir Next", "Montserrat", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.thic-route-transitioning {
  cursor: progress;
}

:where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > :is(.eyebrow, h1, h2, p, .hero-rule, .primary-link, .secondary-link, .text-link, .about-hero__actions) {
  --thic-page-text-duration: 680ms;
  --thic-page-text-delay: 0ms;
  transition:
    opacity var(--thic-page-text-duration) ease-in-out var(--thic-page-text-delay),
    transform var(--thic-page-text-duration) ease-in-out var(--thic-page-text-delay);
  will-change: opacity, transform;
}

:where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > .eyebrow {
  --thic-page-text-duration: 520ms;
  --thic-page-text-delay: 0ms;
}

:where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > :is(h1, h2):not(.thic-stagger-lock) {
  --thic-page-text-duration: 760ms;
  --thic-page-text-delay: 140ms;
}

:where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > .hero-rule {
  --thic-page-text-duration: 650ms;
  --thic-page-text-delay: 240ms;
}

:where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > p:not(.thic-stagger-lock) {
  --thic-page-text-duration: 780ms;
  --thic-page-text-delay: 300ms;
}

:where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > p:not(.thic-stagger-lock) + p:not(.thic-stagger-lock) {
  --thic-page-text-delay: 420ms;
}

:where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > :is(.primary-link, .secondary-link, .text-link, .about-hero__actions) {
  --thic-page-text-duration: 820ms;
  --thic-page-text-delay: 560ms;
}

:where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  --thic-route-object-x: 0px;
  --thic-route-object-y: 0px;
  --thic-route-object-scale: 1;
  --thic-object-entry-distance: clamp(20px, 2.6vw, 40px);
  --thic-object-entry-distance-negative: clamp(-40px, -2.6vw, -20px);
  --thic-object-exit-distance: clamp(18px, 2.2vw, 34px);
  --thic-object-exit-distance-negative: clamp(-34px, -2.2vw, -18px);
  transition:
    opacity 1400ms ease-in-out,
    transform 1500ms ease-in-out;
  will-change: opacity, transform;
}

:where(.feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  transform: translate3d(var(--thic-route-object-x), var(--thic-route-object-y), 0) scale(var(--thic-route-object-scale));
}

main.thic-page-leaving :where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > :is(.eyebrow, h1, h2, p, .hero-rule, .primary-link, .secondary-link, .text-link, .about-hero__actions) {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  transition-delay: 0ms;
}

main.thic-page-leaving :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  --thic-route-object-x: 0px;
  --thic-route-object-y: 8px;
  --thic-route-object-scale: 0.985;
  opacity: 0;
  transition-duration: 520ms, 620ms;
}

main.thic-page-entering :where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > :is(.eyebrow, h1, h2, p, .hero-rule, .primary-link, .secondary-link, .text-link, .about-hero__actions) {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

main.thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  --thic-route-object-x: 0px;
  --thic-route-object-y: 10px;
  --thic-route-object-scale: 0.98;
  opacity: 0;
  transition-duration: 1400ms, 1500ms;
  transition-delay: 720ms, 720ms;
}

main.thic-page-entering.thic-page-entered :where(.hero-copy, .public-page-copy, .work-hero-copy, .future-platform .section-copy) > :is(.eyebrow, h1, h2, p, .hero-rule, .primary-link, .secondary-link, .text-link, .about-hero__actions) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

main.thic-page-entering.thic-page-entered :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  --thic-route-object-x: 0px;
  --thic-route-object-y: 0px;
  --thic-route-object-scale: 1;
  opacity: 1;
  transition-delay: 720ms, 720ms;
}

main[data-thic-object-direction="forward"].thic-page-leaving :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  --thic-route-object-x: var(--thic-object-exit-distance-negative);
  --thic-route-object-y: 3px;
}

main[data-thic-object-direction="forward"].thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  --thic-route-object-x: var(--thic-object-entry-distance);
  --thic-route-object-y: 6px;
}

main[data-thic-object-direction="backward"].thic-page-leaving :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  --thic-route-object-x: var(--thic-object-exit-distance);
  --thic-route-object-y: 3px;
}

main[data-thic-object-direction="backward"].thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
  --thic-route-object-x: var(--thic-object-entry-distance-negative);
  --thic-route-object-y: 6px;
}

main.thic-page-leaving :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::before {
  opacity: 0.38;
  transition: opacity 520ms ease-in-out, transform 620ms ease-in-out;
}

main.thic-page-leaving :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::after {
  opacity: 0.04;
  transition: opacity 520ms ease-in-out, transform 620ms ease-in-out;
}

main.thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::before,
main.thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::after,
main.thic-page-entering .platform-constellation::before,
main.thic-page-entering .platform-constellation::after,
main.thic-page-entering :where(.hero-object img, .feature-object img, .page-hero-object img, .work-hero-object img, .platform-constellation__item, .platform-constellation__item img) {
  animation-play-state: paused;
}

main.thic-page-entering.thic-page-entered :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::before,
main.thic-page-entering.thic-page-entered :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::after,
main.thic-page-entering.thic-page-entered .platform-constellation::before,
main.thic-page-entering.thic-page-entered .platform-constellation::after,
main.thic-page-entering.thic-page-entered :where(.hero-object img, .feature-object img, .page-hero-object img, .work-hero-object img, .platform-constellation__item, .platform-constellation__item img) {
  animation-play-state: running;
}

:where(.hero-object img, .feature-object img, .page-hero-object img, .work-hero-object img, .platform-constellation__item) {
  translate: 0 0;
  scale: 1;
  transition:
    opacity 1400ms ease-in-out 720ms,
    translate 1500ms ease-in-out 720ms,
    scale 1500ms ease-in-out 720ms;
  will-change: opacity, transform, translate, scale;
}

main.thic-page-entering :where(.hero-object img, .feature-object img, .page-hero-object img, .work-hero-object img, .platform-constellation__item) {
  opacity: 0;
  translate: var(--thic-route-object-x, 24px) var(--thic-route-object-y, 8px);
  scale: 0.98;
}

main.thic-page-entering.thic-page-entered :where(.hero-object img, .feature-object img, .page-hero-object img, .work-hero-object img, .platform-constellation__item) {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

main.thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::before,
main.thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::after,
main.thic-page-entering .platform-constellation::before,
main.thic-page-entering .platform-constellation::after {
  opacity: 0 !important;
  transition: opacity 1400ms ease-in-out 720ms;
}

main.thic-page-entering.thic-page-entered :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::before {
  opacity: var(--banner-cloud-opacity, var(--thic-bubble-cluster-opacity, var(--microbubble-field-opacity, 0.9))) !important;
}

main.thic-page-entering.thic-page-entered :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::after {
  opacity: var(--banner-cloud-detail-opacity, var(--microbubble-field-foreground-opacity, 0.16)) !important;
}

main.thic-page-entering.thic-page-entered .platform-constellation::before {
  opacity: var(--platform-cloud-opacity, var(--banner-cloud-opacity, 0.86)) !important;
}

main.thic-page-entering.thic-page-entered .platform-constellation::after {
  opacity: var(--platform-cloud-focus-opacity, var(--banner-cloud-detail-opacity, 0.22)) !important;
}

@media (max-width: 640px) {
  :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
    --thic-object-entry-distance: 20px;
    --thic-object-entry-distance-negative: -20px;
    --thic-object-exit-distance: 16px;
    --thic-object-exit-distance-negative: -16px;
  }

  main[data-thic-object-direction="forward"].thic-page-leaving :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
    --thic-route-object-x: -10px;
    --thic-route-object-y: -10px;
  }

  main[data-thic-object-direction="forward"].thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
    --thic-route-object-x: 14px;
    --thic-route-object-y: 12px;
  }

  main[data-thic-object-direction="backward"].thic-page-leaving :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
    --thic-route-object-x: 10px;
    --thic-route-object-y: -10px;
  }

  main[data-thic-object-direction="backward"].thic-page-entering :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object, .platform-constellation) {
    --thic-route-object-x: -14px;
    --thic-route-object-y: 12px;
  }
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-button:focus-visible {
  outline: 3px solid var(--public-color-accent-light);
  outline-offset: 4px;
}

.tech-hero {
  --hero-canvas-max: 1680px;
  --hero-min-height: clamp(620px, 68vh, 820px);
  --hero-padding-top: clamp(52px, 5vw, 74px);
  --hero-padding-bottom: clamp(72px, 7vw, 118px);
  --hero-copy-width: 455px;
  --hero-object-width: clamp(475px, 39vw, 620px);
  --hero-object-right: clamp(96px, 9vw, 168px);
  --hero-object-top: 51%;
  --hero-object-translate-x: 0px;
  --hero-object-translate-y: -50%;
  --hero-object-tablet-width: min(88%, 620px);
  --hero-object-mobile-width: min(96%, 390px);
  --hero-shadow-width: 74%;
  --hero-shadow-height: clamp(18px, 2.4vw, 34px);
  --hero-shadow-bottom: 7%;
  --hero-shadow-opacity: 0.095;
  --hero-shadow-blur: 18px;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.hero-art-home {
  --hero-min-height: clamp(640px, 70vh, 820px);
  --hero-copy-width: 590px;
  --hero-object-width: clamp(420px, 35vw, 560px);
  --hero-object-right: clamp(112px, 11vw, 196px);
  --hero-object-top: 52%;
  --hero-object-tablet-width: min(92%, 600px);
  --hero-object-mobile-width: min(100%, 380px);
  --hero-shadow-width: 44%;
  --hero-shadow-height: clamp(16px, 2.1vw, 30px);
  --hero-shadow-bottom: 4%;
  --hero-shadow-opacity: 0.095;
  --hero-shadow-blur: 14px;
}

.hero-canvas {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: min(100%, var(--hero-canvas-max));
  min-height: var(--hero-min-height);
  margin-inline: auto;
  overflow: visible;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, var(--hero-copy-width));
  max-width: none;
  margin-left: var(--page-pad);
}

.eyebrow,
.section-label {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

.section-label {
  margin: 0 auto 34px;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.25vw, 68px);
  font-weight: 500;
  line-height: 1.05;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-rule {
  display: block;
  width: 40px;
  height: 2px;
  margin: 28px 0 30px;
  background: var(--blue);
}

.hero-copy p {
  max-width: 410px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
}

.hero-copy p + p {
  margin-top: 18px;
}

.home-hero {
  background: #fff;
}

.home-hero .hero-copy h1 {
  font-size: clamp(48px, 4.8vw, 76px);
}

.hero-object,
.feature-object,
.page-hero-object,
.work-hero-object {
  --motion-mouse-x: 0px;
  --motion-mouse-y: 0px;
  --motion-mouse-r: 0deg;
  --motion-duration: 22s;
  --motion-shadow-duration: 26s;
  --motion-delay: -4s;
  --motion-shadow-delay: -10s;
  --motion-ease: cubic-bezier(0.42, 0, 0.18, 1);
  --motion-x-0: -2px;
  --motion-y-0: 1px;
  --motion-r-0: -0.35deg;
  --motion-x-1: 3px;
  --motion-y-1: -4px;
  --motion-r-1: 0.25deg;
  --motion-x-2: 1px;
  --motion-y-2: -6px;
  --motion-r-2: 0.42deg;
  --motion-x-3: -3px;
  --motion-y-3: 3px;
  --motion-r-3: -0.18deg;
  --motion-shadow-scale-0: 1;
  --motion-shadow-scale-1: 1.055;
  --motion-shadow-scale-2: 0.975;
  --motion-shadow-scale-3: 1.035;
  --motion-shadow-blur-0: 1;
  --motion-shadow-blur-1: 1.16;
  --motion-shadow-blur-2: 0.94;
  --motion-shadow-blur-3: 1.08;
  --motion-shadow-opacity-0: 0.96;
  --motion-shadow-opacity-1: 0.76;
  --motion-shadow-opacity-2: 1.02;
  --motion-shadow-opacity-3: 0.86;
}

.hero-object {
  position: absolute;
  top: var(--hero-object-top);
  right: var(--hero-object-right);
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--hero-object-width);
  max-width: calc(100% - var(--page-pad) - var(--page-pad));
  margin: 0;
  overflow: visible;
  pointer-events: auto;
  transform: translate(var(--hero-object-translate-x), var(--hero-object-translate-y)) translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1));
}

.hero-object img,
.page-hero-object img,
.work-hero-object img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  animation: thicObjectDrift var(--motion-duration) var(--motion-ease) infinite both;
  animation-delay: var(--motion-delay);
  object-fit: contain;
  object-position: center;
  transform-origin: center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}

.hero-object-shadow {
  --motion-shadow-blur-base: var(--hero-shadow-blur);
  position: absolute;
  left: 50%;
  bottom: var(--hero-shadow-bottom);
  z-index: 1;
  width: var(--hero-shadow-width);
  height: var(--hero-shadow-height);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(15, 38, 61, var(--hero-shadow-opacity)) 0%, rgba(15, 38, 61, 0.08) 42%, rgba(15, 38, 61, 0) 72%);
  filter: blur(var(--motion-shadow-blur-base));
  animation: thicObjectShadow var(--motion-shadow-duration) var(--motion-ease) infinite both;
  animation-delay: var(--motion-shadow-delay);
  transform: translateX(-50%);
  transform-origin: center;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

@keyframes thicObjectDrift {
  0%,
  100% {
    transform: translate3d(calc(var(--motion-ambient-x-0, -4px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-0, 2px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-0, -0.08deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-0, 0.998));
  }

  27% {
    transform: translate3d(calc(var(--motion-ambient-x-1, 4px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-1, -3px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-1, 0.08deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-1, 1.004));
  }

  53% {
    transform: translate3d(calc(var(--motion-ambient-x-2, 6px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-2, -2px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-2, 0.14deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-2, 1.006));
  }

  78% {
    transform: translate3d(calc(var(--motion-ambient-x-3, -3px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-3, 3px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-3, -0.05deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-3, 1.001));
  }
}

@keyframes thicObjectShadow {
  0%,
  100% {
    opacity: var(--motion-shadow-opacity-0);
    filter: blur(var(--motion-shadow-blur-base));
    transform: translateX(-50%) scaleX(var(--motion-shadow-scale-0)) scaleY(1);
  }

  27% {
    opacity: var(--motion-shadow-opacity-1);
    filter: blur(calc(var(--motion-shadow-blur-base) * var(--motion-shadow-blur-1)));
    transform: translateX(-50%) scaleX(var(--motion-shadow-scale-1)) scaleY(0.94);
  }

  53% {
    opacity: var(--motion-shadow-opacity-2);
    filter: blur(calc(var(--motion-shadow-blur-base) * var(--motion-shadow-blur-2)));
    transform: translateX(-50%) scaleX(var(--motion-shadow-scale-2)) scaleY(1.04);
  }

  78% {
    opacity: var(--motion-shadow-opacity-3);
    filter: blur(calc(var(--motion-shadow-blur-base) * var(--motion-shadow-blur-3)));
    transform: translateX(-50%) scaleX(var(--motion-shadow-scale-3)) scaleY(0.97);
  }
}

.hero-object--molecule {
  --motion-duration: 20s;
  --motion-shadow-duration: 24s;
  --motion-delay: -8s;
  --motion-shadow-delay: -15s;
  --motion-x-0: -7px;
  --motion-y-0: 3px;
  --motion-r-0: -1.1deg;
  --motion-x-1: 10px;
  --motion-y-1: -6px;
  --motion-r-1: 0.9deg;
  --motion-x-2: 5px;
  --motion-y-2: -13px;
  --motion-r-2: 1.9deg;
  --motion-x-3: -10px;
  --motion-y-3: 5px;
  --motion-r-3: -0.75deg;
  --motion-shadow-scale-1: 1.12;
  --motion-shadow-scale-2: 0.94;
  --motion-shadow-scale-3: 1.07;
  --motion-shadow-opacity-1: 0.68;
  --motion-shadow-opacity-2: 1.06;
}

.hero-object--infusion-system,
.feature-object--technology {
  --motion-duration: 23s;
  --motion-shadow-duration: 27s;
  --motion-delay: -13s;
  --motion-shadow-delay: -21s;
  --motion-x-0: -4px;
  --motion-y-0: 1px;
  --motion-r-0: -0.45deg;
  --motion-x-1: 6px;
  --motion-y-1: -5px;
  --motion-r-1: 0.42deg;
  --motion-x-2: 4px;
  --motion-y-2: -8px;
  --motion-r-2: 0.86deg;
  --motion-x-3: -6px;
  --motion-y-3: 3px;
  --motion-r-3: -0.3deg;
  --motion-shadow-scale-1: 1.065;
  --motion-shadow-scale-2: 0.972;
  --motion-shadow-scale-3: 1.04;
  --motion-shadow-opacity-1: 0.76;
  --motion-shadow-opacity-2: 1.02;
}

.feature-object--science {
  --motion-duration: 21s;
  --motion-shadow-duration: 25s;
  --motion-delay: -17s;
  --motion-shadow-delay: -24s;
  --motion-x-0: -3px;
  --motion-y-0: 2px;
  --motion-r-0: -0.32deg;
  --motion-x-1: 4px;
  --motion-y-1: -4px;
  --motion-r-1: 0.32deg;
  --motion-x-2: 2px;
  --motion-y-2: -6px;
  --motion-r-2: 0.68deg;
  --motion-x-3: -4px;
  --motion-y-3: 3px;
  --motion-r-3: -0.24deg;
  --motion-shadow-scale-1: 1.048;
  --motion-shadow-scale-2: 0.978;
  --motion-shadow-opacity-1: 0.80;
}

.feature-object--manufacturing {
  --motion-duration: 24s;
  --motion-shadow-duration: 28s;
  --motion-delay: -22s;
  --motion-shadow-delay: -31s;
  --motion-x-0: -2px;
  --motion-y-0: 1px;
  --motion-r-0: -0.22deg;
  --motion-x-1: 3px;
  --motion-y-1: -3px;
  --motion-r-1: 0.2deg;
  --motion-x-2: 2px;
  --motion-y-2: -5px;
  --motion-r-2: 0.48deg;
  --motion-x-3: -3px;
  --motion-y-3: 2px;
  --motion-r-3: -0.16deg;
  --motion-shadow-scale-1: 1.038;
  --motion-shadow-scale-2: 0.984;
  --motion-shadow-opacity-1: 0.86;
}

.feature-object--innovation {
  --motion-duration: 22s;
  --motion-shadow-duration: 26s;
  --motion-delay: -5s;
  --motion-shadow-delay: -18s;
  --motion-x-0: -6px;
  --motion-y-0: 3px;
  --motion-r-0: -0.8deg;
  --motion-x-1: 9px;
  --motion-y-1: -6px;
  --motion-r-1: 0.82deg;
  --motion-x-2: 5px;
  --motion-y-2: -10px;
  --motion-r-2: 1.5deg;
  --motion-x-3: -8px;
  --motion-y-3: 4px;
  --motion-r-3: -0.48deg;
  --motion-shadow-scale-1: 1.09;
  --motion-shadow-scale-2: 0.956;
  --motion-shadow-scale-3: 1.06;
  --motion-shadow-opacity-1: 0.72;
}

@media (prefers-reduced-motion: reduce) {
  .platform-constellation::before,
  .platform-constellation::after,
  .platform-constellation__item,
  .platform-constellation__item img {
    animation: none !important;
  }

  .platform-constellation::before,
  .platform-constellation::after {
    transform: none !important;
  }

  .hero-object img,
  .feature-object img,
  .hero-object-shadow,
  .feature-object-shadow {
    animation: none;
  }

  .hero-object,
  .feature-object {
    --motion-mouse-x: 0px;
    --motion-mouse-y: 0px;
    --motion-mouse-r: 0deg;
  }
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.primary-link:hover {
  border-color: var(--public-color-accent-dark);
  background: var(--public-color-accent-dark);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.secondary-link:hover {
  border-color: var(--blue);
  background: var(--public-color-accent-light);
  color: var(--blue);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.pillars-section,
.process-section,
.capability-section {
  padding: clamp(48px, 5vw, 62px) var(--page-pad);
}

.pillars-section {
  background: #fff;
  border-top: 1px solid rgba(215, 224, 238, 0.8);
  border-bottom: 1px solid rgba(215, 224, 238, 0.8);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1340px;
  margin: 0 auto;
}

.pillar {
  min-height: 216px;
  padding: 0 34px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.pillar:first-child {
  border-left: 0;
}

.line-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.pillar h2,
.process-step h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.pillar p,
.process-step p {
  margin: 0 auto;
  max-width: 210px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}

.proof-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  align-items: center;
  min-height: 338px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 33%, #f4f9fe 100%);
  border-bottom: 1px solid rgba(215, 224, 238, 0.82);
}

.proof-copy {
  position: relative;
  z-index: 2;
  padding: clamp(42px, 5vw, 58px) var(--page-pad);
}

.proof-copy h2,
.capability h2,
.cta-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.2;
}

.proof-copy p,
.capability p,
.cta-section p {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--public-color-accent-dark);
}

.foundation-section {
  padding: clamp(58px, 6vw, 92px) var(--page-pad) clamp(58px, 6vw, 94px);
  background: #fff;
  border-top: 1px solid rgba(213, 232, 232, 0.84);
}

.foundation-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.foundation-inner h2 {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.14;
  text-transform: none;
}

.foundation-lede {
  max-width: 650px;
  margin: 18px 0 clamp(36px, 4.4vw, 58px);
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
}

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

.foundation-pillar {
  position: relative;
  min-height: 176px;
  padding: 24px clamp(24px, 3.1vw, 52px) 0;
  border-left: 1px solid var(--line);
}

.foundation-pillar::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 3.1vw, 52px);
  right: clamp(24px, 3.1vw, 52px);
  height: 1px;
  background: var(--blue);
  content: "";
  opacity: 0.42;
}

.foundation-pillar:first-child {
  padding-left: 0;
  border-left: 0;
}

.foundation-pillar:first-child::before {
  left: 0;
}

.foundation-pillar:last-child {
  padding-right: 0;
}

.foundation-pillar:last-child::before {
  right: 0;
}

.foundation-number {
  display: block;
  margin: 0 0 18px;
  color: rgba(47, 116, 123, 0.18);
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 500;
  line-height: 0.9;
}

.foundation-pillar h3 {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.foundation-pillar p {
  max-width: 250px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@keyframes platformReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .foundation-pillar {
    animation: platformReveal 260ms ease both;
  }

  .foundation-pillar:nth-child(2) {
    animation-delay: 60ms;
  }

  .foundation-pillar:nth-child(3) {
    animation-delay: 120ms;
  }

  .foundation-pillar:nth-child(4) {
    animation-delay: 180ms;
  }
}

.feature-chapter-stack {
  background: #fff;
  border-top: 1px solid rgba(213, 232, 232, 0.84);
}

.feature-chapter {
  --feature-object-width: clamp(420px, 41vw, 620px);
  --feature-shadow-width: 56%;
  --feature-shadow-height: clamp(18px, 2.1vw, 30px);
  --feature-shadow-opacity: 0.11;
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 116px);
  max-width: 1480px;
  min-height: clamp(480px, 47vw, 650px);
  margin: 0 auto;
  padding: clamp(68px, 7vw, 108px) var(--page-pad);
}

.feature-chapter + .feature-chapter {
  border-top: 1px solid rgba(213, 232, 232, 0.72);
}

.feature-chapter--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
}

.feature-chapter--reverse .feature-chapter-copy {
  grid-column: 2;
}

.feature-chapter--reverse .feature-object {
  grid-column: 1;
  grid-row: 1;
}

.feature-chapter-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 640px;
}

.feature-chapter-copy h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 500;
  line-height: 1.1;
}

.feature-chapter-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(16px, 1.24vw, 19px);
  line-height: 1.82;
}

.chapter-link {
  margin-top: 30px;
  font-weight: 800;
}

.chapter-link span {
  transition: transform 180ms ease;
}

.chapter-link:hover span {
  transform: translateX(3px);
}

.feature-object {
  position: relative;
  z-index: 1;
  width: var(--feature-object-width);
  max-width: 100%;
  margin: 0;
  justify-self: center;
  pointer-events: auto;
}

.feature-object img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  animation: thicObjectDrift var(--motion-duration) var(--motion-ease) infinite both;
  animation-delay: var(--motion-delay);
  object-fit: contain;
  transform-origin: center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}

.feature-object-shadow {
  --motion-shadow-blur-base: var(--feature-shadow-blur, 14px);
  position: absolute;
  left: 50%;
  bottom: 2%;
  z-index: 1;
  width: var(--feature-shadow-width);
  height: var(--feature-shadow-height);
  border-radius: 999px;
  background: rgba(7, 20, 45, var(--feature-shadow-opacity));
  filter: blur(var(--motion-shadow-blur-base));
  animation: thicObjectShadow var(--motion-shadow-duration) var(--motion-ease) infinite both;
  animation-delay: var(--motion-shadow-delay);
  transform: translateX(-50%);
  transform-origin: center;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.feature-object--science {
  --feature-object-width: clamp(360px, 34vw, 520px);
  --feature-shadow-width: 48%;
}

.feature-object--technology {
  --feature-object-width: clamp(500px, 49vw, 720px);
  --feature-shadow-width: 64%;
  --feature-shadow-opacity: 0.095;
}

.feature-object--manufacturing {
  --feature-object-width: clamp(470px, 45vw, 680px);
  --feature-shadow-width: 62%;
  --feature-shadow-opacity: 0.10;
}

.feature-object--innovation {
  --feature-object-width: clamp(390px, 38vw, 570px);
  --feature-shadow-width: 52%;
  --feature-shadow-opacity: 0.085;
}

.feature-chapter .feature-object--science {
  --feature-object-width: clamp(340px, 33vw, 500px);
}

.feature-chapter .feature-object--technology {
  --feature-object-width: clamp(360px, 35vw, 540px);
  --feature-shadow-width: 58%;
}

.feature-chapter .feature-object--manufacturing {
  --feature-object-width: clamp(370px, 36vw, 540px);
  --feature-shadow-width: 58%;
}

.feature-chapter .feature-object--innovation {
  --feature-object-width: clamp(350px, 35vw, 530px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-object img,
  .feature-object img,
  .page-hero-object img,
  .work-hero-object img,
  .hero-object-shadow,
  .feature-object-shadow {
    animation: none;
  }

  .hero-object,
  .feature-object,
  .page-hero-object,
  .work-hero-object {
    --motion-mouse-x: 0px;
    --motion-mouse-y: 0px;
    --motion-mouse-r: 0deg;
  }
}

.feature-chapter--technology {
  min-height: clamp(500px, 48vw, 690px);
}

.feature-chapter--technology .feature-chapter-copy {
  max-width: 560px;
}

.feature-chapter--manufacturing {
  background: #fbfdff;
}

.feature-chapter--innovation {
  border-bottom: 1px solid rgba(213, 232, 232, 0.72);
}

.editorial-section {
  padding: var(--section-y) var(--page-pad);
  background: #fff;
  border-top: 1px solid rgba(213, 232, 232, 0.84);
}

.story-section {
  display: grid;
  align-items: center;
  min-height: clamp(280px, 27vw, 390px);
}

.section-copy {
  max-width: 760px;
}

.section-copy h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.16;
}

.section-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.science-intro {
  display: grid;
  place-items: center start;
  min-height: 300px;
}

.htoeau-story,
.future-platform {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.future-platform {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 92px);
  min-height: clamp(560px, 54vw, 760px);
  overflow: hidden;
}

.future-platform .section-copy {
  align-self: center;
}

.future-platform .platform-constellation {
  justify-self: center;
  align-self: center;
}

.platform-constellation {
  --platform-cloud-opacity: 0.88;
  --platform-cloud-focus-opacity: 0.34;
  --platform-cloud-duration: 48s;
  --platform-detail-duration: 62s;
  --platform-orbit-x-0: -12px;
  --platform-orbit-y-0: 5px;
  --platform-orbit-r-0: -0.4deg;
  --platform-orbit-s-0: 0.992;
  --platform-orbit-x-1: 12px;
  --platform-orbit-y-1: -8px;
  --platform-orbit-r-1: 0.55deg;
  --platform-orbit-s-1: 1.008;
  --platform-orbit-x-2: 18px;
  --platform-orbit-y-2: -4px;
  --platform-orbit-r-2: 0.85deg;
  --platform-orbit-s-2: 1.006;
  --platform-orbit-x-3: -8px;
  --platform-orbit-y-3: 7px;
  --platform-orbit-r-3: -0.24deg;
  --platform-orbit-s-3: 0.998;
  position: relative;
  isolation: isolate;
  width: min(100%, clamp(510px, 44vw, 700px));
  aspect-ratio: 1.42;
  margin: 0;
  overflow: visible;
  pointer-events: none;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.platform-constellation::before,
.platform-constellation::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.platform-constellation::before {
  inset: 7% 6% 8% 5%;
  z-index: 0;
  background-image: var(--thic-field-diffusion);
  opacity: var(--platform-cloud-opacity);
  animation: thicPlatformCloud var(--platform-cloud-duration) cubic-bezier(0.45, 0, 0.28, 1) infinite both;
}

.platform-constellation::after {
  inset: 18% 17% 19% 15%;
  z-index: 1;
  background-image: var(--thic-field-concentration);
  opacity: var(--platform-cloud-focus-opacity);
  animation: thicPlatformCloudDetail var(--platform-detail-duration) ease-in-out infinite alternate both;
}

.platform-constellation__shadow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  z-index: 1;
  width: 58%;
  height: 6%;
  border-radius: 999px;
  background: rgba(7, 20, 45, 0.075);
  filter: blur(16px);
  transform: translateX(-50%);
}

.platform-constellation__item {
  position: absolute;
  z-index: 3;
  display: block;
  width: var(--platform-item-width);
  left: var(--platform-item-left);
  top: var(--platform-item-top);
  transform: translate3d(calc(-50% + var(--platform-orbit-x-0)), calc(-50% + var(--platform-orbit-y-0)), 0) rotate(var(--platform-orbit-r-0)) scale(var(--platform-orbit-s-0));
  transform-origin: 50% 50%;
  animation: thicPlatformOrbit var(--platform-orbit-duration, 34s) cubic-bezier(0.45, 0, 0.28, 1) infinite both;
  animation-delay: var(--platform-orbit-delay, 0s);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.platform-constellation__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(0.996);
  transform-origin: 50% 50%;
  filter: drop-shadow(var(--platform-depth-shadow, 0 16px 18px rgba(7, 20, 45, 0.10)));
  animation: thicPlatformBreath var(--platform-breath-duration, 27s) ease-in-out infinite alternate both;
  animation-delay: var(--platform-breath-delay, 0s);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.platform-constellation__item--molecule {
  --platform-item-width: 28%;
  --platform-item-left: 50%;
  --platform-item-top: 51%;
  --platform-depth-shadow: 0 18px 22px rgba(7, 20, 45, 0.13);
  --platform-orbit-duration: 54s;
  --platform-orbit-delay: -19s;
  --platform-breath-duration: 24s;
  --platform-breath-delay: -11s;
  --platform-orbit-x-0: -4px;
  --platform-orbit-y-0: 2px;
  --platform-orbit-r-0: -0.06deg;
  --platform-orbit-s-0: 0.998;
  --platform-orbit-x-1: 5px;
  --platform-orbit-y-1: -3px;
  --platform-orbit-r-1: 0.07deg;
  --platform-orbit-s-1: 1.003;
  --platform-orbit-x-2: 8px;
  --platform-orbit-y-2: 3px;
  --platform-orbit-r-2: 0.09deg;
  --platform-orbit-s-2: 1.002;
  --platform-orbit-x-3: -5px;
  --platform-orbit-y-3: 4px;
  --platform-orbit-r-3: -0.04deg;
  --platform-orbit-s-3: 0.999;
  z-index: 7;
}

.platform-constellation__item--science {
  --platform-item-width: 23%;
  --platform-item-left: 82%;
  --platform-item-top: 23%;
  --platform-depth-shadow: 0 13px 18px rgba(7, 20, 45, 0.09);
  --platform-orbit-duration: 29s;
  --platform-orbit-delay: -8s;
  --platform-breath-duration: 22s;
  --platform-breath-delay: -9s;
  --platform-orbit-x-0: -18px;
  --platform-orbit-y-0: -8px;
  --platform-orbit-r-0: -0.75deg;
  --platform-orbit-s-0: 0.994;
  --platform-orbit-x-1: 16px;
  --platform-orbit-y-1: 8px;
  --platform-orbit-r-1: 0.55deg;
  --platform-orbit-s-1: 1.008;
  --platform-orbit-x-2: 26px;
  --platform-orbit-y-2: 13px;
  --platform-orbit-r-2: 0.9deg;
  --platform-orbit-s-2: 1.006;
  --platform-orbit-x-3: -12px;
  --platform-orbit-y-3: -6px;
  --platform-orbit-r-3: -0.4deg;
  --platform-orbit-s-3: 0.998;
  z-index: 4;
}

.platform-constellation__item--technology {
  --platform-item-width: 27%;
  --platform-item-left: 21%;
  --platform-item-top: 28%;
  --platform-depth-shadow: 0 16px 20px rgba(7, 20, 45, 0.12);
  --platform-orbit-duration: 26s;
  --platform-orbit-delay: -15s;
  --platform-breath-duration: 23s;
  --platform-breath-delay: -12s;
  --platform-orbit-x-0: -24px;
  --platform-orbit-y-0: 9px;
  --platform-orbit-r-0: -1deg;
  --platform-orbit-s-0: 0.994;
  --platform-orbit-x-1: 14px;
  --platform-orbit-y-1: -16px;
  --platform-orbit-r-1: 0.75deg;
  --platform-orbit-s-1: 1.01;
  --platform-orbit-x-2: 30px;
  --platform-orbit-y-2: -7px;
  --platform-orbit-r-2: 1.25deg;
  --platform-orbit-s-2: 1.006;
  --platform-orbit-x-3: -12px;
  --platform-orbit-y-3: 13px;
  --platform-orbit-r-3: -0.45deg;
  --platform-orbit-s-3: 0.998;
  z-index: 6;
}

.platform-constellation__item--manufacturing {
  --platform-item-width: 24%;
  --platform-item-left: 20%;
  --platform-item-top: 82%;
  --platform-depth-shadow: 0 14px 18px rgba(7, 20, 45, 0.10);
  --platform-orbit-duration: 31s;
  --platform-orbit-delay: -22s;
  --platform-breath-duration: 24s;
  --platform-breath-delay: -16s;
  --platform-orbit-x-0: 18px;
  --platform-orbit-y-0: 10px;
  --platform-orbit-r-0: 0.7deg;
  --platform-orbit-s-0: 0.992;
  --platform-orbit-x-1: -20px;
  --platform-orbit-y-1: -8px;
  --platform-orbit-r-1: -0.6deg;
  --platform-orbit-s-1: 1.008;
  --platform-orbit-x-2: -12px;
  --platform-orbit-y-2: -18px;
  --platform-orbit-r-2: -1deg;
  --platform-orbit-s-2: 1.004;
  --platform-orbit-x-3: 22px;
  --platform-orbit-y-3: 5px;
  --platform-orbit-r-3: 0.35deg;
  --platform-orbit-s-3: 0.996;
  z-index: 5;
}

.platform-constellation__item--innovation {
  --platform-item-width: 23%;
  --platform-item-left: 82%;
  --platform-item-top: 82%;
  --platform-depth-shadow: 0 14px 19px rgba(7, 20, 45, 0.10);
  --platform-orbit-duration: 28s;
  --platform-orbit-delay: -29s;
  --platform-breath-duration: 22s;
  --platform-breath-delay: -21s;
  --platform-orbit-x-0: 20px;
  --platform-orbit-y-0: -8px;
  --platform-orbit-r-0: 0.65deg;
  --platform-orbit-s-0: 0.994;
  --platform-orbit-x-1: -16px;
  --platform-orbit-y-1: 16px;
  --platform-orbit-r-1: -0.8deg;
  --platform-orbit-s-1: 1.01;
  --platform-orbit-x-2: -28px;
  --platform-orbit-y-2: 8px;
  --platform-orbit-r-2: -1.1deg;
  --platform-orbit-s-2: 1.004;
  --platform-orbit-x-3: 10px;
  --platform-orbit-y-3: -14px;
  --platform-orbit-r-3: 0.4deg;
  --platform-orbit-s-3: 0.998;
  z-index: 5;
}

@keyframes thicPlatformCloud {
  0% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) - 4px), calc(var(--thic-atmosphere-y, 0px) + 2px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) - 0.12deg)) scale(1.002);
  }

  36% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) + 5px), calc(var(--thic-atmosphere-y, 0px) - 3px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) + 0.1deg)) scale(1.008);
  }

  72% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) + 6px), calc(var(--thic-atmosphere-y, 0px) - 1px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) + 0.16deg)) scale(1.005);
  }

  86% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) - 3px), calc(var(--thic-atmosphere-y, 0px) + 3px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) - 0.08deg)) scale(1.003);
  }

  100% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) - 4px), calc(var(--thic-atmosphere-y, 0px) + 2px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) - 0.12deg)) scale(1.002);
  }
}

@keyframes thicPlatformCloudDetail {
  0% {
    transform: translate3d(calc(var(--thic-atmosphere-x-2, 0px) + 1px), calc(var(--thic-atmosphere-y-2, 0px) - 1px), 0) rotate(-0.08deg) scale(1.001);
  }

  55% {
    transform: translate3d(calc(var(--thic-atmosphere-x-2, 0px) - 2px), calc(var(--thic-atmosphere-y-2, 0px) + 2px), 0) rotate(0.06deg) scale(1.006);
  }

  100% {
    transform: translate3d(calc(var(--thic-atmosphere-x-2, 0px) + 1px), calc(var(--thic-atmosphere-y-2, 0px) - 1px), 0) rotate(-0.08deg) scale(1.001);
  }
}

@keyframes thicPlatformOrbit {
  0% {
    transform: translate3d(calc(-50% + var(--platform-orbit-x-0)), calc(-50% + var(--platform-orbit-y-0)), 0) rotate(var(--platform-orbit-r-0)) scale(var(--platform-orbit-s-0));
  }

  34% {
    transform: translate3d(calc(-50% + var(--platform-orbit-x-1)), calc(-50% + var(--platform-orbit-y-1)), 0) rotate(var(--platform-orbit-r-1)) scale(var(--platform-orbit-s-1));
  }

  68% {
    transform: translate3d(calc(-50% + var(--platform-orbit-x-2)), calc(-50% + var(--platform-orbit-y-2)), 0) rotate(var(--platform-orbit-r-2)) scale(var(--platform-orbit-s-2));
  }

  82% {
    transform: translate3d(calc(-50% + var(--platform-orbit-x-3)), calc(-50% + var(--platform-orbit-y-3)), 0) rotate(var(--platform-orbit-r-3)) scale(var(--platform-orbit-s-3));
  }

  100% {
    transform: translate3d(calc(-50% + var(--platform-orbit-x-0)), calc(-50% + var(--platform-orbit-y-0)), 0) rotate(var(--platform-orbit-r-0)) scale(var(--platform-orbit-s-0));
  }
}

@keyframes thicPlatformBreath {
  0% {
    transform: scale(0.998);
  }

  100% {
    transform: scale(1.004);
  }
}

.home-platform {
  min-height: 380px;
}

.story-band .proof-copy p {
  max-width: 470px;
}

.home-capabilities {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-page-hero {
  display: grid;
  align-items: center;
  min-height: 560px;
  padding: var(--section-y) var(--page-pad);
  background-color: #f7fbff;
  background-image:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 42%, rgba(247, 251, 255, 0.62) 100%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, 100% 100%;
}

.public-page-copy {
  max-width: 620px;
}

.public-page-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}

.public-page-copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
}

.object-page-hero {
  display: grid;
  grid-template-columns: minmax(310px, 600px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 116px);
  min-height: clamp(520px, 58vh, 720px);
  padding: clamp(62px, 7vw, 104px) var(--page-pad);
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(213, 232, 232, 0.74);
}

.object-page-hero .public-page-copy {
  position: relative;
  z-index: 2;
}

.page-hero-object {
  --feature-object-width: clamp(460px, 46vw, 720px);
}

.object-page-hero--science .page-hero-object {
  --feature-object-width: clamp(420px, 38vw, 620px);
}

.object-page-hero--innovation .page-hero-object {
  --feature-object-width: clamp(430px, 40vw, 650px);
}

.work-hero {
  padding: clamp(72px, 8vw, 126px) var(--page-pad) clamp(58px, 6vw, 92px);
  background: #fff;
  border-bottom: 1px solid rgba(213, 232, 232, 0.74);
}

.work-hero-copy {
  max-width: 790px;
}

.work-hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.04;
}

.work-hero-copy p {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.8;
}

.work-hero-copy p + p {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.enquiry-paths-section,
.quick-question-section {
  padding: var(--section-y) var(--page-pad);
  background: #fff;
}

.quick-question-section {
  border-top: 1px solid rgba(213, 232, 232, 0.72);
}

.work-section-header {
  max-width: 760px;
  margin: 0 0 clamp(30px, 3.6vw, 48px);
}

.work-section-header h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(31px, 3.1vw, 46px);
  font-weight: 500;
  line-height: 1.14;
}

.enquiry-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1360px;
}

.enquiry-card {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.enquiry-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.enquiry-card.is-selected {
  border-color: var(--blue);
  background: rgba(234, 245, 244, 0.56);
  box-shadow: inset 3px 0 0 var(--blue);
}

.enquiry-card span {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.enquiry-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.business-form-shell {
  max-width: 1080px;
}

.business-form {
  display: grid;
  gap: 34px;
}

.business-form[hidden],
.form-success[hidden],
.form-summary[hidden],
.exception-panel[hidden],
.conditional-fields[hidden] {
  display: none;
}

.business-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.business-form legend {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-grid,
.conditional-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.consent-row label {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.form-field label span {
  color: var(--muted);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--line-strong);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 116, 123, 0.12);
  outline: none;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.consent-row input[aria-invalid="true"] {
  border-color: #b6635e;
}

.form-field small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.field-error {
  min-height: 18px;
  margin: 7px 0 0;
  color: #8f3f3a;
  font-size: 12px;
  line-height: 1.45;
}

.form-summary {
  padding: 16px 18px;
  border: 1px solid rgba(182, 99, 94, 0.32);
  border-left: 3px solid #b6635e;
  border-radius: 8px;
  background: #fffafa;
  color: var(--text);
}

.form-summary p {
  margin: 0 0 8px;
  font-weight: 700;
}

.form-summary ul {
  margin: 0;
  padding-left: 18px;
}

.form-summary a {
  color: #8f3f3a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkbox-field label,
.consent-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input,
.consent-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.checkbox-field {
  align-self: end;
  min-height: 48px;
  padding-bottom: 18px;
}

.exception-panel {
  padding-top: 22px;
}

.consent-row {
  display: grid;
  gap: 4px;
  max-width: 860px;
}

.consent-row a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.business-submit {
  justify-self: start;
  border: 1px solid var(--blue);
  cursor: pointer;
}

.business-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.quick-question-section {
  padding-top: clamp(16px, 3vw, 34px);
  padding-bottom: clamp(58px, 6vw, 86px);
}

.quick-question-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  max-width: 960px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(195, 218, 220, 0.82);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(248, 252, 252, 0.9) 100%);
  box-shadow: 0 18px 48px rgba(17, 42, 78, 0.08);
}

.quick-question-inline h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
}

.quick-question-inline p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.enquiry-dialog {
  width: min(1040px, calc(100vw - 48px));
  max-width: none;
  max-height: min(880px, calc(100vh - 48px));
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.enquiry-dialog::backdrop {
  background: rgba(7, 20, 45, 0.18);
  backdrop-filter: blur(2px);
}

.enquiry-modal {
  position: relative;
  max-height: min(880px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(195, 218, 220, 0.9);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 34px 86px rgba(17, 42, 78, 0.18);
}

.enquiry-dialog[open] .enquiry-modal {
  animation: enquiryModalIn 320ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.enquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.enquiry-close:hover,
.enquiry-close:focus-visible {
  border-color: var(--line);
  background: var(--public-color-accent-light);
  color: var(--ink);
  outline: none;
}

.enquiry-modal-header {
  max-width: 640px;
  margin-bottom: clamp(26px, 3vw, 40px);
  padding-right: 52px;
}

.enquiry-modal-header h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.12;
}

.enquiry-modal-header p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.enquiry-modal-form {
  gap: clamp(26px, 3vw, 38px);
}

.enquiry-modal-form fieldset {
  padding-top: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid rgba(213, 232, 232, 0.78);
}

.enquiry-modal-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.enquiry-modal-actions .text-link {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.form-success {
  max-width: 760px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.form-success:focus {
  outline: 3px solid rgba(47, 116, 123, 0.22);
  outline-offset: 4px;
}

.form-success h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}

.form-success p {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.enquiry-success {
  max-width: 620px;
  margin: 0;
  padding: clamp(28px, 4vw, 46px);
  border-color: rgba(47, 116, 123, 0.22);
  background: linear-gradient(135deg, #fff 0%, rgba(234, 245, 244, 0.72) 100%);
}

.enquiry-success .primary-link {
  margin-top: 24px;
}

.discard-confirm {
  position: sticky;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(182, 99, 94, 0.28);
  border-radius: 8px;
  background: #fffafa;
  box-shadow: 0 18px 46px rgba(17, 42, 78, 0.12);
}

.discard-confirm[hidden] {
  display: none;
}

.discard-confirm h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.discard-confirm p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.discard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.discard-actions .secondary-link,
.discard-actions .text-link {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.discard-actions .text-link {
  color: #8f3f3a;
}

@keyframes enquiryModalIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

html.enquiry-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .enquiry-dialog[open] .enquiry-modal {
    animation: none;
  }
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quick-question-trigger {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 38px rgba(17, 42, 78, 0.12);
  cursor: pointer;
}

.quick-question-trigger:hover {
  border-color: var(--blue);
  background: var(--public-color-accent-light);
}

.quick-question-dialog {
  width: min(430px, calc(100vw - 34px));
  max-width: none;
  margin: auto 22px 22px auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.quick-question-dialog::backdrop {
  background: rgba(7, 20, 45, 0.12);
}

.quick-question-panel {
  position: relative;
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(17, 42, 78, 0.16);
}

.quick-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.quick-close:hover {
  border-color: var(--line);
  color: var(--ink);
}

.quick-question-copy {
  max-width: 330px;
  padding-right: 28px;
}

.quick-question-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
}

.quick-question-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.quick-form {
  gap: 16px;
  margin-top: 24px;
}

.quick-form .checkbox-field {
  min-height: 0;
  padding-bottom: 0;
}

.quick-form .business-submit {
  width: 100%;
}

.contact-section {
  padding: clamp(48px, 5vw, 72px) var(--page-pad);
  background: #fff;
}

.contact-card {
  max-width: 760px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card--offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  max-width: 980px;
}

.contact-card h2 {
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 500;
}

.contact-card p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.contact-card--offices p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.75;
}

.proof-image {
  height: 338px;
  overflow: hidden;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1370px;
  margin: 0 auto;
  gap: clamp(22px, 2.4vw, 32px);
}

.process-step {
  position: relative;
  min-height: 204px;
  padding: 0 18px;
  text-align: center;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 40px;
  right: -24px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  content: "->";
}

.process-step .line-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 13px;
}

.process-step p {
  max-width: 190px;
  font-size: 13px;
}

.capability-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding-top: 0;
  padding-bottom: 0;
}

.capability {
  min-height: 310px;
  padding: clamp(46px, 4.4vw, 64px) clamp(26px, 4vw, 56px);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
}

.capability h2 {
  margin-top: 14px;
}

.capability p {
  max-width: 410px;
}

.cta-section {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: clamp(48px, 5vw, 58px) var(--page-pad);
  background: #f8fbff;
  border-top: 1px solid rgba(215, 224, 238, 0.75);
  border-bottom: 1px solid rgba(215, 224, 238, 0.75);
}

.cta-section > div {
  position: relative;
  z-index: 2;
  max-width: 370px;
}

.wave-field {
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 72%;
  height: 190px;
  opacity: 0.46;
}

.wave-field path {
  fill: none;
  stroke: var(--blue-soft);
  stroke-dasharray: 1 8;
  stroke-linecap: round;
  stroke-width: 2;
}

.home-application {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  align-items: start;
  min-height: 320px;
}

.home-application > div {
  max-width: none;
}

.application-copy,
.application-cta {
  position: relative;
  z-index: 2;
}

.application-cta {
  max-width: 520px;
  padding-left: 0;
  border-left: 0;
}

.application-cta .primary-link {
  margin-top: 28px;
}

.site-footer {
  padding: clamp(44px, 5vw, 54px) var(--page-pad) 34px;
  background: #f8fbff;
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(120px, 0.55fr) minmax(150px, 0.7fr) minmax(360px, 1.65fr);
  gap: clamp(32px, 4vw, 54px);
  max-width: 1360px;
  margin: 0 auto;
}

.footer-logo {
  width: 270px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.68;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 46px);
  min-width: 0;
}

.footer-office {
  margin: 0;
  font-style: normal;
  min-width: 0;
}

.footer-office h3 {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-company {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 0.72fr) auto auto auto auto;
  gap: clamp(20px, 3vw, 46px);
  max-width: 1360px;
  margin: 46px auto 0;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-bottom span,
.footer-bottom a {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1280px) {
  .tech-hero {
    --hero-min-height: clamp(590px, 68vh, 730px);
  }

  .hero-art-technology {
    --hero-object-width: clamp(455px, 37vw, 540px);
    --hero-object-right: clamp(72px, 6vw, 104px);
  }

  .hero-art-home {
    --hero-min-height: clamp(600px, 68vh, 740px);
    --hero-object-width: clamp(410px, 35vw, 520px);
    --hero-object-right: clamp(80px, 8vw, 130px);
  }

  .pillar {
    padding: 0 22px;
  }
}

@media (max-width: 1180px) {
  .hero-art-technology {
    --hero-object-width: clamp(430px, 37vw, 500px);
    --hero-object-right: clamp(18px, 2vw, 34px);
  }

  .hero-art-home {
    --hero-object-width: clamp(390px, 35vw, 460px);
    --hero-object-right: clamp(42px, 5vw, 76px);
  }

  .pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 0;
  }

  .pillar:nth-child(3n + 1) {
    border-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 48px;
  }

  .process-step:nth-child(3)::after,
  .process-step:nth-child(6)::after {
    content: "";
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .tech-hero,
  .home-hero {
    padding: 0 var(--page-pad);
  }

  .hero-canvas {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 34px;
    min-height: 0;
    overflow: visible;
    padding-top: 52px;
    padding-bottom: 0;
  }

  .hero-copy,
  .home-hero .hero-copy {
    width: 100%;
    max-width: 620px;
    min-width: 0;
    margin-left: 0;
  }

  .hero-object,
  .home-hero .hero-object {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    justify-self: center;
    width: var(--hero-object-tablet-width);
    height: auto;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    pointer-events: auto;
    transform: translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1));
  }

  .hero-object img,
  .home-hero .hero-object img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero-object-shadow {
    bottom: 5%;
    width: 54%;
    height: clamp(18px, 3vw, 30px);
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 1199px) {
  .footer-offices {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 34px);
  }
}

@media (max-width: 1024px) {
  .enquiry-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid,
  .conditional-fields {
    grid-template-columns: 1fr;
  }

  .checkbox-field {
    align-self: auto;
    min-height: 0;
    padding-bottom: 0;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-image {
    height: clamp(240px, 38vw, 340px);
  }

  .capability-section,
  .home-capabilities {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .application-cta {
    padding-left: 0;
    padding-top: 0;
    border-left: 0;
    border-top: 0;
  }

  .capability {
    min-height: 0;
  }

  .feature-chapter,
  .feature-chapter--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding-top: clamp(58px, 8vw, 78px);
    padding-bottom: clamp(58px, 8vw, 78px);
  }

  .feature-chapter--reverse .feature-chapter-copy,
  .feature-chapter--reverse .feature-object {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-chapter-copy {
    max-width: 660px;
  }

  .feature-chapter .feature-object,
  .feature-chapter .feature-object--science,
  .feature-chapter .feature-object--manufacturing,
  .feature-chapter .feature-object--innovation {
    width: min(84%, 500px);
    justify-self: center;
  }

  .feature-chapter .feature-object--technology {
    width: min(80%, 500px);
  }

  .object-page-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding-top: clamp(58px, 8vw, 82px);
    padding-bottom: clamp(52px, 7vw, 76px);
  }

  .page-hero-object,
  .object-page-hero--science .page-hero-object,
  .object-page-hero--innovation .page-hero-object {
    width: min(88%, 600px);
    justify-self: center;
  }

  .foundation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .foundation-pillar {
    padding: 0 clamp(24px, 5vw, 44px) 0;
  }

  .foundation-pillar:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .foundation-pillar:nth-child(even) {
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .pillars-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .pillar:nth-child(n) {
    border-left: 1px solid var(--line);
  }

  .process-step:nth-child(n)::after {
    content: "";
  }

  .pillar:nth-child(odd) {
    border-left: 0;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 26px;
  }
}

@media (max-width: 768px) {
  .work-hero {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .proof-copy {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .public-page-hero {
    min-height: 0;
    padding-top: 52px;
    padding-bottom: 260px;
    background-image:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.98) 52%, rgba(255, 255, 255, 0.65) 76%, #f5f9fd 100%);
    background-position: center;
    background-size: 100% 100%;
  }

  .contact-card {
    padding: 34px;
  }

  .contact-card--offices {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-chapter-copy h2 {
    font-size: clamp(31px, 8vw, 42px);
  }

  .feature-chapter-copy p,
  .public-page-copy p {
    font-size: 16px;
    line-height: 1.74;
  }

  .object-page-hero .public-page-copy h1 {
    font-size: clamp(36px, 9vw, 48px);
  }
}

@media (max-width: 600px) {
  .hero-canvas {
    gap: 28px;
    padding-top: 38px;
  }

  .hero-copy h1,
  .home-hero .hero-copy h1 {
    max-width: 340px;
    max-width: min(340px, calc(100vw - var(--page-pad) - var(--page-pad)));
    font-size: clamp(38px, 10.7vw, 46px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 340px;
    max-width: min(340px, calc(100vw - var(--page-pad) - var(--page-pad)));
    font-size: 15px;
    line-height: 1.75;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
    min-height: 48px;
  }

  .work-section-header {
    margin-bottom: 26px;
  }

  .work-hero-copy h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .work-hero-copy p,
  .work-hero-copy p + p {
    font-size: 15px;
    line-height: 1.72;
  }

  .enquiry-path-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-card {
    min-height: 0;
    padding: 19px;
  }

  .business-form {
    gap: 28px;
  }

  .enquiry-dialog {
    width: 100%;
    max-height: 100vh;
    margin: auto 0 0;
  }

  .enquiry-modal {
    max-height: 92vh;
    padding: 30px 18px 22px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 14px 14px 0 0;
  }

  .enquiry-modal-header {
    padding-right: 44px;
  }

  .enquiry-modal-header h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .enquiry-modal-actions,
  .discard-confirm,
  .discard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .enquiry-modal-actions > *,
  .discard-actions > * {
    width: 100%;
    justify-content: center;
  }

  .business-submit {
    width: 100%;
  }

  .form-success {
    padding: 24px 20px;
  }

  .quick-question-inline {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 18px;
  }

  .quick-question-trigger {
    width: 100%;
  }

  .feature-chapter {
    gap: 24px;
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .feature-chapter-copy h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .feature-chapter-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }

  .chapter-link {
    margin-top: 22px;
  }

  .feature-chapter .feature-object,
  .feature-chapter .feature-object--science,
  .feature-chapter .feature-object--innovation {
    width: min(88%, 330px);
  }

  .feature-chapter .feature-object--technology,
  .feature-chapter .feature-object--manufacturing {
    width: min(86%, 340px);
  }

  .page-hero-object,
  .object-page-hero--science .page-hero-object,
  .object-page-hero--innovation .page-hero-object {
    width: min(100%, 360px);
  }

  .feature-object-shadow {
    height: 16px;
    filter: blur(11px);
  }

  .object-page-hero {
    gap: 26px;
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .quick-question-dialog {
    width: 100%;
    max-width: none;
    margin: auto 0 0;
  }

  .quick-question-panel {
    max-height: 86vh;
    padding: 26px 18px 20px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 14px 14px 0 0;
  }

  .foundation-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .foundation-inner h2 {
    margin-bottom: 26px;
  }

  .foundation-lede {
    margin-top: -8px;
    margin-bottom: 30px;
    font-size: 15px;
  }

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

  .foundation-pillar,
  .foundation-pillar:nth-child(n) {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .foundation-pillar:nth-child(n)::before {
    right: 0;
    left: 0;
  }

  .foundation-pillar:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .foundation-pillar:first-child::before {
    display: none;
  }

  .foundation-pillar:last-child {
    padding-bottom: 0;
  }

  .foundation-pillar p {
    max-width: 320px;
  }

  .foundation-number {
    margin-bottom: 14px;
    font-size: 48px;
  }

  .story-section {
    min-height: 0;
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .hero-object,
  .home-hero .hero-object {
    width: var(--hero-object-mobile-width);
    max-width: 100%;
    height: auto;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-object-shadow {
    bottom: 4%;
    width: 50%;
    height: 18px;
    opacity: 0.9;
  }

  .pillars-grid,
  .process-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .pillar,
  .pillar:nth-child(n) {
    min-height: 0;
    padding: 0 0 34px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .process-step {
    min-height: 0;
    padding: 0 0 32px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .process-step .line-icon {
    margin-right: 0;
    margin-left: 0;
  }

  .process-step p {
    margin-left: 0;
  }

  .process-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .public-page-hero {
    padding-bottom: 218px;
    background-size: 100% 100%, 540px auto;
  }

  .proof-image {
    height: 220px;
  }

  .wave-field {
    right: -180px;
    width: 112%;
    opacity: 0.32;
  }

  .footer-logo {
    width: 230px;
  }
}

/* ===== THIC illustration standard: consistent floating-object scale ===== */
.hero-art-home {
  --hero-object-width: clamp(280px, 25vw, 370px);
  --hero-object-tablet-width: min(42%, 300px);
  --hero-object-mobile-width: min(42%, 190px);
}

.hero-art-technology {
  --hero-object-width: clamp(310px, 31vw, 470px);
  --hero-object-tablet-width: min(40%, 340px);
  --hero-object-mobile-width: min(40%, 190px);
}

.feature-chapter .feature-object,
.feature-chapter .feature-object--manufacturing {
  --feature-object-width: clamp(330px, 36vw, 540px);
  width: min(var(--feature-object-width), 42vw) !important;
  max-width: 42vw;
}

.feature-chapter .feature-object--science {
  --feature-object-width: clamp(150px, 16.5vw, 238px);
  width: min(var(--feature-object-width), 24vw) !important;
  max-width: 24vw;
}

.feature-chapter .feature-object--technology {
  --feature-object-width: clamp(280px, 29vw, 430px);
  width: min(var(--feature-object-width), 36vw) !important;
  max-width: 36vw;
}

.feature-chapter .feature-object--innovation {
  --feature-object-width: clamp(200px, 21vw, 312px);
  width: min(var(--feature-object-width), 26vw) !important;
  max-width: 26vw;
}

.object-page-hero .page-hero-object,
.object-page-hero--manufacturing .page-hero-object {
  --feature-object-width: clamp(320px, 34vw, 500px);
  width: min(var(--feature-object-width), 40vw) !important;
  max-width: 40vw;
}

.object-page-hero--science .page-hero-object {
  --feature-object-width: clamp(230px, 25.5vw, 365px);
  width: min(var(--feature-object-width), 31vw) !important;
  max-width: 31vw;
}

.object-page-hero--innovation .page-hero-object {
  --feature-object-width: clamp(310px, 32vw, 480px);
  width: min(var(--feature-object-width), 38vw) !important;
  max-width: 38vw;
}

.hero-object,
.feature-object,
.page-hero-object {
  overflow: visible;
}

.hero-object img,
.feature-object img,
.page-hero-object img {
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1180px) {
  .hero-art-home {
    --hero-object-width: clamp(260px, 25vw, 350px);
    --hero-object-tablet-width: min(42%, 300px);
    --hero-object-mobile-width: min(42%, 190px);
  }

  .hero-art-technology {
    --hero-object-width: clamp(290px, 30vw, 430px);
    --hero-object-tablet-width: min(40%, 340px);
    --hero-object-mobile-width: min(40%, 190px);
  }
}

@media (max-width: 1024px) {
  .feature-chapter .feature-object,
  .feature-chapter .feature-object--manufacturing,
  .feature-chapter .feature-object--innovation {
    width: min(42%, 360px) !important;
    max-width: 360px;
  }

  .feature-chapter .feature-object--science {
    width: min(26%, 170px) !important;
    max-width: 170px;
  }

  .feature-chapter .feature-object--technology {
    width: min(39%, 320px) !important;
    max-width: 320px;
  }

  .feature-chapter .feature-object--innovation {
    width: min(31%, 235px) !important;
    max-width: 235px;
  }

  .object-page-hero .page-hero-object,
  .object-page-hero--manufacturing .page-hero-object,
  .object-page-hero--innovation .page-hero-object {
    width: min(42%, 360px) !important;
    max-width: 360px;
  }

  .object-page-hero--science .page-hero-object {
    width: min(36%, 260px) !important;
    max-width: 260px;
  }

  .hero-object,
  .home-hero .hero-object {
    transform: translateY(clamp(-54px, -5vw, -34px)) translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1));
  }
}

@media (max-width: 640px) {
  .feature-chapter .feature-object,
  .feature-chapter .feature-object--manufacturing,
  .feature-chapter .feature-object--innovation {
    width: min(42%, 250px) !important;
    max-width: 250px;
  }

  .feature-chapter .feature-object--science {
    width: min(32%, 130px) !important;
    max-width: 130px;
  }

  .feature-chapter .feature-object--technology {
    width: min(39%, 230px) !important;
    max-width: 230px;
  }

  .feature-chapter .feature-object--innovation {
    width: min(34%, 165px) !important;
    max-width: 165px;
  }

  .object-page-hero .page-hero-object,
  .object-page-hero--manufacturing .page-hero-object,
  .object-page-hero--innovation .page-hero-object {
    width: min(42%, 250px) !important;
    max-width: 250px;
  }

  .object-page-hero--science .page-hero-object {
    width: min(36%, 185px) !important;
    max-width: 185px;
  }
}

/* ===== THIC engineered object system: confident scale and slow physical drift ===== */
.hero-art-home {
  --hero-object-width: clamp(430px, 36vw, 590px);
  --hero-object-tablet-width: min(88%, 580px);
  --hero-object-mobile-width: min(92vw, 390px);
}

.hero-art-technology {
  --hero-object-width: clamp(470px, 40vw, 650px);
  --hero-object-tablet-width: min(90%, 620px);
  --hero-object-mobile-width: min(94vw, 410px);
}

.feature-chapter .feature-object,
.feature-chapter .feature-object--manufacturing,
.feature-chapter .feature-object--technology,
.feature-chapter .feature-object--science,
.feature-chapter .feature-object--innovation {
  width: min(100%, var(--feature-object-width)) !important;
  max-width: min(100%, 640px) !important;
}

.feature-chapter .feature-object--science {
  --feature-object-width: clamp(300px, 30vw, 470px);
}

.feature-chapter .feature-object--technology {
  --feature-object-width: clamp(430px, 39vw, 610px);
}

.feature-chapter .feature-object--manufacturing {
  --feature-object-width: clamp(430px, 40vw, 620px);
}

.feature-chapter .feature-object--innovation {
  --feature-object-width: clamp(340px, 32vw, 500px);
}

.feature-object--tablet {
  --feature-object-width: clamp(620px, 52vw, 860px);
  --feature-shadow-opacity: 0;
  --microbubble-field-opacity: 0.82;
  --microbubble-field-foreground-opacity: 0;
  --microbubble-field-width: 142%;
  --microbubble-field-height: 122%;
  --microbubble-field-left: -20%;
  --microbubble-field-top: -11%;
}

.feature-object--tablet .feature-object-shadow {
  display: none;
}

.feature-chapter .feature-object--tablet {
  --feature-object-width: clamp(620px, 52vw, 860px);
  width: min(100%, var(--feature-object-width)) !important;
  max-width: min(100%, 860px) !important;
}

.object-page-hero .feature-object--tablet {
  --feature-object-width: clamp(660px, 54vw, 920px);
  width: min(100%, var(--feature-object-width)) !important;
  max-width: min(100%, 920px) !important;
}

.object-page-hero .page-hero-object,
.object-page-hero--manufacturing .page-hero-object,
.object-page-hero--science .page-hero-object,
.object-page-hero--innovation .page-hero-object {
  width: min(100%, var(--feature-object-width)) !important;
  max-width: min(100%, 680px) !important;
}

.object-page-hero--science .page-hero-object {
  --feature-object-width: clamp(370px, 38vw, 620px);
}

.object-page-hero--innovation .page-hero-object {
  --feature-object-width: clamp(390px, 39vw, 640px);
}

.work-hero {
  display: grid;
  grid-template-columns: minmax(320px, 680px) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
  min-height: clamp(520px, 56vh, 680px);
  overflow: hidden;
}

.work-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.work-hero-object {
  --feature-object-width: clamp(360px, 34vw, 530px);
  justify-self: center;
  width: min(100%, var(--feature-object-width)) !important;
  max-width: min(100%, 540px) !important;
}

.work-hero .platform-constellation {
  justify-self: center;
  align-self: center;
}

.platform-constellation--work {
  width: min(100%, clamp(470px, 38vw, 620px));
}

.hero-object--molecule {
  --motion-duration: 43s;
  --motion-shadow-duration: 47s;
  --motion-x-0: -22px;
  --motion-y-0: 5px;
  --motion-r-0: -1.6deg;
  --motion-x-1: 26px;
  --motion-y-1: -10px;
  --motion-r-1: 1.4deg;
  --motion-x-2: 14px;
  --motion-y-2: -18px;
  --motion-r-2: 2.2deg;
  --motion-x-3: -24px;
  --motion-y-3: 9px;
  --motion-r-3: -1.2deg;
}

.hero-object--infusion-system,
.feature-object--technology {
  --motion-duration: 52s;
  --motion-shadow-duration: 56s;
  --motion-x-0: -18px;
  --motion-y-0: 3px;
  --motion-r-0: -0.8deg;
  --motion-x-1: 22px;
  --motion-y-1: -9px;
  --motion-r-1: 0.75deg;
  --motion-x-2: 11px;
  --motion-y-2: -15px;
  --motion-r-2: 1.35deg;
  --motion-x-3: -20px;
  --motion-y-3: 7px;
  --motion-r-3: -0.62deg;
}

.feature-object--science,
.feature-object--manufacturing {
  --motion-duration: 56s;
  --motion-shadow-duration: 60s;
  --motion-x-0: -14px;
  --motion-y-0: 4px;
  --motion-r-0: -0.7deg;
  --motion-x-1: 18px;
  --motion-y-1: -8px;
  --motion-r-1: 0.62deg;
  --motion-x-2: 8px;
  --motion-y-2: -13px;
  --motion-r-2: 1.1deg;
  --motion-x-3: -16px;
  --motion-y-3: 6px;
  --motion-r-3: -0.52deg;
}

.feature-object--innovation,
.work-hero-object {
  --motion-duration: 48s;
  --motion-shadow-duration: 52s;
  --motion-x-0: -18px;
  --motion-y-0: 5px;
  --motion-r-0: -1.2deg;
  --motion-x-1: 24px;
  --motion-y-1: -10px;
  --motion-r-1: 1.1deg;
  --motion-x-2: 12px;
  --motion-y-2: -16px;
  --motion-r-2: 1.8deg;
  --motion-x-3: -20px;
  --motion-y-3: 8px;
  --motion-r-3: -0.85deg;
}

/* ===== THIC hero object safe zones ===== */
@media (min-width: 1101px) {
  .hero-art-home .hero-copy {
    width: min(100%, 590px, 43vw);
  }

  .hero-art-home .hero-object--molecule {
    top: 56%;
    right: clamp(72px, 7vw, 150px);
    width: clamp(390px, 34vw, 580px);
    max-width: min(43vw, 580px);
    transform: translateY(-50%) translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1));
  }
}

.hero-object--molecule {
  --motion-duration: 54s;
  --motion-shadow-duration: 58s;
  --motion-x-0: -8px;
  --motion-y-0: 3px;
  --motion-r-0: -0.8deg;
  --motion-x-1: 11px;
  --motion-y-1: -6px;
  --motion-r-1: 0.7deg;
  --motion-x-2: 7px;
  --motion-y-2: -10px;
  --motion-r-2: 1.1deg;
  --motion-x-3: -10px;
  --motion-y-3: 5px;
  --motion-r-3: -0.55deg;
}

@media (max-width: 1100px) {
  .hero-art-home {
    --hero-object-tablet-width: min(88%, 540px);
    --hero-object-mobile-width: min(92vw, 390px);
  }
}

@media (max-width: 1024px) {
  .feature-chapter .feature-object,
  .feature-chapter .feature-object--manufacturing,
  .feature-chapter .feature-object--innovation,
  .feature-chapter .feature-object--technology {
    width: min(88%, 560px) !important;
    max-width: 560px !important;
  }

  .feature-chapter .feature-object--science {
    width: min(78%, 440px) !important;
    max-width: 440px !important;
  }

  .object-page-hero .page-hero-object,
  .object-page-hero--manufacturing .page-hero-object,
  .object-page-hero--innovation .page-hero-object,
  .object-page-hero--science .page-hero-object {
    width: min(90%, 620px) !important;
    max-width: 620px !important;
  }

  .hero-object,
  .home-hero .hero-object {
    transform: translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1));
  }

  .work-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
  }

  .work-hero-object {
    width: min(86%, 480px) !important;
  }
}

@media (max-width: 640px) {
  .feature-chapter .feature-object,
  .feature-chapter .feature-object--manufacturing,
  .feature-chapter .feature-object--technology,
  .feature-chapter .feature-object--innovation {
    width: min(88vw, 390px) !important;
    max-width: 390px !important;
  }

  .feature-chapter .feature-object--science {
    width: min(76vw, 330px) !important;
    max-width: 330px !important;
  }

  .object-page-hero .page-hero-object,
  .object-page-hero--manufacturing .page-hero-object,
  .object-page-hero--innovation .page-hero-object,
  .object-page-hero--science .page-hero-object,
  .work-hero-object {
    width: min(90vw, 390px) !important;
    max-width: 390px !important;
  }
}

/* ===== THIC microbubble atmosphere: hydrogen-rich water field ===== */
:root {
  --thic-microbubble-flow: url("assets/microbubbles-flow.svg");
  --thic-microbubble-diffusion: url("assets/microbubbles-diffusion.svg");
  --thic-microbubble-concentration: url("assets/microbubbles-concentration.svg");
  --thic-microbubble-turbulence: url("assets/microbubbles-turbulence.svg");
}

.hero-canvas,
.foundation-section,
.feature-chapter,
.editorial-section.future-platform,
.cta-section.home-application,
.object-page-hero,
.work-hero,
.public-page-hero {
  position: relative;
  isolation: isolate;
}

.home-hero .hero-object,
.feature-chapter .feature-object,
.object-page-hero .page-hero-object,
.work-hero .work-hero-object {
  overflow: hidden;
  overflow: clip;
}

.hero-canvas::before,
.hero-canvas::after,
.foundation-section::before,
.foundation-section::after,
.feature-chapter::before,
.feature-chapter::after,
.editorial-section.future-platform::before,
.editorial-section.future-platform::after,
.cta-section.home-application::before,
.cta-section.home-application::after,
.object-page-hero::before,
.object-page-hero::after,
.work-hero::before,
.work-hero::after,
.public-page-hero::before,
.public-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  will-change: transform, opacity;
}

.hero-canvas::before,
.foundation-section::before,
.feature-chapter::before,
.editorial-section.future-platform::before,
.cta-section.home-application::before,
.object-page-hero::before,
.work-hero::before,
.public-page-hero::before {
  background-image: var(--microbubble-lighting, radial-gradient(ellipse at 64% 52%, rgba(218, 246, 251, 0.12), rgba(255, 255, 255, 0) 58%));
  opacity: var(--microbubble-light-opacity, 0.18);
  animation: none;
}

.hero-canvas::after,
.foundation-section::after,
.feature-chapter::after,
.editorial-section.future-platform::after,
.cta-section.home-application::after,
.object-page-hero::after,
.work-hero::after,
.public-page-hero::after {
  background-image: var(--microbubble-texture, var(--thic-microbubble-diffusion));
  background-size: var(--microbubble-size, contain);
  opacity: var(--thic-bubble-cluster-opacity, var(--microbubble-opacity, 0.94));
  animation: thicMicrobubbleCluster var(--microbubble-cluster-duration, 157s) linear infinite both;
}

.hero-art-home .hero-canvas::before,
.hero-art-home .hero-canvas::after {
  display: block;
  aspect-ratio: auto;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-art-home .hero-canvas::before {
  inset: 4% 0 6% 30%;
  width: auto;
  height: auto;
  background-image: radial-gradient(ellipse at 62% 50%, rgba(218, 246, 251, 0.10), rgba(255, 255, 255, 0) 60%);
  background-size: 100% 100%;
  background-position: center;
  opacity: 0.16;
  transform: translate3d(0, 0, 0);
  animation: none;
}

.hero-art-home .hero-canvas::after {
  inset: 2% 0 5% 30%;
  width: auto;
  height: auto;
  background-image: var(--microbubble-texture, var(--thic-microbubble-flow));
  background-size: 100% auto;
  background-position: center right;
  opacity: var(--thic-bubble-cluster-opacity, var(--microbubble-opacity, 0.96));
  transform: translate3d(0, 0, 0);
  animation: thicMicrobubbleCluster var(--microbubble-cluster-duration, 181s) linear infinite both;
}

.hero-copy,
.foundation-inner,
.feature-chapter-copy,
.feature-object,
.editorial-section.future-platform .section-copy,
.cta-section.home-application > div,
.public-page-copy,
.page-hero-object,
.work-hero-copy,
.work-hero-object {
  position: relative;
  z-index: 2;
}

.hero-copy {
  z-index: 3;
}

.hero-object {
  z-index: 2;
}

.wave-field {
  z-index: 1;
}

.hero-art-home .hero-canvas,
.hero-art-technology .hero-canvas,
.feature-chapter--technology {
  --microbubble-texture: var(--thic-microbubble-flow);
  --microbubble-opacity: 0.96;
  --microbubble-cluster-opacity: 0.96;
  --microbubble-size: contain;
  --microbubble-duration: 132s;
  --microbubble-cluster-duration: 181s;
}

.hero-art-home .hero-canvas::before,
.hero-art-technology .hero-canvas::before,
.feature-chapter--technology::before {
  background-position: center;
}

.hero-art-home .hero-canvas::after,
.hero-art-technology .hero-canvas::after,
.feature-chapter--technology::after {
  background-position: center;
}

.foundation-section,
.feature-chapter--innovation,
.editorial-section.future-platform,
.work-hero,
.public-page-hero,
.object-page-hero--innovation {
  --microbubble-texture: var(--thic-microbubble-diffusion);
  --microbubble-opacity: 0.94;
  --microbubble-cluster-opacity: 0.94;
  --microbubble-size: contain;
  --microbubble-duration: 149s;
  --microbubble-cluster-duration: 193s;
}

.foundation-section,
.feature-chapter,
.editorial-section.future-platform,
.cta-section.home-application,
.object-page-hero,
.work-hero,
.public-page-hero {
  overflow: hidden;
}

.foundation-section::before,
.feature-chapter--innovation::before,
.editorial-section.future-platform::before,
.work-hero::before,
.public-page-hero::before,
.object-page-hero--innovation::before {
  background-position: center;
}

.foundation-section::after,
.feature-chapter--innovation::after,
.editorial-section.future-platform::after,
.work-hero::after,
.public-page-hero::after,
.object-page-hero--innovation::after {
  background-position: center;
}

.feature-chapter--science,
.object-page-hero--science {
  --microbubble-texture: var(--thic-microbubble-concentration);
  --microbubble-opacity: 0.98;
  --microbubble-cluster-opacity: 0.98;
  --microbubble-size: contain;
  --microbubble-duration: 141s;
  --microbubble-cluster-duration: 204s;
}

.feature-chapter--science::before,
.object-page-hero--science::before {
  inset: -10% -6%;
  background-position: center;
}

.feature-chapter--science::after,
.object-page-hero--science::after {
  inset: -16% -10%;
  background-position: center;
}

.feature-chapter--manufacturing,
.object-page-hero--manufacturing,
.cta-section.home-application {
  --microbubble-texture: var(--thic-microbubble-turbulence);
  --microbubble-opacity: 0.96;
  --microbubble-cluster-opacity: 0.96;
  --microbubble-size: contain;
  --microbubble-duration: 156s;
  --microbubble-cluster-duration: 211s;
}

.feature-chapter--manufacturing::before,
.object-page-hero--manufacturing::before,
.cta-section.home-application::before {
  background-position: center;
}

.feature-chapter--manufacturing::after,
.object-page-hero--manufacturing::after,
.cta-section.home-application::after {
  background-image: var(--microbubble-texture, var(--thic-microbubble-turbulence));
  background-size: var(--microbubble-size, contain);
  background-position: center;
}

.object-page-hero:not(.object-page-hero--science):not(.object-page-hero--manufacturing):not(.object-page-hero--innovation) {
  --microbubble-texture: var(--thic-microbubble-diffusion);
  --microbubble-opacity: 0.94;
  --microbubble-cluster-opacity: 0.94;
  --microbubble-size: contain;
}

@keyframes thicMicrobubbleDrift {
  0% {
    transform: translate3d(calc(-0.5% + var(--thic-atmosphere-x, 0px)), calc(0.2% + var(--thic-atmosphere-y, 0px)), 0) rotate(var(--thic-atmosphere-rotate, 0deg)) scale(1.02);
  }

  37% {
    transform: translate3d(calc(0.2% + var(--thic-atmosphere-x, 0px)), calc(-0.8% + var(--thic-atmosphere-y, 0px)), 0) rotate(var(--thic-atmosphere-rotate, 0deg)) scale(1.025);
  }

  71% {
    transform: translate3d(calc(0.7% + var(--thic-atmosphere-x, 0px)), calc(-1.4% + var(--thic-atmosphere-y, 0px)), 0) rotate(var(--thic-atmosphere-rotate, 0deg)) scale(1.03);
  }

  100% {
    transform: translate3d(calc(1% + var(--thic-atmosphere-x, 0px)), calc(-2% + var(--thic-atmosphere-y, 0px)), 0) rotate(var(--thic-atmosphere-rotate, 0deg)) scale(1.035);
  }
}

@keyframes thicMicrobubbleCluster {
  0% {
    opacity: var(--thic-bubble-cluster-opacity, var(--microbubble-opacity, 0.94));
    transform: translate3d(calc(0.2% + var(--thic-atmosphere-x-2, 0px)), calc(0.1% + var(--thic-atmosphere-y-2, 0px)), 0) scale(1);
  }

  43% {
    opacity: var(--thic-bubble-cluster-opacity, var(--microbubble-opacity, 0.94));
    transform: translate3d(calc(-0.2% + var(--thic-atmosphere-x-2, 0px)), calc(-0.8% + var(--thic-atmosphere-y-2, 0px)), 0) scale(1.012);
  }

  76% {
    opacity: var(--thic-bubble-cluster-opacity, var(--microbubble-opacity, 0.94));
    transform: translate3d(calc(-0.6% + var(--thic-atmosphere-x-2, 0px)), calc(-1.3% + var(--thic-atmosphere-y-2, 0px)), 0) scale(1.018);
  }

  100% {
    opacity: var(--thic-bubble-cluster-opacity, var(--microbubble-opacity, 0.94));
    transform: translate3d(calc(-1% + var(--thic-atmosphere-x-2, 0px)), calc(-1.9% + var(--thic-atmosphere-y-2, 0px)), 0) scale(1.024);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-canvas::before,
  .hero-canvas::after,
  .foundation-section::before,
  .foundation-section::after,
  .feature-chapter::before,
  .feature-chapter::after,
  .editorial-section.future-platform::before,
  .editorial-section.future-platform::after,
  .cta-section.home-application::before,
  .cta-section.home-application::after,
  .object-page-hero::before,
  .object-page-hero::after,
  .work-hero::before,
  .work-hero::after,
  .public-page-hero::before,
  .public-page-hero::after {
    animation: none !important;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-canvas::before,
  .hero-canvas::after,
  .foundation-section::before,
  .foundation-section::after,
  .feature-chapter::before,
  .feature-chapter::after,
  .editorial-section.future-platform::before,
  .editorial-section.future-platform::after,
  .cta-section.home-application::before,
  .cta-section.home-application::after,
  .object-page-hero::before,
  .object-page-hero::after,
  .work-hero::before,
  .work-hero::after,
  .public-page-hero::before,
  .public-page-hero::after {
    inset: 0;
    display: block;
  }

  .hero-canvas::after,
  .foundation-section::after,
  .feature-chapter::after,
  .editorial-section.future-platform::after,
  .cta-section.home-application::after,
  .object-page-hero::after,
  .work-hero::after,
  .public-page-hero::after {
    opacity: var(--thic-bubble-cluster-opacity, var(--microbubble-opacity, 0.94));
  }
}

@media print {
  html,
  body,
  .public-page,
  .public-page *,
  .public-page *::before,
  .public-page *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .hero-canvas::before,
  .hero-canvas::after,
  .foundation-section::before,
  .foundation-section::after,
  .feature-chapter::before,
  .feature-chapter::after,
  .editorial-section.future-platform::before,
  .editorial-section.future-platform::after,
  .cta-section.home-application::before,
  .cta-section.home-application::after,
  .object-page-hero::before,
  .object-page-hero::after,
  .work-hero::before,
  .work-hero::after,
  .public-page-hero::before,
  .public-page-hero::after {
    animation: none !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transform: none !important;
  }

  .hero-canvas::before,
  .foundation-section::before,
  .feature-chapter::before,
  .editorial-section.future-platform::before,
  .cta-section.home-application::before,
  .object-page-hero::before,
  .work-hero::before,
  .public-page-hero::before {
    background-image: var(--microbubble-lighting, radial-gradient(ellipse at 64% 52%, rgba(218, 246, 251, 0.08), rgba(255, 255, 255, 0) 58%)) !important;
    background-size: 100% 100% !important;
    opacity: var(--microbubble-light-opacity, 0.10) !important;
  }

  .hero-canvas::after,
  .foundation-section::after,
  .feature-chapter::after,
  .editorial-section.future-platform::after,
  .cta-section.home-application::after,
  .object-page-hero::after,
  .work-hero::after,
  .public-page-hero::after {
    background-image: var(--microbubble-texture, var(--thic-microbubble-diffusion)) !important;
    background-size: var(--microbubble-size, contain) !important;
    opacity: var(--microbubble-print-opacity, var(--microbubble-opacity, 0.96)) !important;
  }

  .hero-art-home .hero-canvas::before {
    inset: 4% 0 6% 30% !important;
    background-image: radial-gradient(ellipse at 62% 50%, rgba(218, 246, 251, 0.06), rgba(255, 255, 255, 0) 60%) !important;
    opacity: 0.08 !important;
  }

  .hero-art-home .hero-canvas::after {
    inset: 2% 0 5% 30% !important;
    background-size: 100% auto !important;
    background-position: center right !important;
    opacity: var(--microbubble-print-opacity, var(--microbubble-opacity, 0.96)) !important;
  }
}

/* ===== THIC localised microbubble fields ===== */
:root {
  --thic-field-flow: url("assets/hydrogen-cloud-flow.svg");
  --thic-field-concentration: url("assets/hydrogen-cloud-concentration.svg");
  --thic-field-controlled: url("assets/hydrogen-cloud-controlled.svg");
  --thic-field-diffusion: url("assets/hydrogen-cloud-diffusion.svg");
}

.hero-canvas::before,
.hero-canvas::after,
.foundation-section::before,
.foundation-section::after,
.feature-chapter::before,
.feature-chapter::after,
.editorial-section.future-platform::before,
.editorial-section.future-platform::after,
.cta-section.home-application::before,
.cta-section.home-application::after,
.object-page-hero::before,
.object-page-hero::after,
.work-hero::before,
.work-hero::after,
.public-page-hero::before,
.public-page-hero::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
  animation: none !important;
}

.wave-field {
  display: none !important;
}

.hero-object,
.feature-object,
.page-hero-object,
.work-hero-object {
  --microbubble-field: var(--thic-field-diffusion);
  --microbubble-field-opacity: 0.94;
  --microbubble-field-foreground-opacity: 0.08;
  --microbubble-field-width: 154%;
  --microbubble-field-height: 132%;
  --microbubble-field-left: -27%;
  --microbubble-field-top: -16%;
  --microbubble-field-duration: 30s;
  --microbubble-detail-duration: 38s;
  --microbubble-cloud-x-0: -52px;
  --microbubble-cloud-y-0: 12px;
  --microbubble-cloud-r-0: -1.45deg;
  --microbubble-cloud-s-0: 0.985;
  --microbubble-cloud-x-1: 36px;
  --microbubble-cloud-y-1: -20px;
  --microbubble-cloud-r-1: 1.2deg;
  --microbubble-cloud-s-1: 1.018;
  --microbubble-cloud-x-2: 60px;
  --microbubble-cloud-y-2: -10px;
  --microbubble-cloud-r-2: 1.75deg;
  --microbubble-cloud-s-2: 1.012;
  --microbubble-cloud-x-3: -24px;
  --microbubble-cloud-y-3: 18px;
  --microbubble-cloud-r-3: -0.85deg;
  --microbubble-cloud-s-3: 0.995;
  --microbubble-detail-x-0: 3px;
  --microbubble-detail-y-0: -2px;
  --microbubble-detail-x-1: -5px;
  --microbubble-detail-y-1: 4px;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.hero-object::before,
.feature-object::before,
.page-hero-object::before,
.work-hero-object::before {
  content: "";
  position: absolute;
  left: var(--microbubble-field-left);
  top: var(--microbubble-field-top);
  z-index: 0;
  width: var(--microbubble-field-width);
  height: var(--microbubble-field-height);
  pointer-events: none;
  background-image: var(--microbubble-field);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: var(--thic-bubble-cluster-opacity, var(--microbubble-field-opacity));
  transform: translate3d(var(--thic-atmosphere-x, 0px), var(--thic-atmosphere-y, 0px), 0) rotate(var(--thic-atmosphere-rotate, 0deg)) scale(1);
  transform-origin: 52% 52%;
  animation: thicHydrogenCloudDrift var(--microbubble-field-duration, 30s) cubic-bezier(0.45, 0, 0.28, 1) infinite both;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.hero-object img,
.feature-object img,
.page-hero-object img,
.work-hero-object img {
  position: relative;
  z-index: 2;
}

.hero-object::after,
.feature-object::after,
.page-hero-object::after,
.work-hero-object::after {
  content: "";
  position: absolute;
  left: var(--microbubble-field-left);
  top: var(--microbubble-field-top);
  z-index: 3;
  width: var(--microbubble-field-width);
  height: var(--microbubble-field-height);
  pointer-events: none;
  background-image: var(--microbubble-field);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: var(--microbubble-field-foreground-opacity, 0);
  transform: translate3d(var(--thic-atmosphere-x-2, 0px), var(--thic-atmosphere-y-2, 0px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) - 0.28deg)) scale(0.998);
  transform-origin: 52% 52%;
  animation: thicHydrogenCloudDetail var(--microbubble-detail-duration, 38s) ease-in-out infinite alternate both;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.hero-object-shadow,
.feature-object-shadow {
  z-index: 1;
}

.hero-object--molecule {
  --microbubble-field: var(--thic-field-flow);
  --microbubble-field-opacity: 0.94;
  --microbubble-field-foreground-opacity: 0.09;
  --microbubble-field-width: 166%;
  --microbubble-field-height: 138%;
  --microbubble-field-left: -35%;
  --microbubble-field-top: -18%;
  --microbubble-field-duration: 29s;
  --microbubble-detail-duration: 37s;
  --microbubble-cloud-x-0: -58px;
  --microbubble-cloud-y-0: 14px;
  --microbubble-cloud-r-0: -1.65deg;
  --microbubble-cloud-x-1: 42px;
  --microbubble-cloud-y-1: -24px;
  --microbubble-cloud-r-1: 1.35deg;
  --microbubble-cloud-x-2: 68px;
  --microbubble-cloud-y-2: -14px;
  --microbubble-cloud-r-2: 1.9deg;
  --microbubble-cloud-x-3: -30px;
  --microbubble-cloud-y-3: 20px;
  --microbubble-cloud-r-3: -0.95deg;
  --motion-x-0: -24px;
  --motion-y-0: 8px;
  --motion-r-0: -1.1deg;
  --motion-x-1: 22px;
  --motion-y-1: -11px;
  --motion-r-1: 0.9deg;
  --motion-x-2: 32px;
  --motion-y-2: -17px;
  --motion-r-2: 1.55deg;
  --motion-x-3: -18px;
  --motion-y-3: 11px;
  --motion-r-3: -0.75deg;
}

.feature-object--science,
.object-page-hero--science .page-hero-object {
  --microbubble-field: var(--thic-field-concentration);
  --microbubble-field-opacity: 0.98;
  --microbubble-field-width: 168%;
  --microbubble-field-height: 138%;
  --microbubble-field-left: -34%;
  --microbubble-field-top: -19%;
  --microbubble-field-foreground-opacity: 0.34;
  --microbubble-field-duration: 27s;
  --microbubble-detail-duration: 35s;
  --microbubble-cloud-x-0: -46px;
  --microbubble-cloud-y-0: 10px;
  --microbubble-cloud-r-0: -1.05deg;
  --microbubble-cloud-x-1: 32px;
  --microbubble-cloud-y-1: -19px;
  --microbubble-cloud-r-1: 0.85deg;
  --microbubble-cloud-x-2: 50px;
  --microbubble-cloud-y-2: -10px;
  --microbubble-cloud-r-2: 1.25deg;
  --microbubble-cloud-x-3: -22px;
  --microbubble-cloud-y-3: 16px;
  --microbubble-cloud-r-3: -0.55deg;
  --motion-duration: 21s;
  --motion-x-0: -18px;
  --motion-y-0: 6px;
  --motion-x-1: 17px;
  --motion-y-1: -9px;
  --motion-x-2: 23px;
  --motion-y-2: -14px;
  --motion-x-3: -14px;
  --motion-y-3: 7px;
}

.feature-object--technology,
.hero-object--infusion-system,
.hero-art-technology .hero-object {
  --microbubble-field: var(--thic-field-flow);
  --microbubble-field-opacity: 0.97;
  --microbubble-field-width: 166%;
  --microbubble-field-height: 136%;
  --microbubble-field-left: -34%;
  --microbubble-field-top: -17%;
  --microbubble-field-foreground-opacity: 0.18;
  --microbubble-field-duration: 32s;
  --microbubble-detail-duration: 41s;
  --microbubble-cloud-x-0: -64px;
  --microbubble-cloud-y-0: 12px;
  --microbubble-cloud-r-0: -1.35deg;
  --microbubble-cloud-x-1: 46px;
  --microbubble-cloud-y-1: -26px;
  --microbubble-cloud-r-1: 1.25deg;
  --microbubble-cloud-x-2: 72px;
  --microbubble-cloud-y-2: -16px;
  --microbubble-cloud-r-2: 1.7deg;
  --microbubble-cloud-x-3: -32px;
  --microbubble-cloud-y-3: 20px;
  --microbubble-cloud-r-3: -0.75deg;
  --motion-duration: 23s;
  --motion-x-0: -26px;
  --motion-y-0: 7px;
  --motion-x-1: 23px;
  --motion-y-1: -13px;
  --motion-x-2: 33px;
  --motion-y-2: -18px;
  --motion-x-3: -18px;
  --motion-y-3: 9px;
}

.feature-object--manufacturing,
.object-page-hero--manufacturing .page-hero-object {
  --microbubble-field: var(--thic-field-controlled);
  --microbubble-field-opacity: 0.98;
  --microbubble-field-width: 166%;
  --microbubble-field-height: 136%;
  --microbubble-field-left: -33%;
  --microbubble-field-top: -17%;
  --microbubble-field-foreground-opacity: 0.30;
  --microbubble-field-duration: 35s;
  --microbubble-detail-duration: 44s;
  --microbubble-cloud-x-0: -44px;
  --microbubble-cloud-y-0: 11px;
  --microbubble-cloud-r-0: -0.9deg;
  --microbubble-cloud-x-1: 30px;
  --microbubble-cloud-y-1: -21px;
  --microbubble-cloud-r-1: 0.75deg;
  --microbubble-cloud-x-2: 48px;
  --microbubble-cloud-y-2: -13px;
  --microbubble-cloud-r-2: 1.1deg;
  --microbubble-cloud-x-3: -20px;
  --microbubble-cloud-y-3: 17px;
  --microbubble-cloud-r-3: -0.48deg;
  --motion-duration: 24s;
  --motion-x-0: -16px;
  --motion-y-0: 6px;
  --motion-x-1: 16px;
  --motion-y-1: -10px;
  --motion-x-2: 20px;
  --motion-y-2: -14px;
  --motion-x-3: -12px;
  --motion-y-3: 7px;
}

.feature-object--innovation,
.object-page-hero--innovation .page-hero-object,
.work-hero-object {
  --microbubble-field: var(--thic-field-diffusion);
  --microbubble-field-opacity: 0.9;
  --microbubble-field-width: 158%;
  --microbubble-field-height: 136%;
  --microbubble-field-left: -29%;
  --microbubble-field-top: -18%;
  --microbubble-field-foreground-opacity: 0.16;
  --microbubble-field-duration: 30s;
  --microbubble-detail-duration: 39s;
  --microbubble-cloud-x-0: -50px;
  --microbubble-cloud-y-0: 10px;
  --microbubble-cloud-r-0: -1.15deg;
  --microbubble-cloud-x-1: 34px;
  --microbubble-cloud-y-1: -18px;
  --microbubble-cloud-r-1: 0.9deg;
  --microbubble-cloud-x-2: 58px;
  --microbubble-cloud-y-2: -11px;
  --microbubble-cloud-r-2: 1.25deg;
  --microbubble-cloud-x-3: -24px;
  --microbubble-cloud-y-3: 16px;
  --microbubble-cloud-r-3: -0.55deg;
  --motion-duration: 22s;
  --motion-x-0: -22px;
  --motion-y-0: 7px;
  --motion-x-1: 21px;
  --motion-y-1: -11px;
  --motion-x-2: 28px;
  --motion-y-2: -15px;
  --motion-x-3: -16px;
  --motion-y-3: 9px;
}

.feature-object--tablet {
  --microbubble-field-opacity: 0.92;
  --microbubble-field-foreground-opacity: 0.14;
  --microbubble-field-width: 150%;
  --microbubble-field-height: 128%;
  --microbubble-field-left: -24%;
  --microbubble-field-top: -13%;
}

@keyframes thicHydrogenCloudDrift {
  0% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) - 4px), calc(var(--thic-atmosphere-y, 0px) + 2px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) - 0.12deg)) scale(1.002);
  }

  34% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) + 5px), calc(var(--thic-atmosphere-y, 0px) - 3px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) + 0.1deg)) scale(1.008);
  }

  68% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) + 6px), calc(var(--thic-atmosphere-y, 0px) - 1px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) + 0.16deg)) scale(1.005);
  }

  100% {
    transform: translate3d(calc(var(--thic-atmosphere-x, 0px) - 3px), calc(var(--thic-atmosphere-y, 0px) + 3px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) - 0.08deg)) scale(1.003);
  }
}

@keyframes thicHydrogenCloudDetail {
  0% {
    transform: translate3d(calc(var(--thic-atmosphere-x-2, 0px) + 1px), calc(var(--thic-atmosphere-y-2, 0px) - 1px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) - 0.08deg)) scale(1.001);
  }

  56% {
    transform: translate3d(calc(var(--thic-atmosphere-x-2, 0px) - 2px), calc(var(--thic-atmosphere-y-2, 0px) + 2px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) + 0.06deg)) scale(1.006);
  }

  100% {
    transform: translate3d(calc(var(--thic-atmosphere-x-2, 0px) + 2px), calc(var(--thic-atmosphere-y-2, 0px) + 1px), 0) rotate(calc(var(--thic-atmosphere-rotate, 0deg) - 0.1deg)) scale(1.003);
  }
}

@media (max-width: 1024px) {
  .hero-object,
  .feature-object,
  .page-hero-object,
  .work-hero-object {
    --microbubble-field-width: 140%;
    --microbubble-field-height: 124%;
    --microbubble-field-left: -20%;
    --microbubble-field-top: -12%;
    --microbubble-cloud-x-0: -34px;
    --microbubble-cloud-y-0: 9px;
    --microbubble-cloud-x-1: 25px;
    --microbubble-cloud-y-1: -15px;
    --microbubble-cloud-x-2: 38px;
    --microbubble-cloud-y-2: -9px;
    --microbubble-cloud-x-3: -17px;
    --microbubble-cloud-y-3: 13px;
  }

  .hero-object--molecule {
    --microbubble-field-width: 144%;
    --microbubble-field-height: 122%;
    --microbubble-field-left: -22%;
    --microbubble-field-top: -11%;
  }

  .feature-chapter .feature-object--tablet,
  .object-page-hero .feature-object--tablet {
    width: min(92%, 640px) !important;
    max-width: 640px !important;
  }

  .future-platform {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(30px, 6vw, 48px);
    min-height: 0;
    padding-top: clamp(66px, 9vw, 92px);
    padding-bottom: clamp(70px, 10vw, 104px);
  }

  .future-platform .section-copy {
    max-width: 680px;
  }

  .future-platform .platform-constellation {
    width: min(88vw, 660px);
  }

  .work-hero .platform-constellation {
    width: min(86vw, 600px);
  }
}

@media (min-width: 1101px) {
  .hero-object,
  .home-hero .hero-object {
    position: absolute;
  }
}

@media (max-width: 1100px) {
  .hero-object,
  .home-hero .hero-object {
    position: relative;
  }
}

@media (max-width: 640px) {
  .feature-chapter,
  .feature-chapter--reverse {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 100vw;
    overflow: hidden;
  }

  .feature-chapter-copy {
    width: 100%;
    max-width: min(100%, calc(100vw - var(--page-pad) - var(--page-pad))) !important;
    min-width: 0;
  }

  .feature-chapter-copy h2,
  .feature-chapter-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .feature-chapter .feature-object,
  .feature-chapter .feature-object--science,
  .feature-chapter .feature-object--manufacturing,
  .feature-chapter .feature-object--technology,
  .feature-chapter .feature-object--innovation {
    width: min(88vw, 390px) !important;
    max-width: calc(100vw - var(--page-pad) - var(--page-pad)) !important;
    justify-self: center;
  }

  .feature-chapter .feature-object--tablet,
  .object-page-hero .feature-object--tablet {
    width: min(94vw, 410px) !important;
    max-width: calc(100vw - var(--page-pad) - var(--page-pad)) !important;
  }

  .hero-canvas {
    overflow: hidden;
  }

  .hero-object,
  .home-hero .hero-object {
    width: min(88vw, 350px) !important;
    max-width: calc(100vw - var(--page-pad) - var(--page-pad)) !important;
    justify-self: center;
  }

  .hero-object,
  .feature-object,
  .page-hero-object,
  .work-hero-object {
    --microbubble-field-opacity: 0.96;
    --microbubble-field-width: 138%;
    --microbubble-field-height: 122%;
    --microbubble-field-left: -19%;
    --microbubble-field-top: -11%;
    --microbubble-cloud-x-0: -20px;
    --microbubble-cloud-y-0: 7px;
    --microbubble-cloud-x-1: 15px;
    --microbubble-cloud-y-1: -10px;
    --microbubble-cloud-x-2: 24px;
    --microbubble-cloud-y-2: -7px;
    --microbubble-cloud-x-3: -12px;
    --microbubble-cloud-y-3: 9px;
  }

  .feature-object--innovation,
  .object-page-hero--innovation .page-hero-object,
  .work-hero-object {
    --microbubble-field-opacity: 0.9;
  }

  .feature-object--science,
  .object-page-hero--science .page-hero-object {
    --microbubble-field-foreground-opacity: 0.30;
  }

  .feature-object--manufacturing,
  .object-page-hero--manufacturing .page-hero-object {
    --microbubble-field-foreground-opacity: 0.24;
  }

  .future-platform {
    gap: clamp(24px, 8vw, 36px);
    padding-top: clamp(56px, 15vw, 72px);
    padding-bottom: clamp(62px, 16vw, 86px);
  }

  .future-platform .section-copy {
    max-width: 100%;
  }

  .future-platform .section-copy h2,
  .future-platform .section-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .future-platform .platform-constellation,
  .work-hero .platform-constellation {
    width: min(88vw, 430px);
    max-width: calc(100vw - var(--page-pad) - var(--page-pad));
    --platform-cloud-opacity: 0.94;
    --platform-cloud-focus-opacity: 0.24;
    --platform-cloud-duration: 48s;
    --platform-detail-duration: 62s;
  }
}

@keyframes thicObjectDriftMobileSafari {
  0%,
  100% {
    -webkit-transform: translate3d(-4px, 2px, 0) rotate(-0.08deg) scale(0.998);
    transform: translate3d(-4px, 2px, 0) rotate(-0.08deg) scale(0.998);
  }

  32% {
    -webkit-transform: translate3d(4px, -3px, 0) rotate(0.08deg) scale(1.004);
    transform: translate3d(4px, -3px, 0) rotate(0.08deg) scale(1.004);
  }

  64% {
    -webkit-transform: translate3d(6px, -2px, 0) rotate(0.14deg) scale(1.006);
    transform: translate3d(6px, -2px, 0) rotate(0.14deg) scale(1.006);
  }

  84% {
    -webkit-transform: translate3d(-3px, 3px, 0) rotate(-0.05deg) scale(1);
    transform: translate3d(-3px, 3px, 0) rotate(-0.05deg) scale(1);
  }
}

@keyframes thicHydrogenCloudDriftMobileSafari {
  0%,
  100% {
    -webkit-transform: translate3d(-4px, 2px, 0) rotate(-0.12deg) scale(1.002);
    transform: translate3d(-4px, 2px, 0) rotate(-0.12deg) scale(1.002);
  }

  34% {
    -webkit-transform: translate3d(5px, -3px, 0) rotate(0.1deg) scale(1.008);
    transform: translate3d(5px, -3px, 0) rotate(0.1deg) scale(1.008);
  }

  67% {
    -webkit-transform: translate3d(6px, -1px, 0) rotate(0.16deg) scale(1.005);
    transform: translate3d(6px, -1px, 0) rotate(0.16deg) scale(1.005);
  }

  86% {
    -webkit-transform: translate3d(-3px, 3px, 0) rotate(-0.08deg) scale(1.003);
    transform: translate3d(-3px, 3px, 0) rotate(-0.08deg) scale(1.003);
  }
}

@keyframes thicHydrogenCloudDetailMobileSafari {
  0% {
    -webkit-transform: translate3d(1px, -1px, 0) rotate(-0.08deg) scale(1.001);
    transform: translate3d(1px, -1px, 0) rotate(-0.08deg) scale(1.001);
  }

  58% {
    -webkit-transform: translate3d(-2px, 2px, 0) rotate(0.06deg) scale(1.006);
    transform: translate3d(-2px, 2px, 0) rotate(0.06deg) scale(1.006);
  }

  100% {
    -webkit-transform: translate3d(2px, 1px, 0) rotate(-0.1deg) scale(1.003);
    transform: translate3d(2px, 1px, 0) rotate(-0.1deg) scale(1.003);
  }
}

@keyframes thicPlatformCloudMobileSafari {
  0%,
  100% {
    -webkit-transform: translate3d(-4px, 2px, 0) rotate(-0.12deg) scale(1.002);
    transform: translate3d(-4px, 2px, 0) rotate(-0.12deg) scale(1.002);
  }

  36% {
    -webkit-transform: translate3d(5px, -3px, 0) rotate(0.1deg) scale(1.008);
    transform: translate3d(5px, -3px, 0) rotate(0.1deg) scale(1.008);
  }

  72% {
    -webkit-transform: translate3d(6px, -1px, 0) rotate(0.16deg) scale(1.005);
    transform: translate3d(6px, -1px, 0) rotate(0.16deg) scale(1.005);
  }
}

@keyframes thicPlatformOrbitMobileSafari {
  0%,
  100% {
    -webkit-transform: translate3d(calc(-50% - 12px), calc(-50% + 6px), 0) rotate(-0.35deg) scale(0.994);
    transform: translate3d(calc(-50% - 12px), calc(-50% + 6px), 0) rotate(-0.35deg) scale(0.994);
  }

  35% {
    -webkit-transform: translate3d(calc(-50% + 14px), calc(-50% - 10px), 0) rotate(0.32deg) scale(1.006);
    transform: translate3d(calc(-50% + 14px), calc(-50% - 10px), 0) rotate(0.32deg) scale(1.006);
  }

  68% {
    -webkit-transform: translate3d(calc(-50% + 24px), calc(-50% - 4px), 0) rotate(0.48deg) scale(1.01);
    transform: translate3d(calc(-50% + 24px), calc(-50% - 4px), 0) rotate(0.48deg) scale(1.01);
  }

  86% {
    -webkit-transform: translate3d(calc(-50% - 7px), calc(-50% + 12px), 0) rotate(-0.22deg) scale(0.998);
    transform: translate3d(calc(-50% - 7px), calc(-50% + 12px), 0) rotate(-0.22deg) scale(0.998);
  }
}

@keyframes thicPlatformOrbitAnchorMobileSafari {
  0%,
  100% {
    -webkit-transform: translate3d(calc(-50% - 1px), calc(-50% + 1px), 0) rotate(-0.03deg) scale(0.999);
    transform: translate3d(calc(-50% - 1px), calc(-50% + 1px), 0) rotate(-0.03deg) scale(0.999);
  }

  48% {
    -webkit-transform: translate3d(calc(-50% + 2px), calc(-50% - 1px), 0) rotate(0.04deg) scale(1.002);
    transform: translate3d(calc(-50% + 2px), calc(-50% - 1px), 0) rotate(0.04deg) scale(1.002);
  }

  76% {
    -webkit-transform: translate3d(calc(-50% + 3px), calc(-50% + 2px), 0) rotate(0.05deg) scale(1.001);
    transform: translate3d(calc(-50% + 3px), calc(-50% + 2px), 0) rotate(0.05deg) scale(1.001);
  }
}

@keyframes thicPlatformBreathMobileSafari {
  0% {
    -webkit-transform: scale(0.998);
    transform: scale(0.998);
  }

  100% {
    -webkit-transform: scale(1.004);
    transform: scale(1.004);
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  .hero-object img,
  .feature-object img,
  .page-hero-object img,
  .work-hero-object img {
    animation-name: thicObjectDriftMobileSafari;
    animation-duration: var(--motion-mobile-duration, 22s);
    animation-timing-function: cubic-bezier(0.42, 0, 0.18, 1);
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-play-state: running;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }

  .hero-object--molecule,
  .hero-object--infusion-system,
  .feature-object--technology {
    --motion-mobile-duration: 21s;
    --microbubble-mobile-duration: 24s;
    --microbubble-mobile-detail-duration: 29s;
  }

  .feature-object--science,
  .object-page-hero--science .page-hero-object {
    --motion-mobile-duration: 19s;
    --microbubble-mobile-duration: 22s;
    --microbubble-mobile-detail-duration: 27s;
  }

  .feature-object--manufacturing,
  .object-page-hero--manufacturing .page-hero-object {
    --motion-mobile-duration: 23s;
    --microbubble-mobile-duration: 28s;
    --microbubble-mobile-detail-duration: 32s;
  }

  .feature-object--innovation,
  .object-page-hero--innovation .page-hero-object,
  .work-hero-object {
    --motion-mobile-duration: 20s;
    --microbubble-mobile-duration: 25s;
    --microbubble-mobile-detail-duration: 30s;
  }

  .hero-object::before,
  .feature-object::before,
  .page-hero-object::before,
  .work-hero-object::before {
    animation-name: thicHydrogenCloudDriftMobileSafari;
    animation-duration: var(--microbubble-mobile-duration, 24s);
    animation-timing-function: cubic-bezier(0.45, 0, 0.28, 1);
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-play-state: running;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .hero-object::after,
  .feature-object::after,
  .page-hero-object::after,
  .work-hero-object::after {
    animation-name: thicHydrogenCloudDetailMobileSafari;
    animation-duration: var(--microbubble-mobile-detail-duration, 30s);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: both;
    animation-play-state: running;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .platform-constellation::before {
    animation-name: thicPlatformCloudMobileSafari;
    animation-duration: var(--platform-cloud-mobile-duration, 24s);
    animation-timing-function: cubic-bezier(0.45, 0, 0.28, 1);
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-play-state: running;
  }

  .platform-constellation::after {
    animation-name: thicHydrogenCloudDetailMobileSafari;
    animation-duration: 31s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: both;
    animation-play-state: running;
  }

  .platform-constellation__item {
    animation-name: thicPlatformOrbitMobileSafari;
    animation-duration: var(--platform-orbit-duration, 28s);
    animation-timing-function: cubic-bezier(0.45, 0, 0.28, 1);
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-play-state: running;
  }

  .platform-constellation__item--molecule {
    animation-name: thicPlatformOrbitAnchorMobileSafari;
    animation-duration: 36s;
  }

  .platform-constellation__item img {
    animation-name: thicPlatformBreathMobileSafari;
    animation-duration: var(--platform-breath-duration, 22s);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: both;
    animation-play-state: running;
  }

  body.thic-motion-runtime-ready :where(.hero-object img, .feature-object img, .page-hero-object img, .work-hero-object img, .platform-constellation__item, .platform-constellation__item img) {
    animation-play-state: running;
  }

  body.thic-motion-runtime-ready :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::before,
  body.thic-motion-runtime-ready :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object)::after,
  body.thic-motion-runtime-ready .platform-constellation::before,
  body.thic-motion-runtime-ready .platform-constellation::after {
    animation-play-state: running;
  }
}

.thic-motion-debug-panel {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  display: grid;
  gap: 2px;
  max-width: min(280px, calc(100vw - 24px));
  padding: 10px 12px;
  border: 1px solid rgba(47, 116, 123, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(7, 20, 45, 0.12);
  color: var(--ink);
  font-size: 11px;
  line-height: 1.35;
  pointer-events: none;
}

.thic-motion-debug-panel strong {
  color: var(--blue);
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-object::before,
  .hero-object::after,
  .feature-object::before,
  .feature-object::after,
  .page-hero-object::before,
  .page-hero-object::after,
  .work-hero-object::after,
  .work-hero-object::before {
    animation: none !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }
}

@media print {
  .thic-motion-debug-panel {
    display: none !important;
  }

  .platform-constellation,
  .platform-constellation::before,
  .platform-constellation::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .platform-constellation::before,
  .platform-constellation::after,
  .platform-constellation__item,
  .platform-constellation__item img {
    animation: none !important;
  }

  .platform-constellation::before {
    opacity: var(--platform-cloud-opacity, 0.92) !important;
  }

  .platform-constellation::after {
    opacity: var(--platform-cloud-focus-opacity, 0.22) !important;
  }

  .hero-object::before,
  .hero-object::after,
  .feature-object::before,
  .feature-object::after,
  .page-hero-object::before,
  .page-hero-object::after,
  .work-hero-object::after,
  .work-hero-object::before {
    display: block !important;
    content: "" !important;
    opacity: var(--microbubble-field-opacity, 0.94) !important;
    animation: none !important;
    transform: none !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .hero-object::after,
  .feature-object::after,
  .page-hero-object::after,
  .work-hero-object::after {
    opacity: var(--microbubble-field-foreground-opacity, 0.08) !important;
  }
}

/* ===== THIC discipline editorial pages ===== */
.discipline-page main {
  background: #fff;
}

.discipline-hero {
  background: #fff;
}

.discipline-hero .public-page-copy {
  max-width: 650px;
}

.discipline-hero .public-page-copy p {
  max-width: 590px;
  color: var(--text);
}

.discipline-hero .public-page-copy p + p {
  margin-top: 18px;
}

.object-page-hero--technology .page-hero-object {
  --feature-object-width: clamp(440px, 42vw, 680px);
}

.discipline-chapters {
  position: sticky;
  top: clamp(88px, 7vw, 116px);
  z-index: 9;
  padding: 0 var(--page-pad);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(213, 232, 232, 0.78);
  backdrop-filter: blur(18px);
}

.discipline-chapters__inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  width: 100%;
  min-width: 0;
  max-width: 1360px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.discipline-chapters__inner::-webkit-scrollbar {
  display: none;
}

.discipline-chapters a {
  flex: 0 0 auto;
  padding: 18px 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.discipline-chapters a:hover {
  color: var(--blue);
}

.discipline-editorial {
  background: #fff;
}

.discipline-thesis,
.discipline-principles,
.discipline-section,
.discipline-process,
.discipline-connection,
.discipline-cta {
  padding: clamp(58px, 7vw, 104px) var(--page-pad);
  border-bottom: 1px solid rgba(213, 232, 232, 0.72);
}

.discipline-thesis__inner,
.discipline-principles__inner,
.discipline-section__inner,
.discipline-process__inner,
.discipline-connection__inner,
.discipline-cta__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.discipline-thesis__inner,
.discipline-connection__inner,
.discipline-cta__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 108px);
  align-items: start;
}

.discipline-thesis h2,
.discipline-section h2,
.discipline-process h2,
.discipline-connection h2,
.discipline-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.discipline-section h2,
.discipline-process h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.discipline-thesis p,
.discipline-section p,
.discipline-process p,
.discipline-connection p,
.discipline-cta p {
  max-width: 690px;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.82;
}

.discipline-thesis p + p,
.discipline-section p + p,
.discipline-process p + p,
.discipline-connection p + p,
.discipline-cta p + p {
  margin-top: 18px;
}

.discipline-kicker {
  max-width: 420px;
}

.discipline-kicker p {
  color: var(--muted);
}

.discipline-callout {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(213, 232, 232, 0.92);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: 0 20px 58px rgba(18, 45, 92, 0.08);
}

.discipline-callout strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.discipline-callout ul,
.discipline-checklist {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.discipline-callout li,
.discipline-checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.discipline-callout li::before,
.discipline-checklist li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.discipline-principles {
  background: #f8fbff;
}

.discipline-principles__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.discipline-principles__header h2 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.discipline-principles__header p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.discipline-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.86);
  border-radius: 8px;
  background: rgba(213, 232, 232, 0.86);
  box-shadow: 0 18px 54px rgba(18, 45, 92, 0.06);
}

.discipline-principle {
  min-height: 260px;
  padding: clamp(26px, 3.4vw, 42px);
  background: #fff;
}

.discipline-principle h3 {
  margin: 14px 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.18;
}

.discipline-principle p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.78;
}

.discipline-principle a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.discipline-section--soft,
.discipline-connection {
  background: #fbfdff;
}

.discipline-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 106px);
  align-items: center;
}

.discipline-section--reverse .discipline-section__inner {
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.64fr);
}

.discipline-section--reverse .discipline-section__copy {
  grid-column: 2;
}

.discipline-section--reverse .discipline-section__visual {
  grid-column: 1;
  grid-row: 1;
}

.discipline-section__copy {
  max-width: 720px;
}

.discipline-section__copy .eyebrow,
.discipline-principle .eyebrow,
.discipline-process .eyebrow,
.discipline-connection .eyebrow,
.discipline-cta .eyebrow {
  color: var(--blue);
}

.discipline-section__copy h2 {
  margin-bottom: 24px;
}

.discipline-section__copy h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.discipline-section__visual {
  min-width: 0;
}

.editorial-visual-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 30vw, 420px);
  overflow: visible;
}

.editorial-visual-stage::before {
  content: "";
  position: absolute;
  inset: 9% 4%;
  z-index: 0;
  border: 1px solid rgba(213, 232, 232, 0.62);
  border-radius: 999px;
  opacity: 0.42;
  transform: rotate(-8deg);
  pointer-events: none;
}

.editorial-mini-object {
  width: min(82%, 420px) !important;
  max-width: 420px !important;
}

.editorial-mini-object.feature-object--science {
  max-width: 330px !important;
}

.editorial-mini-object.feature-object--technology {
  max-width: 470px !important;
}

.editorial-mini-object.feature-object--tablet {
  max-width: 520px !important;
}

/* ===== THIC artefact visual-stage containment ===== */
.hero-object,
.feature-object,
.page-hero-object,
.work-hero-object {
  --visual-stage-ratio: 1.54;
  --visual-stage-padding: 8%;
  --visual-stage-radius: 18px;
  --visual-object-width: 82%;
  --visual-object-max-height: 78%;
  --motion-duration: 18s;
  --motion-shadow-duration: 22s;
  --motion-ease: cubic-bezier(0.45, 0, 0.22, 1);
  --motion-s-0: 0.992;
  --motion-s-1: 1.006;
  --motion-s-2: 1.012;
  --motion-s-3: 0.998;
  --motion-shadow-x-0: -10px;
  --motion-shadow-y-0: 1px;
  --motion-shadow-x-1: 9px;
  --motion-shadow-y-1: -2px;
  --motion-shadow-x-2: 14px;
  --motion-shadow-y-2: -3px;
  --motion-shadow-x-3: -7px;
  --motion-shadow-y-3: 2px;
  --microbubble-field-width: 90%;
  --microbubble-field-height: 78%;
  --microbubble-field-left: 5%;
  --microbubble-field-top: 11%;
  display: grid;
  place-items: center;
  aspect-ratio: var(--visual-stage-ratio);
  border: 0;
  border-radius: var(--visual-stage-radius);
  outline: 1px solid rgba(213, 232, 232, 0);
  overflow: hidden;
  overflow: clip;
  contain: paint;
  isolation: isolate;
}

@supports not (overflow: clip) {
  .hero-object,
  .feature-object,
  .page-hero-object,
  .work-hero-object,
  .platform-constellation {
    overflow: hidden;
  }
}

.hero-object img,
.feature-object img,
.page-hero-object img,
.work-hero-object img {
  width: var(--visual-object-width);
  max-width: calc(100% - var(--visual-stage-padding) - var(--visual-stage-padding));
  max-height: var(--visual-object-max-height);
  object-fit: contain;
  animation-name: thicObjectDriftContained;
  animation-duration: var(--motion-duration);
  animation-timing-function: var(--motion-ease);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-object::before,
.feature-object::before,
.page-hero-object::before,
.work-hero-object::before,
.hero-object::after,
.feature-object::after,
.page-hero-object::after,
.work-hero-object::after {
  left: var(--microbubble-field-left);
  top: var(--microbubble-field-top);
  width: var(--microbubble-field-width);
  height: var(--microbubble-field-height);
}

.hero-object-shadow,
.feature-object-shadow {
  bottom: var(--visual-shadow-bottom, 8%);
  animation-name: thicObjectShadowContained;
  animation-duration: var(--motion-shadow-duration);
}

@keyframes thicObjectDriftContained {
  0%,
  100% {
    -webkit-transform: translate3d(calc(var(--motion-ambient-x-0, -4px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-0, 2px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-0, -0.08deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-0, 0.998));
    transform: translate3d(calc(var(--motion-ambient-x-0, -4px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-0, 2px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-0, -0.08deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-0, 0.998));
  }

  28% {
    -webkit-transform: translate3d(calc(var(--motion-ambient-x-1, 4px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-1, -3px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-1, 0.08deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-1, 1.004));
    transform: translate3d(calc(var(--motion-ambient-x-1, 4px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-1, -3px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-1, 0.08deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-1, 1.004));
  }

  56% {
    -webkit-transform: translate3d(calc(var(--motion-ambient-x-2, 6px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-2, -2px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-2, 0.14deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-2, 1.006));
    transform: translate3d(calc(var(--motion-ambient-x-2, 6px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-2, -2px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-2, 0.14deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-2, 1.006));
  }

  78% {
    -webkit-transform: translate3d(calc(var(--motion-ambient-x-3, -3px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-3, 3px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-3, -0.05deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-3, 1.001));
    transform: translate3d(calc(var(--motion-ambient-x-3, -3px) + var(--motion-mouse-x)), calc(var(--motion-ambient-y-3, 3px) + var(--motion-mouse-y)), 0) rotate(calc(var(--motion-ambient-r-3, -0.05deg) + var(--motion-mouse-r))) scale(var(--motion-ambient-s-3, 1.001));
  }
}

@keyframes thicObjectShadowContained {
  0%,
  100% {
    opacity: var(--motion-shadow-opacity-0);
    filter: blur(var(--motion-shadow-blur-base));
    -webkit-transform: translate3d(calc(-50% + var(--motion-shadow-x-0)), var(--motion-shadow-y-0), 0) scaleX(var(--motion-shadow-scale-0)) scaleY(1);
    transform: translate3d(calc(-50% + var(--motion-shadow-x-0)), var(--motion-shadow-y-0), 0) scaleX(var(--motion-shadow-scale-0)) scaleY(1);
  }

  28% {
    opacity: var(--motion-shadow-opacity-1);
    filter: blur(var(--motion-shadow-blur-base));
    -webkit-transform: translate3d(calc(-50% + var(--motion-shadow-x-1)), var(--motion-shadow-y-1), 0) scaleX(var(--motion-shadow-scale-1)) scaleY(0.94);
    transform: translate3d(calc(-50% + var(--motion-shadow-x-1)), var(--motion-shadow-y-1), 0) scaleX(var(--motion-shadow-scale-1)) scaleY(0.94);
  }

  56% {
    opacity: var(--motion-shadow-opacity-2);
    filter: blur(var(--motion-shadow-blur-base));
    -webkit-transform: translate3d(calc(-50% + var(--motion-shadow-x-2)), var(--motion-shadow-y-2), 0) scaleX(var(--motion-shadow-scale-2)) scaleY(1.04);
    transform: translate3d(calc(-50% + var(--motion-shadow-x-2)), var(--motion-shadow-y-2), 0) scaleX(var(--motion-shadow-scale-2)) scaleY(1.04);
  }

  78% {
    opacity: var(--motion-shadow-opacity-3);
    filter: blur(var(--motion-shadow-blur-base));
    -webkit-transform: translate3d(calc(-50% + var(--motion-shadow-x-3)), var(--motion-shadow-y-3), 0) scaleX(var(--motion-shadow-scale-3)) scaleY(0.97);
    transform: translate3d(calc(-50% + var(--motion-shadow-x-3)), var(--motion-shadow-y-3), 0) scaleX(var(--motion-shadow-scale-3)) scaleY(0.97);
  }
}

.hero-object--molecule {
  --visual-stage-ratio: 1.58;
  --visual-object-width: 78%;
  --visual-object-max-height: 74%;
  --motion-duration: 18s;
  --motion-shadow-duration: 21s;
  --motion-delay: -5s;
  --motion-shadow-delay: -9s;
  --motion-x-0: -34px;
  --motion-y-0: 14px;
  --motion-r-0: -1.15deg;
  --motion-s-0: 0.992;
  --motion-x-1: 28px;
  --motion-y-1: -16px;
  --motion-r-1: 0.88deg;
  --motion-s-1: 1.006;
  --motion-x-2: 42px;
  --motion-y-2: -24px;
  --motion-r-2: 1.55deg;
  --motion-s-2: 1.012;
  --motion-x-3: -26px;
  --motion-y-3: 18px;
  --motion-r-3: -0.72deg;
  --motion-s-3: 0.998;
  --microbubble-field-width: 92%;
  --microbubble-field-height: 80%;
  --microbubble-field-left: 4%;
  --microbubble-field-top: 10%;
  --microbubble-field-duration: 22s;
  --microbubble-detail-duration: 27s;
  --microbubble-cloud-x-0: -34px;
  --microbubble-cloud-y-0: 10px;
  --microbubble-cloud-r-0: -1.15deg;
  --microbubble-cloud-x-1: 25px;
  --microbubble-cloud-y-1: -14px;
  --microbubble-cloud-r-1: 0.88deg;
  --microbubble-cloud-x-2: 38px;
  --microbubble-cloud-y-2: -10px;
  --microbubble-cloud-r-2: 1.2deg;
  --microbubble-cloud-x-3: -18px;
  --microbubble-cloud-y-3: 14px;
  --microbubble-cloud-r-3: -0.55deg;
}

.feature-object--science,
.object-page-hero--science .page-hero-object {
  --visual-stage-ratio: 1.72;
  --visual-object-width: 78%;
  --visual-object-max-height: 72%;
  --motion-duration: 16s;
  --motion-shadow-duration: 19s;
  --motion-delay: -6s;
  --motion-shadow-delay: -11s;
  --motion-x-0: -34px;
  --motion-y-0: 11px;
  --motion-r-0: -0.58deg;
  --motion-s-0: 0.994;
  --motion-x-1: 30px;
  --motion-y-1: -14px;
  --motion-r-1: 0.42deg;
  --motion-s-1: 1.005;
  --motion-x-2: 40px;
  --motion-y-2: -20px;
  --motion-r-2: 0.72deg;
  --motion-s-2: 1.008;
  --motion-x-3: -26px;
  --motion-y-3: 14px;
  --motion-r-3: -0.32deg;
  --motion-s-3: 0.998;
  --microbubble-field-width: 88%;
  --microbubble-field-height: 76%;
  --microbubble-field-left: 6%;
  --microbubble-field-top: 12%;
  --microbubble-field-duration: 20s;
  --microbubble-detail-duration: 25s;
  --microbubble-cloud-x-0: -28px;
  --microbubble-cloud-y-0: 8px;
  --microbubble-cloud-r-0: -0.8deg;
  --microbubble-cloud-x-1: 21px;
  --microbubble-cloud-y-1: -12px;
  --microbubble-cloud-r-1: 0.62deg;
  --microbubble-cloud-x-2: 32px;
  --microbubble-cloud-y-2: -8px;
  --microbubble-cloud-r-2: 0.85deg;
  --microbubble-cloud-x-3: -16px;
  --microbubble-cloud-y-3: 12px;
  --microbubble-cloud-r-3: -0.42deg;
}

.feature-object--technology,
.hero-object--infusion-system,
.hero-art-technology .hero-object,
.object-page-hero--technology .page-hero-object {
  --visual-stage-ratio: 1.62;
  --visual-object-width: 80%;
  --visual-object-max-height: 75%;
  --motion-duration: 19s;
  --motion-shadow-duration: 23s;
  --motion-delay: -8s;
  --motion-shadow-delay: -13s;
  --motion-x-0: -28px;
  --motion-y-0: 12px;
  --motion-r-0: -0.82deg;
  --motion-s-0: 0.994;
  --motion-x-1: 25px;
  --motion-y-1: -15px;
  --motion-r-1: 0.62deg;
  --motion-s-1: 1.004;
  --motion-x-2: 35px;
  --motion-y-2: -21px;
  --motion-r-2: 1.08deg;
  --motion-s-2: 1.008;
  --motion-x-3: -21px;
  --motion-y-3: 15px;
  --motion-r-3: -0.42deg;
  --motion-s-3: 0.998;
  --microbubble-field-width: 90%;
  --microbubble-field-height: 78%;
  --microbubble-field-left: 5%;
  --microbubble-field-top: 11%;
  --microbubble-field-duration: 23s;
  --microbubble-detail-duration: 29s;
  --microbubble-cloud-x-0: -30px;
  --microbubble-cloud-y-0: 9px;
  --microbubble-cloud-r-0: -0.95deg;
  --microbubble-cloud-x-1: 22px;
  --microbubble-cloud-y-1: -14px;
  --microbubble-cloud-r-1: 0.72deg;
  --microbubble-cloud-x-2: 34px;
  --microbubble-cloud-y-2: -9px;
  --microbubble-cloud-r-2: 1.05deg;
  --microbubble-cloud-x-3: -17px;
  --microbubble-cloud-y-3: 13px;
  --microbubble-cloud-r-3: -0.48deg;
}

.feature-object--manufacturing,
.object-page-hero--manufacturing .page-hero-object {
  --visual-stage-ratio: 1.58;
  --visual-object-width: 80%;
  --visual-object-max-height: 74%;
  --motion-duration: 20s;
  --motion-shadow-duration: 24s;
  --motion-delay: -10s;
  --motion-shadow-delay: -15s;
  --motion-x-0: -24px;
  --motion-y-0: 10px;
  --motion-r-0: -0.48deg;
  --motion-s-0: 0.994;
  --motion-x-1: 22px;
  --motion-y-1: -13px;
  --motion-r-1: 0.38deg;
  --motion-s-1: 1.004;
  --motion-x-2: 30px;
  --motion-y-2: -18px;
  --motion-r-2: 0.72deg;
  --motion-s-2: 1.006;
  --motion-x-3: -18px;
  --motion-y-3: 12px;
  --motion-r-3: -0.28deg;
  --motion-s-3: 0.998;
  --microbubble-field-width: 88%;
  --microbubble-field-height: 76%;
  --microbubble-field-left: 6%;
  --microbubble-field-top: 12%;
  --microbubble-field-duration: 24s;
  --microbubble-detail-duration: 30s;
  --microbubble-cloud-x-0: -25px;
  --microbubble-cloud-y-0: 8px;
  --microbubble-cloud-r-0: -0.72deg;
  --microbubble-cloud-x-1: 19px;
  --microbubble-cloud-y-1: -12px;
  --microbubble-cloud-r-1: 0.52deg;
  --microbubble-cloud-x-2: 29px;
  --microbubble-cloud-y-2: -8px;
  --microbubble-cloud-r-2: 0.78deg;
  --microbubble-cloud-x-3: -14px;
  --microbubble-cloud-y-3: 11px;
  --microbubble-cloud-r-3: -0.36deg;
}

.feature-object--innovation,
.feature-object--tablet,
.object-page-hero--innovation .page-hero-object,
.work-hero-object {
  --visual-stage-ratio: 1.68;
  --visual-object-width: 80%;
  --visual-object-max-height: 74%;
  --motion-duration: 17s;
  --motion-shadow-duration: 21s;
  --motion-delay: -7s;
  --motion-shadow-delay: -12s;
  --motion-x-0: -32px;
  --motion-y-0: 12px;
  --motion-r-0: -0.82deg;
  --motion-s-0: 0.994;
  --motion-x-1: 30px;
  --motion-y-1: -14px;
  --motion-r-1: 0.7deg;
  --motion-s-1: 1.006;
  --motion-x-2: 42px;
  --motion-y-2: -20px;
  --motion-r-2: 1.16deg;
  --motion-s-2: 1.01;
  --motion-x-3: -22px;
  --motion-y-3: 15px;
  --motion-r-3: -0.42deg;
  --motion-s-3: 0.998;
  --microbubble-field-width: 88%;
  --microbubble-field-height: 76%;
  --microbubble-field-left: 6%;
  --microbubble-field-top: 12%;
  --microbubble-field-duration: 21s;
  --microbubble-detail-duration: 27s;
  --microbubble-cloud-x-0: -28px;
  --microbubble-cloud-y-0: 8px;
  --microbubble-cloud-r-0: -0.78deg;
  --microbubble-cloud-x-1: 21px;
  --microbubble-cloud-y-1: -12px;
  --microbubble-cloud-r-1: 0.62deg;
  --microbubble-cloud-x-2: 32px;
  --microbubble-cloud-y-2: -8px;
  --microbubble-cloud-r-2: 0.88deg;
  --microbubble-cloud-x-3: -15px;
  --microbubble-cloud-y-3: 12px;
  --microbubble-cloud-r-3: -0.4deg;
}

.editorial-mini-object {
  --visual-object-width: 76%;
  --visual-object-max-height: 72%;
  --visual-stage-radius: 16px;
}

.editorial-visual-stage {
  overflow: hidden;
}

.platform-constellation {
  --platform-cloud-duration: 48s;
  --platform-detail-duration: 62s;
  border: 0;
  border-radius: 22px;
  outline: 1px solid rgba(213, 232, 232, 0);
  overflow: hidden;
  overflow: clip;
  contain: paint;
}

.platform-constellation::before {
  inset: 9% 8% 10% 8%;
}

.platform-constellation::after {
  inset: 20% 20% 20% 19%;
}

.platform-constellation__item {
  animation-name: thicPlatformOrbitContained;
}

@keyframes thicPlatformOrbitContained {
  0%,
  100% {
    -webkit-transform: translate3d(calc(-50% + var(--platform-orbit-x-0)), calc(-50% + var(--platform-orbit-y-0)), 0) rotate(var(--platform-orbit-r-0)) scale(var(--platform-orbit-s-0));
    transform: translate3d(calc(-50% + var(--platform-orbit-x-0)), calc(-50% + var(--platform-orbit-y-0)), 0) rotate(var(--platform-orbit-r-0)) scale(var(--platform-orbit-s-0));
  }

  34% {
    -webkit-transform: translate3d(calc(-50% + var(--platform-orbit-x-1)), calc(-50% + var(--platform-orbit-y-1)), 0) rotate(var(--platform-orbit-r-1)) scale(var(--platform-orbit-s-1));
    transform: translate3d(calc(-50% + var(--platform-orbit-x-1)), calc(-50% + var(--platform-orbit-y-1)), 0) rotate(var(--platform-orbit-r-1)) scale(var(--platform-orbit-s-1));
  }

  68% {
    -webkit-transform: translate3d(calc(-50% + var(--platform-orbit-x-2)), calc(-50% + var(--platform-orbit-y-2)), 0) rotate(var(--platform-orbit-r-2)) scale(var(--platform-orbit-s-2));
    transform: translate3d(calc(-50% + var(--platform-orbit-x-2)), calc(-50% + var(--platform-orbit-y-2)), 0) rotate(var(--platform-orbit-r-2)) scale(var(--platform-orbit-s-2));
  }

  84% {
    -webkit-transform: translate3d(calc(-50% + var(--platform-orbit-x-3)), calc(-50% + var(--platform-orbit-y-3)), 0) rotate(var(--platform-orbit-r-3)) scale(var(--platform-orbit-s-3));
    transform: translate3d(calc(-50% + var(--platform-orbit-x-3)), calc(-50% + var(--platform-orbit-y-3)), 0) rotate(var(--platform-orbit-r-3)) scale(var(--platform-orbit-s-3));
  }
}

.platform-constellation__item--molecule {
  --platform-item-width: 27%;
  --platform-item-left: 50%;
  --platform-item-top: 51%;
  --platform-orbit-duration: 24s;
  --platform-orbit-x-0: -4px;
  --platform-orbit-y-0: 2px;
  --platform-orbit-r-0: -0.04deg;
  --platform-orbit-s-0: 0.998;
  --platform-orbit-x-1: 5px;
  --platform-orbit-y-1: -3px;
  --platform-orbit-r-1: 0.05deg;
  --platform-orbit-s-1: 1.002;
  --platform-orbit-x-2: 7px;
  --platform-orbit-y-2: 3px;
  --platform-orbit-r-2: 0.06deg;
  --platform-orbit-s-2: 1.002;
  --platform-orbit-x-3: -4px;
  --platform-orbit-y-3: 4px;
  --platform-orbit-r-3: -0.03deg;
  --platform-orbit-s-3: 0.999;
}

.platform-constellation__item--science {
  --platform-item-width: 23%;
  --platform-item-left: 78%;
  --platform-item-top: 25%;
  --platform-orbit-duration: 20s;
  --platform-orbit-x-0: -24px;
  --platform-orbit-y-0: -7px;
  --platform-orbit-r-0: -0.7deg;
  --platform-orbit-s-0: 0.994;
  --platform-orbit-x-1: 18px;
  --platform-orbit-y-1: 7px;
  --platform-orbit-r-1: 0.5deg;
  --platform-orbit-s-1: 1.006;
  --platform-orbit-x-2: 28px;
  --platform-orbit-y-2: 12px;
  --platform-orbit-r-2: 0.85deg;
  --platform-orbit-s-2: 1.004;
  --platform-orbit-x-3: -15px;
  --platform-orbit-y-3: -6px;
  --platform-orbit-r-3: -0.35deg;
  --platform-orbit-s-3: 0.998;
}

.platform-constellation__item--technology {
  --platform-item-width: 28%;
  --platform-item-left: 25%;
  --platform-item-top: 31%;
  --platform-orbit-duration: 22s;
  --platform-orbit-x-0: -26px;
  --platform-orbit-y-0: 8px;
  --platform-orbit-r-0: -0.9deg;
  --platform-orbit-s-0: 0.994;
  --platform-orbit-x-1: 18px;
  --platform-orbit-y-1: -13px;
  --platform-orbit-r-1: 0.65deg;
  --platform-orbit-s-1: 1.006;
  --platform-orbit-x-2: 30px;
  --platform-orbit-y-2: -7px;
  --platform-orbit-r-2: 1.1deg;
  --platform-orbit-s-2: 1.004;
  --platform-orbit-x-3: -15px;
  --platform-orbit-y-3: 11px;
  --platform-orbit-r-3: -0.35deg;
  --platform-orbit-s-3: 0.998;
}

.platform-constellation__item--manufacturing {
  --platform-item-width: 25%;
  --platform-item-left: 25%;
  --platform-item-top: 76%;
  --platform-orbit-duration: 23s;
  --platform-orbit-x-0: 18px;
  --platform-orbit-y-0: 8px;
  --platform-orbit-r-0: 0.55deg;
  --platform-orbit-s-0: 0.994;
  --platform-orbit-x-1: -20px;
  --platform-orbit-y-1: -7px;
  --platform-orbit-r-1: -0.45deg;
  --platform-orbit-s-1: 1.006;
  --platform-orbit-x-2: -14px;
  --platform-orbit-y-2: -15px;
  --platform-orbit-r-2: -0.8deg;
  --platform-orbit-s-2: 1.004;
  --platform-orbit-x-3: 22px;
  --platform-orbit-y-3: 4px;
  --platform-orbit-r-3: 0.28deg;
  --platform-orbit-s-3: 0.998;
}

.platform-constellation__item--innovation {
  --platform-item-width: 24%;
  --platform-item-left: 77%;
  --platform-item-top: 75%;
  --platform-orbit-duration: 21s;
  --platform-orbit-x-0: 20px;
  --platform-orbit-y-0: -7px;
  --platform-orbit-r-0: 0.55deg;
  --platform-orbit-s-0: 0.994;
  --platform-orbit-x-1: -16px;
  --platform-orbit-y-1: 13px;
  --platform-orbit-r-1: -0.65deg;
  --platform-orbit-s-1: 1.006;
  --platform-orbit-x-2: -26px;
  --platform-orbit-y-2: 8px;
  --platform-orbit-r-2: -0.9deg;
  --platform-orbit-s-2: 1.004;
  --platform-orbit-x-3: 10px;
  --platform-orbit-y-3: -12px;
  --platform-orbit-r-3: 0.35deg;
  --platform-orbit-s-3: 0.998;
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  .hero-object img,
  .feature-object img,
  .page-hero-object img,
  .work-hero-object img {
    animation-name: thicObjectDriftContained;
    animation-duration: var(--motion-mobile-duration, var(--motion-duration));
  }

  .hero-object::before,
  .feature-object::before,
  .page-hero-object::before,
  .work-hero-object::before {
    animation-name: thicHydrogenCloudDrift;
    animation-duration: var(--microbubble-mobile-duration, var(--microbubble-field-duration));
  }

  .hero-object::after,
  .feature-object::after,
  .page-hero-object::after,
  .work-hero-object::after {
    animation-name: thicHydrogenCloudDetail;
    animation-duration: var(--microbubble-mobile-detail-duration, var(--microbubble-detail-duration));
  }

  .platform-constellation::before {
    animation-name: thicPlatformCloud;
    animation-duration: var(--platform-cloud-mobile-duration, var(--platform-cloud-duration));
  }

  .platform-constellation::after {
    animation-name: thicPlatformCloudDetail;
    animation-duration: var(--platform-detail-mobile-duration, var(--platform-detail-duration));
  }

  .platform-constellation__item {
    animation-name: thicPlatformOrbitContained;
    animation-duration: var(--platform-orbit-duration, 22s);
  }

  .platform-constellation__item--molecule {
    animation-duration: var(--platform-orbit-duration, 24s);
  }
}

@media (max-width: 760px) {
  .hero-object,
  .feature-object,
  .page-hero-object,
  .work-hero-object {
    --visual-stage-padding: 6%;
    --visual-object-width: 78%;
    --visual-object-max-height: 74%;
    --microbubble-field-width: 86%;
    --microbubble-field-height: 74%;
    --microbubble-field-left: 7%;
    --microbubble-field-top: 13%;
    --microbubble-cloud-x-0: -18px;
    --microbubble-cloud-y-0: 7px;
    --microbubble-cloud-x-1: 14px;
    --microbubble-cloud-y-1: -9px;
    --microbubble-cloud-x-2: 22px;
    --microbubble-cloud-y-2: -7px;
    --microbubble-cloud-x-3: -11px;
    --microbubble-cloud-y-3: 9px;
  }

  .hero-object--molecule {
    --motion-mobile-duration: 18s;
    --motion-x-0: -14px;
    --motion-y-0: 6px;
    --motion-x-1: 10px;
    --motion-y-1: -8px;
    --motion-x-2: 16px;
    --motion-y-2: -12px;
    --motion-x-3: -12px;
    --motion-y-3: 8px;
  }

  .feature-object--science,
  .object-page-hero--science .page-hero-object {
    --motion-mobile-duration: 16s;
    --motion-x-0: -28px;
    --motion-y-0: 7px;
    --motion-x-1: 22px;
    --motion-y-1: -9px;
    --motion-x-2: 34px;
    --motion-y-2: -14px;
    --motion-x-3: -18px;
    --motion-y-3: 9px;
  }

  .feature-object--technology,
  .hero-object--infusion-system,
  .hero-art-technology .hero-object,
  .object-page-hero--technology .page-hero-object {
    --motion-mobile-duration: 19s;
    --motion-x-0: -18px;
    --motion-y-0: 7px;
    --motion-x-1: 17px;
    --motion-y-1: -10px;
    --motion-x-2: 25px;
    --motion-y-2: -15px;
    --motion-x-3: -14px;
    --motion-y-3: 10px;
  }

  .feature-object--manufacturing,
  .object-page-hero--manufacturing .page-hero-object {
    --motion-mobile-duration: 20s;
    --motion-x-0: -16px;
    --motion-y-0: 7px;
    --motion-x-1: 15px;
    --motion-y-1: -9px;
    --motion-x-2: 22px;
    --motion-y-2: -14px;
    --motion-x-3: -12px;
    --motion-y-3: 9px;
  }

  .feature-object--innovation,
  .feature-object--tablet,
  .object-page-hero--innovation .page-hero-object,
  .work-hero-object {
    --motion-mobile-duration: 17s;
    --motion-x-0: -20px;
    --motion-y-0: 8px;
    --motion-x-1: 18px;
    --motion-y-1: -10px;
    --motion-x-2: 28px;
    --motion-y-2: -15px;
    --motion-x-3: -14px;
    --motion-y-3: 10px;
  }

  .platform-constellation {
    --platform-cloud-mobile-duration: 48s;
    --platform-detail-mobile-duration: 62s;
  }

  .platform-constellation__item--science {
    --platform-item-left: 76%;
    --platform-item-top: 27%;
    --platform-orbit-x-0: -14px;
    --platform-orbit-y-0: -5px;
    --platform-orbit-x-1: 12px;
    --platform-orbit-y-1: 5px;
    --platform-orbit-x-2: 18px;
    --platform-orbit-y-2: 8px;
    --platform-orbit-x-3: -10px;
    --platform-orbit-y-3: -5px;
  }

  .platform-constellation__item--technology {
    --platform-item-left: 27%;
    --platform-item-top: 31%;
    --platform-orbit-x-0: -16px;
    --platform-orbit-y-0: 6px;
    --platform-orbit-x-1: 12px;
    --platform-orbit-y-1: -8px;
    --platform-orbit-x-2: 18px;
    --platform-orbit-y-2: -5px;
    --platform-orbit-x-3: -10px;
    --platform-orbit-y-3: 7px;
  }

  .platform-constellation__item--manufacturing {
    --platform-item-left: 27%;
    --platform-item-top: 73%;
    --platform-orbit-x-0: 12px;
    --platform-orbit-y-0: 6px;
    --platform-orbit-x-1: -13px;
    --platform-orbit-y-1: -6px;
    --platform-orbit-x-2: -10px;
    --platform-orbit-y-2: -10px;
    --platform-orbit-x-3: 14px;
    --platform-orbit-y-3: 4px;
  }

  .platform-constellation__item--innovation {
    --platform-item-left: 75%;
    --platform-item-top: 73%;
    --platform-orbit-x-0: 13px;
    --platform-orbit-y-0: -6px;
    --platform-orbit-x-1: -12px;
    --platform-orbit-y-1: 9px;
    --platform-orbit-x-2: -18px;
    --platform-orbit-y-2: 6px;
    --platform-orbit-x-3: 8px;
    --platform-orbit-y-3: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-object,
  .feature-object,
  .page-hero-object,
  .work-hero-object,
  .platform-constellation {
    --motion-mouse-x: 0px;
    --motion-mouse-y: 0px;
    --motion-mouse-r: 0deg;
    --thic-atmosphere-x: 0px;
    --thic-atmosphere-y: 0px;
    --thic-atmosphere-x-2: 0px;
    --thic-atmosphere-y-2: 0px;
    --thic-atmosphere-rotate: 0deg;
  }

  .hero-object img,
  .feature-object img,
  .page-hero-object img,
  .work-hero-object img,
  .hero-object-shadow,
  .feature-object-shadow,
  .platform-constellation::before,
  .platform-constellation::after,
  .platform-constellation__item,
  .platform-constellation__item img {
    animation: none !important;
  }

  .hero-object img,
  .feature-object img,
  .page-hero-object img,
  .work-hero-object img {
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  .hero-object-shadow,
  .feature-object-shadow {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  .platform-constellation__item {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
    transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
  }

  .platform-constellation__item img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ===== THIC public hero responsive contract ===== */
@media (min-width: 768px) {
  .tech-hero .hero-canvas,
  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter,
  .feature-chapter--reverse {
    display: grid;
    align-items: center;
    overflow: hidden;
  }

  .tech-hero .hero-canvas,
  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter {
    grid-template-columns: minmax(0, 55fr) minmax(300px, 45fr) !important;
  }

  .feature-chapter--reverse {
    grid-template-columns: minmax(300px, 45fr) minmax(0, 55fr) !important;
  }

  .tech-hero .hero-canvas {
    width: min(100%, var(--hero-canvas-max));
    padding-inline: var(--page-pad);
  }

  .hero-copy,
  .home-hero .hero-copy,
  .public-page-copy,
  .work-hero-copy,
  .future-platform .section-copy,
  .feature-chapter-copy {
    min-width: 0;
  }

  .hero-copy,
  .home-hero .hero-copy {
    grid-column: 1;
    width: 100%;
    max-width: var(--hero-copy-width);
    margin-left: 0;
  }

  .hero-object,
  .home-hero .hero-object {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    grid-column: 2;
    justify-self: center;
    align-self: center;
    width: min(100%, var(--responsive-stage-width, var(--hero-object-width))) !important;
    max-width: 100% !important;
    margin: 0;
    transform: translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1)) !important;
  }

  .feature-chapter:not(.feature-chapter--reverse) .feature-chapter-copy,
  .object-page-hero .public-page-copy,
  .work-hero-copy,
  .future-platform .section-copy {
    grid-column: 1;
  }

  .feature-chapter:not(.feature-chapter--reverse) .feature-object,
  .page-hero-object,
  .work-hero .platform-constellation,
  .future-platform .platform-constellation {
    grid-column: 2;
  }

  .feature-chapter--reverse .feature-object {
    grid-column: 1;
    grid-row: 1;
  }

  .feature-chapter--reverse .feature-chapter-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .feature-chapter .feature-object,
  .feature-chapter .feature-object--science,
  .feature-chapter .feature-object--technology,
  .feature-chapter .feature-object--manufacturing,
  .feature-chapter .feature-object--innovation,
  .page-hero-object,
  .object-page-hero .page-hero-object,
  .object-page-hero--science .page-hero-object,
  .object-page-hero--technology .page-hero-object,
  .object-page-hero--manufacturing .page-hero-object,
  .object-page-hero--innovation .page-hero-object,
  .work-hero-object {
    justify-self: center;
    align-self: center;
    width: min(100%, var(--responsive-stage-width, var(--feature-object-width))) !important;
    max-width: 100% !important;
  }

  .work-hero .platform-constellation,
  .future-platform .platform-constellation {
    justify-self: center;
    align-self: center;
    width: min(100%, var(--platform-responsive-width, clamp(470px, 42vw, 680px))) !important;
    max-width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .tech-hero .hero-canvas {
    grid-template-columns: minmax(0, 55fr) minmax(390px, 45fr) !important;
    min-height: var(--hero-min-height);
    gap: clamp(48px, 6vw, 104px);
  }

  .hero-art-home .hero-object--molecule {
    --responsive-stage-width: clamp(430px, 36vw, 590px);
  }

  .object-page-hero {
    grid-template-columns: minmax(0, 55fr) minmax(390px, 45fr) !important;
    gap: clamp(48px, 6vw, 104px);
    min-height: clamp(540px, 58vh, 720px);
  }

  .object-page-hero--science .page-hero-object {
    --responsive-stage-width: clamp(380px, 35vw, 590px);
    --visual-object-width: 80%;
    --motion-x-0: -26px;
    --motion-y-0: 10px;
    --motion-x-1: 22px;
    --motion-y-1: -12px;
    --motion-x-2: 32px;
    --motion-y-2: -18px;
    --motion-x-3: -18px;
    --motion-y-3: 12px;
  }

  .object-page-hero--technology .page-hero-object,
  .object-page-hero--manufacturing .page-hero-object {
    --responsive-stage-width: clamp(430px, 39vw, 660px);
  }

  .object-page-hero--innovation .page-hero-object {
    --responsive-stage-width: clamp(430px, 38vw, 640px);
  }

  .feature-chapter .feature-object--science {
    --responsive-stage-width: clamp(340px, 31vw, 500px);
    --visual-object-width: 80%;
    --motion-x-0: -26px;
    --motion-y-0: 10px;
    --motion-x-1: 22px;
    --motion-y-1: -12px;
    --motion-x-2: 32px;
    --motion-y-2: -18px;
    --motion-x-3: -18px;
    --motion-y-3: 12px;
  }

  .feature-chapter .feature-object--technology,
  .feature-chapter .feature-object--manufacturing {
    --responsive-stage-width: clamp(420px, 39vw, 620px);
  }

  .feature-chapter .feature-object--tablet,
  .feature-chapter .feature-object--innovation {
    --responsive-stage-width: clamp(390px, 36vw, 580px);
  }

  .future-platform .platform-constellation {
    --platform-responsive-width: clamp(520px, 44vw, 700px);
  }

  .work-hero .platform-constellation {
    --platform-responsive-width: clamp(470px, 38vw, 620px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .tech-hero,
  .home-hero {
    padding: 0;
  }

  .tech-hero .hero-canvas {
    grid-template-columns: minmax(0, 55fr) minmax(300px, 45fr) !important;
    gap: clamp(28px, 4vw, 52px);
    min-height: clamp(500px, 62vw, 660px);
    padding-top: clamp(42px, 6vw, 68px);
    padding-bottom: clamp(44px, 6vw, 72px);
  }

  .hero-copy h1 {
    font-size: clamp(42px, 5.1vw, 58px);
    line-height: 1.08;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(44px, 5.6vw, 62px);
  }

  .hero-copy p,
  .public-page-copy p,
  .work-hero-copy p,
  .feature-chapter-copy p,
  .future-platform .section-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-copy p + p,
  .work-hero-copy p + p {
    margin-top: 16px;
  }

  .hero-art-home .hero-object--molecule {
    --responsive-stage-width: clamp(300px, 38vw, 455px);
    --visual-object-width: 80%;
    --visual-object-max-height: 74%;
    --motion-x-0: -18px;
    --motion-y-0: 8px;
    --motion-x-1: 14px;
    --motion-y-1: -10px;
    --motion-x-2: 20px;
    --motion-y-2: -14px;
    --motion-x-3: -14px;
    --motion-y-3: 10px;
  }

  .object-page-hero {
    grid-template-columns: minmax(0, 55fr) minmax(300px, 45fr) !important;
    gap: clamp(28px, 4vw, 52px);
    min-height: clamp(500px, 62vw, 650px);
    padding-top: clamp(46px, 6vw, 72px);
    padding-bottom: clamp(46px, 6vw, 72px);
  }

  .object-page-hero .public-page-copy h1 {
    font-size: clamp(38px, 4.8vw, 52px);
    line-height: 1.08;
  }

  .object-page-hero--science .page-hero-object {
    --responsive-stage-width: clamp(300px, 37vw, 430px);
    --visual-object-width: 82%;
    --motion-x-0: -14px;
    --motion-y-0: 7px;
    --motion-x-1: 12px;
    --motion-y-1: -8px;
    --motion-x-2: 16px;
    --motion-y-2: -11px;
    --motion-x-3: -11px;
    --motion-y-3: 8px;
  }

  .object-page-hero--technology .page-hero-object,
  .object-page-hero--manufacturing .page-hero-object {
    --responsive-stage-width: clamp(320px, 41vw, 500px);
    --visual-object-width: 80%;
    --motion-x-0: -15px;
    --motion-y-0: 7px;
    --motion-x-1: 13px;
    --motion-y-1: -9px;
    --motion-x-2: 18px;
    --motion-y-2: -12px;
    --motion-x-3: -12px;
    --motion-y-3: 8px;
  }

  .object-page-hero--innovation .page-hero-object {
    --responsive-stage-width: clamp(320px, 40vw, 490px);
    --visual-object-width: 80%;
    --motion-x-0: -15px;
    --motion-y-0: 7px;
    --motion-x-1: 14px;
    --motion-y-1: -9px;
    --motion-x-2: 18px;
    --motion-y-2: -12px;
    --motion-x-3: -12px;
    --motion-y-3: 8px;
  }

  .feature-chapter,
  .feature-chapter--reverse {
    gap: clamp(28px, 4vw, 54px);
    min-height: clamp(500px, 60vw, 650px);
    padding-top: clamp(54px, 7vw, 82px);
    padding-bottom: clamp(54px, 7vw, 82px);
  }

  .feature-chapter-copy h2,
  .future-platform .section-copy h2 {
    font-size: clamp(32px, 4.2vw, 46px);
    line-height: 1.1;
  }

  .feature-chapter .feature-object--science {
    --responsive-stage-width: clamp(280px, 35vw, 400px);
    --visual-object-width: 82%;
    --motion-x-0: -14px;
    --motion-y-0: 7px;
    --motion-x-1: 12px;
    --motion-y-1: -8px;
    --motion-x-2: 16px;
    --motion-y-2: -11px;
    --motion-x-3: -11px;
    --motion-y-3: 8px;
  }

  .feature-chapter .feature-object--technology,
  .feature-chapter .feature-object--manufacturing {
    --responsive-stage-width: clamp(310px, 40vw, 480px);
    --visual-object-width: 80%;
    --motion-x-0: -15px;
    --motion-y-0: 7px;
    --motion-x-1: 13px;
    --motion-y-1: -9px;
    --motion-x-2: 18px;
    --motion-y-2: -12px;
    --motion-x-3: -12px;
    --motion-y-3: 8px;
  }

  .feature-chapter .feature-object--tablet,
  .feature-chapter .feature-object--innovation {
    --responsive-stage-width: clamp(300px, 39vw, 450px);
    --visual-object-width: 82%;
    --motion-x-0: -15px;
    --motion-y-0: 7px;
    --motion-x-1: 14px;
    --motion-y-1: -9px;
    --motion-x-2: 18px;
    --motion-y-2: -12px;
    --motion-x-3: -12px;
    --motion-y-3: 8px;
  }

  .future-platform {
    grid-template-columns: minmax(0, 55fr) minmax(320px, 45fr) !important;
    gap: clamp(28px, 4vw, 56px);
    min-height: clamp(520px, 63vw, 680px);
    padding-top: clamp(58px, 7vw, 88px);
    padding-bottom: clamp(58px, 7vw, 88px);
  }

  .future-platform .section-copy {
    max-width: 620px;
  }

  .future-platform .platform-constellation {
    --platform-responsive-width: clamp(330px, 43vw, 540px);
  }

  .work-hero {
    grid-template-columns: minmax(0, 55fr) minmax(320px, 45fr) !important;
    gap: clamp(28px, 4vw, 54px);
    min-height: clamp(500px, 60vw, 640px);
    padding-top: clamp(54px, 7vw, 82px);
    padding-bottom: clamp(50px, 6vw, 76px);
  }

  .work-hero-copy h1 {
    font-size: clamp(44px, 5.4vw, 62px);
  }

  .work-hero .platform-constellation {
    --platform-responsive-width: clamp(320px, 41vw, 500px);
  }

  .public-page-hero:not(.object-page-hero) {
    min-height: clamp(460px, 54vw, 610px);
    background-position: center, right -90px center, center;
    background-size: 100% 100%, 58% auto, 100% 100%;
  }

  .hero-object,
  .feature-object,
  .page-hero-object,
  .work-hero-object {
    --microbubble-field-width: 128%;
    --microbubble-field-height: 116%;
    --microbubble-field-left: -14%;
    --microbubble-field-top: -8%;
    --microbubble-cloud-x-0: -20px;
    --microbubble-cloud-y-0: 7px;
    --microbubble-cloud-x-1: 14px;
    --microbubble-cloud-y-1: -10px;
    --microbubble-cloud-x-2: 20px;
    --microbubble-cloud-y-2: -7px;
    --microbubble-cloud-x-3: -11px;
    --microbubble-cloud-y-3: 9px;
  }
}

@media (max-width: 767px) {
  .tech-hero .hero-canvas,
  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter,
  .feature-chapter--reverse {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start;
    gap: clamp(28px, 8vw, 42px);
    overflow: hidden;
  }

  .tech-hero .hero-canvas {
    min-height: 0;
    padding: clamp(40px, 12vw, 58px) var(--page-pad) clamp(44px, 12vw, 66px);
  }

  .hero-copy,
  .home-hero .hero-copy,
  .feature-chapter-copy,
  .feature-chapter--reverse .feature-chapter-copy,
  .object-page-hero .public-page-copy,
  .work-hero-copy,
  .future-platform .section-copy {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-object,
  .home-hero .hero-object,
  .feature-chapter .feature-object,
  .feature-chapter--reverse .feature-object,
  .page-hero-object,
  .work-hero-object {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    align-self: center;
    width: min(86vw, var(--responsive-mobile-stage-width, 390px)) !important;
    max-width: calc(100vw - var(--page-pad) - var(--page-pad)) !important;
    margin: 0 auto;
    --visual-object-width: 86%;
    --visual-object-max-height: 76%;
    transform: translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1)) !important;
  }

  .hero-object--molecule,
  .home-hero .hero-object--molecule {
    --responsive-mobile-stage-width: 370px;
    --visual-object-width: 86%;
    --motion-x-0: -12px;
    --motion-y-0: 6px;
    --motion-x-1: 10px;
    --motion-y-1: -8px;
    --motion-x-2: 15px;
    --motion-y-2: -11px;
    --motion-x-3: -10px;
    --motion-y-3: 8px;
  }

  .feature-object--science,
  .object-page-hero--science .page-hero-object {
    --responsive-mobile-stage-width: 350px;
    --visual-object-width: 84%;
    --motion-x-0: -14px;
    --motion-y-0: 6px;
    --motion-x-1: 12px;
    --motion-y-1: -8px;
    --motion-x-2: 18px;
    --motion-y-2: -10px;
    --motion-x-3: -10px;
    --motion-y-3: 8px;
  }

  .feature-object--technology,
  .feature-object--manufacturing,
  .object-page-hero--technology .page-hero-object,
  .object-page-hero--manufacturing .page-hero-object {
    --responsive-mobile-stage-width: 390px;
    --visual-object-width: 86%;
    --motion-x-0: -13px;
    --motion-y-0: 6px;
    --motion-x-1: 12px;
    --motion-y-1: -8px;
    --motion-x-2: 17px;
    --motion-y-2: -11px;
    --motion-x-3: -10px;
    --motion-y-3: 8px;
  }

  .feature-object--tablet,
  .feature-object--innovation,
  .object-page-hero--innovation .page-hero-object {
    --responsive-mobile-stage-width: 390px;
    --visual-object-width: 88%;
    --motion-x-0: -12px;
    --motion-y-0: 6px;
    --motion-x-1: 11px;
    --motion-y-1: -8px;
    --motion-x-2: 15px;
    --motion-y-2: -10px;
    --motion-x-3: -9px;
    --motion-y-3: 8px;
  }

  .work-hero .platform-constellation,
  .future-platform .platform-constellation {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    width: min(86vw, 430px) !important;
    max-width: calc(100vw - var(--page-pad) - var(--page-pad)) !important;
  }

  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter,
  .feature-chapter--reverse {
    min-height: 0;
    padding-top: clamp(46px, 13vw, 66px);
    padding-bottom: clamp(48px, 14vw, 74px);
  }

  .hero-copy h1,
  .home-hero .hero-copy h1,
  .object-page-hero .public-page-copy h1,
  .work-hero-copy h1 {
    max-width: min(100%, 390px);
    font-size: clamp(38px, 10.6vw, 48px);
    line-height: 1.12;
  }

  .hero-copy p,
  .public-page-copy p,
  .work-hero-copy p,
  .work-hero-copy p + p,
  .feature-chapter-copy p,
  .future-platform .section-copy p {
    max-width: min(100%, 390px);
    font-size: 15px;
    line-height: 1.72;
  }

  .public-page-hero:not(.object-page-hero) {
    min-height: 0;
    padding-top: clamp(46px, 13vw, 62px);
    padding-bottom: clamp(200px, 58vw, 260px);
    background-position: center, center bottom 36px, center;
    background-size: 100% 100%, min(620px, 150vw) auto, 100% 100%;
  }

  .hero-object,
  .feature-object,
  .page-hero-object,
  .work-hero-object {
    --microbubble-field-width: 124%;
    --microbubble-field-height: 114%;
    --microbubble-field-left: -12%;
    --microbubble-field-top: -7%;
    --microbubble-cloud-x-0: -16px;
    --microbubble-cloud-y-0: 6px;
    --microbubble-cloud-x-1: 12px;
    --microbubble-cloud-y-1: -8px;
    --microbubble-cloud-x-2: 16px;
    --microbubble-cloud-y-2: -6px;
    --microbubble-cloud-x-3: -9px;
    --microbubble-cloud-y-3: 8px;
  }
}

.discipline-metrics {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.discipline-metric {
  display: grid;
  grid-template-columns: minmax(140px, 0.65fr) 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(213, 232, 232, 0.82);
}

.discipline-metric:last-child {
  border-bottom: 0;
}

.discipline-metric span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.discipline-metric p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.discipline-process__header {
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.discipline-process__header h2 {
  margin-top: 10px;
}

.discipline-process__header p {
  margin-top: 20px;
  color: var(--muted);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(var(--process-columns, 4), minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.86);
  border-radius: 8px;
  background: rgba(213, 232, 232, 0.86);
}

.process-rail--5 {
  --process-columns: 5;
}

.process-rail--6 {
  --process-columns: 6;
}

.process-rail__item {
  min-height: 190px;
  padding: clamp(22px, 2.6vw, 34px);
  background: #fff;
}

.process-rail__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border: 1px solid rgba(47, 116, 123, 0.28);
  border-radius: 50%;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.process-rail__item h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.process-rail__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.discipline-systems {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.discipline-system {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(213, 232, 232, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(18, 45, 92, 0.05);
}

.discipline-system h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.discipline-system p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.76;
}

.discipline-connection__inner {
  align-items: center;
}

#development .discipline-connection__inner > div:first-child h2 {
  margin-bottom: clamp(22px, 2.2vw, 24px);
}

#development .discipline-connection__inner > div:first-child p + p {
  margin-top: clamp(20px, 2.1vw, 24px);
}

#development .discipline-connection__inner > div:first-child .primary-link {
  margin-top: clamp(36px, 3.2vw, 44px);
}

.platform-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background: rgba(213, 232, 232, 0.9);
}

.platform-map span {
  display: block;
  min-height: 112px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.platform-map small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.science-platform-connection .discipline-connection__inner {
  column-gap: clamp(82px, 10.5vw, 164px);
}

.science-platform-connection .eyebrow {
  margin-bottom: 20px;
}

.science-platform-connection h2 {
  margin-bottom: 26px;
}

.science-platform-connection p + p {
  margin-top: 20px;
}

.science-platform-connection .primary-link {
  margin-top: 32px;
}

.science-platform-connection .platform-map {
  gap: 12px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.science-platform-connection .platform-map span {
  min-height: clamp(124px, 8.8vw, 132px);
  padding: clamp(32px, 2.4vw, 36px);
  border: 1px solid rgba(213, 232, 232, 0.9);
}

.discipline-cta {
  background: #fff;
  border-bottom: 0;
}

.discipline-cta__inner {
  align-items: center;
}

.discipline-cta .primary-link {
  justify-self: start;
  margin-top: 28px;
}

.discipline-inline-link,
.chapter-patent-reference a,
.discipline-ip-reference a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(47, 116, 123, 0.28);
  text-underline-offset: 4px;
}

.chapter-patent-reference,
.discipline-ip-reference {
  padding: 16px 0 16px 18px;
  border-left: 2px solid rgba(47, 116, 123, 0.32);
  color: var(--text);
}

.chapter-patent-reference strong,
.discipline-ip-reference strong {
  color: var(--ink);
}

.patent-pending-feature {
  padding: clamp(62px, 7vw, 108px) var(--page-pad);
  border-bottom: 1px solid rgba(213, 232, 232, 0.72);
  background:
    radial-gradient(circle at 79% 38%, rgba(218, 246, 251, 0.36), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.patent-pending-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 7vw, 104px);
  max-width: 1360px;
  margin: 0 auto;
}

.patent-pending-feature__copy {
  max-width: 760px;
}

.patent-pending-feature h2 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.patent-pending-feature p {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.82;
}

.patent-pending-feature p + p {
  margin-top: 18px;
}

.patent-status-marker {
  display: inline-grid;
  gap: 7px;
  margin: 26px 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(47, 116, 123, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 245, 244, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 44px rgba(18, 45, 92, 0.07);
}

.patent-status-marker span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.patent-status-marker strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.patent-status-marker small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.patent-application-title {
  display: grid;
  gap: 7px;
  margin: 0 0 24px !important;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(213, 232, 232, 0.82);
}

.patent-application-title span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.patent-application-title strong {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.patent-technical-note {
  margin-top: 26px !important;
  padding: 18px 20px;
  border: 1px solid rgba(213, 232, 232, 0.92);
  border-left: 3px solid rgba(47, 116, 123, 0.54);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted) !important;
  font-size: 15px !important;
}

.patent-pending-feature__visual {
  min-width: 0;
}

.patent-process-graphic {
  position: relative;
  min-height: clamp(380px, 34vw, 510px);
  padding: clamp(26px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.94);
  border-radius: 8px;
  background:
    radial-gradient(circle at 64% 20%, rgba(120, 170, 174, 0.2), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 26% 74%, rgba(47, 116, 123, 0.12), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 24px 70px rgba(18, 45, 92, 0.09);
}

.patent-process-graphic::before,
.patent-microbubble-field {
  content: "";
  position: absolute;
  inset: 8%;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(47, 116, 123, 0.22) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(120, 170, 174, 0.18) 0 1.2px, transparent 1.6px);
  background-position: 0 0, 18px 14px;
  background-size: 34px 34px, 46px 46px;
  opacity: 0.5;
  mask-image: radial-gradient(circle at 55% 48%, #000 0%, rgba(0, 0, 0, 0.76) 34%, transparent 72%);
}

.patent-microbubble-field {
  inset: 14% 4% 12% 14%;
  opacity: 0.32;
  transform: rotate(-8deg);
}

.patent-process-path {
  position: absolute;
  inset: clamp(42px, 4vw, 60px) clamp(42px, 4vw, 66px);
  z-index: 1;
  pointer-events: none;
}

.patent-process-path span {
  position: absolute;
  left: 23px;
  width: 1px;
  height: 22%;
  background: linear-gradient(180deg, rgba(47, 116, 123, 0), rgba(47, 116, 123, 0.46), rgba(47, 116, 123, 0));
}

.patent-process-path span:nth-child(1) {
  top: 18%;
}

.patent-process-path span:nth-child(2) {
  top: 43%;
}

.patent-process-path span:nth-child(3) {
  top: 68%;
}

.patent-process-flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.patent-process-flow li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px 16px 14px;
  border: 1px solid rgba(213, 232, 232, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
}

.patent-process-node {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(47, 116, 123, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 34%, rgba(120, 170, 174, 0.58) 0 3px, transparent 3.4px),
    radial-gradient(circle at 36% 62%, rgba(47, 116, 123, 0.84) 0 4px, transparent 4.4px),
    rgba(234, 245, 244, 0.9);
  box-shadow: 0 0 0 8px rgba(47, 116, 123, 0.06);
}

.patent-process-flow strong {
  grid-column: 2;
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.patent-process-flow small {
  grid-column: 2;
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.patent-procedural-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-patent-note {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .discipline-principle-grid,
  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-rail {
    --process-columns: 2;
  }
}

@media (max-width: 1024px) {
  .discipline-chapters {
    top: clamp(78px, 10vw, 104px);
  }

  .discipline-thesis__inner,
  .discipline-principles__header,
  .discipline-section__inner,
  .discipline-section--reverse .discipline-section__inner,
  .discipline-connection__inner,
  .discipline-cta__inner,
  .patent-pending-feature__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .discipline-section--reverse .discipline-section__copy,
  .discipline-section--reverse .discipline-section__visual {
    grid-column: auto;
    grid-row: auto;
  }

  .discipline-kicker {
    max-width: 700px;
  }

  .editorial-visual-stage {
    min-height: clamp(240px, 48vw, 420px);
  }

  .patent-process-graphic {
    min-height: 0;
  }

  .science-platform-connection .discipline-connection__inner {
    row-gap: 42px;
  }

  .science-platform-connection .platform-map span {
    min-height: 120px;
    padding: clamp(28px, 4vw, 32px);
  }
}

@media (max-width: 700px) {
  .discipline-chapters {
    position: relative;
    top: auto;
  }

  .discipline-chapters__inner {
    gap: 22px;
  }

  .discipline-chapters a {
    padding: 16px 0 14px;
    font-size: 11px;
  }

  .discipline-thesis,
  .discipline-principles,
  .discipline-section,
  .discipline-process,
  .discipline-connection,
  .discipline-cta {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .discipline-principle-grid,
  .process-rail,
  .discipline-systems,
  .platform-map {
    grid-template-columns: 1fr;
  }

  .science-platform-connection .discipline-connection__inner {
    row-gap: 32px;
  }

  .science-platform-connection h2 {
    margin-bottom: 22px;
  }

  .science-platform-connection p + p {
    margin-top: 18px;
  }

  .science-platform-connection .primary-link {
    margin-top: 28px;
  }

  .science-platform-connection .platform-map {
    gap: 10px;
  }

  .science-platform-connection .platform-map span {
    min-height: 112px;
    padding: 26px;
  }

  .patent-pending-feature {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .patent-status-marker {
    width: 100%;
  }

  .patent-process-graphic {
    padding: 20px;
  }

  .patent-process-flow li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
  }

  .patent-process-node {
    width: 30px;
    height: 30px;
  }

  .discipline-principle {
    min-height: 0;
  }

  .discipline-metric {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .editorial-visual-stage::before {
    inset: 14% 2%;
  }
}

/* ===== THIC VisualStage: maximum-stage artefact registry ===== */
:root {
  --visual-stage-stack-width: 900px;
}

.visual-stage {
  --stage-aspect-ratio: 1.58;
  --stage-desktop-max-width: 620px;
  --stage-desktop-max-height: 460px;
  --stage-tablet-max-width: 440px;
  --stage-tablet-max-height: 340px;
  --stage-mobile-max-width: 420px;
  --stage-mobile-max-height: 320px;
  --stage-max-width: var(--stage-desktop-max-width);
  --stage-max-height: var(--stage-desktop-max-height);
  --stage-safe-inset: 10%;
  --object-desktop-width: 74%;
  --object-desktop-max-height: 68%;
  --object-tablet-width: 72%;
  --object-tablet-max-height: 66%;
  --object-mobile-width: 74%;
  --object-mobile-max-height: 68%;
  --visual-object-width: var(--object-desktop-width);
  --visual-object-max-height: var(--object-desktop-max-height);
  --shadow-width: 58%;
  --shadow-height: clamp(14px, 2.2vw, 28px);
  --shadow-bottom: 8%;
  --stage-cloud-width: 94%;
  --stage-cloud-height: 82%;
  --microbubble-field-width: var(--stage-cloud-width);
  --microbubble-field-height: var(--stage-cloud-height);
  --microbubble-field-left: calc((100% - var(--stage-cloud-width)) / 2);
  --microbubble-field-top: calc((100% - var(--stage-cloud-height)) / 2);
  --motion-x-0: -26px;
  --motion-y-0: 10px;
  --motion-x-1: 22px;
  --motion-y-1: -14px;
  --motion-x-2: 34px;
  --motion-y-2: -20px;
  --motion-x-3: -18px;
  --motion-y-3: 12px;
  --motion-x0-cqw: -5.8;
  --motion-y0-cqw: 2.4;
  --motion-x1-cqw: 5.1;
  --motion-y1-cqw: -3.3;
  --motion-x2-cqw: 7.2;
  --motion-y2-cqw: -4.7;
  --motion-x3-cqw: -4.3;
  --motion-y3-cqw: 3;
  --microbubble-cloud-x-0: -34px;
  --microbubble-cloud-y-0: 10px;
  --microbubble-cloud-x-1: 24px;
  --microbubble-cloud-y-1: -15px;
  --microbubble-cloud-x-2: 42px;
  --microbubble-cloud-y-2: -10px;
  --microbubble-cloud-x-3: -18px;
  --microbubble-cloud-y-3: 13px;
  --cloud-x0-cqw: -7.4;
  --cloud-y0-cqw: 2.4;
  --cloud-x1-cqw: 5.4;
  --cloud-y1-cqw: -3.5;
  --cloud-x2-cqw: 8.6;
  --cloud-y2-cqw: -2.5;
  --cloud-x3-cqw: -4.2;
  --cloud-y3-cqw: 3.2;
  display: grid !important;
  place-items: center;
  width: min(100%, var(--stage-max-width)) !important;
  max-width: min(100%, var(--stage-max-width)) !important;
  max-height: var(--stage-max-height);
  aspect-ratio: var(--stage-aspect-ratio);
  margin: 0;
  border: 0;
  border-radius: 18px;
  outline: 0;
  overflow: hidden !important;
  overflow: clip !important;
  contain: paint;
  container-type: inline-size;
  isolation: isolate;
}

:where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage {
  transform: translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1)) !important;
}

:where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage img {
  width: var(--visual-object-width) !important;
  height: var(--visual-object-max-height) !important;
  max-width: calc(100% - var(--stage-safe-inset) - var(--stage-safe-inset)) !important;
  max-height: calc(100% - var(--stage-safe-inset) - var(--stage-safe-inset)) !important;
  object-fit: contain;
  object-position: center;
  display: block;
  animation-name: thicObjectDriftContained;
  animation-duration: var(--motion-duration);
  animation-timing-function: var(--motion-ease);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-play-state: running;
}

:where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage::before,
:where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage::after {
  left: var(--microbubble-field-left) !important;
  top: var(--microbubble-field-top) !important;
  width: var(--microbubble-field-width) !important;
  height: var(--microbubble-field-height) !important;
}

:where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage::before {
  animation-name: thicHydrogenCloudDrift;
  animation-duration: var(--microbubble-field-duration);
  animation-timing-function: cubic-bezier(0.45, 0, 0.28, 1);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

:where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage::after {
  animation-name: thicHydrogenCloudDetail;
  animation-duration: var(--microbubble-detail-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: both;
}

.visual-stage .hero-object-shadow,
.visual-stage .feature-object-shadow {
  bottom: var(--shadow-bottom) !important;
  width: var(--shadow-width) !important;
  height: var(--shadow-height) !important;
  max-width: calc(100% - var(--stage-safe-inset) - var(--stage-safe-inset));
  animation-name: thicObjectShadowContained;
  animation-duration: var(--motion-shadow-duration);
}

.visual-stage.hero-object--molecule {
  --stage-aspect-ratio: 1.46;
  --stage-desktop-max-width: 640px;
  --stage-desktop-max-height: 450px;
  --stage-tablet-max-width: 430px;
  --stage-tablet-max-height: 310px;
  --stage-mobile-max-width: 430px;
  --stage-mobile-max-height: 310px;
  --object-desktop-width: 68%;
  --object-desktop-max-height: 70%;
  --object-tablet-width: 67%;
  --object-tablet-max-height: 69%;
  --object-mobile-width: 72%;
  --object-mobile-max-height: 70%;
  --stage-cloud-width: 94%;
  --stage-cloud-height: 82%;
  --shadow-width: 46%;
  --shadow-bottom: 7%;
  --motion-duration: 22s;
  --motion-shadow-duration: 26s;
  --motion-x0-cqw: -7;
  --motion-y0-cqw: 3;
  --motion-x1-cqw: 6.1;
  --motion-y1-cqw: -3.8;
  --motion-x2-cqw: 8;
  --motion-y2-cqw: -5.2;
  --motion-x3-cqw: -5.4;
  --motion-y3-cqw: 3.6;
  --cloud-x0-cqw: -8.2;
  --cloud-y0-cqw: 3;
  --cloud-x1-cqw: 6;
  --cloud-y1-cqw: -4.1;
  --cloud-x2-cqw: 9.2;
  --cloud-y2-cqw: -2.8;
  --cloud-x3-cqw: -4.8;
  --cloud-y3-cqw: 4;
}

.visual-stage.feature-object--science,
.object-page-hero--science .visual-stage.page-hero-object {
  --stage-aspect-ratio: 1.5;
  --stage-desktop-max-width: 600px;
  --stage-desktop-max-height: 410px;
  --stage-tablet-max-width: 430px;
  --stage-tablet-max-height: 310px;
  --stage-mobile-max-width: 430px;
  --stage-mobile-max-height: 320px;
  --object-desktop-width: 76%;
  --object-desktop-max-height: 62%;
  --object-tablet-width: 76%;
  --object-tablet-max-height: 62%;
  --object-mobile-width: 80%;
  --object-mobile-max-height: 64%;
  --stage-cloud-width: 90%;
  --stage-cloud-height: 80%;
  --shadow-width: 46%;
  --shadow-bottom: 8%;
  --motion-duration: 21s;
  --motion-shadow-duration: 25s;
  --motion-x0-cqw: -6.2;
  --motion-y0-cqw: 2.1;
  --motion-x1-cqw: 5.6;
  --motion-y1-cqw: -2.8;
  --motion-x2-cqw: 6.7;
  --motion-y2-cqw: -3.4;
  --motion-x3-cqw: -4.8;
  --motion-y3-cqw: 2.3;
  --cloud-x0-cqw: -6.8;
  --cloud-y0-cqw: 2.2;
  --cloud-x1-cqw: 4.8;
  --cloud-y1-cqw: -3.1;
  --cloud-x2-cqw: 7.3;
  --cloud-y2-cqw: -2.2;
  --cloud-x3-cqw: -4;
  --cloud-y3-cqw: 3;
}

.visual-stage.feature-object--technology,
.visual-stage.hero-object--infusion-system,
.object-page-hero--technology .visual-stage.page-hero-object {
  --stage-aspect-ratio: 1.62;
  --stage-desktop-max-width: 660px;
  --stage-desktop-max-height: 430px;
  --stage-tablet-max-width: 470px;
  --stage-tablet-max-height: 320px;
  --stage-mobile-max-width: 460px;
  --stage-mobile-max-height: 320px;
  --object-desktop-width: 74%;
  --object-desktop-max-height: 62%;
  --object-tablet-width: 73%;
  --object-tablet-max-height: 62%;
  --object-mobile-width: 76%;
  --object-mobile-max-height: 64%;
  --stage-cloud-width: 94%;
  --stage-cloud-height: 82%;
  --shadow-width: 60%;
  --shadow-bottom: 7%;
  --motion-duration: 23s;
  --motion-shadow-duration: 27s;
  --motion-x0-cqw: -5.8;
  --motion-y0-cqw: 2.5;
  --motion-x1-cqw: 5.2;
  --motion-y1-cqw: -3.5;
  --motion-x2-cqw: 6.9;
  --motion-y2-cqw: -4.4;
  --motion-x3-cqw: -4.5;
  --motion-y3-cqw: 3.1;
  --cloud-x0-cqw: -8.2;
  --cloud-y0-cqw: 2.4;
  --cloud-x1-cqw: 5.8;
  --cloud-y1-cqw: -3.7;
  --cloud-x2-cqw: 9.4;
  --cloud-y2-cqw: -2.6;
  --cloud-x3-cqw: -4.8;
  --cloud-y3-cqw: 3.4;
}

.visual-stage.feature-object--manufacturing,
.object-page-hero--manufacturing .visual-stage.page-hero-object {
  --stage-aspect-ratio: 1.5;
  --stage-desktop-max-width: 640px;
  --stage-desktop-max-height: 450px;
  --stage-tablet-max-width: 460px;
  --stage-tablet-max-height: 330px;
  --stage-mobile-max-width: 450px;
  --stage-mobile-max-height: 330px;
  --object-desktop-width: 72%;
  --object-desktop-max-height: 70%;
  --object-tablet-width: 70%;
  --object-tablet-max-height: 68%;
  --object-mobile-width: 72%;
  --object-mobile-max-height: 68%;
  --stage-cloud-width: 92%;
  --stage-cloud-height: 82%;
  --shadow-width: 56%;
  --shadow-bottom: 8%;
  --motion-duration: 24s;
  --motion-shadow-duration: 28s;
  --motion-x0-cqw: -5.2;
  --motion-y0-cqw: 2.5;
  --motion-x1-cqw: 4.8;
  --motion-y1-cqw: -3.2;
  --motion-x2-cqw: 6.2;
  --motion-y2-cqw: -4;
  --motion-x3-cqw: -4;
  --motion-y3-cqw: 2.8;
  --cloud-x0-cqw: -6.8;
  --cloud-y0-cqw: 2.4;
  --cloud-x1-cqw: 5.1;
  --cloud-y1-cqw: -3.4;
  --cloud-x2-cqw: 7.6;
  --cloud-y2-cqw: -2.4;
  --cloud-x3-cqw: -4;
  --cloud-y3-cqw: 3.2;
}

.visual-stage.feature-object--innovation,
.visual-stage.feature-object--tablet,
.object-page-hero--innovation .visual-stage.page-hero-object,
.visual-stage.work-hero-object {
  --stage-aspect-ratio: 1.6;
  --stage-desktop-max-width: 640px;
  --stage-desktop-max-height: 420px;
  --stage-tablet-max-width: 450px;
  --stage-tablet-max-height: 310px;
  --stage-mobile-max-width: 450px;
  --stage-mobile-max-height: 310px;
  --object-desktop-width: 74%;
  --object-desktop-max-height: 62%;
  --object-tablet-width: 72%;
  --object-tablet-max-height: 62%;
  --object-mobile-width: 76%;
  --object-mobile-max-height: 64%;
  --stage-cloud-width: 92%;
  --stage-cloud-height: 80%;
  --shadow-width: 52%;
  --shadow-bottom: 8%;
  --motion-duration: 22s;
  --motion-shadow-duration: 26s;
  --motion-x0-cqw: -6.2;
  --motion-y0-cqw: 2.8;
  --motion-x1-cqw: 5.8;
  --motion-y1-cqw: -3.5;
  --motion-x2-cqw: 7.2;
  --motion-y2-cqw: -4.4;
  --motion-x3-cqw: -4.8;
  --motion-y3-cqw: 3.1;
  --cloud-x0-cqw: -7.2;
  --cloud-y0-cqw: 2.5;
  --cloud-x1-cqw: 5.2;
  --cloud-y1-cqw: -3.4;
  --cloud-x2-cqw: 8;
  --cloud-y2-cqw: -2.4;
  --cloud-x3-cqw: -4.2;
  --cloud-y3-cqw: 3.2;
}

.visual-stage.feature-object--tablet .feature-object-shadow {
  display: block !important;
}

.visual-stage.editorial-mini-object {
  --stage-desktop-max-width: 430px;
  --stage-desktop-max-height: 310px;
  --stage-tablet-max-width: 400px;
  --stage-tablet-max-height: 300px;
  --stage-mobile-max-width: 370px;
  --stage-mobile-max-height: 280px;
  --object-desktop-width: 76%;
  --object-tablet-width: 76%;
  --object-mobile-width: 76%;
}

.visual-stage.platform-constellation {
  --stage-aspect-ratio: 1.42;
  --platform-stage-desktop-max-width: 700px;
  --platform-stage-tablet-max-width: 500px;
  --platform-stage-mobile-max-width: 460px;
  --platform-stage-max-width: var(--platform-stage-desktop-max-width);
  width: min(100%, var(--platform-stage-max-width)) !important;
  max-width: min(100%, var(--platform-stage-max-width)) !important;
  max-height: 500px;
  aspect-ratio: var(--stage-aspect-ratio);
  --platform-cloud-opacity: 0.92;
  --platform-cloud-focus-opacity: 0.24;
  --platform-cloud-duration: 23s;
  --platform-detail-duration: 29s;
  --platform-orbit-x-0: -16px;
  --platform-orbit-y-0: 7px;
  --platform-orbit-x-1: 14px;
  --platform-orbit-y-1: -10px;
  --platform-orbit-x-2: 24px;
  --platform-orbit-y-2: -6px;
  --platform-orbit-x-3: -10px;
  --platform-orbit-y-3: 11px;
}

.visual-stage.platform-constellation::before {
  inset: 8% 7% 9% 7%;
}

.visual-stage.platform-constellation::after {
  inset: 19% 18% 19% 18%;
}

.visual-stage.platform-constellation--work,
.visual-stage.platform-constellation--about {
  --platform-stage-desktop-max-width: 620px;
  --platform-stage-tablet-max-width: 460px;
  --platform-stage-mobile-max-width: 430px;
}

.visual-stage.platform-constellation .platform-constellation__item {
  will-change: transform;
}

.platform-constellation__item--molecule {
  --platform-orbit-duration: 24s;
  --platform-orbit-x0-cqw: -0.7;
  --platform-orbit-y0-cqw: 0.35;
  --platform-orbit-x1-cqw: 0.8;
  --platform-orbit-y1-cqw: -0.45;
  --platform-orbit-x2-cqw: 1.1;
  --platform-orbit-y2-cqw: 0.45;
  --platform-orbit-x3-cqw: -0.65;
  --platform-orbit-y3-cqw: 0.55;
}

.platform-constellation__item--science {
  --platform-item-width: 25%;
  --platform-item-left: 77%;
  --platform-item-top: 27%;
  --platform-orbit-duration: 20s;
  --platform-orbit-x0-cqw: -3.8;
  --platform-orbit-y0-cqw: -1.1;
  --platform-orbit-x1-cqw: 2.9;
  --platform-orbit-y1-cqw: 1.1;
  --platform-orbit-x2-cqw: 4.4;
  --platform-orbit-y2-cqw: 1.8;
  --platform-orbit-x3-cqw: -2.2;
  --platform-orbit-y3-cqw: -0.9;
}

.platform-constellation__item--technology {
  --platform-orbit-duration: 22s;
  --platform-orbit-x0-cqw: -4;
  --platform-orbit-y0-cqw: 1.2;
  --platform-orbit-x1-cqw: 2.7;
  --platform-orbit-y1-cqw: -2;
  --platform-orbit-x2-cqw: 4.3;
  --platform-orbit-y2-cqw: -1.1;
  --platform-orbit-x3-cqw: -2.2;
  --platform-orbit-y3-cqw: 1.6;
}

.platform-constellation__item--manufacturing {
  --platform-orbit-duration: 23s;
  --platform-orbit-x0-cqw: 2.7;
  --platform-orbit-y0-cqw: 1.2;
  --platform-orbit-x1-cqw: -3.1;
  --platform-orbit-y1-cqw: -1;
  --platform-orbit-x2-cqw: -2.2;
  --platform-orbit-y2-cqw: -2.2;
  --platform-orbit-x3-cqw: 3.3;
  --platform-orbit-y3-cqw: 0.7;
}

.platform-constellation__item--innovation {
  --platform-orbit-duration: 21s;
  --platform-orbit-x0-cqw: 3;
  --platform-orbit-y0-cqw: -1;
  --platform-orbit-x1-cqw: -2.4;
  --platform-orbit-y1-cqw: 2;
  --platform-orbit-x2-cqw: -3.9;
  --platform-orbit-y2-cqw: 1.2;
  --platform-orbit-x3-cqw: 1.5;
  --platform-orbit-y3-cqw: -1.8;
}

@supports (width: 1cqw) {
  .visual-stage {
    --shadow-height: clamp(14px, 4cqw, 28px);
    --motion-x-0: calc(var(--motion-x0-cqw) * 1cqw);
    --motion-y-0: calc(var(--motion-y0-cqw) * 1cqw);
    --motion-x-1: calc(var(--motion-x1-cqw) * 1cqw);
    --motion-y-1: calc(var(--motion-y1-cqw) * 1cqw);
    --motion-x-2: calc(var(--motion-x2-cqw) * 1cqw);
    --motion-y-2: calc(var(--motion-y2-cqw) * 1cqw);
    --motion-x-3: calc(var(--motion-x3-cqw) * 1cqw);
    --motion-y-3: calc(var(--motion-y3-cqw) * 1cqw);
    --microbubble-cloud-x-0: calc(var(--cloud-x0-cqw) * 1cqw);
    --microbubble-cloud-y-0: calc(var(--cloud-y0-cqw) * 1cqw);
    --microbubble-cloud-x-1: calc(var(--cloud-x1-cqw) * 1cqw);
    --microbubble-cloud-y-1: calc(var(--cloud-y1-cqw) * 1cqw);
    --microbubble-cloud-x-2: calc(var(--cloud-x2-cqw) * 1cqw);
    --microbubble-cloud-y-2: calc(var(--cloud-y2-cqw) * 1cqw);
    --microbubble-cloud-x-3: calc(var(--cloud-x3-cqw) * 1cqw);
    --microbubble-cloud-y-3: calc(var(--cloud-y3-cqw) * 1cqw);
  }

  .visual-stage.platform-constellation .platform-constellation__item {
    --platform-orbit-x-0: calc(var(--platform-orbit-x0-cqw) * 1cqw);
    --platform-orbit-y-0: calc(var(--platform-orbit-y0-cqw) * 1cqw);
    --platform-orbit-x-1: calc(var(--platform-orbit-x1-cqw) * 1cqw);
    --platform-orbit-y-1: calc(var(--platform-orbit-y1-cqw) * 1cqw);
    --platform-orbit-x-2: calc(var(--platform-orbit-x2-cqw) * 1cqw);
    --platform-orbit-y-2: calc(var(--platform-orbit-y2-cqw) * 1cqw);
    --platform-orbit-x-3: calc(var(--platform-orbit-x3-cqw) * 1cqw);
    --platform-orbit-y-3: calc(var(--platform-orbit-y3-cqw) * 1cqw);
  }
}

@media (min-width: 1200px) {
  .tech-hero .hero-canvas,
  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter {
    grid-template-columns: minmax(0, 55fr) minmax(390px, 45fr) !important;
  }

  .feature-chapter--reverse {
    grid-template-columns: minmax(390px, 45fr) minmax(0, 55fr) !important;
  }

  .visual-stage {
    --stage-max-width: var(--stage-desktop-max-width);
    --stage-max-height: var(--stage-desktop-max-height);
    --stage-safe-inset: 10%;
    --visual-object-width: var(--object-desktop-width);
    --visual-object-max-height: var(--object-desktop-max-height);
  }

  .visual-stage.platform-constellation {
    --platform-stage-max-width: var(--platform-stage-desktop-max-width);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .tech-hero .hero-canvas,
  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter {
    display: grid;
    grid-template-columns: minmax(0, 54fr) minmax(300px, 46fr) !important;
    align-items: center;
    gap: clamp(28px, 4vw, 48px);
    overflow: hidden;
  }

  .feature-chapter--reverse {
    grid-template-columns: minmax(300px, 46fr) minmax(0, 54fr) !important;
  }

  .tech-hero .hero-canvas {
    min-height: clamp(500px, 58vw, 640px);
  }

  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter,
  .feature-chapter--reverse {
    min-height: clamp(500px, 58vw, 650px);
  }

  .hero-copy h1,
  .home-hero .hero-copy h1 {
    font-size: clamp(42px, 5vw, 58px);
  }

  .object-page-hero .public-page-copy h1,
  .work-hero-copy h1,
  .feature-chapter-copy h2,
  .future-platform .section-copy h2 {
    font-size: clamp(34px, 4.5vw, 50px);
  }

  .hero-copy p,
  .public-page-copy p,
  .work-hero-copy p,
  .feature-chapter-copy p,
  .future-platform .section-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-object,
  .home-hero .hero-object {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    grid-column: 2;
    justify-self: center;
    align-self: center;
  }

  .visual-stage {
    --stage-max-width: var(--stage-tablet-max-width);
    --stage-max-height: var(--stage-tablet-max-height);
    --stage-safe-inset: 8%;
    --visual-object-width: var(--object-tablet-width);
    --visual-object-max-height: var(--object-tablet-max-height);
  }

  .visual-stage.platform-constellation {
    --platform-stage-max-width: var(--platform-stage-tablet-max-width);
  }
}

@media (max-width: 899px) {
  .tech-hero .hero-canvas,
  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter,
  .feature-chapter--reverse {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start;
    gap: clamp(28px, 7vw, 42px);
    min-height: 0;
    overflow: hidden;
  }

  .tech-hero .hero-canvas {
    padding: clamp(40px, 10vw, 58px) var(--page-pad) clamp(46px, 11vw, 70px);
  }

  .object-page-hero,
  .work-hero,
  .future-platform,
  .feature-chapter,
  .feature-chapter--reverse {
    padding-top: clamp(48px, 10vw, 68px);
    padding-bottom: clamp(52px, 11vw, 76px);
  }

  .hero-copy,
  .home-hero .hero-copy,
  .feature-chapter-copy,
  .feature-chapter--reverse .feature-chapter-copy,
  .object-page-hero .public-page-copy,
  .work-hero-copy,
  .future-platform .section-copy {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100%;
    max-width: min(100%, 620px);
    margin-left: 0;
  }

  .hero-object,
  .home-hero .hero-object,
  .feature-chapter .feature-object,
  .feature-chapter--reverse .feature-object,
  .page-hero-object,
  .work-hero-object,
  .future-platform .platform-constellation,
  .work-hero .platform-constellation {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: center;
    align-self: center;
  }

  .visual-stage {
    --stage-max-width: var(--stage-mobile-max-width);
    --stage-max-height: var(--stage-mobile-max-height);
    --stage-safe-inset: 7%;
    --visual-object-width: var(--object-mobile-width);
    --visual-object-max-height: var(--object-mobile-max-height);
    width: min(calc(100vw - var(--page-pad) - var(--page-pad)), var(--stage-max-width)) !important;
    max-width: calc(100vw - var(--page-pad) - var(--page-pad)) !important;
  }

  .visual-stage.platform-constellation {
    --platform-stage-max-width: var(--platform-stage-mobile-max-width);
    width: min(calc(100vw - var(--page-pad) - var(--page-pad)), var(--platform-stage-max-width)) !important;
    max-width: calc(100vw - var(--page-pad) - var(--page-pad)) !important;
  }

  .hero-copy h1,
  .home-hero .hero-copy h1,
  .object-page-hero .public-page-copy h1,
  .work-hero-copy h1 {
    max-width: min(100%, 520px);
    font-size: clamp(38px, 9.8vw, 50px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .feature-chapter-copy h2,
  .future-platform .section-copy h2 {
    max-width: min(100%, 560px);
    font-size: clamp(31px, 8vw, 44px);
    line-height: 1.12;
  }

  .hero-copy p,
  .public-page-copy p,
  .work-hero-copy p,
  .work-hero-copy p + p,
  .feature-chapter-copy p,
  .future-platform .section-copy p {
    max-width: min(100%, 520px);
    font-size: 15px;
    line-height: 1.72;
  }

  .public-page-hero:not(.object-page-hero) {
    min-height: 0;
    padding-top: clamp(48px, 11vw, 66px);
    padding-bottom: clamp(190px, 52vw, 250px);
    background-position: center, center bottom 34px, center;
    background-size: 100% 100%, min(620px, 142vw) auto, 100% 100%;
  }
}

@media (max-width: 390px) {
  .visual-stage.hero-object--molecule {
    --object-mobile-width: 70%;
  }

  .visual-stage.feature-object--technology,
  .visual-stage.feature-object--manufacturing,
  .visual-stage.feature-object--innovation,
  .visual-stage.feature-object--tablet {
    --object-mobile-width: 74%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-stage {
    --motion-mouse-x: 0px;
    --motion-mouse-y: 0px;
    --motion-mouse-r: 0deg;
    --thic-atmosphere-x: 0px;
    --thic-atmosphere-y: 0px;
    --thic-atmosphere-x-2: 0px;
    --thic-atmosphere-y-2: 0px;
    --thic-atmosphere-rotate: 0deg;
  }

  :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage img,
  :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage::before,
  :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage::after,
  .visual-stage .hero-object-shadow,
  .visual-stage .feature-object-shadow,
  .visual-stage.platform-constellation::before,
  .visual-stage.platform-constellation::after,
  .visual-stage.platform-constellation .platform-constellation__item,
  .visual-stage.platform-constellation .platform-constellation__item img {
    animation: none !important;
  }

  :where(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage img {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
  }
}

/* ===== THIC ArtefactBanner editorial system ===== */
.artefact-banner {
  --banner-copy-columns: minmax(0, 44fr) minmax(0, 56fr);
  --banner-section-min-height: clamp(560px, 62vh, 740px);
  --banner-section-y: clamp(64px, 7vw, 108px);
  --banner-copy-max: 620px;
  --banner-visual-min-height: 100%;
  --banner-object-width: 64%;
  --banner-object-left: 57%;
  --banner-object-top: 52%;
  --banner-cloud-image: var(--thic-field-diffusion);
  --banner-cloud-left: 4%;
  --banner-cloud-top: 8%;
  --banner-cloud-width: 96%;
  --banner-cloud-height: 86%;
  --banner-cloud-opacity: 0.86;
  --banner-cloud-detail-opacity: 0.22;
  --banner-cloud-duration: 48s;
  --banner-detail-duration: 62s;
  --banner-motion-duration: 22s;
  --banner-x-0: -10px;
  --banner-y-0: 7px;
  --banner-r-0: -0.7deg;
  --banner-s-0: 1.004;
  --banner-x-1: 14px;
  --banner-y-1: -10px;
  --banner-r-1: 0.65deg;
  --banner-s-1: 1.014;
  --banner-x-2: 20px;
  --banner-y-2: -5px;
  --banner-r-2: 1.1deg;
  --banner-s-2: 1.01;
  --banner-x-3: -6px;
  --banner-y-3: 10px;
  --banner-r-3: -0.35deg;
  --banner-s-3: 1.006;
  --banner-fade-left: 38%;
  --banner-fade-width: 28%;
  --banner-fade-opacity: 1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #fff 42%, rgba(247, 251, 255, 0.82) 78%, rgba(247, 251, 255, 0.48) 100%);
}

.tech-hero.artefact-banner {
  min-height: var(--banner-section-min-height);
  background:
    linear-gradient(90deg, #fff 0%, #fff 43%, rgba(247, 251, 255, 0.86) 80%, rgba(255, 255, 255, 0.56) 100%);
}

.tech-hero.artefact-banner .hero-canvas,
.object-page-hero.artefact-banner,
.public-page-hero.artefact-banner,
.work-hero.artefact-banner,
.future-platform.artefact-banner,
.feature-chapter.artefact-banner {
  display: grid !important;
  grid-template-columns: var(--banner-copy-columns) !important;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: none;
  min-height: var(--banner-section-min-height);
  margin: 0;
  overflow: hidden;
}

.tech-hero.artefact-banner .hero-canvas {
  isolation: auto;
}

.tech-hero.artefact-banner .hero-canvas {
  padding: var(--banner-section-y) 0;
}

.object-page-hero.artefact-banner,
.public-page-hero.artefact-banner,
.work-hero.artefact-banner,
.future-platform.artefact-banner,
.feature-chapter.artefact-banner {
  padding: var(--banner-section-y) var(--page-pad);
}

.artefact-banner::before,
.artefact-banner::after {
  content: "" !important;
  position: absolute;
  pointer-events: none;
  display: block !important;
}

.artefact-banner::before {
  inset: 0 0 0 38%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(218, 246, 251, 0.28), rgba(255, 255, 255, 0) 58%);
  opacity: 0.62;
}

.artefact-banner::after {
  top: 0;
  bottom: 0;
  left: var(--banner-fade-left);
  z-index: 3;
  width: var(--banner-fade-width);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, var(--banner-fade-opacity)) 0%, rgba(255, 255, 255, 0.96) 30%, rgba(255, 255, 255, 0.58) 68%, rgba(255, 255, 255, 0) 100%);
}

.artefact-banner__copy {
  position: relative;
  z-index: 5;
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center;
  width: min(100%, var(--banner-copy-max));
  max-width: var(--banner-copy-max);
  min-width: 0;
}

.tech-hero.artefact-banner .artefact-banner__copy {
  margin-left: var(--page-pad);
}

.feature-chapter.artefact-banner .artefact-banner__copy,
.object-page-hero.artefact-banner .artefact-banner__copy,
.public-page-hero.artefact-banner .artefact-banner__copy,
.work-hero.artefact-banner .artefact-banner__copy,
.future-platform.artefact-banner .artefact-banner__copy {
  margin-left: 0;
}

.artefact-banner .artefact-banner__visual.visual-stage {
  position: relative !important;
  z-index: 2;
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: var(--banner-visual-min-height);
  max-height: none !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  overflow: hidden !important;
  overflow: clip !important;
  contain: paint;
  background: transparent !important;
  transform: translate3d(var(--thic-route-object-x, 0px), var(--thic-route-object-y, 0px), 0) scale(var(--thic-route-object-scale, 1)) !important;
}

.artefact-banner .artefact-banner__visual.visual-stage::before,
.artefact-banner .artefact-banner__visual.visual-stage::after {
  content: "" !important;
  position: absolute !important;
  left: var(--banner-cloud-left) !important;
  top: var(--banner-cloud-top) !important;
  z-index: 1;
  display: block !important;
  width: var(--banner-cloud-width) !important;
  height: var(--banner-cloud-height) !important;
  pointer-events: none;
  background-image: var(--banner-cloud-image) !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: var(--banner-cloud-opacity);
  transform-origin: 54% 52%;
  animation: thicBannerCloudDrift var(--banner-cloud-duration) cubic-bezier(0.45, 0, 0.28, 1) infinite both;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.artefact-banner .artefact-banner__visual.visual-stage::after {
  z-index: 3;
  opacity: var(--banner-cloud-detail-opacity);
  animation-name: thicBannerCloudDetail;
  animation-duration: var(--banner-detail-duration);
  animation-direction: alternate;
}

.artefact-banner .artefact-banner__visual:is(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage > img {
  position: absolute !important;
  z-index: 2;
  left: var(--banner-object-left);
  top: var(--banner-object-top);
  display: block;
  width: var(--banner-object-width) !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
  transform-origin: 50% 50%;
  animation: thicBannerObjectDrift var(--banner-motion-duration) cubic-bezier(0.45, 0, 0.28, 1) infinite both !important;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.artefact-banner .artefact-banner__visual .hero-object-shadow,
.artefact-banner .artefact-banner__visual .feature-object-shadow {
  position: absolute;
  z-index: 1;
  left: var(--banner-shadow-left, 60%) !important;
  bottom: var(--banner-shadow-bottom, 13%) !important;
  display: block !important;
  width: var(--banner-shadow-width, 50%) !important;
  height: var(--banner-shadow-height, clamp(18px, 2.6vw, 36px)) !important;
  max-width: none;
  border-radius: 999px;
  background: rgba(7, 20, 45, var(--banner-shadow-opacity, 0.09));
  filter: blur(var(--banner-shadow-blur, 18px)) !important;
  transform: translateX(-50%);
  animation: thicBannerShadowDrift calc(var(--banner-motion-duration) + 3s) ease-in-out infinite both !important;
}

.artefact-banner--molecule {
  --banner-object-width: 63%;
  --banner-object-left: 58%;
  --banner-object-top: 52%;
  --banner-cloud-image: var(--thic-field-flow);
  --banner-cloud-left: 0%;
  --banner-cloud-top: 3%;
  --banner-cloud-width: 98%;
  --banner-cloud-height: 91%;
  --banner-cloud-opacity: 0.88;
  --banner-cloud-detail-opacity: 0.16;
  --banner-motion-duration: 22s;
  --banner-x-0: -18px;
  --banner-y-0: 8px;
  --banner-r-0: -0.75deg;
  --banner-s-0: 1.004;
  --banner-x-1: 16px;
  --banner-y-1: -12px;
  --banner-r-1: 0.58deg;
  --banner-s-1: 1.02;
  --banner-x-2: 28px;
  --banner-y-2: -3px;
  --banner-r-2: 1.05deg;
  --banner-s-2: 1.014;
  --banner-x-3: -9px;
  --banner-y-3: 13px;
  --banner-r-3: -0.32deg;
  --banner-s-3: 1.008;
  --banner-shadow-left: 66%;
  --banner-shadow-width: 46%;
  --banner-shadow-bottom: 12%;
}

.artefact-banner--science {
  --banner-object-width: 72%;
  --banner-object-left: 57%;
  --banner-object-top: 52%;
  --banner-cloud-image: var(--thic-field-concentration);
  --banner-cloud-left: 0%;
  --banner-cloud-top: 2%;
  --banner-cloud-width: 98%;
  --banner-cloud-height: 94%;
  --banner-cloud-opacity: 0.9;
  --banner-cloud-detail-opacity: 0.28;
  --banner-motion-duration: 21s;
  --banner-x-0: -24px;
  --banner-y-0: 6px;
  --banner-r-0: -0.35deg;
  --banner-s-0: 1.004;
  --banner-x-1: 21px;
  --banner-y-1: -8px;
  --banner-r-1: 0.24deg;
  --banner-s-1: 1.017;
  --banner-x-2: 34px;
  --banner-y-2: -14px;
  --banner-r-2: 0.48deg;
  --banner-s-2: 1.012;
  --banner-x-3: -16px;
  --banner-y-3: 9px;
  --banner-r-3: -0.18deg;
  --banner-s-3: 1.006;
  --banner-shadow-left: 60%;
  --banner-shadow-width: 48%;
  --banner-shadow-bottom: 14%;
}

.artefact-banner--technology {
  --banner-object-width: 66%;
  --banner-object-left: 57%;
  --banner-object-top: 52%;
  --banner-cloud-image: var(--thic-field-flow);
  --banner-cloud-left: 0%;
  --banner-cloud-top: 4%;
  --banner-cloud-width: 98%;
  --banner-cloud-height: 90%;
  --banner-cloud-opacity: 0.88;
  --banner-cloud-detail-opacity: 0.2;
  --banner-motion-duration: 23s;
  --banner-x-0: -16px;
  --banner-y-0: 7px;
  --banner-r-0: -0.5deg;
  --banner-x-1: 17px;
  --banner-y-1: -10px;
  --banner-r-1: 0.4deg;
  --banner-x-2: 25px;
  --banner-y-2: -4px;
  --banner-r-2: 0.78deg;
  --banner-x-3: -10px;
  --banner-y-3: 10px;
  --banner-r-3: -0.24deg;
  --banner-shadow-left: 58%;
  --banner-shadow-width: 58%;
}

.artefact-banner--manufacturing {
  --banner-object-width: 66%;
  --banner-object-left: 57%;
  --banner-object-top: 55%;
  --banner-cloud-image: var(--thic-field-controlled);
  --banner-cloud-left: 1%;
  --banner-cloud-top: 8%;
  --banner-cloud-width: 96%;
  --banner-cloud-height: 86%;
  --banner-cloud-opacity: 0.86;
  --banner-cloud-detail-opacity: 0.24;
  --banner-motion-duration: 24s;
  --banner-x-0: -14px;
  --banner-y-0: 7px;
  --banner-r-0: -0.3deg;
  --banner-x-1: 14px;
  --banner-y-1: -9px;
  --banner-r-1: 0.3deg;
  --banner-x-2: 22px;
  --banner-y-2: -5px;
  --banner-r-2: 0.52deg;
  --banner-x-3: -8px;
  --banner-y-3: 10px;
  --banner-r-3: -0.18deg;
  --banner-shadow-left: 59%;
  --banner-shadow-width: 54%;
}

.artefact-banner--innovation {
  --banner-object-width: 64%;
  --banner-object-left: 57%;
  --banner-object-top: 52%;
  --banner-cloud-image: var(--thic-field-diffusion);
  --banner-cloud-left: 2%;
  --banner-cloud-top: 8%;
  --banner-cloud-width: 94%;
  --banner-cloud-height: 84%;
  --banner-cloud-opacity: 0.82;
  --banner-cloud-detail-opacity: 0.14;
  --banner-motion-duration: 22s;
  --banner-x-0: -18px;
  --banner-y-0: 7px;
  --banner-r-0: -0.55deg;
  --banner-x-1: 20px;
  --banner-y-1: -10px;
  --banner-r-1: 0.48deg;
  --banner-x-2: 30px;
  --banner-y-2: -3px;
  --banner-r-2: 0.82deg;
  --banner-x-3: -10px;
  --banner-y-3: 11px;
  --banner-r-3: -0.28deg;
  --banner-shadow-left: 61%;
  --banner-shadow-width: 50%;
}

.artefact-banner--platform {
  --banner-cloud-image: var(--thic-field-diffusion);
  --banner-cloud-left: 2%;
  --banner-cloud-top: 4%;
  --banner-cloud-width: 96%;
  --banner-cloud-height: 92%;
  --banner-cloud-opacity: 0.84;
  --banner-cloud-detail-opacity: 0.22;
}

.artefact-banner--contact {
  --banner-copy-columns: minmax(0, 44fr) minmax(0, 56fr);
  --banner-section-min-height: clamp(500px, 55vh, 650px);
  --banner-section-y: clamp(56px, 6vw, 88px);
  --banner-object-width: 66%;
  --banner-object-left: 54%;
  --banner-object-top: 51%;
  --banner-cloud-image: var(--thic-field-flow);
  --banner-cloud-left: 2%;
  --banner-cloud-top: 8%;
  --banner-cloud-width: 92%;
  --banner-cloud-height: 78%;
  --banner-cloud-opacity: 0.72;
  --banner-cloud-detail-opacity: 0.12;
  --banner-fade-left: 35%;
  --banner-fade-width: 34%;
  --banner-shadow-left: 55%;
  --banner-shadow-width: 48%;
  --banner-shadow-bottom: 13%;
  --banner-shadow-opacity: 0.07;
  --banner-motion-duration: 23s;
  background:
    linear-gradient(90deg, #fff 0%, #fff 44%, rgba(247, 251, 255, 0.74) 82%, rgba(255, 255, 255, 0.5) 100%);
}

.feature-chapter--reverse.artefact-banner {
  --banner-copy-columns: minmax(0, 56fr) minmax(0, 44fr);
  background:
    linear-gradient(270deg, #fff 0%, #fff 42%, rgba(247, 251, 255, 0.82) 78%, rgba(247, 251, 255, 0.48) 100%);
}

.feature-chapter--reverse.artefact-banner::before {
  inset: 0 38% 0 0;
  background:
    radial-gradient(ellipse at 28% 52%, rgba(218, 246, 251, 0.27), rgba(255, 255, 255, 0) 58%);
}

.feature-chapter--reverse.artefact-banner::after {
  right: 38%;
  left: auto;
  background:
    linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.96) 30%, rgba(255, 255, 255, 0.58) 62%, rgba(255, 255, 255, 0) 100%);
}

.feature-chapter--reverse.artefact-banner .artefact-banner__copy {
  grid-column: 2 !important;
}

.feature-chapter--reverse.artefact-banner .artefact-banner__visual {
  grid-column: 1 !important;
}

.feature-chapter--reverse.artefact-banner .artefact-banner__visual::before,
.feature-chapter--reverse.artefact-banner .artefact-banner__visual::after {
  transform-origin: 46% 52%;
}

.feature-chapter--reverse.artefact-banner .artefact-banner__visual:is(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage > img {
  left: calc(100% - var(--banner-object-left));
}

.feature-chapter--reverse.artefact-banner .artefact-banner__visual .feature-object-shadow {
  left: calc(100% - var(--banner-shadow-left, 59%)) !important;
}

.artefact-banner .platform-constellation.artefact-banner__visual {
  pointer-events: none;
}

.artefact-banner .platform-constellation.artefact-banner__visual::before {
  inset: var(--banner-platform-cloud-inset, 2% -2% 4% -4%) !important;
  width: auto !important;
  height: auto !important;
  left: auto !important;
  top: auto !important;
  background-image: var(--thic-field-diffusion) !important;
  opacity: 0.9;
  animation: thicBannerCloudDrift 48s cubic-bezier(0.45, 0, 0.28, 1) infinite both;
}

.artefact-banner .platform-constellation.artefact-banner__visual::after {
  inset: var(--banner-platform-cloud-focus-inset, 18% 12% 18% 9%) !important;
  width: auto !important;
  height: auto !important;
  left: auto !important;
  top: auto !important;
  background-image: var(--thic-field-concentration) !important;
  opacity: 0.22;
  animation: thicBannerCloudDetail 62s ease-in-out infinite alternate both;
}

.artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__shadow {
  bottom: 11%;
  width: 54%;
  height: 6%;
}

.artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--molecule {
  --platform-item-width: 27%;
  --platform-item-left: 50%;
  --platform-item-top: 51%;
}

.artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--science {
  --platform-item-width: 27%;
  --platform-item-left: 78%;
  --platform-item-top: 25%;
}

.artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--technology {
  --platform-item-width: 34%;
  --platform-item-left: 25%;
  --platform-item-top: 31%;
}

.artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--manufacturing {
  --platform-item-width: 28%;
  --platform-item-left: 25%;
  --platform-item-top: 72%;
}

.artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--innovation {
  --platform-item-width: 29%;
  --platform-item-left: 76%;
  --platform-item-top: 75%;
}

main.thic-page-entering .artefact-banner .artefact-banner__visual.visual-stage::before,
main.thic-page-entering .artefact-banner .artefact-banner__visual.visual-stage::after,
main.thic-page-entering .artefact-banner .platform-constellation.artefact-banner__visual::before,
main.thic-page-entering .artefact-banner .platform-constellation.artefact-banner__visual::after {
  opacity: 0 !important;
  transition: opacity 1400ms ease-in-out 720ms;
}

main.thic-page-entering.thic-page-entered .artefact-banner .artefact-banner__visual.visual-stage::before {
  opacity: var(--banner-cloud-opacity, var(--thic-bubble-cluster-opacity, var(--microbubble-field-opacity, 0.9))) !important;
}

main.thic-page-entering.thic-page-entered .artefact-banner .artefact-banner__visual.visual-stage::after {
  opacity: var(--banner-cloud-detail-opacity, var(--microbubble-field-foreground-opacity, 0.16)) !important;
}

main.thic-page-entering.thic-page-entered .artefact-banner .platform-constellation.artefact-banner__visual::before {
  opacity: var(--platform-cloud-opacity, var(--banner-cloud-opacity, 0.86)) !important;
}

main.thic-page-entering.thic-page-entered .artefact-banner .platform-constellation.artefact-banner__visual::after {
  opacity: var(--platform-cloud-focus-opacity, var(--banner-cloud-detail-opacity, 0.22)) !important;
}

@keyframes thicBannerObjectDrift {
  0%,
  100% {
    transform: translate3d(calc(-50% + var(--banner-ambient-x-0, -4px)), calc(-50% + var(--banner-ambient-y-0, 2px)), 0) rotate(var(--banner-ambient-r-0, -0.08deg)) scale(var(--banner-ambient-s-0, 0.998));
  }

  29% {
    transform: translate3d(calc(-50% + var(--banner-ambient-x-1, 4px)), calc(-50% + var(--banner-ambient-y-1, -3px)), 0) rotate(var(--banner-ambient-r-1, 0.08deg)) scale(var(--banner-ambient-s-1, 1.004));
  }

  58% {
    transform: translate3d(calc(-50% + var(--banner-ambient-x-2, 6px)), calc(-50% + var(--banner-ambient-y-2, -2px)), 0) rotate(var(--banner-ambient-r-2, 0.14deg)) scale(var(--banner-ambient-s-2, 1.006));
  }

  82% {
    transform: translate3d(calc(-50% + var(--banner-ambient-x-3, -3px)), calc(-50% + var(--banner-ambient-y-3, 3px)), 0) rotate(var(--banner-ambient-r-3, -0.05deg)) scale(var(--banner-ambient-s-3, 1.001));
  }
}

@keyframes thicBannerCloudDrift {
  0%,
  100% {
    transform: translate3d(-4px, 2px, 0) rotate(-0.12deg) scale(1.002);
  }

  35% {
    transform: translate3d(5px, -3px, 0) rotate(0.1deg) scale(1.008);
  }

  68% {
    transform: translate3d(6px, -1px, 0) rotate(0.16deg) scale(1.005);
  }

  84% {
    transform: translate3d(-3px, 3px, 0) rotate(-0.08deg) scale(1.003);
  }
}

@keyframes thicBannerCloudDetail {
  0%,
  100% {
    transform: translate3d(1px, -1px, 0) rotate(-0.08deg) scale(1.001);
  }

  55% {
    transform: translate3d(-2px, 2px, 0) rotate(0.06deg) scale(1.006);
  }
}

@keyframes thicBannerShadowDrift {
  0%,
  100% {
    transform: translateX(calc(-50% + 0px)) scaleX(1);
    opacity: 0.086;
  }

  45% {
    transform: translateX(calc(-50% + 4px)) scaleX(1.03);
    opacity: 0.065;
  }

  78% {
    transform: translateX(calc(-50% - 3px)) scaleX(0.99);
    opacity: 0.079;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .artefact-banner {
    --banner-copy-columns: minmax(0, 45fr) minmax(0, 55fr);
    --banner-section-min-height: clamp(500px, 58vw, 640px);
    --banner-section-y: clamp(52px, 6vw, 76px);
    --banner-fade-left: 38%;
    --banner-fade-width: 24%;
  }

  .feature-chapter--reverse.artefact-banner {
    --banner-copy-columns: minmax(0, 55fr) minmax(0, 45fr);
  }

  .artefact-banner--molecule {
    --banner-object-width: 60%;
    --banner-object-left: 56%;
  }

  .artefact-banner--science {
    --banner-object-width: 70%;
    --banner-object-left: 56%;
  }

  .artefact-banner--technology {
    --banner-object-width: 64%;
    --banner-object-left: 56%;
  }

  .artefact-banner--manufacturing {
    --banner-object-width: 64%;
    --banner-object-left: 56%;
  }

  .artefact-banner--innovation {
    --banner-object-width: 62%;
    --banner-object-left: 56%;
  }

  .artefact-banner--contact {
    --banner-section-min-height: clamp(470px, 54vw, 600px);
    --banner-object-width: 62%;
    --banner-object-left: 53%;
    --banner-object-top: 51%;
    --banner-fade-left: 35%;
    --banner-fade-width: 28%;
  }

  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--molecule {
    --platform-item-width: 26%;
  }

  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--technology {
    --platform-item-width: 33%;
  }
}

@media (max-width: 899px) {
  .artefact-banner {
    --banner-section-min-height: 0;
    --banner-section-y: clamp(46px, 10vw, 66px);
    --banner-mobile-visual-height: clamp(245px, 58vw, 390px);
    --banner-copy-max: 620px;
    --banner-fade-left: 0;
    --banner-fade-width: auto;
    background:
      linear-gradient(180deg, #fff 0%, #fff 48%, rgba(247, 251, 255, 0.72) 100%);
  }

  .tech-hero.artefact-banner .hero-canvas,
  .object-page-hero.artefact-banner,
  .public-page-hero.artefact-banner,
  .work-hero.artefact-banner,
  .future-platform.artefact-banner,
  .feature-chapter.artefact-banner,
  .feature-chapter--reverse.artefact-banner {
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: 0;
    gap: clamp(18px, 5vw, 30px);
  }

  .tech-hero.artefact-banner .hero-canvas {
    padding: var(--banner-section-y) var(--page-pad) clamp(38px, 9vw, 58px);
  }

  .object-page-hero.artefact-banner,
  .public-page-hero.artefact-banner,
  .work-hero.artefact-banner,
  .future-platform.artefact-banner,
  .feature-chapter.artefact-banner,
  .feature-chapter--reverse.artefact-banner {
    padding: var(--banner-section-y) var(--page-pad);
  }

  .artefact-banner::before {
    inset: auto -8% 0 -8%;
    height: 48%;
    background:
      radial-gradient(ellipse at 58% 52%, rgba(218, 246, 251, 0.27), rgba(255, 255, 255, 0) 63%);
  }

  .artefact-banner::after,
  .feature-chapter--reverse.artefact-banner::after {
    left: 0;
    right: 0;
    top: calc(48% - 26px);
    bottom: auto;
    width: auto;
    height: 96px;
    background:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0) 100%);
  }

  .artefact-banner__copy,
  .feature-chapter--reverse.artefact-banner .artefact-banner__copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100%;
    max-width: min(100%, var(--banner-copy-max));
    margin-left: 0 !important;
  }

  .artefact-banner .artefact-banner__visual.visual-stage,
  .feature-chapter--reverse.artefact-banner .artefact-banner__visual {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--banner-mobile-visual-height) !important;
    min-height: var(--banner-mobile-visual-height) !important;
  }

  .artefact-banner--molecule {
    --banner-object-width: 68%;
    --banner-object-left: 54%;
    --banner-object-top: 52%;
    --banner-cloud-left: 5%;
    --banner-cloud-width: 90%;
  }

  .artefact-banner--science {
    --banner-object-width: 82%;
    --banner-object-left: 54%;
    --banner-object-top: 52%;
  }

  .artefact-banner--technology {
    --banner-object-width: 78%;
    --banner-object-left: 54%;
  }

  .artefact-banner--manufacturing {
    --banner-object-width: 76%;
    --banner-object-left: 54%;
    --banner-object-top: 55%;
  }

  .artefact-banner--innovation {
    --banner-object-width: 76%;
    --banner-object-left: 54%;
  }

  .artefact-banner--contact {
    --banner-mobile-visual-height: clamp(230px, 50vw, 330px);
    --banner-object-width: 76%;
    --banner-object-left: 54%;
    --banner-object-top: 51%;
    --banner-cloud-width: 88%;
    --banner-cloud-height: 76%;
    --banner-cloud-left: 6%;
    --banner-cloud-top: 11%;
  }

  .feature-chapter--reverse.artefact-banner .artefact-banner__visual:is(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage > img {
    left: var(--banner-object-left);
  }

  .feature-chapter--reverse.artefact-banner .artefact-banner__visual .feature-object-shadow {
    left: var(--banner-shadow-left, 59%) !important;
  }

  .artefact-banner--platform {
    --banner-mobile-visual-height: clamp(280px, 66vw, 420px);
  }

  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--molecule {
    --platform-item-width: 26%;
  }

  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--science {
    --platform-item-width: 27%;
    --platform-item-left: 78%;
  }

  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--technology {
    --platform-item-width: 34%;
    --platform-item-left: 25%;
  }

  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--manufacturing {
    --platform-item-width: 28%;
    --platform-item-left: 25%;
  }

  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item--innovation {
    --platform-item-width: 29%;
    --platform-item-left: 76%;
  }
}

@media (max-width: 430px) {
  .artefact-banner {
    --banner-mobile-visual-height: clamp(232px, 62vw, 305px);
  }

  .artefact-banner--molecule {
    --banner-object-width: 70%;
  }

  .artefact-banner--science {
    --banner-object-width: 82%;
  }

  .artefact-banner--technology {
    --banner-object-width: 78%;
  }

  .artefact-banner--manufacturing {
    --banner-object-width: 76%;
  }

  .artefact-banner--innovation {
    --banner-object-width: 76%;
  }

  .artefact-banner--contact {
    --banner-mobile-visual-height: clamp(220px, 58vw, 285px);
    --banner-object-width: 78%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .artefact-banner .artefact-banner__visual.visual-stage::before,
  .artefact-banner .artefact-banner__visual.visual-stage::after,
  .artefact-banner .artefact-banner__visual:is(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage > img,
  .artefact-banner .artefact-banner__visual .hero-object-shadow,
  .artefact-banner .artefact-banner__visual .feature-object-shadow,
  .artefact-banner .platform-constellation.artefact-banner__visual::before,
  .artefact-banner .platform-constellation.artefact-banner__visual::after,
  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item,
  .artefact-banner .platform-constellation.artefact-banner__visual .platform-constellation__item img {
    animation: none !important;
  }

  .artefact-banner .artefact-banner__visual:is(.hero-object, .feature-object, .page-hero-object, .work-hero-object).visual-stage > img {
    transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1.01) !important;
  }
}

/* ===== THIC Science leadership and evidence page system ===== */
.science-editorial {
  --science-card-border: rgba(213, 232, 232, 0.9);
  --science-card-shadow: 0 18px 54px rgba(18, 45, 92, 0.055);
}

.science-thesis {
  background:
    linear-gradient(180deg, #fff 0%, rgba(248, 252, 255, 0.72) 100%);
}

.science-editorial [id],
.science-leadership,
.science-evidence,
.science-measurement-banner {
  scroll-margin-top: clamp(150px, 12vw, 196px);
}

.science-validation-grid,
.contribution-grid,
.publication-grid,
.science-development-grid,
.research-flow__steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--science-card-border);
  border-radius: 8px;
  background: var(--science-card-border);
  box-shadow: var(--science-card-shadow);
}

.science-validation-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.science-validation-grid article,
.contribution-grid article,
.publication-card,
.science-development-grid article,
.research-flow__steps article {
  min-width: 0;
  background: #fff;
}

.science-validation-grid article,
.science-development-grid article {
  min-height: 172px;
  padding: clamp(22px, 2.8vw, 32px);
}

.science-validation-grid h3,
.contribution-grid h3,
.science-development-grid h3,
.research-flow__steps h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.science-validation-grid p,
.contribution-grid p,
.science-development-grid p,
.research-flow__steps p,
.publication-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.science-leadership,
.science-evidence {
  padding: clamp(58px, 7vw, 108px) var(--page-pad);
  border-bottom: 1px solid rgba(213, 232, 232, 0.72);
  background: #fff;
}

.science-leadership__inner,
.science-evidence__inner,
.science-development__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.science-leadership__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.advisor-profile {
  position: sticky;
  top: clamp(136px, 11vw, 170px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(213, 232, 232, 0.94);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
  box-shadow: 0 22px 62px rgba(18, 45, 92, 0.08);
}

.advisor-profile__portrait {
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background: #f5f9fb;
  aspect-ratio: 1;
}

.advisor-profile__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-profile__meta h2 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
}

.advisor-profile__role {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.advisor-story > p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.84;
}

.advisor-story > p + p {
  margin-top: 18px;
}

.contribution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 44px);
}

.contribution-grid article {
  min-height: 174px;
  padding: clamp(22px, 2.7vw, 34px);
}

.science-evidence {
  background: #fbfdff;
}

.science-evidence__header,
.science-development__header {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(30px, 4.6vw, 58px);
}

.science-evidence__header h2,
.science-development__header h2 {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(31px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
}

.science-evidence__header p,
.science-development__header p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

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

.publication-card {
  padding: clamp(26px, 4vw, 44px);
}

.publication-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.publication-card__type,
.publication-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.publication-card__type {
  border: 1px solid rgba(47, 116, 123, 0.28);
  background: rgba(47, 116, 123, 0.08);
  color: var(--blue);
}

.publication-card__status {
  border: 1px solid rgba(213, 232, 232, 0.96);
  background: #fff;
  color: var(--muted);
}

.publication-card h3 {
  max-width: 950px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 500;
  line-height: 1.22;
}

.publication-card__meta {
  margin-bottom: 18px !important;
  color: var(--blue) !important;
  font-size: 13px !important;
  font-weight: 900;
  line-height: 1.55 !important;
  text-transform: uppercase;
}

.publication-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.clinical-study-slot {
  margin-top: clamp(28px, 4.5vw, 56px);
}

.clinical-study-feature {
  overflow: hidden;
  border: 1px solid rgba(196, 224, 227, 0.96);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(247, 252, 255, 0.92) 0%, #fff 42%, rgba(250, 253, 255, 0.96) 100%);
  box-shadow: 0 26px 72px rgba(18, 45, 92, 0.08);
}

.clinical-study-feature__masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: clamp(28px, 4.8vw, 58px);
  border-bottom: 1px solid rgba(213, 232, 232, 0.88);
}

.clinical-study-feature__status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(47, 116, 123, 0.3);
  border-radius: 999px;
  background: rgba(47, 116, 123, 0.08);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.clinical-study-feature h3 {
  max-width: 900px;
  margin: 18px 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 500;
  line-height: 1.06;
  text-wrap: balance;
}

.clinical-study-feature__title {
  max-width: 980px;
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.62;
}

.clinical-study-feature__facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 0;
}

.clinical-study-feature__facts div {
  border-left: 1px solid rgba(38, 131, 139, 0.24);
  padding-left: 14px;
}

.clinical-study-feature__facts dt {
  color: rgba(9, 23, 48, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinical-study-feature__facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.clinical-study-feature__investigator {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid rgba(213, 232, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.clinical-study-feature__investigator span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.clinical-study-feature__investigator strong {
  color: var(--ink);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.35;
}

.clinical-study-feature__investigator a,
.study-action,
.clinical-engineering-flow__links a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.clinical-study-feature__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(28px, 4vw, 46px) clamp(28px, 4.8vw, 58px);
  border-bottom: 1px solid rgba(213, 232, 232, 0.82);
}

.clinical-study-feature__intro p,
.clinical-study-feature__meta-heading p,
.study-results-overview p,
.study-perspective p,
.clinical-engineering-flow__header p,
.evidence-library__header p,
.evidence-library-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.74;
}

.clinical-study-feature__intro p {
  color: var(--text);
  font-size: clamp(16px, 1.1vw, 18px);
}

.clinical-study-feature__meta-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(28px, 4vw, 46px) clamp(28px, 4.8vw, 58px);
  border-bottom: 1px solid rgba(213, 232, 232, 0.82);
}

.clinical-study-feature__meta-heading {
  align-self: start;
}

.clinical-study-feature__meta-heading p {
  margin-top: 12px;
}

.study-metadata-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background: rgba(213, 232, 232, 0.9);
}

.study-metadata-grid div {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.study-metadata-grid dt {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.study-metadata-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.42;
}

.study-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-bottom: 1px solid rgba(213, 232, 232, 0.86);
  background: rgba(213, 232, 232, 0.9);
}

.study-outcome-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 34px);
  background: #fff;
}

.study-outcome-card__label {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.study-outcome-card h4,
.study-results-overview h4,
.study-perspective h4,
.study-limitations h4,
.clinical-engineering-flow h4,
.clinical-engineering-flow h5,
.evidence-library__header h3,
.evidence-library-card h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.22;
  text-wrap: balance;
}

.study-outcome-card h4 {
  margin-bottom: 14px;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 600;
}

.study-outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.study-stat-list {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding-top: 24px;
}

.study-stat-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid rgba(213, 232, 232, 0.84);
}

.study-stat-list dt {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.study-stat-list dd {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.study-outcome-card__note {
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(213, 232, 232, 0.7);
  color: var(--text) !important;
  font-size: 12px !important;
}

.clinical-study-feature__summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid rgba(213, 232, 232, 0.86);
  background: rgba(213, 232, 232, 0.9);
}

.study-results-overview,
.study-perspective {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.92);
}

.study-results-overview h4,
.study-perspective h4,
.study-limitations h4,
.clinical-engineering-flow h4 {
  margin: 10px 0 18px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
}

.study-results-overview p + p,
.study-perspective p + p {
  margin-top: 14px;
}

.study-limitations {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(26px, 4vw, 44px) clamp(28px, 4.8vw, 58px);
  border-bottom: 1px solid rgba(213, 232, 232, 0.86);
  background: #fff;
}

.study-limitations ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.study-limitations li {
  padding: 13px 14px;
  border: 1px solid rgba(213, 232, 232, 0.88);
  border-radius: 8px;
  background: rgba(247, 252, 255, 0.72);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
}

.clinical-engineering-flow {
  padding: clamp(28px, 4vw, 46px) clamp(28px, 4.8vw, 58px);
  border-bottom: 1px solid rgba(213, 232, 232, 0.86);
  background: rgba(250, 253, 255, 0.96);
}

.clinical-engineering-flow__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(320px, 0.54fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: end;
  margin-bottom: 26px;
}

.clinical-engineering-flow__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.88);
  border-radius: 8px;
  background: rgba(213, 232, 232, 0.88);
}

.clinical-engineering-flow__steps article {
  position: relative;
  min-height: 176px;
  padding: 20px;
  background: #fff;
}

.clinical-engineering-flow__steps article:not(:last-child)::after {
  position: absolute;
  right: 14px;
  top: 22px;
  color: rgba(47, 116, 123, 0.34);
  font-size: 18px;
  content: "→";
}

.clinical-engineering-flow__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(47, 116, 123, 0.28);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.clinical-engineering-flow h5 {
  margin-bottom: 10px;
  padding-right: 14px;
  font-size: 15px;
}

.clinical-engineering-flow__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.clinical-engineering-flow__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.clinical-engineering-flow__links a,
.study-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(47, 116, 123, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.clinical-study-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: clamp(24px, 3.5vw, 36px) clamp(28px, 4.8vw, 58px);
  background: #fff;
}

.study-action--disabled {
  border-color: rgba(213, 232, 232, 0.9);
  color: var(--muted);
  cursor: not-allowed;
}

.evidence-library {
  margin-top: clamp(34px, 5vw, 62px);
}

.evidence-library__header {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 24px;
}

.evidence-library__header h3 {
  margin-top: 10px;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 500;
}

.evidence-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--science-card-border);
  border-radius: 8px;
  background: var(--science-card-border);
  box-shadow: var(--science-card-shadow);
}

.evidence-library-card {
  min-height: 210px;
  padding: clamp(22px, 2.4vw, 30px);
  background: #fff;
}

.evidence-library-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.evidence-library-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.science-measurement-banner.artefact-banner {
  --banner-section-min-height: clamp(520px, 56vh, 700px);
  --banner-section-y: clamp(58px, 7vw, 96px);
  --banner-copy-max: 690px;
  display: grid !important;
  grid-template-columns: var(--banner-copy-columns) !important;
  align-items: stretch;
  min-height: var(--banner-section-min-height);
  padding: var(--banner-section-y) var(--page-pad);
  border-bottom: 1px solid rgba(213, 232, 232, 0.72);
}

.science-measurement-banner__copy h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
}

.science-measurement-banner__copy p {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.78;
}

.science-measurement-banner__copy p + p {
  margin-top: 18px;
}

.measurement-themes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.measurement-themes li {
  padding: 12px 14px;
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.research-flow__steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: research-flow;
}

.research-flow__steps article {
  position: relative;
  min-height: 198px;
  padding: clamp(22px, 2.6vw, 34px);
}

.research-flow__steps article:not(:last-child)::after {
  position: absolute;
  right: 18px;
  top: 32px;
  color: rgba(47, 116, 123, 0.38);
  font-size: 22px;
  content: "→";
}

.research-flow__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border: 1px solid rgba(47, 116, 123, 0.28);
  border-radius: 50%;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.science-development__inner {
  display: block;
}

.science-development-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.science-development-grid article {
  min-height: 190px;
}

.science-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.science-cta-actions .primary-link,
.science-cta-actions .secondary-link {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .science-validation-grid,
  .science-development-grid,
  .study-outcome-grid,
  .evidence-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-flow__steps,
  .clinical-engineering-flow__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .research-flow__steps article:nth-child(3)::after,
  .clinical-engineering-flow__steps article:nth-child(3)::after {
    content: "";
  }

  .study-metadata-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .science-leadership__inner,
  .science-evidence__header,
  .science-development__header,
  .clinical-study-feature__masthead,
  .clinical-study-feature__meta-panel,
  .clinical-engineering-flow__header,
  .evidence-library__header,
  .science-measurement-banner.artefact-banner {
    grid-template-columns: 1fr !important;
    gap: clamp(26px, 5vw, 42px);
  }

  .clinical-study-feature__masthead {
    align-items: start;
  }

  .clinical-study-feature__intro,
  .clinical-study-feature__summary-grid,
  .study-limitations {
    grid-template-columns: 1fr;
  }

  .advisor-profile {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
  }

  .advisor-profile__portrait {
    margin: 0;
  }

  .science-measurement-banner.artefact-banner {
    --banner-mobile-visual-height: clamp(260px, 40vw, 380px);
    min-height: 0;
  }

  .science-measurement-banner.artefact-banner .artefact-banner__visual.visual-stage {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    height: var(--banner-mobile-visual-height) !important;
    min-height: var(--banner-mobile-visual-height) !important;
  }
}

@media (max-width: 700px) {
  .science-leadership,
  .science-evidence {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .advisor-profile {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .advisor-profile__portrait {
    width: min(100%, 340px);
  }

  .science-validation-grid,
  .contribution-grid,
  .science-development-grid,
  .clinical-study-feature__facts,
  .study-metadata-grid,
  .study-outcome-grid,
  .study-limitations ul,
  .evidence-library-grid,
  .research-flow__steps,
  .clinical-engineering-flow__steps,
  .measurement-themes {
    grid-template-columns: 1fr;
  }

  .research-flow__steps article,
  .clinical-engineering-flow__steps article {
    min-height: 0;
  }

  .research-flow__steps article:not(:last-child)::after,
  .clinical-engineering-flow__steps article:not(:last-child)::after {
    right: auto;
    top: auto;
    left: 34px;
    bottom: -17px;
    transform: rotate(90deg);
  }

  .science-evidence__header,
  .science-development__header {
    margin-bottom: 28px;
  }

  .publication-card__topline {
    align-items: flex-start;
  }

  .clinical-study-feature__masthead,
  .clinical-study-feature__intro,
  .clinical-study-feature__meta-panel,
  .study-results-overview,
  .study-perspective,
  .study-limitations,
  .clinical-engineering-flow,
  .clinical-study-feature__actions {
    padding-right: 20px;
    padding-left: 20px;
  }

  .study-outcome-card {
    min-height: 0;
  }

  .study-stat-list {
    margin-top: 22px;
    padding-top: 0;
  }

  .clinical-study-feature__actions,
  .clinical-engineering-flow__links {
    align-items: stretch;
    flex-direction: column;
  }

  .study-action,
  .clinical-engineering-flow__links a {
    width: 100%;
    text-align: center;
  }
}

/* ===== THIC Hydrogen Measurement page system ===== */
.hydrogen-measurement-page {
  background: #fff;
}

.measurement-hero .public-page-copy {
  max-width: 700px;
}

.measurement-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.measurement-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.measurement-breadcrumb a:hover,
.measurement-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.measurement-back-link {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.measurement-back-link:hover,
.measurement-back-link:focus-visible {
  text-decoration: underline;
}

.measurement-editorial {
  --measurement-card-border: rgba(213, 232, 232, 0.9);
  --measurement-card-shadow: 0 18px 54px rgba(18, 45, 92, 0.055);
}

.measurement-editorial [id],
.measurement-evidence,
.measurement-observation,
.measurement-methods,
.microbubble-explanation,
.measurement-approach,
.measurement-variables,
.measurement-disclaimer {
  scroll-margin-top: clamp(150px, 12vw, 196px);
}

.measurement-evidence,
.measurement-observation,
.measurement-methods,
.microbubble-explanation,
.measurement-approach,
.measurement-variables,
.measurement-disclaimer {
  padding: clamp(58px, 7vw, 108px) var(--page-pad);
  border-bottom: 1px solid rgba(213, 232, 232, 0.72);
  background: #fff;
}

.measurement-observation,
.measurement-variables {
  background: linear-gradient(180deg, #fbfdff 0%, #fff 100%);
}

.measurement-section-header,
.measurement-approach__inner,
.measurement-disclaimer__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.measurement-section-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(30px, 4.6vw, 58px);
}

.measurement-section-header h2,
.microbubble-explanation h2,
.measurement-disclaimer h2 {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(31px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
}

.measurement-section-header p,
.microbubble-explanation p,
.measurement-disclaimer p {
  max-width: 700px;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.78;
}

.measurement-section-header p + p,
.microbubble-explanation p + p,
.measurement-disclaimer p + p {
  margin-top: 18px;
}

.measurement-evidence-grid,
.measurement-sequence,
.measurement-approach-grid,
.measurement-variables-grid {
  display: grid;
  gap: 1px;
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--measurement-card-border);
  border-radius: 8px;
  background: var(--measurement-card-border);
  box-shadow: var(--measurement-card-shadow);
}

.measurement-evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screenshot-evidence-card,
.measurement-sequence-card,
.measurement-approach-grid article,
.measurement-variables-grid article {
  min-width: 0;
  background: #fff;
}

.screenshot-evidence-card figure,
.measurement-sequence-card figure,
.sampling-evidence-card {
  margin: 0;
}

.screenshot-evidence-card figure {
  padding: 14px 14px 0;
}

.screenshot-evidence-card img,
.measurement-sequence-card img,
.sampling-evidence-card img,
.microbubble-explanation__evidence img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background: #f7fbff;
  object-fit: cover;
}

.screenshot-evidence-card--landscape img,
.measurement-sequence-card--landscape img {
  aspect-ratio: 4 / 3;
}

.screenshot-evidence-card--portrait img,
.measurement-sequence-card--portrait img {
  aspect-ratio: 3 / 4;
}

.screenshot-evidence-card figcaption,
.sampling-evidence-card figcaption,
.microbubble-explanation__evidence figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.screenshot-evidence-card__copy {
  padding: clamp(22px, 2.7vw, 34px);
}

.screenshot-evidence-card__copy h3,
.measurement-sequence-card h3,
.measurement-approach-grid h3,
.measurement-variables-grid h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 800;
  line-height: 1.22;
}

.screenshot-evidence-card__copy p,
.measurement-sequence-card p,
.measurement-approach-grid p,
.measurement-variables-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.measurement-context-note {
  max-width: 930px;
  margin: clamp(26px, 3.4vw, 44px) auto 0;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(47, 116, 123, 0.18);
  border-radius: 8px;
  background: rgba(234, 245, 244, 0.54);
  color: var(--text);
  font-size: clamp(15px, 1.03vw, 17px);
  line-height: 1.7;
}

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

.measurement-sequence-card figure {
  padding: 14px 14px 0;
}

.measurement-sequence-card > div {
  padding: 20px 22px 24px;
}

.measurement-sequence-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border: 1px solid rgba(47, 116, 123, 0.28);
  border-radius: 50%;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.measurement-method-matrix {
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--measurement-card-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--measurement-card-shadow);
}

.measurement-method-matrix table {
  width: 100%;
  border-collapse: collapse;
}

.measurement-method-matrix caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.measurement-method-matrix th,
.measurement-method-matrix td {
  padding: clamp(18px, 2.1vw, 28px);
  border-bottom: 1px solid rgba(213, 232, 232, 0.82);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}

.measurement-method-matrix thead th {
  background: #f6fbfc;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.measurement-method-matrix tbody th {
  width: 21%;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.measurement-method-matrix tr:last-child th,
.measurement-method-matrix tr:last-child td {
  border-bottom: 0;
}

.microbubble-explanation {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 0.48fr) minmax(260px, 0.52fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.microbubble-explanation__copy,
.microbubble-explanation__evidence,
.microbubble-diagram {
  min-width: 0;
}

.technical-note-inline {
  margin-top: 22px !important;
  padding: 18px 20px;
  border-left: 3px solid rgba(47, 116, 123, 0.42);
  background: rgba(234, 245, 244, 0.5);
  color: var(--text) !important;
}

.microbubble-diagram {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 58% 44%, rgba(47, 116, 123, 0.09) 0 22%, transparent 23%),
    linear-gradient(135deg, rgba(248, 252, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.microbubble-diagram__field,
.microbubble-diagram__field::before,
.microbubble-diagram__field::after {
  position: absolute;
  inset: 0;
  content: "";
}

.microbubble-diagram__field {
  background:
    radial-gradient(circle at 35% 24%, transparent 0 5px, rgba(47, 116, 123, 0.36) 5.5px 6.5px, transparent 7px),
    radial-gradient(circle at 64% 36%, transparent 0 7px, rgba(120, 170, 174, 0.42) 7.5px 8.5px, transparent 9px),
    radial-gradient(circle at 52% 64%, transparent 0 4px, rgba(47, 116, 123, 0.32) 4.5px 5.4px, transparent 6px),
    radial-gradient(circle at 76% 70%, transparent 0 5px, rgba(120, 170, 174, 0.32) 5.5px 6.4px, transparent 7px);
}

.microbubble-diagram__field::before {
  opacity: 0.82;
  background-image: radial-gradient(circle, rgba(47, 116, 123, 0.26) 0 1px, transparent 1.4px);
  background-size: 19px 23px;
  mask-image: radial-gradient(ellipse at 60% 54%, #000 0 48%, transparent 74%);
}

.microbubble-diagram__field::after {
  opacity: 0.72;
  background-image: radial-gradient(circle, rgba(120, 170, 174, 0.32) 0 1.2px, transparent 1.6px);
  background-size: 31px 27px;
  transform: rotate(-8deg);
  mask-image: radial-gradient(ellipse at 52% 48%, #000 0 42%, transparent 68%);
}

.microbubble-diagram__label {
  position: absolute;
  z-index: 2;
  max-width: 170px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.microbubble-diagram__label--dissolved {
  left: 24px;
  top: 28px;
}

.microbubble-diagram__label--bubble {
  right: 24px;
  bottom: 28px;
  color: var(--blue);
  text-align: right;
}

.measurement-sampling .discipline-section__inner {
  align-items: center;
}

.sampling-evidence-card {
  padding: 14px;
  border: 1px solid var(--measurement-card-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--measurement-card-shadow);
}

.sampling-evidence-card img {
  aspect-ratio: 4 / 3;
}

.measurement-approach-grid,
.measurement-variables-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.measurement-approach-grid article,
.measurement-variables-grid article {
  min-height: 178px;
  padding: clamp(22px, 2.8vw, 32px);
}

.measurement-approach__inner .measurement-section-header {
  margin-bottom: clamp(28px, 4.2vw, 50px);
}

.measurement-flow__steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.measurement-flow__steps article:nth-child(3)::after {
  content: "";
}

.measurement-crosslinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1360px;
  margin: clamp(24px, 3vw, 34px) auto 0;
}

.measurement-crosslinks a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(47, 116, 123, 0.24);
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.measurement-crosslinks a:hover,
.measurement-crosslinks a:focus-visible {
  background: rgba(47, 116, 123, 0.08);
}

.measurement-disclaimer {
  background: #fbfdff;
}

.measurement-disclaimer__inner {
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--measurement-card-shadow);
}

.measurement-disclaimer h2 {
  max-width: 720px;
}

@media (max-width: 1180px) {
  .measurement-evidence-grid,
  .measurement-flow__steps,
  .measurement-approach-grid,
  .measurement-variables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .measurement-sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .microbubble-explanation {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  }

  .microbubble-diagram {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .measurement-flow__steps article:nth-child(3)::after {
    content: "\\2192";
  }

  .measurement-flow__steps article:nth-child(2)::after,
  .measurement-flow__steps article:nth-child(4)::after {
    content: "";
  }
}

@media (max-width: 1024px) {
  .measurement-section-header,
  .measurement-sampling .discipline-section__inner,
  .microbubble-explanation {
    grid-template-columns: 1fr !important;
    gap: clamp(26px, 5vw, 42px);
  }

  .measurement-section-header {
    align-items: start;
  }

  .microbubble-explanation__evidence {
    max-width: min(100%, 460px);
  }
}

@media (max-width: 700px) {
  .measurement-evidence,
  .measurement-observation,
  .measurement-methods,
  .microbubble-explanation,
  .measurement-approach,
  .measurement-variables,
  .measurement-disclaimer {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .measurement-breadcrumb {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .measurement-evidence-grid,
  .measurement-sequence,
  .measurement-approach-grid,
  .measurement-variables-grid,
  .measurement-flow__steps {
    grid-template-columns: 1fr;
  }

  .screenshot-evidence-card--portrait img,
  .measurement-sequence-card--portrait img {
    aspect-ratio: 4 / 3;
  }

  .measurement-method-matrix {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .measurement-method-matrix table,
  .measurement-method-matrix tbody,
  .measurement-method-matrix tr,
  .measurement-method-matrix th,
  .measurement-method-matrix td {
    display: block;
    width: 100%;
  }

  .measurement-method-matrix thead {
    display: none;
  }

  .measurement-method-matrix tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--measurement-card-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(18, 45, 92, 0.045);
  }

  .measurement-method-matrix tbody th,
  .measurement-method-matrix td {
    width: 100% !important;
    padding: 17px 18px;
    border-bottom: 1px solid rgba(213, 232, 232, 0.72);
  }

  .measurement-method-matrix td::before {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .measurement-method-matrix tr:last-child th,
  .measurement-method-matrix tr:last-child td {
    border-bottom: 1px solid rgba(213, 232, 232, 0.72);
  }

  .measurement-method-matrix tr td:last-child {
    border-bottom: 0;
  }

  .microbubble-diagram {
    min-height: 240px;
  }

  .measurement-crosslinks {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ===== THIC About editorial company page ===== */
.about-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-page main {
  background: #fff;
}

.about-hero.artefact-banner {
  --banner-copy-columns: minmax(0, 42fr) minmax(0, 58fr);
  --banner-section-min-height: clamp(760px, 80vh, 930px);
  --banner-section-y: clamp(64px, 6vw, 96px);
  --banner-copy-max: 660px;
  --banner-object-width: 90%;
  --banner-object-left: 64%;
  --banner-object-top: 61%;
  --banner-cloud-image: var(--thic-field-flow);
  --banner-cloud-left: -2%;
  --banner-cloud-top: 5%;
  --banner-cloud-width: 98%;
  --banner-cloud-height: 88%;
  --banner-cloud-opacity: 0.5;
  --banner-cloud-detail-opacity: 0.16;
  --banner-fade-left: 24%;
  --banner-fade-width: 44%;
  --banner-motion-duration: 24s;
  --banner-x-0: -12px;
  --banner-y-0: 6px;
  --banner-r-0: -0.25deg;
  --banner-s-0: 1.004;
  --banner-x-1: 14px;
  --banner-y-1: -8px;
  --banner-r-1: 0.22deg;
  --banner-s-1: 1.012;
  --banner-x-2: 21px;
  --banner-y-2: -4px;
  --banner-r-2: 0.32deg;
  --banner-s-2: 1.01;
  --banner-x-3: -8px;
  --banner-y-3: 8px;
  --banner-r-3: -0.14deg;
  --banner-s-3: 1.006;
  --banner-shadow-left: 53%;
  --banner-shadow-width: 82%;
  --banner-shadow-bottom: 10%;
  --banner-shadow-opacity: 0.065;
  display: grid !important;
  grid-template-columns: var(--banner-copy-columns) !important;
  grid-template-rows: minmax(0, 1fr) auto;
  column-gap: 0;
  row-gap: clamp(34px, 4vw, 56px);
  align-items: stretch;
  min-height: var(--banner-section-min-height);
  padding: var(--banner-section-y) var(--page-pad) clamp(34px, 4.2vw, 62px);
}

.about-hero::before {
  inset: 0 0 0 34%;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(218, 246, 251, 0.28), rgba(255, 255, 255, 0) 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(247, 251, 255, 0.62) 100%);
}

.about-hero .about-hero__copy {
  align-self: center;
  padding-bottom: clamp(86px, 8.8vw, 132px);
}

.about-hero .about-production-line-visual.artefact-banner__visual {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  pointer-events: none;
}

.about-hero__copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.7vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.about-hero__copy p {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.76;
}

.about-hero__copy p:first-of-type {
  margin-top: 34px;
}

.about-hero__copy p + p {
  margin-top: 20px;
}

.about-hero__actions,
.about-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.about-hero__actions a,
.about-final-cta__actions a {
  min-width: 0;
  text-align: center;
  white-space: normal;
}

.about-production-line-visual img {
  filter: saturate(1.04) contrast(1.12);
}

.about-hero-facts {
  position: absolute;
  right: var(--page-pad);
  top: clamp(52px, 5.6vw, 84px);
  bottom: auto;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.7vw, 42px);
  width: min(53vw, 820px);
  margin: 0;
}

.about-hero-facts div {
  position: relative;
  min-height: clamp(132px, 12.8vw, 182px);
  padding: 0 clamp(14px, 1.5vw, 22px) 78px clamp(20px, 2vw, 30px);
  border-left: 1px solid rgba(47, 116, 123, 0.34);
}

.about-hero-facts div::before,
.about-hero-facts div::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-hero-facts div::before {
  left: -4px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(120, 170, 174, 0.13);
}

.about-hero-facts div::after {
  left: -1px;
  bottom: 0;
  width: clamp(34px, 5vw, 72px);
  height: 1px;
  background: rgba(47, 116, 123, 0.28);
}

.about-hero-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-hero-facts strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.38;
}

.about-hero-capabilities {
  position: relative;
  z-index: 7;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: min(100%, 1540px);
  margin: 0 auto;
  border-top: 1px solid rgba(47, 116, 123, 0.18);
}

.about-hero-capabilities a {
  position: relative;
  min-width: 0;
  min-height: 138px;
  padding: 24px clamp(12px, 1.35vw, 20px) 0;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

.about-hero-capabilities a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(47, 116, 123, 0.18);
}

.about-hero-capabilities a:hover,
.about-hero-capabilities a:focus-visible {
  outline: none;
  background: linear-gradient(180deg, rgba(234, 245, 244, 0.54) 0%, rgba(255, 255, 255, 0) 78%);
}

.about-hero-capabilities a:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(47, 116, 123, 0.46);
}

.about-hero-capabilities strong,
.about-hero-capabilities small {
  display: block;
}

.about-hero-capabilities strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.32;
  text-transform: uppercase;
}

.about-hero-capabilities small {
  max-width: 190px;
  margin: 7px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.about-capability-graphic {
  --graphic-line: rgba(47, 116, 123, 0.78);
  --graphic-soft: rgba(120, 170, 174, 0.22);
  position: relative;
  display: block;
  width: 54px;
  height: 42px;
  margin: 0 auto 14px;
}

.about-capability-graphic::before,
.about-capability-graphic::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-capability-graphic--water::before {
  left: 17px;
  top: 4px;
  width: 22px;
  height: 29px;
  border: 2px solid var(--graphic-line);
  border-radius: 62% 62% 62% 18%;
  transform: rotate(-45deg);
}

.about-capability-graphic--water::after {
  left: 9px;
  right: 9px;
  bottom: 5px;
  height: 1px;
  background: var(--graphic-soft);
}

.about-capability-graphic--process::before {
  inset: 10px 4px 9px;
  border: 2px solid var(--graphic-line);
  border-radius: 9px;
  background:
    linear-gradient(90deg, transparent 0 22%, var(--graphic-soft) 22% 25%, transparent 25% 50%, var(--graphic-soft) 50% 53%, transparent 53% 100%);
}

.about-capability-graphic--process::after {
  left: 0;
  right: 0;
  top: 20px;
  height: 2px;
  background: var(--graphic-line);
  box-shadow: 0 9px 0 rgba(47, 116, 123, 0.18);
}

.about-capability-graphic--hydrogen::before {
  inset: 4px 8px;
  background:
    radial-gradient(circle at 50% 16%, var(--graphic-line) 0 4px, transparent 4.5px),
    radial-gradient(circle at 16% 72%, var(--graphic-line) 0 5px, transparent 5.5px),
    radial-gradient(circle at 84% 72%, rgba(120, 170, 174, 0.88) 0 5px, transparent 5.5px),
    linear-gradient(32deg, transparent 0 45%, rgba(47, 116, 123, 0.38) 45% 49%, transparent 49% 100%),
    linear-gradient(-32deg, transparent 0 45%, rgba(47, 116, 123, 0.38) 45% 49%, transparent 49% 100%);
}

.about-capability-graphic--hydrogen::after {
  left: 25px;
  top: 15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(120, 170, 174, 0.32);
}

.about-capability-graphic--measurement::before {
  left: 8px;
  top: 4px;
  width: 36px;
  height: 36px;
  border: 2px solid var(--graphic-line);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(120, 170, 174, 0.18) 0 4px, transparent 4.5px);
}

.about-capability-graphic--measurement::after {
  left: 16px;
  top: 22px;
  width: 22px;
  height: 11px;
  border-top: 2px solid var(--graphic-line);
  border-right: 2px solid var(--graphic-line);
  transform: skewX(-24deg);
}

.about-capability-graphic--controlled::before {
  left: 10px;
  top: 4px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--graphic-line);
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(180deg, transparent 0 50%, rgba(120, 170, 174, 0.18) 50% 100%);
}

.about-capability-graphic--controlled::after {
  left: 20px;
  top: 9px;
  width: 14px;
  height: 26px;
  border-left: 2px solid rgba(47, 116, 123, 0.52);
  border-right: 2px solid rgba(47, 116, 123, 0.52);
}

.about-capability-graphic--applications::before {
  left: 5px;
  bottom: 4px;
  width: 12px;
  height: 25px;
  border: 2px solid var(--graphic-line);
  border-radius: 7px 7px 4px 4px;
  box-shadow:
    17px -8px 0 -2px #fff,
    17px -8px 0 0 var(--graphic-line),
    38px -2px 0 -2px #fff,
    38px -2px 0 0 rgba(120, 170, 174, 0.86);
}

.about-capability-graphic--applications::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(47, 116, 123, 0.25);
}

.about-capability-graphic--platform::before {
  left: 6px;
  top: 7px;
  width: 42px;
  height: 26px;
  border: 2px solid var(--graphic-line);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0 26%, rgba(120, 170, 174, 0.24) 26% 29%, transparent 29% 100%),
    radial-gradient(circle at 76% 42%, rgba(120, 170, 174, 0.28) 0 7px, transparent 7.5px);
}

.about-capability-graphic--platform::after {
  left: 18px;
  right: 18px;
  bottom: 3px;
  height: 2px;
  background: var(--graphic-line);
  box-shadow: 0 4px 0 rgba(47, 116, 123, 0.18);
}

.about-section,
.about-final-cta {
  padding: clamp(78px, 8.4vw, 144px) var(--page-pad);
  border-bottom: 1px solid rgba(213, 232, 232, 0.72);
}

.about-section__inner,
.about-platform-flow,
.about-final-cta__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.about-two-column,
.about-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(42px, 7.6vw, 118px);
  align-items: start;
}

.about-section__heading h2,
.about-section-header h2,
.about-copy-block h2,
.about-final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.about-section-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(40px, 5.2vw, 72px);
}

.about-section-header h2 {
  max-width: 720px;
}

.about-section-header p,
.about-copy-block p,
.about-final-cta p {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.82;
}

.about-section-header p {
  color: var(--muted);
}

.about-section-header--wide {
  grid-template-columns: minmax(280px, 0.58fr) minmax(340px, 1fr);
}

.about-section-header p + p,
.about-copy-block p + p,
.about-final-cta p + p {
  margin-top: 22px;
}

.about-story,
.about-platform,
.about-international,
.about-facts,
.about-principles {
  background: #fbfdff;
}

.about-timeline,
.about-difference-grid,
.about-location-grid,
.about-fact-grid,
.about-pathway-grid,
.about-principles-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background: rgba(213, 232, 232, 0.9);
  box-shadow: 0 18px 54px rgba(18, 45, 92, 0.055);
}

.about-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-timeline li,
.about-difference-grid a,
.about-location-grid article,
.about-fact-grid article,
.about-principles-grid article {
  min-width: 0;
  background: #fff;
}

.about-timeline li {
  position: relative;
  min-height: 228px;
  padding: clamp(24px, 2.7vw, 34px);
}

.about-timeline li:not(:last-child)::after,
.about-platform-flow a:not(:last-child)::after {
  position: absolute;
  right: 18px;
  top: 30px;
  color: rgba(47, 116, 123, 0.34);
  font-size: 21px;
  content: "\2192";
}

.about-timeline span,
.about-platform-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border: 1px solid rgba(47, 116, 123, 0.28);
  border-radius: 50%;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.about-timeline h3,
.about-difference-grid h3,
.about-location-grid h3,
.about-principles-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.about-timeline p,
.about-difference-grid p,
.about-location-grid p,
.about-fact-grid p,
.about-principles-grid p,
.about-platform-flow small {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.about-platform-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(46px, 5.8vw, 82px);
  border: 1px solid rgba(213, 232, 232, 0.9);
  border-radius: 8px;
  background: rgba(213, 232, 232, 0.9);
  box-shadow: 0 18px 54px rgba(18, 45, 92, 0.055);
}

.about-platform-flow a {
  position: relative;
  min-height: 218px;
  padding: clamp(24px, 2.4vw, 32px);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.about-platform-flow strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.22;
}

.about-platform-flow a:hover,
.about-platform-flow a:focus-visible,
.about-difference-grid a:hover,
.about-difference-grid a:focus-visible,
.about-pathway-grid a:hover,
.about-pathway-grid a:focus-visible {
  outline: none;
  background: linear-gradient(180deg, #fff 0%, rgba(234, 245, 244, 0.58) 100%);
}

.about-difference-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-difference-grid a {
  display: block;
  min-height: 284px;
  padding: clamp(24px, 2.8vw, 34px);
  color: var(--text);
  text-decoration: none;
}

.about-micrograph {
  position: relative;
  display: block;
  width: 72px;
  height: 46px;
  margin-bottom: 24px;
}

.about-micrograph::before,
.about-micrograph::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.about-micrograph::before {
  inset: 10px 0;
  border: 1px solid rgba(47, 116, 123, 0.22);
  background:
    radial-gradient(circle at 24% 50%, rgba(47, 116, 123, 0.86) 0 4px, transparent 4.5px),
    radial-gradient(circle at 50% 34%, rgba(120, 170, 174, 0.76) 0 3px, transparent 3.5px),
    radial-gradient(circle at 78% 58%, rgba(47, 116, 123, 0.64) 0 5px, transparent 5.5px),
    rgba(234, 245, 244, 0.72);
}

.about-micrograph::after {
  left: 13px;
  right: 13px;
  top: 22px;
  height: 1px;
  background: rgba(47, 116, 123, 0.42);
}

.about-micrograph--measurement::before {
  border-radius: 8px;
}

.about-micrograph--process::before {
  box-shadow: 18px 0 0 rgba(234, 245, 244, 0.82), 36px 0 0 rgba(234, 245, 244, 0.58);
}

.about-micrograph--manufacturing::before {
  border-radius: 12px 12px 999px 999px;
}

.about-micrograph--commercial::before {
  transform: rotate(-6deg);
}

.about-location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-location-grid article {
  min-height: 340px;
  padding: clamp(28px, 3.4vw, 44px);
}

.about-location-grid article > span {
  display: block;
  margin-bottom: 26px;
  color: rgba(47, 116, 123, 0.62);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.about-location-company {
  margin-bottom: 14px !important;
  color: var(--ink) !important;
  font-weight: 800;
}

.about-location-role {
  margin-top: 22px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(213, 232, 232, 0.86);
  color: var(--text) !important;
}

.about-leadership {
  background: #fff;
}

.about-leadership__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.about-advisor-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(213, 232, 232, 0.92);
  border-radius: 8px;
  background: #f5f9fb;
  box-shadow: 0 22px 62px rgba(18, 45, 92, 0.08);
  aspect-ratio: 1;
}

.about-advisor-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-advisor-name {
  margin-top: 22px !important;
  color: var(--ink) !important;
  font-size: clamp(20px, 1.7vw, 26px) !important;
  font-weight: 700;
  line-height: 1.3 !important;
}

.about-advisor-role {
  margin-top: 6px !important;
  color: var(--blue) !important;
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.about-leadership .secondary-link,
.about-patent-copy .secondary-link {
  display: inline-flex;
  margin-top: 28px;
}

.about-ip {
  background:
    radial-gradient(circle at 20% 76%, rgba(218, 246, 251, 0.26), rgba(255, 255, 255, 0) 34%),
    #fbfdff;
}

.about-patent-status {
  margin-top: 28px;
}

.about-patent-copy .patent-application-title {
  max-width: 760px;
}

.about-fact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-fact-grid article {
  position: relative;
  min-height: 190px;
  padding: clamp(24px, 2.8vw, 34px);
}

.about-fact-grid article::before {
  content: "";
  display: block;
  width: 58px;
  height: 28px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(47, 116, 123, 0.28);
  border-bottom: 1px solid rgba(47, 116, 123, 0.18);
  background:
    radial-gradient(circle at 20% 50%, rgba(47, 116, 123, 0.82) 0 3px, transparent 3.5px),
    radial-gradient(circle at 52% 50%, rgba(120, 170, 174, 0.72) 0 3px, transparent 3.5px),
    radial-gradient(circle at 84% 50%, rgba(47, 116, 123, 0.55) 0 3px, transparent 3.5px);
}

.about-fact-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.15;
}

.about-work {
  background: #fff;
}

.about-pathway-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-pathway-grid a {
  display: flex;
  min-height: 112px;
  align-items: center;
  padding: clamp(22px, 2.8vw, 34px);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.about-principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-principles-grid article {
  min-height: 190px;
  padding: clamp(24px, 2.8vw, 34px);
}

.about-final-cta {
  border-bottom: 0;
  background: #fff;
}

.about-final-cta__inner {
  align-items: center;
}

@media (max-width: 1180px) {
  .about-timeline,
  .about-difference-grid,
  .about-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-platform-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-hero-capabilities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-hero-capabilities a {
    min-height: 126px;
  }

  .about-hero-capabilities a:nth-child(4)::after {
    display: none;
  }

  .about-platform-flow a:nth-child(3)::after,
  .about-timeline li:nth-child(4)::after {
    content: "";
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .about-hero.artefact-banner {
    --banner-section-min-height: clamp(740px, 74vw, 880px);
    --banner-section-y: clamp(58px, 5.8vw, 82px);
    --banner-object-width: 90%;
    --banner-object-left: 64%;
    --banner-object-top: 62%;
    --banner-fade-left: 26%;
    --banner-fade-width: 42%;
  }

  .about-hero-facts {
    top: clamp(40px, 4.8vw, 62px);
    gap: clamp(18px, 2.5vw, 30px);
    width: min(55vw, 660px);
  }

  .about-hero-facts div {
    min-height: clamp(112px, 12vw, 144px);
    padding-bottom: 56px;
  }
}

@media (max-width: 1024px) {
  .about-two-column,
  .about-section-header,
  .about-section-header--wide,
  .about-leadership__inner,
  .about-final-cta__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 44px);
  }

  .about-location-grid,
  .about-principles-grid,
  .about-pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .about-hero.artefact-banner {
    --banner-section-min-height: 0;
    --banner-mobile-visual-height: clamp(294px, 56vw, 420px);
    --banner-section-y: clamp(48px, 9vw, 68px);
    --banner-object-width: 150%;
    --banner-object-left: 36%;
    --banner-object-top: 54%;
    --banner-fade-left: 0%;
    --banner-fade-width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto var(--banner-mobile-visual-height) auto auto;
    gap: clamp(28px, 6vw, 44px);
    min-height: 0;
    padding-bottom: clamp(42px, 8vw, 64px);
  }

  .about-hero .about-hero__copy {
    padding-bottom: 0;
  }

  .about-hero::after {
    display: none !important;
  }

  .about-hero .about-production-line-visual.artefact-banner__visual {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: var(--banner-mobile-visual-height);
  }

  .about-hero .about-production-line-visual.artefact-banner__visual > img {
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000 18%, #000 90%, rgba(0, 0, 0, 0.82) 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000 18%, #000 90%, rgba(0, 0, 0, 0.82) 100%);
  }

  .about-hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 4vw, 28px);
    width: 100%;
    margin-top: 0;
  }

  .about-hero-facts div {
    min-height: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(47, 116, 123, 0.32);
    border-left: 0;
  }

  .about-hero-facts div::before,
  .about-hero-facts div::after {
    display: none;
  }

  .about-hero-capabilities {
    grid-column: 1;
    grid-row: 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 4px;
    border: 1px solid rgba(213, 232, 232, 0.86);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(213, 232, 232, 0.86);
  }

  .about-hero-capabilities a {
    min-height: 118px;
    padding: 18px 16px 16px;
    background: rgba(255, 255, 255, 0.94);
    text-align: left;
  }

  .about-hero-capabilities a:not(:last-child)::after {
    display: none;
  }

  .about-hero-capabilities .about-capability-graphic {
    margin-right: 0;
    margin-left: 0;
    transform: scale(0.86);
    transform-origin: left center;
  }

  .about-hero-capabilities small {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 701px) and (max-width: 899px) {
  .about-hero-capabilities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-hero-capabilities a {
    min-height: 112px;
    text-align: center;
  }

  .about-hero-capabilities .about-capability-graphic {
    margin-right: auto;
    margin-left: auto;
    transform-origin: center;
  }

  .about-hero-capabilities small {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .about-section,
  .about-final-cta {
    padding-top: 60px;
    padding-bottom: 68px;
  }

  .about-hero__copy h1 {
    font-size: clamp(36px, 9.4vw, 44px);
    line-height: 1.08;
  }

  .about-hero__copy p {
    font-size: 16px;
    line-height: 1.74;
  }

  .about-hero__actions,
  .about-final-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-hero-facts,
  .about-timeline,
  .about-platform-flow,
  .about-difference-grid,
  .about-location-grid,
  .about-fact-grid,
  .about-pathway-grid,
  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline li,
  .about-platform-flow a,
  .about-difference-grid a,
  .about-location-grid article,
  .about-fact-grid article,
  .about-principles-grid article {
    min-height: 0;
  }

  .about-timeline li:not(:last-child)::after,
  .about-platform-flow a:not(:last-child)::after {
    right: auto;
    top: auto;
    left: 40px;
    bottom: -18px;
    transform: rotate(90deg);
  }

  .about-section-header {
    margin-bottom: 34px;
  }

  .about-hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-advisor-portrait {
    width: min(100%, 340px);
  }
}

@media (max-width: 430px) {
  .about-hero.artefact-banner {
    --banner-mobile-visual-height: clamp(270px, 70vw, 318px);
    --banner-object-width: 166%;
    --banner-object-left: 26%;
    --banner-object-top: 55%;
  }

  .about-hero-facts div {
    padding-top: 12px;
  }

  .about-hero-capabilities a {
    min-height: 104px;
    padding: 16px 12px 14px;
  }

  .about-hero-capabilities strong {
    font-size: 11px;
  }

  .about-hero-capabilities small {
    font-size: 11px;
    line-height: 1.38;
  }
}
