@font-face {
  font-family: "Onest";
  src: url("../../fonts/Onest-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-navy: #0b1423;
  --brand-gray: #eef2f6;
  --brand-gray-dark: #d3dfe8;
  --brand-dark-gray: #17191d;
  --brand-red: #ff3d00;
  --brand-red-dark: #f03900;
  --brand-white: #f8fafb;
  --brand-navy-rgb: 11, 20, 35;
  --brand-gray-rgb: 238, 242, 246;
  --brand-dark-gray-rgb: 23, 25, 29;
  --brand-red-rgb: 255, 61, 0;
  --theme-fg: var(--brand-navy);
  --theme-muted: rgba(11, 20, 35, .66);
  --theme-accent: var(--brand-red);
  --theme-panel-a: var(--brand-navy);
  --theme-panel-b: var(--brand-gray);
  --theme-panel-c: var(--brand-red);
  --canvas: var(--brand-navy);
  --surface: #111927;
  --image-frame: rgba(255, 61, 0, .42);
  --ink: #ffffff;
  --muted: #949494;
  --line: rgba(248, 250, 251, .18);
  --paper: #111927;
  --soft: #1e2733;
  --accent: var(--brand-red);
  --violet: var(--brand-red-dark);
  --white: var(--brand-white);
  --bg-deep: var(--brand-navy);
  --bg-right: #070d17;
  --bg-grid: rgba(248, 250, 251, .06);
  --bg-grid-strong: rgba(255, 61, 0, .18);
  --bg-sheen: rgba(255, 61, 0, .16);
  --bg-shadow-green: rgba(255, 61, 0, .12);
  --bg-violet: rgba(255, 61, 0, .12);
  --display-font: "Onest", Arial, system-ui, sans-serif;
  --body-font: "Onest", Arial, system-ui, sans-serif;
  --mono-font: "Onest", Arial, system-ui, sans-serif;
  --type-tight: .95;
  --type-copy: 1.2;
  --text-soft: rgba(255, 255, 255, .68);
  --dashline: repeating-linear-gradient(90deg, rgba(var(--brand-red-rgb), .62) 0 2px, transparent 2px 5px);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-press: 140ms;
  --duration-hover: 180ms;
  --duration-standard: 260ms;
  --focus-ring: 0 0 0 3px rgba(var(--brand-red-rgb), .26);
  --pixel-viz-logo-width: clamp(124px, 10.8vw, 190px);
  --pixel-viz-logo-height: clamp(41px, 3.585vw, 63px);
  --pixel-viz-logo-visible-height: calc(var(--pixel-viz-logo-height) * .94);
  --story-scrollbar-width: 0px;
  --fs-micro: 10px;
  --fs-meta: 11px;
  --fs-small: 14px;
  --fs-body: 16px;
  --fs-copy: clamp(16px, 1.18vw, 19px);
  --fs-step-title: clamp(19px, 1.45vw, 25px);
  --fs-panel-title: clamp(32px, 3.35vw, 52px);
  --fs-panel-span: clamp(30px, 3.2vw, 48px);
  --fs-panel-hero: clamp(52px, 6.35vw, 88px);
  --fs-intro-lead: clamp(40px, 4.9vw, 72px);
  --fs-lead: clamp(42px, 5.25vw, 76px);
  --fs-hero: clamp(52px, 5.95vw, 82px);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: auto;
  scroll-padding-top: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  color: var(--theme-fg);
  background: none;
  font-family: var(--body-font);
  letter-spacing: 0;
  font-size: var(--fs-body);
  line-height: var(--type-copy);
  font-weight: 400;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

::selection {
  background: var(--accent);
  color: var(--canvas);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

img,
video {
  display: block;
  max-width: 100%;
}

.optimized-picture {
  display: contents;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: visible;
}

.story-scroll {
  position: fixed;
  inset: 0;
  z-index: 3;
  height: 100svh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: auto;
  scroll-snap-type: none;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.story-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.story-content {
  position: relative;
  min-height: 100%;
}

.story-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  overflow: hidden;
  isolation: isolate;
  background: none;
  color: var(--theme-fg);
  z-index: 10;
  transition: none;
}

.logo-intro {
  --theme-bg: var(--brand-gray);
  --theme-fg: var(--brand-navy);
  z-index: 20;
  background: var(--theme-bg);
  color: var(--theme-fg);
  overflow: visible;
  pointer-events: none;
}

.logo-intro-svg {
  position: fixed;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  transform: translate3d(0, var(--logo-y, 0px), 0);
  transition: transform 680ms var(--ease-out);
}

.logo-i-shapes {
  --logo-i-shapes-x: 50vw;
  --logo-i-shapes-y: 50vh;
  --logo-i-shapes-size: clamp(120px, 18vw, 260px);
  --logo-i-shapes-opacity: 0;
  --logo-i-pointer-x: 0;
  --logo-i-pointer-y: 0;
  --logo-i-tilt-x: 0deg;
  --logo-i-tilt-y: 0deg;
  --logo-i-tilt-z: 0deg;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 19;
  width: var(--logo-i-shapes-size);
  height: var(--logo-i-shapes-size);
  opacity: var(--logo-i-shapes-opacity);
  pointer-events: none;
  perspective: clamp(1200px, 140vw, 2200px);
  transform:
    translate3d(
      calc(var(--logo-i-shapes-x) - var(--logo-i-shapes-size) / 2),
      calc(var(--logo-i-shapes-y) - var(--logo-i-shapes-size) / 2 + var(--logo-y, 0px)),
      0
    );
  transition: opacity 240ms linear, transform 680ms var(--ease-out);
  will-change: opacity, transform;
}

.logo-i-shapes-column {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform:
    rotateX(var(--logo-i-tilt-x))
    rotateY(var(--logo-i-tilt-y))
    rotateZ(var(--logo-i-tilt-z));
  will-change: transform;
}

.logo-i-shape {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="80" height="80" fill="none" stroke="black" stroke-width="2" vector-effect="non-scaling-stroke"/></svg>');
  mask-size: cover;
  will-change: transform;
}

.logo-i-shape-gradient {
  position: absolute;
  inset: -55%;
  background:
    conic-gradient(
      from 180deg at 50% 50%,
      var(--brand-red) 0deg,
      rgba(255, 61, 0, 0) 45deg,
      var(--brand-red) 90deg,
      rgba(255, 61, 0, 0) 180deg,
      var(--brand-red) 270deg,
      rgba(255, 61, 0, 0) 315deg,
      var(--brand-red) 360deg
    );
  animation: logo-i-gradient-rotation 21s linear infinite;
  will-change: transform;
}

.logo-i-shape:nth-child(1) {
  transform: translate3d(calc(var(--logo-i-pointer-x) * 0.0022px), calc(14px + var(--logo-i-pointer-y) * 0.0022px), -260px);
}

.logo-i-shape:nth-child(2) {
  transform: translate3d(calc(var(--logo-i-pointer-x) * 0.0018px), calc(28px + var(--logo-i-pointer-y) * 0.0018px), -520px);
}

.logo-i-shape:nth-child(3) {
  transform: translate3d(calc(var(--logo-i-pointer-x) * 0.0014px), calc(42px + var(--logo-i-pointer-y) * 0.0014px), -780px);
}

.logo-i-shape:nth-child(4) {
  transform: translate3d(calc(var(--logo-i-pointer-x) * 0.001px), calc(56px + var(--logo-i-pointer-y) * 0.001px), -1040px);
}

.logo-i-shape:nth-child(5) {
  transform: translate3d(calc(var(--logo-i-pointer-x) * 0.0007px), calc(70px + var(--logo-i-pointer-y) * 0.0007px), -1300px);
}

.logo-i-shape:nth-child(2) .logo-i-shape-gradient {
  animation-duration: 42s;
  animation-delay: -24s;
}

.logo-i-shape:nth-child(3) .logo-i-shape-gradient {
  animation-duration: 63s;
  animation-delay: -36s;
}

.logo-i-shape:nth-child(4) .logo-i-shape-gradient {
  animation-duration: 84s;
  animation-delay: -48s;
}

.logo-i-shape:nth-child(5) .logo-i-shape-gradient {
  animation-duration: 105s;
  animation-delay: -60s;
}

@keyframes logo-i-gradient-rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.is-logo-following-hero .logo-intro-svg {
  --logo-y: var(--logo-follow-y, 0px);
  opacity: 1 !important;
  visibility: visible;
  filter: none;
  transition: none;
}

.is-logo-following-hero .logo-i-shapes {
  --logo-y: var(--logo-follow-y, 0px);
  transition: none;
}

.is-logo-intro-exiting .logo-intro-svg,
.is-logo-intro-done .logo-intro-svg {
  opacity: 0 !important;
  --logo-y: -220px;
  visibility: hidden;
}

.is-logo-intro-exiting .logo-i-shapes,
.is-logo-intro-done .logo-i-shapes {
  opacity: 0;
  visibility: hidden;
}

.is-logo-intro-done .logo-intro {
  z-index: 0;
}

.logo-intro .glyph {
  will-change: filter, opacity, transform;
}

.logo-intro #accent,
.logo-intro .suffix-glyph {
  opacity: 0;
  filter: blur(12px);
}

.cursor-aura {
  --cursor-cube-scale: 1;
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-hover) linear;
  contain: layout paint style;
  will-change: opacity;
}

.cursor-cube {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  opacity: .96;
  perspective: 260px;
  perspective-origin: 50% 50%;
  transform: translate3d(-200px, -200px, 0) scale(var(--cursor-cube-scale));
  will-change: transform;
}

.cursor-cube-column,
.cursor-cube-layer,
.cursor-cube-gradient {
  display: block;
}

.cursor-cube-column {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform:
    translate3d(0, 0, 0)
    rotateX(var(--cursor-tilt-x, 0deg))
    rotateY(var(--cursor-tilt-y, 0deg))
    rotateZ(var(--cursor-tilt-z, 0deg));
  will-change: transform;
}

.cursor-cube-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  transform-style: preserve-3d;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="80" height="80" fill="none" stroke="black" stroke-width="0.55" vector-effect="non-scaling-stroke"/></svg>');
  mask-size: cover;
  will-change: transform;
}

.cursor-cube-gradient {
  position: absolute;
  inset: -55%;
  background:
    conic-gradient(
      from 180deg at 50% 50%,
      var(--brand-red) 0deg,
      rgba(255, 61, 0, 0) 45deg,
      var(--brand-red) 90deg,
      rgba(255, 61, 0, 0) 180deg,
      var(--brand-red) 270deg,
      rgba(255, 61, 0, 0) 315deg,
      var(--brand-red) 360deg
    );
  animation: logo-i-gradient-rotation 2.8s linear infinite;
  will-change: transform;
}

.cursor-cube-layer:nth-child(1) {
  transform: translate3d(calc(var(--logo-i-pointer-x, 0) * 0.001px), calc(var(--logo-i-pointer-y, 0) * 0.001px), 0) scale(1);
}

.cursor-cube-layer:nth-child(2) {
  transform: translate3d(calc(1.5px + var(--logo-i-pointer-x, 0) * 0.0015px), calc(1.5px + var(--logo-i-pointer-y, 0) * 0.0015px), -9px) scale(0.885);
}

.cursor-cube-layer:nth-child(3) {
  transform: translate3d(calc(3px + var(--logo-i-pointer-x, 0) * 0.002px), calc(3px + var(--logo-i-pointer-y, 0) * 0.002px), -18px) scale(0.79);
}

.cursor-cube-layer:nth-child(2) .cursor-cube-gradient {
  animation-duration: 42s;
  animation-delay: -24s;
}

.cursor-cube-layer:nth-child(3) .cursor-cube-gradient {
  animation-duration: 63s;
  animation-delay: -36s;
}

.cursor-aura.is-active {
  opacity: 1;
}

body.is-product-detail-cursor .cursor-aura {
  opacity: 0;
  visibility: hidden;
}

.cursor-aura.is-pressable {
  --cursor-cube-scale: 1.9;
  opacity: .34;
}

@keyframes cursor-cube-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(90deg);
  }
}

.depth-layer {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  opacity: calc(var(--depth-opacity, .7) * var(--depth-enter, 1));
  transform: translate3d(0, var(--depth-y, 0px), 0) scale(var(--depth-scale, 1));
  will-change: transform, opacity, clip-path;
}

.depth-layer-hero {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 112px 112px, 112px 112px;
  mix-blend-mode: screen;
}

.depth-layer-services,
.depth-layer-process,
.depth-layer-contact {
  inset: 8% clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, transparent 0 24%, rgba(var(--brand-red-rgb), .11) 24.2%, transparent 24.8% 100%),
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px),
    linear-gradient(0deg, var(--bg-grid) 1px, transparent 1px);
  background-size: auto, 74px 74px, 74px 74px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.depth-layer-services,
.depth-layer-contact {
  clip-path: inset(0 var(--depth-clip, 0%) 0 0);
  transform-origin: center;
}

.services > :not(.depth-layer),
.contact > :not(.depth-layer) {
  position: relative;
  z-index: 1;
}

.pixel-story,
.process-band {
  --theme-bg: var(--brand-gray);
  --theme-fg: var(--brand-navy);
  --theme-muted: rgba(11, 20, 35, .66);
  --theme-accent: var(--brand-red);
  --line: rgba(11, 20, 35, .18);
  --bg-grid: rgba(11, 20, 35, .06);
  background: var(--theme-bg);
  color: var(--theme-fg);
}

.services,
.contact {
  --section-enter: 1;
  --section-bg-scale: 1;
  --theme-bg: var(--brand-dark-gray);
  --theme-fg: var(--brand-white);
  --theme-muted: rgba(248, 250, 251, .72);
  --theme-accent: var(--brand-red);
  --line: rgba(248, 250, 251, .22);
  --bg-grid: rgba(248, 250, 251, .055);
  color: var(--theme-fg);
}

.services::before,
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  z-index: 0;
  pointer-events: none;
  background: var(--theme-bg);
  clip-path: inset(calc((1 - var(--section-enter)) * 6%) 0);
  transform: translateX(-50%) scaleX(var(--section-bg-scale)) scaleY(calc(.985 + var(--section-enter) * .015));
  transform-origin: center;
  will-change: clip-path, transform;
}

@media (prefers-reduced-motion: reduce) {
  .story-scroll {
    scroll-behavior: auto;
  }

  .cursor-aura {
    display: none;
  }

  .logo-i-shape-gradient {
    animation: none;
  }

  .depth-layer {
    transform: none;
    will-change: auto;
  }
}

.nav,
.footer {
  position: relative;
}

.nav {
  --nav-fg: var(--brand-white);
  --nav-logo-filter: none;
  --nav-gallery-presence: 1;
  --nav-shadow: none;
  --nav-cta-bg: transparent;
  --nav-cta-fg: var(--brand-navy);
  --nav-cta-border: transparent;
  --nav-text-stroke: transparent;
  position: fixed;
  inset: 0 0 auto;
  display: block;
  padding: 16px clamp(24px, 4.8vw, 72px);
  z-index: 120;
  color: var(--nav-fg);
  background: transparent;
  border-bottom: 0;
  mix-blend-mode: normal;
  opacity: 0;
  transform: none;
  pointer-events: none;
  transition:
    color var(--duration-standard) var(--ease-soft),
    opacity var(--duration-standard) var(--ease-soft),
    transform var(--duration-standard) var(--ease-soft);
}

.nav.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.nav[data-nav-theme="dark"] {
  --nav-fg: var(--brand-white);
  --nav-logo-filter: none;
  --nav-shadow: none;
  --nav-cta-bg: var(--brand-navy);
  --nav-cta-fg: var(--brand-navy);
  --nav-cta-border: rgba(11, 20, 35, .74);
}

.nav[data-nav-theme="light"] {
  --nav-fg: var(--brand-white);
  --nav-logo-filter: none;
  --nav-shadow: none;
  --nav-cta-bg: rgba(248, 250, 251, .92);
  --nav-cta-fg: var(--brand-navy);
  --nav-cta-border: rgba(248, 250, 251, .82);
}

.nav[data-nav-contrast="on-light"] {
  --nav-fg: var(--brand-navy);
  --nav-logo-filter: none;
  --nav-shadow: none;
  --nav-cta-fg: var(--brand-navy);
  --nav-cta-border: rgba(11, 20, 35, .12);
  --nav-bg-sample: var(--brand-white);
  --nav-bg-opacity: .035;
  --nav-text-stroke: transparent;
}

.nav[data-nav-contrast="on-dark"] {
  --nav-fg: var(--brand-white);
  --nav-logo-filter: none;
  --nav-shadow: none;
  --nav-cta-fg: var(--brand-navy);
  --nav-cta-border: rgba(248, 250, 251, .08);
  --nav-bg-sample: var(--brand-white);
  --nav-bg-opacity: .021;
  --nav-text-stroke: transparent;
}

.brand {
  display: none;
  align-items: center;
  width: clamp(140px, 9.5vw, 190px);
  height: auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: var(--nav-logo-filter) drop-shadow(var(--nav-shadow));
  transition: filter var(--duration-standard) var(--ease-soft);
}

.nav-links {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(6px, .9vw, 14px);
  padding: clamp(106px, 14vh, 142px) clamp(24px, 4.8vw, 72px) clamp(34px, 6vh, 72px);
  font-family: var(--mono-font);
  font-size: clamp(28px, 3.3vw, 52px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brand-navy);
  background: var(--brand-white);
  text-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -100%, 0);
  transition:
    opacity 520ms var(--ease-soft),
    transform 640ms var(--ease-soft);
}

.nav.is-menu-open .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.nav-menu-toggle {
  position: fixed;
  top: clamp(24px, 3.4vw, 42px);
  right: clamp(24px, 4.8vw, 72px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--nav-fg);
  cursor: pointer;
  transform-origin: center;
}

.nav.is-menu-open .nav-menu-toggle {
  color: var(--brand-navy);
  animation: nav-menu-toggle-spin 520ms var(--ease-soft) both;
}

.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible {
  animation: nav-menu-toggle-spin 520ms var(--ease-soft) both;
}

.nav-menu-toggle span {
  position: absolute;
  display: block;
  width: 28px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 50%;
  transition:
    background-color 220ms var(--ease-soft),
    transform 260ms var(--ease-soft),
    opacity 220ms var(--ease-soft);
}

.nav-menu-toggle span:first-child {
  transform: rotate(0deg);
}

.nav-menu-toggle span:last-child {
  transform: rotate(90deg);
}

.nav.is-menu-open .nav-menu-toggle span:first-child {
  transform: rotate(45deg);
}

.nav.is-menu-open .nav-menu-toggle span:last-child {
  transform: rotate(135deg);
}

@keyframes nav-menu-toggle-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.nav-links .nav-cta {
  z-index: 1;
  color: var(--nav-cta-fg);
}

.nav-menu-toggle:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 6px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  position: relative;
  overflow: hidden;
  min-height: 1em;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--brand-navy);
  text-shadow: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: var(--mono-font);
  font-size: inherit;
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .18s var(--ease-out), transform var(--duration-press) var(--ease-out);
}

.nav-start-link {
  font-weight: 400;
}

.nav-menu-contact {
  width: min(100%, 1120px);
  margin-top: clamp(26px, 4.2vh, 58px);
  padding-top: clamp(18px, 2.6vh, 30px);
  border-top: 1px solid rgba(11, 20, 35, .14);
  color: rgba(11, 20, 35, .58);
  font-family: var(--mono-font);
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.nav-menu-contact p {
  margin: 0;
}

.nav-menu-contact a {
  display: inline-block;
  margin-top: 4px;
  color: var(--brand-navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .12em;
}

.nav-cta-label {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: max-content;
  line-height: 1.18;
}

.nav-cta-label span {
  display: block;
  transition: transform .42s var(--ease-soft);
  will-change: transform;
}

.nav-cta-label span:nth-child(2) {
  position: absolute;
  inset: 100% auto auto 0;
}

.nav-cta-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navigation__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 2px;
  opacity: 0;
  background: transparent;
  transition: background .321s var(--ease-out), opacity .321s var(--ease-out);
}

.nav-cta:focus-visible {
  color: var(--nav-cta-fg);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px) scale(.97);
}

.hero-scroll {
  z-index: 1;
  min-height: 100dvh;
  background: var(--canvas);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.hero {
  --hero-img-x: 0px;
  --hero-img-y: 0px;
  --hero-img-scale: 1.055;
  --hero-bridge-progress: 0;
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 50%, rgba(24, 26, 26, .2) 72%, rgba(24, 26, 26, .58) 100%),
    radial-gradient(ellipse 92% 70% at 50% 100%, rgba(156, 216, 199, .09), transparent 62%);
  opacity: calc(var(--hero-bridge-progress) * .95);
  transform: translate3d(0, calc((1 - var(--hero-bridge-progress)) * 28px), 0);
  will-change: opacity, transform;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--hero-img-x), var(--hero-img-y), 0) scale(var(--hero-img-scale));
  transform-origin: center;
  filter: brightness(calc(1 - var(--hero-bridge-progress) * .16));
  transition: transform .18s linear;
  will-change: transform, filter;
}

.hero-media {
  opacity: 1;
  z-index: 0;
}

.pixel-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(var(--pixel-columns, 18), 1fr);
  grid-template-rows: repeat(var(--pixel-rows, 10), 1fr);
  pointer-events: none;
  transform: translate3d(var(--hero-img-x), var(--hero-img-y), 0) scale(var(--hero-img-scale));
  transform-origin: center;
  opacity: 1;
  contain: layout paint style;
}

.pixel-tile {
  background-image: url("../../renderings/webp/sketch-simple-1600.webp");
  background-repeat: no-repeat;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .58);
  opacity: var(--tile-opacity, 1);
  transform: translateZ(0);
  transition: none;
}

.hero-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 120px clamp(18px, 5vw, 72px) clamp(38px, 8vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, min(560px, 46vw));
  gap: clamp(32px, 8vw, 128px);
  align-items: end;
  color: var(--white);
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .68em;
  width: max-content;
  margin: 0 0 18px;
  font-family: var(--mono-font);
  font-size: var(--fs-meta);
  line-height: 1.09;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--accent);
}

.kicker::before {
  content: "";
  width: .58em;
  height: .58em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

h1 {
  margin: 0;
  max-width: 100%;
  font-family: var(--display-font);
  font-size: var(--fs-hero);
  line-height: var(--type-tight);
  letter-spacing: 0;
  font-weight: 500;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-title > span {
  display: block;
  opacity: 1;
  overflow: hidden;
}

.hero-contrast-char {
  display: inline-block;
  color: inherit;
  transform: translate3d(0, var(--char-lift, 0px), 0);
  transition:
    transform .22s cubic-bezier(.16, 1, .3, 1),
    text-shadow .16s linear;
  will-change: color, transform;
}

.hero-contrast-word {
  display: inline-block;
  white-space: nowrap;
}

.kicker .hero-contrast-word,
.panel-row strong .hero-contrast-word,
.button .hero-contrast-word {
  margin-right: .34em;
}

.kicker .hero-contrast-word:last-child,
.panel-row strong .hero-contrast-word:last-child,
.button .hero-contrast-word:last-child {
  margin-right: 0;
}

.hero.has-letter-contrast.is-text-revealed .kicker,
.hero.has-letter-contrast.is-text-revealed .hero-title,
.hero.has-letter-contrast.is-text-revealed .hero-title > span,
.hero.has-letter-contrast.is-text-revealed .hero-copy,
.hero.has-letter-contrast.is-text-revealed .panel-row strong,
.hero.has-letter-contrast.is-text-revealed .button,
.hero.has-letter-contrast .hero-contrast-char {
  mix-blend-mode: normal;
}

.hero.has-letter-contrast .hero-contrast-char.is-lit {
  color: #ffffff !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .68),
    0 0 12px rgba(0, 0, 0, .38);
}

.hero.has-letter-contrast.is-text-revealed .hero-contrast-char.is-lit {
  text-shadow:
    0 1px 14px rgba(0, 0, 0, .52);
}

.hero.is-text-revealed .button .hero-contrast-char,
.hero.is-text-revealed .button .hero-contrast-char.is-lit {
  color: #101312 !important;
  text-shadow: none;
}

.hero .button .hero-contrast-char.is-lit {
  color: #101312 !important;
  text-shadow: none;
}

.hero-title > span:nth-child(2) {
  animation-delay: .1s;
}

.hero-title > span:nth-child(3) {
  animation-delay: .2s;
}

.hero-title > span:nth-child(4) {
  animation-delay: .3s;
}

.hero-copy {
  max-width: 100%;
  color: var(--theme-fg);
  font-size: var(--fs-copy);
  line-height: var(--type-copy);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  border-radius: 2px;
  padding: .42em .72em .34em;
  border: 0;
  background: transparent;
  font-family: var(--mono-font);
  font-size: var(--fs-copy);
  line-height: 2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .48);
  transition:
    transform var(--duration-press) var(--ease-out),
    background-color var(--duration-hover) var(--ease-out),
    border-color var(--duration-hover) var(--ease-out),
    color var(--duration-hover) linear,
    box-shadow var(--duration-hover) var(--ease-out);
}

.button::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: currentColor;
  opacity: .12;
  transform: translate3d(-102%, 0, 0);
  transition: transform .34s var(--ease-out), opacity .22s linear;
}

.button.primary {
  color: var(--white);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.button.secondary {
  color: var(--white);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.button:focus-visible {
  background: transparent;
}

.hero:not(.is-text-revealed) .hero-inner {
  color: var(--theme-fg);
}

.hero:not(.is-text-revealed) .button.primary {
  color: var(--canvas);
  background: transparent;
  border-color: transparent;
}

.hero:not(.is-text-revealed) .panel-row strong,
.hero:not(.is-text-revealed) .panel-row > span {
  color: var(--theme-fg);
}

/* Hero Statement Section */
.hero-statement {
  position: relative;
  z-index: 10;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  background: var(--canvas);
  color: var(--brand-white);
  overflow: hidden;
}

.hero-statement-box {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(24px, 5.2vw, 92px);
}

.hero-statement-title {
  font-family: var(--display-font);
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.92;
  font-weight: 530;
  text-transform: uppercase;
  margin: 0 0 0.4em;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-statement-copy {
  max-width: 580px;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.4;
  color: var(--text-soft);
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.8s var(--ease-out) 0.1s, transform 0.8s var(--ease-out) 0.1s;
}

.hero-statement.is-visible .hero-statement-title,
.hero-statement.is-visible .hero-statement-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-scroll {
  position: relative;
  z-index: 1;
}

.hero:not(.is-text-revealed) .hero-title {
  color: var(--theme-fg);
  mix-blend-mode: normal;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .86),
    0 0 22px rgba(255, 255, 255, .68);
}

.hero:not(.is-text-revealed) .hero-title > span {
  color: var(--theme-fg);
  opacity: 1 !important;
  text-shadow: inherit;
}

.hero:not(.is-text-revealed) .hero-stage {
  border-top-color: rgba(23, 23, 22, .24);
}

.hero:not(.is-text-revealed) .button.secondary {
  color: #101312;
  background: transparent;
  border-color: transparent;
}

.hero:not(.is-text-revealed) .button {
  color: #101312;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .66);
}

.nav-links a {
  position: relative;
  color: inherit;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .08em;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: left center;
  transition: opacity var(--duration-hover) linear, transform var(--duration-hover) var(--ease-out);
}

.nav-links a:not(.nav-cta):focus-visible::after {
  opacity: .85;
  transform: scaleX(1);
}

.hero.is-text-revealed .kicker,
.hero.is-text-revealed .hero-title,
.hero.is-text-revealed .hero-title > span,
.hero.is-text-revealed .hero-copy,
.hero.is-text-revealed .panel-row strong {
  color: var(--theme-fg);
  font-family: var(--display-font);
  mix-blend-mode: normal;
  text-shadow: none;
}

.hero.is-text-revealed .kicker,
.hero.is-text-revealed .panel-row strong {
  font-family: var(--mono-font);
}

.hero.is-text-revealed .hero-copy {
  font-family: var(--body-font);
  font-weight: 400;
  letter-spacing: 0;
}

.hero.is-text-revealed .button {
  color: #101312;
  font-family: var(--mono-font);
  font-weight: 500;
  letter-spacing: .01em;
  mix-blend-mode: normal;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero.is-text-revealed .button.secondary {
  color: #101312;
  background: transparent;
  border-color: transparent;
}

.hero.is-text-revealed .button.primary:focus-visible,
.hero:not(.is-text-revealed) .button.secondary:focus-visible,
.inquiry .button:focus-visible {
  color: var(--white);
  background: transparent;
  border-color: transparent;
}

.hero.is-text-revealed .button.primary:focus-visible,
.hero.is-text-revealed .button.secondary:focus-visible {
  color: #101312;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.hero:not(.is-text-revealed) .button.primary:focus-visible {
  color: var(--canvas);
  background: transparent;
  border-color: transparent;
}

.hero:not(.is-text-revealed) .button.primary,
.hero:not(.is-text-revealed) .button.secondary {
  color: #101312;
  background: transparent;
  border-color: transparent;
  mix-blend-mode: normal;
}

.hero-panel {
  position: relative;
  min-height: 430px;
  padding-top: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity .36s cubic-bezier(.16, 1, .3, 1), transform .42s cubic-bezier(.16, 1, .3, 1);
  pointer-events: auto;
}

.hero-stage {
  position: relative;
  min-height: 360px;
  padding-top: 0;
  border-top: 0;
}

.panel-row {
  display: grid;
  gap: 18px;
  max-width: 720px;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity .24s cubic-bezier(.16, 1, .3, 1),
    transform .28s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.panel-row:last-child {
  padding-bottom: 0;
}

.panel-row strong {
  width: max-content;
  font-family: var(--mono-font);
  font-size: var(--fs-meta);
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--accent);
}

.panel-row strong::before {
  content: "";
  width: .58em;
  height: .58em;
  display: inline-block;
  margin-right: .68em;
  border-radius: 50%;
  background: currentColor;
  vertical-align: .06em;
}

.panel-row > span {
  max-width: 520px;
  font-family: var(--display-font);
  font-size: var(--fs-panel-title);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 254, 250, .86);
}

.panel-row .hero-title {
  max-width: 720px;
  font-size: var(--fs-hero);
  line-height: .95;
}

.panel-row .hero-copy {
  max-width: 520px;
  margin: 22px 0 0;
}

.hero .hero-copy {
  display: inline;
  padding: .02em .12em .08em;
  background: var(--theme-accent);
  color: #071713 !important;
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.18;
  font-weight: 500;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-statement {
  --theme-fg: var(--brand-navy);
  --theme-muted: rgba(11, 20, 35, .62);
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 40;
  background: #ffffff;
  color: var(--theme-fg);
  overflow: hidden;
  box-shadow: 0 -10vh 20vh rgba(0, 0, 0, 0.05);
  clip-path: inset(0 0 0 0);
  will-change: transform;
  isolation: isolate;
}

.hero-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
}

.hero-statement-box {
  position: relative;
  width: 100%;
  min-height: 35svh;
  min-height: 35dvh;
  padding: clamp(8px, 1vw, 14px) clamp(18px, 1.8vw, 28px) clamp(28px, 3.5vw, 50px);
  background: #ffffff;
  display: grid;
  align-content: start;
  justify-items: center;
  z-index: 1000;
  box-shadow: none;
  opacity: 1;
}

.hero-statement-box.fast-scroll-box {
  transform: translate3d(0, var(--fast-scroll-y, 0px), 0);
  will-change: transform;
}

.hero-statement:not(.stills-gallery-section) .hero-statement-box.fast-scroll-box {
  transform: translate3d(0, clamp(-12px, var(--fast-scroll-y, 0px), 12px), 0);
}

.hero-statement-title {
  width: 100%;
  max-width: 1100px;
  color: var(--theme-fg);
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 0.94;
  font-weight: 530;
  text-transform: uppercase;
  text-wrap: balance;
  text-align: center;
  margin: 0 auto;
}

.hero-statement-copy {
  max-width: 410px;
  margin: calc(5 * 1.28em) auto 0;
  color: var(--theme-muted);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.28;
  font-weight: 500;
  text-align: center;
}

.panel-row .button-row {
  margin-top: 24px;
  pointer-events: auto;
}

.section {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: clamp(76px, 12vw, 150px) clamp(18px, 5vw, 72px);
}

.flow-section {
  --flow: 0;
  --flow-presence: 1;
  --flow-y: 0px;
  position: relative;
}

.flow-section:not(.pixel-story) {
  opacity: var(--flow-presence);
  transform: translate3d(0, var(--flow-y), 0);
  will-change: opacity, transform;
}

.hero-statement.flow-section,
.flow-section.hero-statement {
  opacity: 1;
}

.hero-statement.flow-section {
  z-index: 40;
  will-change: transform;
}

.hero-statement + .intro.pixel-story {
  margin-top: calc(var(--hero-bridge-progress, 0) * -32vh);
}

.stills-field {
  --stills-handoff-progress: 0;
  --stills-handoff-opacity: 0;
  --stills-copy-opacity: 0;
  --stills-copy-y: 14px;
  --stills-copy-cover: 100%;
  --stills-handoff-top: 50%;
  --stills-handoff-right: 50%;
  --stills-handoff-bottom: 50%;
  --stills-handoff-left: 50%;
  --stills-handoff-radius: 0px;
  --stills-grid-exit: 0;
  position: relative;
  z-index: 130;
  min-height: 0;
  margin-top: -6dvh;
  padding: 10dvh 0 3dvh;
  overflow: clip;
  background: #fff;
  color: var(--brand-navy);
  isolation: isolate;
}

.stills-field-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(3px, .45vw, 8px);
  width: 100%;
  min-height: 0;
  margin: 0 auto;
}

.stills-field-item {
  --stills-range: 14dvh;
  --stills-y: 0px;
  --stills-mouse-x: 0px;
  --stills-reveal: 0;
  --stills-slide-y: -84px;
  --stills-slide-rotate: 0deg;
  display: block;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  opacity: calc(var(--stills-opacity, 1) * var(--stills-reveal) * (1 - var(--stills-grid-exit)));
  transform: translate3d(var(--stills-mouse-x), 0, 0) scale(calc(.985 + (var(--stills-reveal) * .015)));
  transform-origin: center;
  will-change: opacity, transform;
}

.stills-field-frame {
  container-type: size;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eeece6;
  aspect-ratio: 4 / 5;
  contain: paint;
  transform: translate3d(0, var(--stills-slide-y), 0) rotate(var(--stills-slide-rotate));
  transform-origin: center;
  will-change: transform;
}

.stills-field-frame img {
  display: block;
  width: 100%;
  height: calc(100% + var(--stills-range) * 2);
  max-width: none;
  margin-top: calc(var(--stills-range) * -1);
  object-fit: cover;
  transform: translate3d(0, calc(var(--stills-y) * -0.68), 0) scale(1.012);
  will-change: transform;
}

.stills-field-text {
  display: grid;
  place-items: end start;
  background: #05080c;
  color: #fff;
  padding: clamp(10px, 6cqw, 24px);
}

.stills-field-text span {
  display: block;
  max-width: 100%;
  font-family: var(--display-font);
  font-size: clamp(13px, 11.5cqw, 42px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.stills-field-large {
  --stills-range: 6dvh;
}

.stills-field-medium {
  --stills-range: 15dvh;
}

.stills-field-small {
  --stills-range: 24dvh;
}

.stills-field-item-01 {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.stills-field-item-02 {
  grid-column: 8 / span 3;
  grid-row: 1;
  margin-top: 5dvh;
}

.stills-field-item-03 {
  grid-column: 6 / span 5;
  grid-row: 2;
  margin-top: -2dvh;
}

.stills-field-item-04 {
  --stills-opacity: .52;
  grid-column: 11 / span 2;
  grid-row: 2;
  margin-top: 8dvh;
}

.stills-field-item-05 {
  grid-column: 3 / span 6;
  grid-row: 3;
  margin-top: -4dvh;
}

.stills-field-item-06 {
  grid-column: 9 / span 4;
  grid-row: 3;
  margin-top: 7dvh;
}

.stills-field-item-07 {
  --stills-opacity: .42;
  grid-column: 1 / span 3;
  grid-row: 4;
  margin-top: -2dvh;
}

.stills-field-item-08 {
  grid-column: 5 / span 4;
  grid-row: 4;
  margin-top: 2dvh;
}

.stills-field-item-09 {
  grid-column: 7 / span 6;
  grid-row: 5;
  margin-top: -6dvh;
}

.stills-field-item-10 {
  --stills-opacity: .58;
  grid-column: 2 / span 3;
  grid-row: 5;
  margin-top: 8dvh;
}

.stills-field-item-11 {
  grid-column: 1 / span 6;
  grid-row: 6;
  margin-top: -4dvh;
}

.stills-field-item-12 {
  grid-column: 10 / span 3;
  grid-row: 6;
  margin-top: 5dvh;
}

.stills-field-item-13 {
  grid-column: 3 / span 6;
  grid-row: 7;
  margin-top: -2dvh;
}

.stills-field-item-14 {
  grid-column: 8 / span 4;
  grid-row: 8;
  margin-top: -3dvh;
}

.stills-field-item-15 {
  --stills-opacity: .46;
  grid-column: 1 / span 3;
  grid-row: 8;
  margin-top: 3dvh;
}

.stills-field-item-16 {
  grid-column: 4 / span 5;
  grid-row: 9;
  margin-top: -2dvh;
}

.stills-field-item[class*="stills-field-item-"] {
  grid-column: auto;
  grid-row: auto;
  margin-top: 0;
}

.stills-field-item:nth-child(n + 21) {
  display: none;
}

.stills-field-item[data-stills-handoff-source] {
  --stills-handoff-source-visibility: calc(1 - var(--stills-handoff-progress));
  opacity: calc(var(--stills-opacity, 1) * var(--stills-reveal));
}

.stills-field-item[data-stills-handoff-source] .stills-field-frame {
  opacity: max(.08, var(--stills-handoff-source-visibility));
}

.stills-handoff {
  --stills-handoff-overlay-opacity: 0;
  position: fixed;
  top: 0;
  right: var(--story-scrollbar-width);
  bottom: 0;
  left: 0;
  z-index: 118;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--stills-handoff-opacity);
  clip-path: inset(var(--stills-handoff-top) var(--stills-handoff-right) var(--stills-handoff-bottom) var(--stills-handoff-left) round var(--stills-handoff-radius));
  will-change: opacity, clip-path;
}

.stills-handoff::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 8, 13, .48) 0%, rgba(5, 8, 13, .28) 34%, rgba(5, 8, 13, .04) 68%, rgba(5, 8, 13, .14) 100%);
  opacity: var(--stills-handoff-overlay-opacity);
  transition: opacity 720ms var(--ease-soft);
  will-change: opacity;
}

.stills-handoff-frame {
  display: block;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background: #eeece6;
  border-radius: var(--stills-handoff-radius);
}

.stills-handoff-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(calc(1.08 - (var(--stills-handoff-progress) * .08)));
  transform-origin: center;
  will-change: transform;
}

.stills-handoff-copy {
  position: fixed;
  inset: 0 var(--story-scrollbar-width) 0 0;
  z-index: 119;
  margin: 0;
  color: rgba(247, 244, 238, .9);
  pointer-events: none;
  opacity: var(--stills-copy-opacity);
  clip-path: inset(0 calc(100% - var(--stills-copy-cover)) 0 0);
  will-change: opacity, clip-path;
}

.stills-handoff-copy-inner {
  position: absolute;
  left: clamp(44px, 6.6vw, 108px);
  bottom: clamp(52px, 8vh, 88px);
  width: min(560px, calc(52vw - 48px));
  transform: translate3d(0, var(--stills-copy-y), 0);
  will-change: transform;
}

.stills-handoff-copy h2 {
  max-width: 100%;
  margin: 0;
  color: rgba(247, 244, 238, .96);
  font-size: var(--fs-intro-lead);
  line-height: .98;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .36);
}

.stills-handoff-copy p {
  max-width: 520px;
  margin: clamp(24px, 3.6vh, 36px) 0 0;
  color: rgba(247, 244, 238, .72);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.34;
  font-weight: 400;
  text-shadow: 0 12px 38px rgba(5, 8, 12, .42);
}

@media (max-width: 760px) {
  .stills-field {
    min-height: 0;
    margin-top: -5dvh;
    padding: 9dvh 0 4dvh;
  }

  .stills-field-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 4px;
    min-height: 0;
  }

  .stills-field-large {
    --stills-range: 5dvh;
  }

  .stills-field-medium {
    --stills-range: 12dvh;
  }

  .stills-field-small {
    --stills-range: 19dvh;
  }

  .stills-field-item[class*="stills-field-item-"] {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .stills-field-text {
    padding: clamp(8px, 6cqw, 14px);
  }

  .stills-field-text span {
    font-size: clamp(11px, 11.5cqw, 26px);
  }

  .stills-handoff {
    z-index: 118;
  }

  .stills-handoff-copy {
    inset: 0 var(--story-scrollbar-width) 0 0;
    z-index: 119;
  }

  .stills-handoff-copy-inner {
    left: 24px;
    right: 24px;
    bottom: clamp(38px, 7vh, 64px);
    width: auto;
  }

  .stills-handoff-copy h2 {
    font-size: clamp(32px, 11vw, 58px);
  }

  .stills-handoff-copy p {
    max-width: 320px;
    font-size: 14px;
  }

  .stills-handoff::after,
  .stills-gallery-sticky::after {
    background: linear-gradient(180deg, rgba(5, 8, 13, .08) 0%, rgba(5, 8, 13, .16) 38%, rgba(5, 8, 13, .56) 100%);
  }
}

.stills-gallery-section.hero-statement.flow-section {
  --stills-gallery-slide-count: 9;
  --gallery-progress: 0;
  --stills-gallery-intro-progress: 0;
  --stills-gallery-reveal-mask-width: clamp(180px, 31vw, 480px);
  --stills-gallery-height: 1000dvh;
  --stills-gallery-box-height: 0px;
  --stills-gallery-section-height: calc(var(--stills-gallery-height) + var(--stills-gallery-box-height));
  --stills-card-right: 50px;
  --stills-card-bottom: 0px;
  --stills-card-width: 300px;
  --stills-card-min-height: 150px;
  --stills-card-padding: 25px;
  --stills-card-gap: 25px;
  --stills-card-bg-color: 0, 0, 0;
  --stills-card-bg-alpha: .65;
  --stills-card-text-color: #ffffff;
  --stills-card-muted-color: 255, 255, 255;
  --stills-card-muted-alpha: .68;
  --stills-card-title-size: 25px;
  --stills-card-copy-size: 14px;
  --stills-card-progress-height: 1.5px;
  --stills-card-progress-margin: 14px;
  --stills-card-progress-track-alpha: .5;
  --stills-card-progress-fill-alpha: .5;
  --stills-card-radius: 5px;
  --stills-card-shadow-y: 0px;
  --stills-card-shadow-blur: 0px;
  --stills-card-shadow-alpha: 1;
  min-height: var(--stills-gallery-section-height);
  margin-top: 0;
  display: block;
  position: relative;
  z-index: 120;
  overflow: visible;
  background: #05080c;
  box-shadow: none;
  will-change: auto;
}

#panorama-intro.hero-statement.flow-section {
  position: relative;
  z-index: 180;
}

.stills-gallery {
  position: relative;
  width: 100%;
  height: var(--stills-gallery-height);
  z-index: 0;
  margin: 0;
  overflow: clip;
  border-radius: 0;
  background: #05080c;
  opacity: 1;
  transform: none;
  will-change: auto;
}

.stills-gallery-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background: #05080c;
  contain: paint;
}

.stills-gallery-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 8, 13, .48) 0%, rgba(5, 8, 13, .28) 34%, rgba(5, 8, 13, .04) 68%, rgba(5, 8, 13, .14) 100%);
  opacity: var(--stills-gallery-overlay-opacity, 0);
  transition: opacity 720ms var(--ease-soft);
  will-change: opacity;
}

.stills-gallery-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
}

.stills-gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  --stills-card-presence: 0;
  --stills-card-progress: 0;
  --stills-card-y: 16px;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
  opacity: var(--slide-opacity, 0);
  z-index: var(--slide-z, 0);
  clip-path: inset(0 0 0 var(--slide-clip-left, 100%));
  transform: translate3d(0, 0, 0);
  transform-origin: 50% 50%;
  will-change: clip-path, opacity;
}

.stills-gallery-slide::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slide-band-x, 100%);
  z-index: 4;
  width: clamp(48px, 7vw, 112px);
  pointer-events: none;
  opacity: var(--slide-band-opacity, 0);
  transform: translate3d(-50%, 0, 0);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
}

.stills-gallery-slide:first-child {
  --slide-opacity: 1;
  --slide-clip-left: 0%;
  --slide-band-opacity: 0;
  --slide-z: 1;
  background: #fff;
}

.stills-gallery-slide:first-child::before,
.stills-gallery-slide:first-child::after {
  content: "";
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: var(--stills-gallery-reveal-mask-width);
  background: #fff;
  pointer-events: none;
  will-change: transform;
}

.stills-gallery-slide:first-child::before {
  left: 0;
  transform: translate3d(calc(var(--stills-gallery-intro-progress, 0) * -100%), 0, 0);
}

.stills-gallery-slide:first-child::after {
  right: 0;
  transform: translate3d(calc(var(--stills-gallery-intro-progress, 0) * 100%), 0, 0);
}

.stills-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(var(--slide-image-scale, 1));
  filter: none;
  will-change: transform;
}

.stills-gallery-slide:first-child .stills-gallery-image {
  clip-path: none;
  transform: scale(var(--slide-image-scale, 1));
  transform-origin: 50% 50%;
  will-change: transform;
}

.stills-gallery-card-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.stills-gallery-text-card {
  position: absolute;
  right: var(--stills-card-right);
  bottom: var(--stills-card-bottom);
  z-index: 1;
  width: min(var(--stills-card-width), calc(100vw - 44px));
  min-height: var(--stills-card-min-height);
  padding: var(--stills-card-padding);
  display: grid;
  align-content: center;
  gap: var(--stills-card-gap);
  color: var(--stills-card-text-color);
  border-radius: var(--stills-card-radius);
  background: rgba(var(--stills-card-bg-color), var(--stills-card-bg-alpha));
  box-shadow: 0 var(--stills-card-shadow-y) var(--stills-card-shadow-blur) rgba(0, 0, 0, var(--stills-card-shadow-alpha));
  opacity: var(--stills-card-presence, 0);
  transform: translate3d(0, var(--stills-card-y, 16px), 0);
  pointer-events: none;
  will-change: transform;
}

.stills-gallery-text-card h2 {
  margin: 0;
  color: currentColor;
  font-size: var(--stills-card-title-size);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.stills-gallery-text-card p {
  margin: 0;
  max-width: 26ch;
  color: rgba(var(--stills-card-muted-color), var(--stills-card-muted-alpha));
  font-size: var(--stills-card-copy-size);
  line-height: 1.35;
}

.stills-gallery-card-progress {
  position: relative;
  display: block;
  width: 100%;
  height: var(--stills-card-progress-height);
  margin-top: var(--stills-card-progress-margin);
  overflow: hidden;
  background: rgba(var(--stills-card-muted-color), var(--stills-card-progress-track-alpha));
}

.stills-gallery-card-progress span {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: scaleX(var(--stills-card-progress, 0));
  transform-origin: 0 50%;
  background: rgba(var(--stills-card-muted-color), var(--stills-card-progress-fill-alpha));
}


.stills-gallery-section .hero-statement-box {
  position: relative;
  top: auto;
  left: 0;
  z-index: 2;
  min-height: 0;
  width: 100%;
  margin: 0 auto;
  align-content: start;
  justify-items: center;
  padding: 0 clamp(18px, 1.8vw, 28px) clamp(28px, 3.5vw, 50px);
  background: #ffffff;
  color: var(--brand-navy);
  box-shadow: none;
  pointer-events: none;
}

.stills-gallery-section .hero-statement-box.fast-scroll-box {
  transform: translate3d(0, 0, 0);
  transition: none;
  will-change: auto;
}

.stills-gallery-section .hero-statement-title {
  color: var(--brand-navy);
  max-width: 1120px;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
  text-align: center;
  text-shadow: none;
}

.stills-gallery-section .hero-statement-copy {
  color: rgba(11, 20, 35, .64);
  max-width: 520px;
  margin: 24px auto 0;
  text-align: center;
  text-shadow: none;
}

@media (max-width: 920px) {
  .stills-gallery-section.hero-statement.flow-section {
    min-height: var(--stills-gallery-section-height);
  }

  .stills-gallery-section .hero-statement-box {
    width: 100%;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 22px;
  }

  .stills-gallery-section .hero-statement-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .stills-gallery-section .hero-statement-copy {
    margin-top: 18px;
    max-width: 320px;
    font-size: 12px;
  }

  .stills-gallery-text-card {
    right: 16px;
    bottom: 24px;
    width: calc(100vw - 32px);
    min-height: 176px;
    padding: 24px;
  }

}

.process-band {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

[data-flow],
.text-flow {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--duration-standard) linear,
    transform var(--duration-standard) var(--ease-out),
    clip-path var(--duration-standard) var(--ease-out),
    filter var(--duration-hover) linear;
}

[data-flow]:not(.is-visible),
.text-flow:not(.is-visible) {
  will-change: auto;
}

[data-flow].is-visible,
.text-flow.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-label.text-flow {
  transform: none;
}

.hero-title.text-flow,
.lead.text-flow {
  transform: none;
}

.section-label.text-flow.is-visible,
.hero-title.text-flow.is-visible,
.lead.text-flow.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.text-expand {
  opacity: var(--text-opacity, 1);
  transform: translate3d(0, var(--text-y, 0px), 0) scaleX(var(--text-scale, 1));
  transform-origin: left center;
  clip-path: inset(0 var(--text-clip, 0%) 0 0);
  transition:
    opacity var(--duration-standard) linear,
    transform var(--duration-standard) var(--ease-out),
    clip-path var(--duration-standard) var(--ease-out);
  will-change: opacity, transform, clip-path;
}

.text-expand.is-expanded {
  will-change: auto;
}

.intro.section {
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 0;
}

.pixel-story {
  min-height: 100svh;
  overflow: visible;
}

.intro {
  --intro-bridge-progress: 1;
  position: relative;
  overflow: clip;
  background: #fff;
  color: var(--brand-navy);
  isolation: isolate;
}

.intro .lead {
  color: var(--brand-navy);
}

.intro.pixel-story {
  min-height: 100svh;
  overflow: visible;
}

.intro.pixel-story.is-overlap-pinned {
  z-index: 80;
}

.intro.pixel-story.is-overlap-pinned .pixel-stage {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: var(--pixel-stage-pin-left, 0px);
  width: var(--pixel-stage-pin-width, 100%);
  height: var(--pixel-stage-pin-height, 100dvh);
}

.pixel-stage {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  height: 100dvh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 49%) minmax(420px, 51%);
  grid-template-areas: "copy visual";
  column-gap: clamp(28px, 4.5vw, 74px);
  align-items: center;
  padding: clamp(48px, 9vh, 116px) clamp(18px, 3.8vw, 64px) clamp(22px, 3.2vh, 42px);
  overflow: hidden;
  isolation: isolate;
  opacity: min(calc(.74 + var(--intro-bridge-progress) * .26), var(--flow-presence));
  transform: translate3d(0, calc((1 - var(--intro-bridge-progress)) * 24px), 0);
  will-change: opacity, transform;
}

.intro-visuals,
.intro-visual,
.intro-visual::before {
  position: absolute;
}

.intro-visuals {
  position: relative;
  grid-area: visual;
  inset: auto;
  width: 100%;
  min-width: 0;
  height: min(80dvh, 680px);
  align-self: center;
  justify-self: stretch;
  contain: layout paint;
}

.intro-visuals {
  z-index: 0;
  pointer-events: none;
}

.intro-visual {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  transform: translate3d(var(--visual-x, 0px), var(--visual-y, 0px), 0) scale(var(--visual-scale, 1.02));
  transform-origin: center;
  transition: opacity .64s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.intro-sequence {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate3d(var(--frame-x, 0%), var(--frame-y, 0%), 0) scale(var(--frame-scale, 1.04));
  transform-origin: center;
  will-change: transform;
}

.intro-visual.is-active {
  opacity: 1;
}

.intro-visual::before {
  content: "";
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 28%);
}

.intro-copy {
  position: relative;
  grid-area: copy;
  z-index: 5;
  width: min(760px, 100%);
  min-height: min(74dvh, 640px);
  align-self: center;
}

.intro-content {
  --intro-text-y: 10px;
  --intro-text-scale: .992;
  position: absolute;
  inset: var(--panel-top, 0%) auto auto 0;
  width: min(760px, 100%);
  min-height: min(74dvh, 640px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(var(--copy-x, 0px), var(--intro-text-y), 0) scale(var(--intro-text-scale));
  transform-origin: left center;
  transition:
    opacity 260ms linear,
    transform 360ms var(--ease-out),
    visibility 0ms linear 360ms;
  will-change: opacity, transform;
}

.intro-content[data-panel-step="0"] {
  --panel-top: 0%;
}

.intro-content[data-panel-step="1"] {
  --panel-top: 0%;
}

.intro-content[data-panel-step="2"] {
  --panel-top: 0%;
}

.intro-content:not(.is-active):not(.is-entering):not(.is-exiting) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.intro-content.is-entering,
.intro-content.is-exiting {
  visibility: visible;
}

.intro-content.is-active {
  --intro-text-y: 0px;
  --intro-text-scale: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 300ms linear 80ms,
    transform 420ms var(--ease-out) 80ms,
    visibility 0ms linear 0ms;
}

.intro-content.is-exiting {
  --intro-text-y: -8px;
  --intro-text-scale: .996;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms linear,
    transform 240ms var(--ease-out),
    visibility 0ms linear 240ms;
}

.intro-content > * {
  opacity: inherit;
  transform: translate3d(0, var(--intro-line-y, 0px), 0);
  transition:
    opacity 260ms linear,
    transform 360ms var(--ease-out);
}

.intro-content.is-entering > *,
.intro-content.is-exiting > * {
  --intro-line-y: 6px;
}

.intro-content.is-active > * {
  --intro-line-y: 0px;
}

.intro-content.is-active > :nth-child(2) {
  transition-delay: 40ms;
}

.intro-content.is-active > :nth-child(3) {
  transition-delay: 80ms;
}

.intro-content .section-label {
  position: absolute;
  left: 0;
  bottom: clamp(18px, 3.5vh, 34px);
  max-width: 220px;
  margin: 0;
  color: rgba(11, 20, 35, .54);
  font-size: 11px;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-content .lead {
  max-width: 780px;
  color: var(--brand-navy);
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.intro-content .intro-copy-text {
  position: absolute;
  left: 0;
  bottom: clamp(48px, 7vh, 76px);
  max-width: 260px;
  margin: 0;
  color: rgba(11, 20, 35, .54);
  font-size: 12px;
  line-height: 1.16;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .pixel-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    grid-template-rows: minmax(0, .86fr) minmax(220px, .72fr);
    row-gap: 24px;
    align-items: start;
    padding: 54px 18px 28px;
  }

  .intro-copy,
  .intro-content {
    width: 100%;
    min-height: 42dvh;
  }

  .intro-visuals {
    height: 34dvh;
    min-height: 230px;
  }

  .intro-content .lead {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 42px);
  }

  .intro-content .intro-copy-text {
    bottom: 36px;
    max-width: min(320px, 72vw);
    font-size: 11px;
  }

  .intro-content .section-label {
    bottom: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  .intro.pixel-story {
    margin-top: 0;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .stills-gallery-section.hero-statement.flow-section {
    margin-top: 0;
    min-height: 100dvh;
    position: relative;
    top: auto;
  }

  .stills-gallery-section .hero-statement-box {
    min-height: clamp(230px, 33dvh, 350px);
  }

  .intro.pixel-story .pixel-stage {
    position: relative;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .flow-section:not(.pixel-story) {
    opacity: 1;
    transform: none;
    filter: none;
  }

  [data-flow],
  .text-flow,
  .text-expand {
    opacity: 1;
    transform: none;
    clip-path: inset(0 0 0 0);
    transition: none;
    filter: none;
  }
}

.intro-copy-text {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(255, 254, 250, .76);
  font-size: var(--fs-body);
  line-height: var(--type-copy);
  font-weight: 400;
  text-shadow: 0 1px 20px rgba(0, 0, 0, .62);
}

.section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: .68em;
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--brand-red);
  font-family: var(--mono-font);
  font-size: var(--fs-meta);
  line-height: 1.09;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
  white-space: nowrap;
}

.section-label::before {
  content: "";
  width: .58em;
  height: .58em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.section-label::after {
  content: "";
  width: clamp(28px, 4vw, 62px);
  height: 1px;
  flex: 0 0 auto;
  background: var(--dashline);
  opacity: .62;
}

.lead {
  margin: 0;
  max-width: 920px;
  font-family: var(--display-font);
  font-size: var(--fs-lead);
  line-height: var(--type-tight);
  letter-spacing: 0;
  font-weight: 500;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--theme-fg);
}

.intro .section-label {
  color: var(--brand-red);
}

.intro .lead {
  max-width: 640px;
  font-size: var(--fs-intro-lead);
  line-height: var(--type-tight);
  color: var(--brand-white);
}

.intro .section-label,
.intro .lead,
.intro-copy-text {
  transition: none;
}

.intro.pixel-story .intro-content .section-label {
  position: absolute;
  left: 0;
  bottom: clamp(18px, 3.5vh, 34px);
  max-width: 220px;
  margin: 0;
  color: rgba(11, 20, 35, .54);
  font-size: 11px;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: none;
}

.intro.pixel-story .intro-content .lead {
  max-width: 780px;
  color: var(--brand-navy);
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: none;
}

.intro.pixel-story .intro-content .intro-copy-text {
  position: absolute;
  left: 0;
  bottom: clamp(48px, 7vh, 76px);
  max-width: 300px;
  margin: 0;
  color: rgba(11, 20, 35, .54);
  font-size: 13px;
  line-height: 1.18;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: none;
}

.panorama {
  position: relative;
  z-index: 240;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
}

.panorama-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  background: #ffffff;
}

.panorama-scene.is-dragging {
  cursor: grabbing;
}

.panorama-still,
.panorama-scene canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.panorama-still {
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1) brightness(.96);
}

.panorama-scene canvas {
  z-index: 2;
  opacity: 0;
  transition: opacity .72s var(--ease-soft);
}

.panorama.is-visible .panorama-scene canvas {
  opacity: 1;
}

.panorama-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, .46) 0%, rgba(5, 8, 13, .26) 34%, rgba(5, 8, 13, .04) 68%, rgba(5, 8, 13, .12) 100%),
    linear-gradient(180deg, rgba(5, 8, 13, .03) 0%, rgba(5, 8, 13, .04) 48%, rgba(5, 8, 13, .16) 100%);
}

.panorama-drag-cue {
  position: absolute;
  right: clamp(24px, 5.6vw, 88px);
  bottom: clamp(42px, 7vh, 76px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: rgba(247, 244, 238, .9);
  font-family: var(--body-font);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: rgba(5, 8, 12, .42);
  border: 0;
  border-radius: 2px;
  backdrop-filter: blur(14px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity .32s linear, transform .42s var(--ease-out);
}

.panorama.is-visible .panorama-drag-cue {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.panorama-drag-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.panorama-drag-icon::before,
.panorama-drag-icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  transform: translate3d(-50%, -50%, 0);
}

.panorama-drag-icon::before {
  content: "\2194";
}

.panorama-drag-icon::after {
  content: "\2195";
  opacity: .82;
}

.panorama-drag-icon {
  border: 1px solid rgba(247, 244, 238, .5);
  border-radius: 50%;
}

.panorama-meta {
  position: absolute;
  left: clamp(24px, 5.6vw, 88px);
  bottom: clamp(42px, 7vh, 76px);
  z-index: 5;
  width: min(500px, calc(100% - 48px));
  min-height: 156px;
  color: rgba(247, 244, 238, .86);
  font-family: var(--body-font);
  pointer-events: none;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.panorama-meta .section-label {
  margin: 0;
  color: rgba(247, 244, 238, .64);
  font-size: clamp(14px, .96vw, 17px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 12px 32px rgba(5, 8, 12, .52);
}

.panorama-meta .section-label::before,
.panorama-meta .section-label::after {
  content: none;
}

.panorama-meta .lead {
  margin: 17px 0 0;
  color: rgba(247, 244, 238, .86);
  font-size: clamp(18px, 1.24vw, 21px);
  line-height: 1.42;
  font-weight: 400;
  text-transform: none;
  text-shadow: 0 12px 38px rgba(5, 8, 12, .58);
}

.panorama-meta p:last-child {
  display: none;
  margin: 0;
  max-width: none;
  color: rgba(247, 244, 238, .78);
  font-size: clamp(18px, 1.24vw, 21px);
  line-height: 1.42;
  font-weight: 400;
}

.motion-sequence {
  position: relative;
  z-index: 235;
  min-height: 130svh;
  min-height: 130dvh;
  background: #05080d;
  color: rgba(247, 244, 238, .94);
  overflow: visible;
}

.motion-sequence.is-horizontal-enter {
  z-index: 1300;
}

.motion-sequence-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background: #05080d;
  isolation: isolate;
}

.motion-sequence.is-horizontal-enter .motion-sequence-sticky {
  position: fixed;
  inset: 0;
  z-index: 1;
  transform: translate3d(var(--motion-sequence-enter-x, 100vw), 0, 0);
  box-shadow: -18vw 0 42vw rgba(5, 8, 13, .22);
  will-change: transform;
}

.motion-sequence-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02) brightness(.86);
}

.motion-sequence-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 8, 13, .48) 0%, rgba(5, 8, 13, .28) 34%, rgba(5, 8, 13, .04) 68%, rgba(5, 8, 13, .14) 100%);
}

.motion-sequence-loading {
  position: absolute;
  right: clamp(24px, 4.4vw, 72px);
  bottom: clamp(28px, 5vh, 52px);
  z-index: 4;
  color: rgba(247, 244, 238, .72);
  font-size: clamp(12px, .82vw, 14px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition: opacity .24s ease, transform .24s ease;
}

.motion-sequence.is-video-loading .motion-sequence-loading {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-sequence.is-video-loaded .motion-sequence-loading {
  opacity: 0;
}

.motion-sequence-copy {
  position: absolute;
  left: clamp(44px, 6.6vw, 108px);
  bottom: clamp(52px, 8vh, 88px);
  z-index: 3;
  width: min(560px, calc(52vw - 48px));
  color: rgba(247, 244, 238, .9);
  pointer-events: none;
}

.motion-sequence-copy .section-label {
  margin: 0;
  color: rgba(247, 244, 238, .64);
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.motion-sequence-copy .lead {
  margin: clamp(18px, 2.8vh, 28px) 0 0;
  color: rgba(247, 244, 238, .96);
  font-size: var(--fs-intro-lead);
  line-height: .98;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .36);
}

.motion-sequence-copy p:last-child {
  max-width: 520px;
  margin: clamp(24px, 3.6vh, 36px) 0 0;
  color: rgba(247, 244, 238, .72);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.34;
  font-weight: 400;
}

@media (max-width: 760px) {
  .motion-sequence {
    min-height: 120svh;
    min-height: 120dvh;
  }

  .motion-sequence-video {
    object-position: center center;
  }

  .motion-sequence-sticky::after {
    background: linear-gradient(180deg, rgba(5, 8, 13, .08) 0%, rgba(5, 8, 13, .16) 38%, rgba(5, 8, 13, .56) 100%);
  }

  .motion-sequence-copy {
    left: 18px;
    right: 18px;
    bottom: 32px;
    width: auto;
  }

  .motion-sequence-copy .lead {
    font-size: clamp(44px, 15vw, 78px);
  }

  .motion-sequence-copy p:last-child {
    max-width: 34rem;
    font-size: 15px;
  }

}

.product-object {
  position: relative;
  z-index: 230;
  min-height: 240svh;
  min-height: 240dvh;
  background: #05080d;
  color: rgba(247, 244, 238, .94);
  overflow: visible;
}

.product-object.is-horizontal-enter {
  z-index: 1300;
}

.product-object-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 48%, rgba(26, 48, 62, .88) 0%, rgba(13, 25, 35, .54) 24%, rgba(5, 8, 13, 0) 56%),
    linear-gradient(108deg, #04070c 0%, #070c13 36%, #101923 67%, #05080d 100%);
  isolation: isolate;
}

.product-object-sticky::before,
.product-object-sticky::after {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: 0;
  pointer-events: none;
}

.product-object-sticky::before {
  background:
    radial-gradient(ellipse at 73% 46%, rgba(58, 103, 124, .32) 0%, rgba(58, 103, 124, .08) 30%, transparent 62%),
    radial-gradient(ellipse at 47% 54%, rgba(213, 234, 241, .08) 0%, transparent 42%);
  filter: blur(18px);
  opacity: .86;
  transform: translate3d(-1.5%, 0, 0) scale(1.02);
  animation: product-object-bg-drift 18s ease-in-out infinite alternate;
}

.product-object-sticky::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .022) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, transparent 0%, transparent 42%, rgba(0, 0, 0, .5) 100%);
  background-size: 96px 96px, 96px 96px, 100% 100%;
  opacity: .48;
  transform: translate3d(0, 0, 0);
  animation: product-object-grid-drift 24s ease-in-out infinite alternate;
}

.product-object.is-horizontal-enter .product-object-sticky {
  position: fixed;
  inset: 0;
  z-index: 1;
  transform: translate3d(var(--product-object-enter-x, 100vw), 0, 0);
  box-shadow: -18vw 0 42vw rgba(11, 20, 35, .18);
  will-change: transform;
}

.product-object-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: transparent;
}

.product-object-stage::before {
  content: "";
  position: absolute;
  right: clamp(34px, 8vw, 150px);
  bottom: clamp(44px, 7vh, 96px);
  z-index: 0;
  width: clamp(380px, 40vw, 680px);
  height: clamp(150px, 18vw, 290px);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 58% 48%, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .58) 30%, rgba(0, 0, 0, .2) 60%, transparent 78%);
  filter: blur(22px);
  mix-blend-mode: multiply;
  opacity: .88;
  transform: translate3d(6%, 0, 0) rotate(-4deg);
}

.product-object-load {
  position: absolute;
  left: min(72%, calc(50% + clamp(150px, 20vw, 340px)));
  top: 52%;
  z-index: 3;
  width: clamp(220px, 18vw, 300px);
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  letter-spacing: 0;
  transform: translate3d(-50%, -50%, 0);
}

.product-object.is-ready .product-object-load,
.product-object[data-product-object-load="loading"] .product-object-load,
.product-object[data-product-object-load="ready"] .product-object-load {
  opacity: 0;
  pointer-events: none;
}

.product-object[data-product-object-mode="static"] .product-object-loader {
  visibility: hidden;
  opacity: 0;
}

.product-object[data-product-object-load="loading"] .product-object-loader {
  visibility: visible;
  opacity: 1;
}

.product-object-stage canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate3d(clamp(220px, 20vw, 340px), 0, 0);
  cursor: grab;
  touch-action: none;
}

.product-object-stage canvas.is-dragging {
  cursor: grabbing;
}

.product-object-detail-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  max-width: min(340px, 40vw);
  padding: 12px 14px 11px;
  border-left: 1px solid rgba(137, 239, 255, .72);
  color: rgba(247, 244, 238, .94);
  text-shadow: 0 1px 12px rgba(2, 12, 18, .72);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--detail-x, 0), var(--detail-y, 0), 0);
  transition: opacity .28s var(--ease-out);
  will-change: transform, opacity;
}

.product-object-detail-label.is-visible {
  opacity: 1;
}

.product-object-detail-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(137, 239, 255, .7), transparent);
  transform: translate3d(-42px, 0, 0);
}

.product-object-detail-kicker,
.product-object-detail-title,
.product-object-detail-meta {
  display: block;
}

.product-object-detail-kicker {
  margin: 0 0 7px;
  color: rgba(137, 239, 255, .76);
  font-size: clamp(11px, .78vw, 13px);
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-object-detail-title {
  color: rgba(247, 244, 238, .98);
  font-size: clamp(18px, 1.32vw, 24px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-object-detail-meta {
  margin-top: 9px;
  color: rgba(247, 244, 238, .62);
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.22;
  letter-spacing: 0;
}

.product-object-copy {
  position: absolute;
  left: clamp(44px, 6.6vw, 108px);
  top: clamp(96px, 15vh, 142px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(540px, calc(50vw - 48px));
  pointer-events: none;
}

.product-object-copy .lead {
  margin: 0;
  max-width: 100%;
  color: rgba(247, 244, 238, .96);
  font-size: var(--fs-intro-lead);
  line-height: .98;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .36);
}

.product-object-copy p:last-child {
  order: 2;
  max-width: 100%;
  margin: clamp(28px, 4vh, 38px) 0 0;
  color: rgba(247, 244, 238, .7);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.34;
  font-weight: 400;
  text-transform: none;
}

.product-object-controls {
  order: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 10px;
  margin-top: clamp(54px, 8vh, 76px);
  pointer-events: auto;
}

.product-object-control {
  appearance: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: rgba(247, 244, 238, .82);
  font-family: var(--body-font);
  font-size: clamp(10px, .72vw, 12px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    transform .22s var(--ease-out),
    border-color .22s var(--ease-out),
    background .22s var(--ease-out),
    color .22s var(--ease-out);
}

.product-object-control::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 244, 238, .94);
  opacity: 0;
  transform: translate3d(0, 104%, 0);
  transition:
    opacity .32s var(--ease-out),
    transform .42s var(--ease-soft);
}

.product-object-control-label {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  line-height: 1;
}

.product-object-control-label span {
  display: block;
  transition: transform .42s var(--ease-soft);
  will-change: transform;
}

.product-object-control-label span:nth-child(2) {
  position: absolute;
  inset: 100% auto auto 0;
}

@media (max-width: 540px) {
  .product-object-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    margin-top: 24px;
  }

  .product-object-control {
    min-height: 24px;
    padding: 7px 8px 6px;
    font-size: 10px;
  }
}

.product-object-control[aria-pressed="true"] {
  border-color: transparent;
  background: transparent;
  color: rgba(247, 244, 238, 1);
  text-decoration: underline;
  text-underline-offset: .28em;
}

.product-object-control[aria-pressed="true"]::before {
  opacity: 0;
  transform: translate3d(0, 104%, 0);
}

.product-object-control:focus-visible {
  outline: 2px solid rgba(255, 61, 0, .72);
  outline-offset: 3px;
}

.product-object-control:active {
  transform: translate3d(0, 1px, 0) scale(.99);
}

@media (hover: hover) and (pointer: fine) {
  .product-object-control:hover,
  .product-object-control:focus-visible {
    border-color: transparent;
    color: rgba(247, 244, 238, 1);
    transform: translate3d(0, -1px, 0);
  }

  .product-object-control:hover::before,
  .product-object-control:focus-visible::before {
    opacity: 0;
    transform: translate3d(0, 104%, 0);
  }

  .product-object-control:hover .product-object-control-label span,
  .product-object-control:focus-visible .product-object-control-label span {
    transform: translate3d(0, -100%, 0);
  }
}

.product-object-stage .product-object-load {
  left: min(72%, calc(50% + clamp(150px, 20vw, 340px)));
  top: 52%;
  width: clamp(220px, 18vw, 300px);
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  letter-spacing: 0;
  transform: translate3d(-50%, -50%, 0);
}

.product-object-load-cube {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .96;
  perspective: 820px;
  perspective-origin: 50% 50%;
}

.product-object-load-cube-column,
.product-object-load-cube-layer,
.product-object-load-cube-gradient {
  display: block;
}

.product-object-load-cube-column {
  position: absolute;
  inset: 7%;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  animation: product-object-load-cube-turn 8s linear infinite;
  transition: transform .42s var(--ease-soft);
  will-change: transform;
}

.product-object-load-cube-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  opacity: 1;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="9" y="9" width="82" height="82" fill="none" stroke="black" stroke-width="0.8" vector-effect="non-scaling-stroke"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="9" y="9" width="82" height="82" fill="none" stroke="black" stroke-width="0.8" vector-effect="non-scaling-stroke"/></svg>');
  mask-size: cover;
  -webkit-mask-size: cover;
}

.product-object-load-cube-layer::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1.8px solid rgba(247, 244, 238, .96);
  box-shadow:
    0 0 14px rgba(247, 244, 238, .22),
    inset 0 0 12px rgba(247, 244, 238, .1);
}

.product-object-load-cube-gradient {
  position: absolute;
  inset: -55%;
  background:
    conic-gradient(
      from 180deg at 50% 50%,
      rgba(247, 244, 238, .94) 0deg,
      rgba(247, 244, 238, 0) 45deg,
      rgba(247, 244, 238, .94) 90deg,
      rgba(247, 244, 238, 0) 180deg,
      rgba(247, 244, 238, .94) 270deg,
      rgba(247, 244, 238, 0) 315deg,
      rgba(247, 244, 238, .94) 360deg
    );
  animation: logo-i-gradient-rotation 4.8s linear infinite;
  will-change: transform;
}

.product-object-load-cube-layer:nth-child(1) {
  transform: translate3d(0, 0, 0) scale(1);
}

.product-object-load-cube-layer:nth-child(2) {
  transform: translate3d(0, 0, -58px) scale(.86);
  opacity: .72;
}

.product-object-load-cube-layer:nth-child(3) {
  transform: translate3d(0, 0, -116px) scale(.72);
  opacity: .48;
}

.product-object-load-cube-layer:nth-child(2) .product-object-load-cube-gradient {
  animation-duration: 52s;
  animation-delay: -18s;
}

.product-object-load-cube-layer:nth-child(3) .product-object-load-cube-gradient {
  animation-duration: 78s;
  animation-delay: -36s;
}

.product-object-stage .product-object-load .product-object-control-label {
  z-index: 2;
  padding: 10px 12px;
  color: rgba(247, 244, 238, .94);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .7);
}

.product-object-stage .product-object-load .product-object-control-label span {
  transition: none;
}

.product-object-stage .product-object-load .product-object-control-label span:nth-child(2) {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .product-object-stage .product-object-load:hover,
  .product-object-stage .product-object-load:focus-visible {
    transform: translate3d(-50%, calc(-50% - 1px), 0);
  }

  .product-object-stage .product-object-load:hover .product-object-control-label span,
  .product-object-stage .product-object-load:focus-visible .product-object-control-label span {
    transform: none;
  }

  .product-object-stage .product-object-load:hover .product-object-load-cube-column,
  .product-object-stage .product-object-load:focus-visible .product-object-load-cube-column {
    animation-duration: 5.8s;
  }
}

@keyframes product-object-load-cube-turn {
  0% {
    transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
  }

  50% {
    transform: rotateX(6deg) rotateY(12deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
  }
}

.product-object-slider {
  order: 4;
  width: 100%;
  margin-top: clamp(44px, 6.4vh, 64px);
  pointer-events: auto;
}

.product-object-slider-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) max-content;
  align-items: center;
  gap: 12px;
}

.product-object-slider label {
  display: block;
  margin: 0 0 18px;
  color: rgba(247, 244, 238, .78);
  font-family: var(--body-font);
  font-size: clamp(12px, .86vw, 16px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.product-object-slider input {
  display: block;
  width: 100%;
  height: 22px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
  --slider-fill: 0%;
}

.product-object-zoom-controls {
  display: inline-grid;
  grid-template-columns: repeat(2, 32px);
  gap: 6px;
}

.product-object-zoom {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 15px;
  line-height: 1;
}

.product-object-slider input::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, .92) 0 var(--slider-fill), rgba(247, 244, 238, .2) var(--slider-fill) 100%);
}

.product-object-slider input::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 244, 238, .96);
  box-shadow: 0 0 0 4px rgba(247, 244, 238, .08);
}

.product-object-slider input::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(247, 244, 238, .2);
}

.product-object-slider input::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(247, 244, 238, .92);
}

.product-object-slider input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 244, 238, .96);
  box-shadow: 0 0 0 4px rgba(247, 244, 238, .08);
}

@keyframes product-object-bg-drift {
  from {
    transform: translate3d(-1.5%, 0, 0) scale(1.02);
  }

  to {
    transform: translate3d(1.8%, -1.2%, 0) scale(1.06);
  }
}

@keyframes product-object-grid-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-18px, 12px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-object-sticky::before,
  .product-object-sticky::after {
    animation: none;
  }
}

.product-object-loader {
  position: absolute;
  left: min(72%, calc(50% + clamp(150px, 20vw, 340px)));
  top: 52%;
  z-index: 3;
  padding: 8px 10px;
  border-radius: 5px;
  background: rgba(5, 8, 12, .34);
  color: rgba(247, 244, 238, .9);
  font-family: var(--body-font);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .24s linear, transform .32s var(--ease-out);
}

.product-object.is-ready .product-object-loader {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(-50%, calc(-50% + 8px), 0);
}

.project-start {
  position: relative;
  z-index: 240;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: #050608;
  color: rgba(247, 244, 238, .94);
}

.project-start.is-nav-slide-enter {
  z-index: 1500;
  overflow: visible;
}

.project-start.is-product-slide-enter {
  z-index: 1500;
  overflow: visible;
}

.project-start.is-nav-slide-enter .project-start-inner {
  position: fixed;
  inset: 0;
  z-index: 1500;
  width: 100vw;
  height: 100svh;
  height: 100dvh;
  transform: translate3d(var(--project-start-enter-x, 100vw), 0, 0);
  will-change: transform;
}

.project-start.is-product-slide-enter .project-start-inner {
  position: fixed;
  inset: 0;
  z-index: 1500;
  width: 100vw;
  height: 100svh;
  height: 100dvh;
  transform: translate3d(0, var(--project-start-enter-y, 100vh), 0);
  will-change: transform;
}

.project-start-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  grid-template-areas: "copy form";
  align-items: stretch;
  align-content: stretch;
  gap: 0;
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 0;
  background: #050608;
}

.project-start-copy {
  grid-area: copy;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(82px, 12vh, 150px) clamp(34px, 5.6vw, 92px);
  border-right: 1px solid rgba(247, 244, 238, .22);
}

.project-start-title {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 244, 238, .96);
  font-family: var(--body-font);
  font-size: var(--fs-intro-lead);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.project-start-text {
  max-width: 600px;
  margin: clamp(48px, 18vh, 190px) 0 0;
  color: rgba(247, 244, 238, .66);
  font-family: var(--body-font);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0;
}

.project-start-form {
  grid-area: form;
  display: grid;
  grid-template-rows: auto;
  align-self: center;
  width: 100%;
  max-width: 760px;
  padding: clamp(82px, 12vh, 150px) clamp(30px, 5vw, 78px);
}

.project-start-step {
  margin: 0 0 clamp(26px, 5vh, 48px);
  color: rgba(247, 244, 238, .92);
  font-family: var(--body-font);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.project-start-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.project-start-field {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(180px, 1fr);
  align-items: center;
  min-height: clamp(58px, 8vh, 70px);
  border-top: 1px solid rgba(247, 244, 238, .34);
  font-family: var(--body-font);
  font-size: clamp(15px, 1.12vw, 19px);
  line-height: 1.1;
  letter-spacing: 0;
  color: rgba(247, 244, 238, .92);
}

.project-start-field:last-of-type {
  border-bottom: 1px solid rgba(247, 244, 238, .34);
}

.project-start-field span {
  color: rgba(247, 244, 238, .92);
}

.project-start-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(247, 244, 238, .94);
  font: inherit;
  line-height: 1.1;
}

.project-start-field input::placeholder {
  color: rgba(247, 244, 238, .44);
}

.project-start-submit {
  appearance: none;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: auto;
  min-width: 78px;
  min-height: 30px;
  overflow: hidden;
  margin-top: clamp(26px, 5vh, 48px);
  padding: 7px 12px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: rgba(247, 244, 238, .82);
  font-family: var(--body-font);
  font-size: clamp(10px, .72vw, 12px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    transform .22s var(--ease-out),
    border-color .22s var(--ease-out),
    background .22s var(--ease-out),
    color .22s var(--ease-out);
}

.project-start-submit::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 244, 238, .94);
  opacity: 0;
  transform: translate3d(0, 104%, 0);
  transition:
    opacity .32s var(--ease-out),
    transform .42s var(--ease-soft);
}

.project-start-submit-label {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  line-height: 1;
}

.project-start-submit-label span {
  display: block;
  transition: transform .42s var(--ease-soft);
  will-change: transform;
}

.project-start-submit-label span:nth-child(2) {
  position: absolute;
  inset: 100% auto auto 0;
}

.project-start-submit:focus-visible {
  outline: 2px solid rgba(255, 61, 0, .72);
  outline-offset: 3px;
}

.project-start-submit:active {
  transform: translate3d(0, 1px, 0) scale(.99);
}

@media (hover: hover) and (pointer: fine) {
  .project-start-submit:hover,
  .project-start-submit:focus-visible {
    border-color: transparent;
    color: rgba(247, 244, 238, 1);
    transform: translate3d(0, -1px, 0);
  }

  .project-start-submit:hover::before,
  .project-start-submit:focus-visible::before {
    opacity: 0;
    transform: translate3d(0, 104%, 0);
  }

  .project-start-submit:hover .project-start-submit-label span,
  .project-start-submit:focus-visible .project-start-submit-label span {
    transform: translate3d(0, -100%, 0);
  }
}

@media (max-width: 820px) {
  .project-start-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form";
  }

  .project-start-copy {
    min-height: auto;
    padding: clamp(82px, 12vh, 110px) 22px 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 244, 238, .22);
  }

  .project-start-title {
    font-size: clamp(38px, 10.5vw, 58px);
  }

  .project-start-text {
    margin-top: clamp(34px, 8vh, 68px);
    font-size: clamp(16px, 4.6vw, 19px);
  }

  .project-start-form {
    max-width: none;
    padding: 28px 22px 58px;
  }

  .project-start-field {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    min-height: 76px;
  }

  .project-start-submit {
    width: auto;
  }
}

.services,
.process,
.contact {
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(460px, 1.08fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  min-height: 100svh;
  min-height: 100dvh;
}

.services {
  grid-template-areas:
    "copy visual"
    "list list";
  grid-template-rows: auto auto;
  align-content: center;
  align-items: start;
  column-gap: clamp(52px, 7vw, 104px);
  row-gap: clamp(28px, 4dvh, 44px);
  overflow: visible;
}

.services-copy {
  grid-area: copy;
  max-width: 640px;
}

.services-copy .lead {
  max-width: 600px;
  font-size: clamp(40px, 4.25vw, 60px);
  line-height: 1;
}

.section-deck {
  margin: clamp(18px, 2.4dvh, 28px) 0 0;
  max-width: 520px;
  color: var(--theme-muted);
  font-size: var(--fs-body);
  line-height: var(--type-copy);
}

.services-cube-stage {
  position: relative;
  grid-area: visual;
  align-self: start;
  width: 100%;
  height: clamp(340px, 42dvh, 460px);
  min-height: 340px;
  overflow: hidden;
  cursor: crosshair;
  isolation: isolate;
}

.services-cube-stage::before,
.services-cube-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-cube-stage::before {
  inset: 8% 0 8% 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 251, .1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248, 250, 251, .1) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .5;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.services-cube-stage::after {
  inset: auto 0 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-red-rgb), .9), transparent);
  opacity: .7;
}

.services-cube-stage canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.section-heading {
  display: grid;
  align-content: start;
  justify-items: start;
  row-gap: 0;
}

.section-heading .section-label {
  margin: clamp(12px, 2dvh, 22px) 0 10px;
}

.section-heading .lead {
  margin: 0;
  max-width: 640px;
}

.service-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: start;
  width: 100%;
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  min-height: 160px;
  padding: 18px clamp(16px, 1.8vw, 24px) 20px 0;
  border-bottom: 0;
  border-right: 1px solid var(--line);
  background-image: linear-gradient(90deg, rgba(var(--brand-red-rgb), .09), transparent 42%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  opacity: 1;
  transform: none;
  transition: background-size var(--duration-standard) var(--ease-out);
}

.service:last-child {
  border-right: 0;
}

.service-index {
  color: var(--theme-muted);
  font-family: var(--mono-font);
  font-size: var(--fs-micro);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .01em;
}

.service strong,
.service p,
.step span,
.step strong,
.step p {
  transform: none;
  transition:
    transform var(--duration-standard) var(--ease-out),
    color var(--duration-hover) linear,
    opacity var(--duration-hover) linear;
}

.service.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.service strong {
  color: var(--brand-red);
  font-family: var(--mono-font);
  font-size: var(--fs-meta);
  line-height: 1.09;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.service p {
  margin: 0;
  color: var(--theme-muted);
  line-height: var(--type-copy);
  font-size: var(--fs-body);
  font-weight: 400;
}

.process-band {
  position: relative;
  isolation: isolate;
  background: var(--theme-bg);
  color: var(--theme-fg);
  overflow: clip;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px),
    linear-gradient(0deg, var(--bg-grid) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .7;
}

.process {
  position: relative;
  z-index: 1;
}

.process-manual {
  align-content: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: clamp(48px, 12dvh, 120px);
  min-height: clamp(260px, 42dvh, 420px);
  padding: clamp(22px, 3vw, 34px);
  background: color-mix(in srgb, var(--theme-bg) 92%, var(--theme-fg) 8%);
  opacity: 1;
  transform: none;
  transition: none;
}

.step.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.step span {
  color: var(--theme-accent);
  font-family: var(--mono-font);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--theme-fg);
  font-size: var(--fs-step-title);
  line-height: 1.09;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  max-width: 620px;
  color: var(--theme-muted);
  line-height: var(--type-copy);
  font-weight: 400;
}

.contact.story-section {
  scroll-snap-stop: normal;
  overflow: visible;
}

.contact .footer {
  grid-column: 1 / -1;
  align-self: end;
  margin: clamp(18px, 4vh, 42px) calc(clamp(18px, 5vw, 72px) * -1) calc(clamp(76px, 12vw, 150px) * -1);
  scroll-snap-align: end;
  scroll-snap-stop: normal;
}

.contact-copy {
  transform: none;
}

.contact .lead {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
}

.contact-copy p:not(.section-label) {
  margin: clamp(20px, 2.4vw, 28px) 0 0;
  max-width: 560px;
  color: var(--theme-muted);
  line-height: var(--type-copy);
  font-weight: 400;
}

.contact-copy .lead {
  margin: 0;
}

.contact-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(22px, 3dvh, 36px);
}

.contact-routes span {
  border: 1px solid var(--line);
  padding: 7px 10px 6px;
  color: var(--theme-muted);
  font-family: var(--mono-font);
  font-size: var(--fs-micro);
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.inquiry {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding-top: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--theme-accent);
  font-family: var(--mono-font);
  font-size: var(--fs-meta);
  line-height: 1.09;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border: 1px solid var(--image-frame);
  border-radius: 0;
  background: color-mix(in srgb, var(--theme-bg) 82%, var(--theme-fg) 18%);
  color: var(--theme-fg);
  padding: 11px 12px;
  font: inherit;
  outline: none;
  transition:
    border-color var(--duration-hover) linear,
    box-shadow var(--duration-hover) var(--ease-out),
    background-color var(--duration-hover) var(--ease-out);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 1px var(--theme-accent);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.inquiry .button {
  width: fit-content;
  min-height: 0;
  padding: .42em .72em .34em;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--theme-accent);
  cursor: pointer;
  font-family: var(--mono-font);
  font-size: var(--fs-meta);
  line-height: 2;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.footer {
  padding: 28px clamp(18px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: color-mix(in srgb, var(--theme-bg) 88%, #000 12%);
  color: var(--theme-muted);
  font-family: var(--mono-font);
  font-size: var(--fs-micro);
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

@media (max-width: 1180px) and (min-width: 861px) {
  :root {
    --fs-small: 13px;
    --fs-body: 15px;
    --fs-copy: 15px;
    --fs-step-title: 20px;
    --fs-panel-title: clamp(28px, 3vw, 44px);
    --fs-panel-span: clamp(27px, 2.9vw, 42px);
    --fs-panel-hero: clamp(44px, 5.8vw, 70px);
    --fs-intro-lead: clamp(34px, 4.35vw, 60px);
    --fs-lead: clamp(36px, 4.7vw, 62px);
    --fs-hero: clamp(44px, 5.7vw, 72px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 54vw);
    gap: clamp(28px, 5vw, 64px);
  }

  .hero-panel,
  .panel-row {
    min-width: 0;
    max-width: 100%;
  }

  .panel-row .hero-title {
    max-width: 100%;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  :root {
    --fs-micro: 9px;
    --fs-meta: 10px;
    --fs-small: 12px;
    --fs-body: 14px;
    --fs-copy: 14px;
    --fs-step-title: 18px;
    --fs-panel-title: clamp(24px, 2.4vw, 34px);
    --fs-panel-span: clamp(23px, 2.3vw, 32px);
    --fs-panel-hero: clamp(34px, 4.5vw, 54px);
    --fs-intro-lead: clamp(28px, 3.4vw, 46px);
    --fs-lead: clamp(30px, 3.6vw, 48px);
    --fs-hero: clamp(34px, 4.4vw, 56px);
  }

  .section {
    padding-top: clamp(52px, 8dvh, 74px);
    padding-bottom: clamp(52px, 8dvh, 74px);
  }

  .section-label {
    font-size: var(--fs-meta);
  }

  .service p,
  .step p,
  .contact-copy p:not(.section-label),
  .panorama-meta p:last-child {
    font-size: var(--fs-body);
  }

  .services-copy .lead,
  .contact .lead,
  .panorama-meta .lead {
    font-size: clamp(28px, 3.2vw, 44px);
  }

  .services-cube-stage {
    height: clamp(250px, 38dvh, 310px);
    min-height: 250px;
  }

  .service {
    min-height: 132px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

@media (max-width: 860px) {
  :root {
    --fs-micro: 10px;
    --fs-meta: 10px;
    --fs-small: 12px;
    --fs-body: 14px;
    --fs-copy: 14px;
    --fs-step-title: 18px;
    --fs-panel-title: clamp(27px, 5.6vw, 38px);
    --fs-panel-span: clamp(26px, 5.3vw, 36px);
    --fs-panel-hero: clamp(35px, 7.4vw, 50px);
    --fs-intro-lead: clamp(31px, 6.8vw, 46px);
    --fs-lead: clamp(33px, 7.1vw, 50px);
    --fs-hero: clamp(34px, 8vw, 54px);
  }

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

  .nav-links {
    position: fixed;
    inset: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(4px, 1vw, 10px);
    padding: clamp(94px, 13vh, 124px) 22px 44px;
    font-size: clamp(28px, 8.6vw, 46px);
  }

  .hero-inner,
  .intro,
  .panorama-meta,
  .services,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .services,
  .process,
  .contact {
    gap: clamp(28px, 6dvh, 56px);
    align-content: start;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .services {
    grid-template-areas:
      "copy"
      "visual"
      "list";
  }

  .services-cube-stage {
    height: clamp(300px, 42dvh, 430px);
    min-height: clamp(300px, 42dvh, 430px);
    cursor: default;
  }

  .service-list {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-bottom: 0;
  }

  .section-heading {
    row-gap: 0;
  }

  .section-heading .lead {
    max-width: min(680px, 100%);
  }

  .hero-inner {
    gap: 42px;
  }

  .lead {
    line-height: 1.08;
  }

  .intro .lead {
    line-height: 1.1;
  }

  .hero-panel {
    max-width: 520px;
    min-height: 360px;
  }

  .panel-row .hero-title {
    font-size: var(--fs-panel-hero);
  }

  .hero-copy {
    font-size: var(--fs-body);
  }

  .hero-statement {
    min-height: 50svh;
    min-height: 50dvh;
  }

  .stills-gallery {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .stills-gallery-section .hero-statement-box {
    min-height: 37dvh;
  }

  .hero-statement-title {
    font-size: clamp(36px, 8.4vw, 58px);
    line-height: .96;
    white-space: normal;
  }

  .hero-statement-copy {
    max-width: 520px;
    margin-top: 24px;
  }

  .button {
    font-size: var(--fs-body);
  }

  .section-heading .section-label {
    margin: 12px 0 10px;
  }

  .panorama-meta {
    bottom: clamp(104px, 16dvh, 150px);
  }

  .hero-inner,
  .contact-copy {
    transform: none;
  }

  .service,
  .step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* Final minimal continuous story layer */
.story-section.technical-section {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  overflow: clip;
}

.technical-section::before {
  clip-path: none;
}

.technical-section::after {
  opacity: calc(.24 * var(--graph-enter));
  background:
    linear-gradient(90deg, var(--technical-grid) 1px, transparent 1px),
    linear-gradient(0deg, var(--technical-grid) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: none;
}

.technical-graph,
.technical-meta,
.depth-layer-services,
.depth-layer-process,
.depth-layer-contact {
  display: none;
}

.services,
.process,
.contact {
  min-height: 148svh;
  min-height: 148dvh;
  align-content: start;
  padding-top: clamp(104px, 14dvh, 170px);
  padding-bottom: clamp(120px, 18dvh, 220px);
}

.services-copy,
.process .section-heading,
.contact-copy,
.technical-form-panel {
  position: sticky;
  top: clamp(92px, 16dvh, 150px);
  align-self: start;
  transform: none;
}

.services-copy .lead,
.process .lead,
.contact .lead {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .95;
}

.services-copy .section-deck,
.process .section-deck,
.contact-copy p:not(.section-label) {
  max-width: 430px;
  margin-top: clamp(18px, 2.5dvh, 30px);
  font-size: clamp(15px, 1.05vw, 18px);
}

.section-heading .section-label {
  margin-top: 0;
}

.services {
  grid-template-columns: minmax(320px, .72fr) minmax(520px, 1fr);
  grid-template-areas:
    "copy visual"
    "copy list";
  column-gap: clamp(64px, 9vw, 150px);
  row-gap: clamp(72px, 12dvh, 150px);
}

.services-cube-stage {
  justify-self: end;
  width: min(760px, 100%);
  height: clamp(340px, 44dvh, 520px);
  min-height: clamp(340px, 44dvh, 520px);
  opacity: .92;
  transform: translate3d(0, calc(var(--parallax-y) * -.25), 0);
}

.services-cube-stage::before,
.services-cube-stage::after {
  opacity: .26;
}

.service-list {
  justify-self: end;
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--technical-line);
  border-bottom: 0;
}

.service,
.service:first-child {
  min-height: 0;
  padding: clamp(22px, 3dvh, 34px) 0;
  border: 0;
  border-bottom: 1px solid var(--technical-line);
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  opacity: calc(.5 + var(--panel-enter) * .5);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 18px), 0);
}

.service-index {
  align-self: start;
  font-size: clamp(22px, 2.2vw, 36px);
}

.service strong,
.step strong {
  grid-column: 2;
  font-size: clamp(18px, 1.35vw, 24px);
}

.service strong::before,
.step strong::before {
  width: 22px;
  margin-bottom: 14px;
}

.service p,
.step p {
  grid-column: 2;
  max-width: 34rem;
  font-size: clamp(14px, 1vw, 17px);
}

.step span {
  grid-row: 1 / span 2;
}

/* Keep the 360 overlay text identical to the horizontal gallery notes. */
.panorama-meta {
  left: clamp(24px, 5.6vw, 88px);
  bottom: clamp(42px, 7vh, 76px);
  width: min(500px, calc(100% - 48px));
  min-height: 156px;
  opacity: var(--note-opacity, 0);
  transform: translate3d(0, var(--note-y, 14px), 0);
  will-change: opacity, transform;
}

.panorama-meta .section-label {
  display: block;
  margin: 0;
  color: rgba(247, 244, 238, .64);
  font-family: var(--body-font);
  font-size: clamp(14px, .96vw, 17px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: normal;
  text-shadow: 0 12px 32px rgba(5, 8, 12, .52);
}

.panorama-meta .section-label::before,
.panorama-meta .section-label::after {
  content: none;
  display: none;
}

.panorama-meta .lead {
  max-width: none;
  margin: 17px 0 0;
  color: rgba(247, 244, 238, .86);
  font-size: clamp(18px, 1.24vw, 21px);
  line-height: 1.42;
  font-weight: 400;
  text-transform: none;
  text-shadow: 0 12px 38px rgba(5, 8, 12, .58);
}

.panorama-meta .section-label,
.panorama-meta .lead {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  transition: none;
}

.panorama-meta p:last-child {
  display: none;
}

.gallery-debug-panel {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 5000;
  width: min(360px, calc(100vw - 24px));
  max-height: min(72vh, 620px);
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(255, 61, 0, .5);
  background: rgba(11, 20, 35, .92);
  color: #f8fafb;
  font: 12px/1.35 Consolas, "Courier New", monospace;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
  pointer-events: none;
}

.gallery-debug-panel::before {
  content: "gallery debug";
  display: block;
  margin-bottom: 8px;
  color: #ff3d00;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-debug-panel div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 2px 0;
  border-top: 1px solid rgba(248, 250, 251, .08);
}

.gallery-debug-panel span {
  color: rgba(248, 250, 251, .68);
}

.gallery-debug-panel b {
  color: #ffffff;
  font-weight: 700;
}

/* Final pixel-story type normalization. */
.intro.pixel-story .intro-content .section-label {
  max-width: 320px;
  color: rgba(11, 20, 35, .66);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.15;
}

.intro.pixel-story .intro-content .lead {
  max-width: min(760px, 100%);
  font-size: var(--fs-intro-lead);
  line-height: .98;
  font-weight: 500;
}

.intro.pixel-story .intro-content .intro-copy-text {
  bottom: clamp(62px, 9vh, 104px);
  max-width: min(520px, 86%);
  color: rgba(11, 20, 35, .68);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.34;
  text-transform: none;
}

@media (max-width: 920px) {
  .intro.pixel-story .intro-content .section-label {
    font-size: 13px;
  }

  .intro.pixel-story .intro-content .lead {
    font-size: var(--fs-intro-lead);
  }

  .intro.pixel-story .intro-content .intro-copy-text {
    bottom: 64px;
    max-width: min(340px, 88vw);
    font-size: 15px;
    line-height: 1.32;
  }
}

/* Post-panorama story beats */
.story-beat-section {
  --story-beat-bg: var(--brand-navy);
  --story-beat-fg: var(--brand-white);
  --story-beat-muted: rgba(248, 250, 251, .68);
  --story-beat-line: rgba(248, 250, 251, .16);
  --story-beat-soft: rgba(248, 250, 251, .05);
  --story-beat-accent: var(--brand-red);
  position: relative;
  min-height: calc(var(--story-beat-count, 4) * 100svh);
  min-height: calc(var(--story-beat-count, 4) * 100dvh);
  overflow: visible;
  isolation: isolate;
  background: var(--story-beat-bg);
  color: var(--story-beat-fg);
}

.story-beat-section[data-story-beat-count="6"] {
  --story-beat-count: 6;
}

.story-beat-section[data-story-beat-count="4"] {
  --story-beat-count: 4;
}

.story-beat-section[data-story-beat-count="3"] {
  --story-beat-count: 3;
}

.story-beat-section-dark {
  --story-beat-bg: var(--brand-navy);
  --story-beat-fg: var(--brand-white);
  --story-beat-muted: rgba(248, 250, 251, .66);
  --story-beat-line: rgba(248, 250, 251, .16);
  --story-beat-soft: rgba(248, 250, 251, .055);
}

.story-beat-section-light {
  --story-beat-bg: var(--brand-gray);
  --story-beat-fg: var(--brand-navy);
  --story-beat-muted: rgba(11, 20, 35, .62);
  --story-beat-line: rgba(11, 20, 35, .16);
  --story-beat-soft: rgba(11, 20, 35, .045);
}

.story-beat-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--story-beat-soft) 1px, transparent 1px),
    linear-gradient(0deg, var(--story-beat-soft) 1px, transparent 1px),
    var(--story-beat-bg);
  background-size: 84px 84px, 84px 84px, auto;
}

.story-beat-stage::before,
.story-beat-stage::after {
  content: "";
  position: absolute;
  inset: clamp(78px, 11dvh, 132px) clamp(28px, 5vw, 76px);
  z-index: 0;
  pointer-events: none;
  border: 1px solid var(--story-beat-line);
  opacity: .36;
  clip-path: inset(0 18% 0 18%);
}

.story-beat-stage::after {
  inset: clamp(124px, 18dvh, 190px) clamp(54px, 9vw, 150px);
  border-color: color-mix(in srgb, var(--story-beat-accent) 42%, transparent);
  opacity: .16;
  transform: skewX(-6deg);
}

.story-beat-field {
  position: absolute;
  inset: clamp(78px, 10dvh, 124px) clamp(28px, 5vw, 78px);
  z-index: 1;
  pointer-events: none;
  opacity: .74;
}

.story-beat-field-line,
.story-beat-field-cross {
  position: absolute;
  display: block;
}

.story-beat-field-line {
  background: var(--story-beat-line);
  transform-origin: left center;
}

.story-beat-field-line.is-horizontal {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
}

.story-beat-field-line.is-vertical {
  top: 12%;
  bottom: 14%;
  left: 50%;
  width: 1px;
}

.story-beat-field-cross {
  width: 14px;
  height: 14px;
}

.story-beat-field-cross::before,
.story-beat-field-cross::after {
  content: "";
  position: absolute;
  background: var(--story-beat-line);
}

.story-beat-field-cross::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.story-beat-field-cross::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.story-beat-field-cross.is-top {
  right: 8%;
  top: 7%;
}

.story-beat-field-cross.is-bottom {
  left: 7%;
  bottom: 12%;
}

.story-beat-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: clamp(18px, 2.7dvh, 34px);
  padding: clamp(92px, 13dvh, 150px) clamp(22px, 6vw, 96px) clamp(86px, 11dvh, 128px);
  color: var(--story-beat-fg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 22px, 0);
  will-change: opacity, transform, clip-path;
}

.story-beat-panel.is-active {
  pointer-events: auto;
}

.story-beat-label {
  margin: 0;
  color: var(--story-beat-accent);
  font-family: var(--mono-font);
  font-size: clamp(11px, .9vw, 13px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.story-beat-headline,
.story-beat-title {
  max-width: min(1120px, 92vw);
  margin: 0;
  color: var(--story-beat-fg);
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.story-beat-headline {
  font-size: clamp(52px, 7.5vw, 124px);
  line-height: .9;
}

.story-beat-title {
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: .9;
}

.story-beat-copy {
  max-width: min(680px, 82vw);
  margin: 0;
  color: var(--story-beat-muted);
  font-size: clamp(18px, 1.6vw, 27px);
  line-height: 1.32;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}

.story-beat-line-mask,
.story-beat-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.story-beat-headline .story-beat-line-mask,
.story-beat-title .story-beat-line-mask {
  display: block;
  white-space: nowrap;
}

.story-beat-char,
.story-beat-word {
  display: inline-block;
  will-change: transform;
}

.story-beat-object {
  position: relative;
  width: min(680px, 70vw);
  height: clamp(92px, 18dvh, 180px);
  color: var(--story-beat-accent);
  opacity: .2;
  transform: translate3d(0, 24px, 0);
  will-change: opacity, transform;
}

.story-beat-panel-media {
  align-content: stretch;
  grid-template-rows: minmax(0, 1fr);
  padding-top: clamp(88px, 11dvh, 126px);
  padding-bottom: clamp(58px, 8dvh, 92px);
}

.story-beat-section-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  display: grid;
  justify-items: center;
  gap: clamp(12px, 1.8dvh, 22px);
  max-width: min(900px, 88vw);
  pointer-events: none;
}

.story-beat-panel-media .story-beat-section-copy {
  position: absolute;
  left: clamp(28px, 12vw, 218px);
  top: 50%;
  justify-items: start;
  width: min(430px, 32vw);
  max-width: none;
  transform: translate3d(0, calc(-50% + var(--copy-drift, 0px)), 0);
  will-change: transform, opacity;
}

.story-beat-panel-media .story-beat-section-copy .story-beat-title,
.story-beat-panel-media .story-beat-section-copy .story-beat-copy {
  text-align: left;
}

.story-beat-panel-media .story-beat-title {
  max-width: min(540px, 42vw);
  font-size: clamp(32px, 3.55vw, 58px);
  line-height: .98;
}

.story-beat-card-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: none;
  opacity: 1;
}

.story-beat-card {
  --card-enter: 1;
  --card-drift: 0px;
  position: absolute;
  left: min(70vw, calc(100vw - 350px));
  top: 70%;
  width: min(31vw, 430px);
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--story-beat-fg) 18%, transparent);
  border-radius: clamp(18px, 2vw, 32px);
  background: color-mix(in srgb, var(--story-beat-bg) 86%, var(--story-beat-fg) 14%);
  box-shadow: 0 26px 78px rgba(0, 0, 0, .2);
  overflow: hidden;
  opacity: var(--card-enter);
  transform:
    translate(-50%, -50%)
    translate3d(var(--card-x), calc(var(--card-y) + var(--card-drift) + ((1 - var(--card-enter)) * 34dvh)), 0)
    rotate(calc(var(--card-rotate) * var(--card-enter)))
    scale(calc(.88 + (var(--card-enter) * .12)));
  transform-origin: center;
  will-change: opacity, transform;
}

.story-beat-section-light .story-beat-card {
  border-color: color-mix(in srgb, var(--story-beat-fg) 14%, transparent);
  background: color-mix(in srgb, var(--story-beat-bg) 72%, white 28%);
  box-shadow: 0 24px 70px rgba(11, 20, 35, .16);
}

.story-beat-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}

.story-beat-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  background: color-mix(in srgb, var(--story-beat-bg) 82%, transparent);
  border-radius: 10px;
  color: var(--story-beat-fg);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-beat-section-light .story-beat-card figcaption {
  background: color-mix(in srgb, var(--story-beat-bg) 82%, transparent);
}

.story-beat-card.is-large {
  width: min(36vw, 520px);
  z-index: 3;
}

.story-beat-card.is-wide {
  width: min(37vw, 540px);
  z-index: 2;
}

.story-beat-card.is-wide img {
  aspect-ratio: 16 / 9;
}

.story-beat-card.is-tall {
  width: min(23vw, 330px);
  z-index: 4;
}

.story-beat-card.is-tall img {
  aspect-ratio: 3 / 4;
}

.story-beat-card.is-small {
  width: min(20vw, 290px);
  z-index: 5;
}

.story-beat-room {
  width: min(520px, 58vw);
  height: clamp(160px, 25dvh, 280px);
  perspective: 700px;
}

.story-beat-room span {
  position: absolute;
  inset: 18% 12%;
  border: 1px solid color-mix(in srgb, var(--story-beat-accent) 68%, transparent);
  transform: rotateX(58deg) rotateZ(-10deg) scale(var(--room-scale, 1));
}

.story-beat-room span:nth-child(2) {
  inset: 26% 20%;
}

.story-beat-room span:nth-child(3) {
  inset: 34% 28%;
}

.story-beat-room span:nth-child(4) {
  left: 50%;
  right: auto;
  width: 1px;
  border-width: 0 0 0 1px;
}

.story-beat-axis,
.story-beat-frame,
.story-beat-plan,
.story-beat-timeline,
.story-beat-orbit,
.story-beat-process-track {
  display: grid;
  place-items: center;
}

.story-beat-axis-line {
  width: min(520px, 62vw);
  height: 2px;
  background: var(--story-beat-accent);
  transform: scaleX(.001);
  transform-origin: left center;
}

.story-beat-axis-node,
.story-beat-timeline span,
.story-beat-process-track span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--story-beat-accent);
}

.story-beat-axis-node {
  position: absolute;
  left: calc(50% - 6px);
  top: calc(50% - 5px);
}

.story-beat-frame span {
  display: block;
  width: min(360px, 52vw);
  aspect-ratio: 16 / 9;
  border: 2px solid var(--story-beat-accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--story-beat-accent) 34%, transparent);
}

.story-beat-plan {
  grid-template-columns: repeat(3, minmax(70px, 120px));
  gap: 12px;
}

.story-beat-plan span {
  display: block;
  aspect-ratio: 1;
  border: 1px solid var(--story-beat-line);
}

.story-beat-plan span:nth-child(2) {
  border-color: var(--story-beat-accent);
  transform: translateY(-18px);
}

.story-beat-timeline {
  grid-template-columns: repeat(4, minmax(42px, 82px));
  gap: clamp(14px, 2vw, 28px);
}

.story-beat-timeline::before,
.story-beat-process-track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 62vw);
  height: 2px;
  background: var(--story-beat-accent);
  transform: translateX(-50%) scaleX(var(--track-scale, .001));
  transform-origin: left center;
}

.story-beat-orbit span {
  position: absolute;
  width: min(300px, 42vw);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--story-beat-accent) 58%, transparent);
  border-radius: 999px;
}

.story-beat-orbit span:nth-child(2) {
  width: min(180px, 28vw);
  border-color: var(--story-beat-line);
}

.story-beat-process-track {
  grid-template-columns: repeat(4, minmax(42px, 96px));
  gap: clamp(16px, 3vw, 42px);
  width: min(620px, 70vw);
}

.story-beat-process-track span {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 1px solid var(--story-beat-line);
}

.story-beat-process-track span:nth-child(1),
.story-beat-process-track.is-step-one span:nth-child(1),
.story-beat-process-track.is-step-two span:nth-child(2),
.story-beat-process-track.is-step-three span:nth-child(3) {
  border-color: var(--story-beat-accent);
  background: var(--story-beat-accent);
}

.story-beat-routes {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  flex-wrap: wrap;
}

.story-beat-routes span {
  display: grid;
  place-items: center;
  width: clamp(152px, 18vw, 230px);
  aspect-ratio: 1;
  border: 1px solid var(--story-beat-line);
  border-radius: 999px;
  color: var(--story-beat-fg);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 650;
}

.story-beat-contact-form {
  display: contents;
}

.story-beat-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 360px));
  gap: clamp(16px, 2.2vw, 30px);
  width: min(760px, 86vw);
}

.story-beat-field-row.is-final {
  grid-template-columns: minmax(240px, 320px) minmax(300px, 440px);
}

.story-beat-input {
  display: grid;
  gap: 9px;
  color: var(--story-beat-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-beat-input input,
.story-beat-input select,
.story-beat-input textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--story-beat-accent) 70%, transparent);
  border-radius: 0;
  padding: 15px 16px;
  background: color-mix(in srgb, var(--story-beat-bg) 82%, var(--story-beat-fg) 18%);
  color: var(--story-beat-fg);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.story-beat-section-light .story-beat-input input,
.story-beat-section-light .story-beat-input select,
.story-beat-section-light .story-beat-input textarea {
  background: color-mix(in srgb, var(--story-beat-bg) 86%, white 14%);
}

.story-beat-input textarea {
  min-height: 116px;
  resize: vertical;
}

.story-beat-submit {
  min-width: min(360px, 82vw);
  border: 1px solid var(--story-beat-accent);
  border-radius: 0;
  padding: 1em 1.4em .95em;
  background: var(--story-beat-accent);
  color: #101312;
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 50%, calc(100% - 42px) 100%, 0 100%);
}

.story-beat-submit::after {
  content: "->";
  float: right;
}

.story-beat-email {
  color: var(--story-beat-muted);
  font-size: clamp(14px, 1.2vw, 18px);
}

@media (max-width: 860px) {
  .story-beat-stage {
    background-size: 56px 56px, 56px 56px, auto;
  }

  .story-beat-panel {
    padding: clamp(96px, 15dvh, 138px) 22px clamp(74px, 10dvh, 104px);
    gap: 18px;
  }

  .story-beat-headline {
    font-size: clamp(30px, 7.8vw, 52px);
    line-height: .94;
  }

  .story-beat-title {
    font-size: clamp(30px, 7.7vw, 56px);
    line-height: .94;
  }

  .story-beat-copy {
    font-size: clamp(16px, 4.6vw, 21px);
  }

  .story-beat-object {
    width: 82vw;
  }

  .story-beat-panel-media {
    align-content: center;
    padding-top: 92px;
    padding-bottom: 58px;
  }

  .story-beat-panel-media .story-beat-section-copy {
    align-self: start;
    left: 22px;
    top: 21dvh;
    width: min(330px, calc(100vw - 44px));
    gap: 10px;
    transform: translate3d(0, var(--copy-drift, 0px), 0);
  }

  .story-beat-panel-media .story-beat-section-copy .story-beat-title,
  .story-beat-panel-media .story-beat-section-copy .story-beat-copy {
    max-width: 100%;
  }

  .story-beat-card {
    left: 58%;
    top: 73%;
  }

  .story-beat-card {
    width: min(52vw, 210px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  }

  .story-beat-card.is-large,
  .story-beat-card.is-wide {
    width: min(62vw, 260px);
  }

  .story-beat-card.is-tall {
    width: min(40vw, 170px);
  }

  .story-beat-card.is-small {
    width: min(38vw, 154px);
  }

  .story-beat-card figcaption {
    left: 8px;
    bottom: 8px;
    font-size: 9px;
  }

  .story-beat-field-row,
  .story-beat-field-row.is-final {
    grid-template-columns: 1fr;
  }

  .story-beat-routes span {
    width: clamp(120px, 38vw, 170px);
  }

  .nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    width: clamp(104px, 30vw, 136px);
  }

  .nav-links {
    display: flex;
    gap: clamp(4px, 1vw, 10px);
    font-size: clamp(28px, 8.6vw, 46px);
  }

  .nav-cta {
    display: inline-flex;
    padding: 0;
    font-size: inherit;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .story-beat-headline {
    font-size: clamp(46px, 6.6vw, 94px);
  }

  .story-beat-title {
    font-size: clamp(48px, 6.8vw, 102px);
  }

  .story-beat-copy {
    font-size: clamp(16px, 1.25vw, 22px);
  }

  .story-beat-object {
    height: clamp(70px, 14dvh, 118px);
  }

  .story-beat-panel-media .story-beat-title {
    font-size: clamp(36px, 5.1vw, 72px);
  }

  .story-beat-card {
    width: min(30vw, 380px);
  }

  .story-beat-card.is-large {
    width: min(34vw, 440px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-beat-section {
    min-height: auto;
  }

  .story-beat-stage {
    position: relative;
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: visible;
    padding: 74px 0;
  }

  .story-beat-panel {
    position: relative;
    inset: auto;
    min-height: 100svh;
    min-height: 100dvh;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: none !important;
    clip-path: none !important;
  }

  .story-beat-char,
  .story-beat-word,
  .story-beat-object,
  .story-beat-card,
  .story-beat-axis-line,
  .story-beat-timeline::before,
  .story-beat-process-track::before {
    transform: none !important;
    opacity: 1 !important;
  }

  .story-beat-card-stack {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 16px;
    width: min(860px, 86vw);
    height: auto;
  }

  .story-beat-card,
  .story-beat-card.is-large,
  .story-beat-card.is-wide,
  .story-beat-card.is-tall,
  .story-beat-card.is-small {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }
}

.story-beat-static-mode .story-beat-section {
  min-height: auto;
}

.story-beat-static-mode .story-beat-stage {
  position: relative;
  height: auto;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: visible;
  padding: 74px 0;
}

.story-beat-static-mode .story-beat-panel {
  position: relative;
  inset: auto;
  min-height: 100svh;
  min-height: 100dvh;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transform: none !important;
  clip-path: none !important;
}

.story-beat-static-mode .story-beat-char,
.story-beat-static-mode .story-beat-word,
.story-beat-static-mode .story-beat-object,
.story-beat-static-mode .story-beat-card,
.story-beat-static-mode .story-beat-axis-line,
.story-beat-static-mode .story-beat-timeline,
.story-beat-static-mode .story-beat-process-track {
  --card-enter: 1 !important;
  --card-drift: 0px !important;
  --track-scale: 1 !important;
  transform: none !important;
  opacity: 1 !important;
}

.story-beat-static-mode .story-beat-section-copy {
  --copy-drift: 0px !important;
}

.story-beat-static-mode .story-beat-card-stack {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 16px;
  width: min(860px, 86vw);
  height: auto;
}

.story-beat-static-mode .story-beat-card,
.story-beat-static-mode .story-beat-card.is-large,
.story-beat-static-mode .story-beat-card.is-wide,
.story-beat-static-mode .story-beat-card.is-tall,
.story-beat-static-mode .story-beat-card.is-small {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
}

.process-band {
  min-height: 156svh;
  min-height: 156dvh;
}

.process {
  grid-template-columns: minmax(420px, .88fr) minmax(360px, .72fr);
  gap: clamp(64px, 8vw, 124px);
  align-items: start;
}

.steps {
  justify-self: end;
  align-self: start;
  width: min(500px, 100%);
  margin-top: clamp(220px, 42dvh, 520px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--technical-line);
  transform: translate3d(0, calc(var(--parallax-y) * -.15), 0);
}

.step,
.step:nth-child(n) {
  min-height: 0;
  margin-left: 0;
  padding: clamp(26px, 4dvh, 44px) 0;
  border: 0;
  border-bottom: 1px solid var(--technical-line);
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  opacity: calc(.5 + var(--panel-enter) * .5);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 18px), 0);
}

.step span {
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1;
}

.contact {
  grid-template-columns: minmax(320px, .72fr) minmax(480px, .9fr);
  column-gap: clamp(64px, 9vw, 150px);
  row-gap: 0;
  align-items: start;
  padding-bottom: clamp(150px, 22dvh, 260px);
}

.contact-routes {
  margin-top: clamp(26px, 4dvh, 44px);
}

.contact-routes span {
  background: transparent;
  border-color: var(--technical-line);
}

.technical-form-panel {
  justify-self: end;
  width: min(620px, 100%);
  gap: 16px;
  padding: clamp(24px, 3vw, 42px);
  border-color: color-mix(in srgb, var(--technical-accent) 68%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--technical-fg) 6%, transparent), transparent 54%),
    color-mix(in srgb, var(--technical-bg) 92%, var(--technical-fg) 8%);
}

.technical-form-panel::before,
.technical-form-panel::after {
  display: none;
}

.project-summary {
  width: 100%;
  max-width: 420px;
}

.contact .footer {
  border-top: 1px solid var(--technical-line);
}

@media (max-height: 760px) and (min-width: 861px) {
  .services,
  .process,
  .contact {
    min-height: 162dvh;
    padding-top: 96px;
  }

  .services-copy .lead,
  .process .lead,
  .contact .lead {
    font-size: clamp(40px, 5vw, 72px);
  }

  .services-cube-stage {
    height: clamp(260px, 38dvh, 340px);
    min-height: clamp(260px, 38dvh, 340px);
  }

  .steps {
    margin-top: 50dvh;
  }

  .technical-form-panel {
    gap: 10px;
  }
}

@media (max-width: 860px) {
  .services,
  .process,
  .contact {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 96px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-copy,
  .process .section-heading,
  .contact-copy,
  .technical-form-panel {
    position: relative;
    top: auto;
  }

  .services-copy .lead,
  .process .lead,
  .contact .lead {
    font-size: clamp(34px, 10vw, 56px);
  }

  .services-cube-stage {
    height: clamp(240px, 38dvh, 360px);
    min-height: clamp(240px, 38dvh, 360px);
  }

  .service-list,
  .steps {
    width: 100%;
    margin-top: 0;
  }

  .service,
  .service:first-child,
  .step,
  .step:nth-child(n) {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 22px 0;
  }

  .technical-form-panel {
    justify-self: stretch;
    width: 100%;
  }

  .contact {
    padding-bottom: 120px;
  }
}

/* Minimal continuous story pass */
.technical-section {
  overflow: clip;
}

.technical-section::before {
  clip-path: none;
}

.technical-section::after {
  opacity: calc(.28 * var(--graph-enter));
  background:
    linear-gradient(90deg, var(--technical-grid) 1px, transparent 1px),
    linear-gradient(0deg, var(--technical-grid) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: none;
}

.technical-graph,
.technical-meta,
.depth-layer-services,
.depth-layer-process,
.depth-layer-contact {
  display: none;
}

.services,
.process,
.contact {
  min-height: 148svh;
  min-height: 148dvh;
  align-content: start;
  padding-top: clamp(104px, 14dvh, 170px);
  padding-bottom: clamp(120px, 18dvh, 220px);
}

.services-copy,
.process .section-heading,
.contact-copy,
.technical-form-panel {
  position: sticky;
  top: clamp(92px, 16dvh, 150px);
  align-self: start;
  transform: none;
}

.services-copy .lead,
.process .lead,
.contact .lead {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 96px);
  line-height: .95;
}

.services-copy .section-deck,
.process .section-deck,
.contact-copy p:not(.section-label) {
  max-width: 430px;
  margin-top: clamp(18px, 2.5dvh, 30px);
  font-size: clamp(15px, 1.05vw, 18px);
}

.section-heading .section-label {
  margin-top: 0;
}

.services {
  grid-template-columns: minmax(320px, .72fr) minmax(520px, 1fr);
  grid-template-areas:
    "copy visual"
    "copy list";
  column-gap: clamp(64px, 9vw, 150px);
  row-gap: clamp(72px, 12dvh, 150px);
}

.services-cube-stage {
  justify-self: end;
  width: min(760px, 100%);
  height: clamp(340px, 44dvh, 520px);
  min-height: clamp(340px, 44dvh, 520px);
  opacity: .92;
  transform: translate3d(0, calc(var(--parallax-y) * -.25), 0);
}

.services-cube-stage::before,
.services-cube-stage::after {
  opacity: .26;
}

.service-list {
  justify-self: end;
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--technical-line);
  border-bottom: 0;
}

.service,
.service:first-child {
  min-height: 0;
  padding: clamp(22px, 3dvh, 34px) 0;
  border: 0;
  border-bottom: 1px solid var(--technical-line);
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  opacity: calc(.5 + var(--panel-enter) * .5);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 18px), 0);
}

.service-index {
  align-self: start;
  font-size: clamp(22px, 2.2vw, 36px);
}

.service strong,
.step strong {
  font-size: clamp(18px, 1.35vw, 24px);
}

.service strong::before,
.step strong::before {
  width: 22px;
  margin-bottom: 14px;
}

.service p,
.step p {
  max-width: 34rem;
  font-size: clamp(14px, 1vw, 17px);
}

.process-band {
  min-height: 156svh;
  min-height: 156dvh;
}

.process {
  grid-template-columns: minmax(420px, .88fr) minmax(360px, .72fr);
  gap: clamp(64px, 8vw, 124px);
  align-items: start;
}

.steps {
  justify-self: end;
  align-self: start;
  width: min(500px, 100%);
  margin-top: clamp(220px, 42dvh, 520px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--technical-line);
  transform: translate3d(0, calc(var(--parallax-y) * -.15), 0);
}

.step,
.step:nth-child(n) {
  min-height: 0;
  margin-left: 0;
  padding: clamp(26px, 4dvh, 44px) 0;
  border: 0;
  border-bottom: 1px solid var(--technical-line);
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  opacity: calc(.5 + var(--panel-enter) * .5);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 18px), 0);
}

.step span {
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1;
}

.contact {
  grid-template-columns: minmax(320px, .72fr) minmax(480px, .9fr);
  column-gap: clamp(64px, 9vw, 150px);
  row-gap: 0;
  align-items: start;
  padding-bottom: clamp(150px, 22dvh, 260px);
}

.contact-routes {
  margin-top: clamp(26px, 4dvh, 44px);
}

.contact-routes span {
  background: transparent;
  border-color: var(--technical-line);
}

.technical-form-panel {
  justify-self: end;
  width: min(620px, 100%);
  gap: 16px;
  padding: clamp(24px, 3vw, 42px);
  border-color: color-mix(in srgb, var(--technical-accent) 68%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--technical-fg) 6%, transparent), transparent 54%),
    color-mix(in srgb, var(--technical-bg) 92%, var(--technical-fg) 8%);
}

.technical-form-panel::before,
.technical-form-panel::after {
  display: none;
}

.project-summary {
  width: 100%;
  max-width: 420px;
}

.contact .footer {
  border-top: 1px solid var(--technical-line);
}

@media (max-height: 760px) and (min-width: 861px) {
  .services,
  .process,
  .contact {
    min-height: 162dvh;
    padding-top: 96px;
  }

  .services-copy .lead,
  .process .lead,
  .contact .lead {
    font-size: clamp(40px, 5vw, 72px);
  }

  .services-cube-stage {
    height: clamp(260px, 38dvh, 340px);
    min-height: clamp(260px, 38dvh, 340px);
  }

  .steps {
    margin-top: 50dvh;
  }

  .technical-form-panel {
    gap: 10px;
  }
}

@media (max-width: 860px) {
  .services,
  .process,
  .contact {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 96px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-copy,
  .process .section-heading,
  .contact-copy,
  .technical-form-panel {
    position: relative;
    top: auto;
  }

  .services-copy .lead,
  .process .lead,
  .contact .lead {
    font-size: clamp(34px, 10vw, 56px);
  }

  .services-cube-stage {
    height: clamp(240px, 38dvh, 360px);
    min-height: clamp(240px, 38dvh, 360px);
  }

  .service-list,
  .steps {
    width: 100%;
    margin-top: 0;
  }

  .service,
  .service:first-child,
  .step,
  .step:nth-child(n) {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 22px 0;
  }

  .technical-form-panel {
    justify-self: stretch;
    width: 100%;
  }

  .contact {
    padding-bottom: 120px;
  }
}

@media (max-width: 540px) {
  :root {
    --fs-micro: 9px;
    --fs-meta: 10px;
    --fs-small: 11px;
    --fs-body: 13px;
    --fs-copy: 13px;
    --fs-step-title: 17px;
    --fs-panel-title: clamp(22px, 6.3vw, 29px);
    --fs-panel-span: clamp(20px, 6vw, 27px);
    --fs-panel-hero: clamp(27px, 7.5vw, 35px);
    --fs-intro-lead: clamp(27px, 7.6vw, 36px);
    --fs-lead: clamp(28px, 7.8vw, 38px);
    --fs-hero: clamp(29px, 8.4vw, 40px);
  }

  .nav {
    padding: 14px 16px;
  }

  .nav-links {
    right: 0;
  }

  .nav-cta {
    padding: 0;
  }

  .hero-inner,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 76px;
  }

  .pixel-stage {
    align-items: start;
    padding: 82px 16px 56px;
  }

  .intro-copy {
    width: 100%;
    min-height: min(560px, calc(100dvh - 138px));
  }

  .intro-content {
    inset: 50% auto auto 0;
    width: min(100%, 620px);
  }

  .lead,
  .intro .lead {
    line-height: 1.1;
  }

  h1 {
    font-size: var(--fs-hero);
  }

  .panel-row .hero-title {
    max-width: 430px;
    font-size: var(--fs-panel-hero);
    line-height: 1.06;
  }

  .hero-copy {
    max-width: min(300px, calc(100vw - 32px));
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .panel-row .hero-copy {
    max-width: min(300px, calc(100vw - 32px));
    margin-top: 18px;
  }

  .hero.is-text-revealed .hero-copy {
    letter-spacing: 0;
  }

  .button-row {
    gap: 8px;
  }

  .button {
    font-size: var(--fs-small);
    padding: .48em .68em .38em;
    letter-spacing: .01em;
  }

  .panel-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-panel {
    min-height: 300px;
  }

  .panel-row span {
    font-size: var(--fs-panel-span);
  }

  .hero-stage {
    min-height: 272px;
  }

  .section-heading .section-label {
    margin: 10px 0 10px;
  }

  .services,
  .process,
  .contact {
    padding-top: 82px;
    padding-bottom: 82px;
    gap: 24px;
  }

  .services {
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 18px;
  }

  .services-cube-stage {
    height: 300px;
    min-height: 300px;
  }

  .section-heading .lead {
    max-width: 100%;
    font-size: clamp(26px, 9.5vw, 36px);
    line-height: 1.05;
  }

  .services-copy .lead {
    font-size: clamp(25px, 8vw, 32px);
    line-height: 1.04;
  }

  .service {
    padding: 18px 0;
  }

  .services-cube-stage {
    height: 188px;
    min-height: 188px;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }

  .service {
    min-height: 0;
    padding: 14px 10px 14px 0;
    border-right: 1px solid var(--line);
  }

  .service:nth-child(2n) {
    padding-left: 10px;
    padding-right: 0;
    border-right: 0;
  }

  .service:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service strong {
    font-size: var(--fs-micro);
  }

  .service p {
    font-size: var(--fs-small);
    line-height: 1.32;
  }

  .contact {
    gap: 12px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .contact-copy {
    row-gap: 0;
  }

  .inquiry {
    gap: 10px;
    padding-top: 14px;
  }

  .field {
    gap: 6px;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 9px 11px;
  }

  .field textarea {
    min-height: 64px;
  }

  .panorama-meta {
    left: 16px;
    bottom: 96px;
    width: calc(100% - 32px);
  }

  .panorama-meta .lead {
    max-width: 360px;
    font-size: clamp(31px, 10vw, 44px);
    line-height: 1;
  }

  .panorama-meta p:last-child {
    max-width: 300px;
    font-size: var(--fs-body);
  }

  .footer {
    flex-direction: column;
  }
}

.hero.is-text-revealed .button.primary,
.hero.is-text-revealed .button.secondary {
  color: #101312 !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  mix-blend-mode: normal !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero.is-text-revealed .button.primary:focus-visible,
.hero.is-text-revealed .button.secondary:focus-visible {
  color: #101312 !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.hero.is-text-revealed .button.primary .hero-contrast-char,
.hero.is-text-revealed .button.secondary .hero-contrast-char,
.hero.is-text-revealed .button.primary .hero-contrast-char.is-lit,
.hero.is-text-revealed .button.secondary .hero-contrast-char.is-lit {
  color: #101312 !important;
  text-shadow: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover {
    color: var(--nav-cta-fg);
    transform: translateY(-1px);
  }

  .nav-cta:hover .navigation__background {
    opacity: 0;
  }

  .nav-cta:hover .nav-cta-label span,
  .nav-cta:focus-visible .nav-cta-label span {
    transform: translate3d(0, -100%, 0);
  }

  .nav-links a:not(.nav-cta):hover::after {
    opacity: .85;
    transform: scaleX(1);
  }

  .button:hover {
    transform: translateY(-1px);
  }

  .button:hover::before {
    opacity: 0;
    transform: translate3d(-102%, 0, 0);
  }

  .hero.is-text-revealed .button.primary:hover,
  .hero:not(.is-text-revealed) .button.secondary:hover,
  .inquiry .button:hover {
    color: var(--white);
  }

  .hero.is-text-revealed .button.primary:hover,
  .hero.is-text-revealed .button.secondary:hover {
    color: #101312;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .hero:not(.is-text-revealed) .button.primary:hover {
    color: var(--canvas);
    border-color: transparent;
  }

  .service:hover {
    background-size: 100% 100%;
  }

  .service:hover strong {
    transform: translate3d(6px, 0, 0);
  }

  .service:hover p {
    transform: translate3d(4px, 0, 0);
    color: color-mix(in srgb, var(--theme-muted) 72%, var(--theme-fg) 28%);
  }

  .field input:hover,
  .field textarea:hover,
  .field select:hover {
    border-color: color-mix(in srgb, var(--theme-accent) 72%, var(--theme-fg) 28%);
  }

  .hero.is-text-revealed .button.primary:hover,
  .hero.is-text-revealed .button.secondary:hover {
    color: #101312 !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-aura {
    display: none;
  }
}

/* Technical section redesign */
.technical-section {
  --section-enter: 1;
  --section-bg-scale: 1;
  --graph-enter: 1;
  --panel-enter: 1;
  --parallax-y: 0px;
  --technical-bg: var(--theme-bg);
  --technical-fg: var(--theme-fg);
  --technical-muted: var(--theme-muted);
  --technical-grid: var(--bg-grid);
  --technical-line: var(--line);
  --technical-accent: var(--theme-accent);
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: transparent;
  color: var(--technical-fg);
}

.technical-section.section {
  --technical-section-pad: clamp(18px, 5vw, 72px);
  width: 100%;
  padding-left: max(var(--technical-section-pad), calc((100vw - 1400px) / 2 + var(--technical-section-pad)));
  padding-right: max(var(--technical-section-pad), calc((100vw - 1400px) / 2 + var(--technical-section-pad)));
}

.technical-section-dark {
  --theme-bg: #11161b;
  --theme-fg: var(--brand-white);
  --theme-muted: rgba(248, 250, 251, .68);
  --theme-accent: var(--brand-red);
  --line: rgba(248, 250, 251, .2);
  --bg-grid: rgba(248, 250, 251, .055);
  --technical-bg: #11161b;
  --technical-fg: var(--brand-white);
  --technical-muted: rgba(248, 250, 251, .68);
  --technical-grid: rgba(248, 250, 251, .055);
  --technical-line: rgba(248, 250, 251, .2);
  --technical-accent: var(--brand-red);
}

.technical-section-light {
  --theme-bg: #f2f4f2;
  --theme-fg: var(--brand-navy);
  --theme-muted: rgba(11, 20, 35, .62);
  --theme-accent: var(--brand-red);
  --line: rgba(11, 20, 35, .18);
  --bg-grid: rgba(11, 20, 35, .055);
  --technical-bg: #f2f4f2;
  --technical-fg: var(--brand-navy);
  --technical-muted: rgba(11, 20, 35, .62);
  --technical-grid: rgba(11, 20, 35, .055);
  --technical-line: rgba(11, 20, 35, .18);
  --technical-accent: var(--brand-red);
}

.technical-section::before,
.technical-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  pointer-events: none;
  transform: scaleX(var(--section-bg-scale)) scaleY(calc(.985 + var(--section-enter) * .015));
  transform-origin: center;
  will-change: transform, opacity, clip-path;
}

.technical-section::before {
  z-index: 0;
  background: var(--technical-bg);
  clip-path: inset(calc((1 - var(--section-enter)) * 6%) 0);
}

.technical-section::after {
  z-index: 1;
  opacity: calc(.95 * var(--graph-enter));
  background:
    linear-gradient(90deg, var(--technical-grid) 1px, transparent 1px),
    linear-gradient(0deg, var(--technical-grid) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 39%, color-mix(in srgb, var(--technical-accent) 12%, transparent) 39.08%, transparent 39.34% 100%);
  background-size: 80px 80px, 80px 80px, auto;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.technical-section > :not(.depth-layer):not(.technical-graph):not(.technical-meta) {
  position: relative;
  z-index: 4;
}

.technical-graph,
.technical-meta {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  color: var(--technical-muted);
  font-family: var(--mono-font);
  font-size: var(--fs-micro);
  line-height: 1.25;
  letter-spacing: .01em;
  text-transform: uppercase;
  opacity: var(--graph-enter);
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: opacity, transform;
}

.technical-section > .technical-graph,
.technical-section > .technical-meta {
  position: absolute;
  z-index: 3;
}

.technical-graph {
  inset: clamp(76px, 9dvh, 128px) clamp(32px, 5vw, 84px);
}

.technical-meta {
  left: clamp(26px, 4vw, 68px);
  bottom: clamp(42px, 9dvh, 108px);
  display: grid;
  gap: 8px;
  max-width: 220px;
}

.technical-meta::before,
.technical-meta::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--technical-line);
  border-style: solid;
  opacity: .9;
}

.technical-meta::before {
  left: -12px;
  top: -18px;
  border-width: 1px 0 0 1px;
}

.technical-meta::after {
  right: 0;
  bottom: -12px;
  border-width: 0 1px 1px 0;
}

.technical-cross,
.technical-axis,
.technical-measure {
  position: absolute;
  display: block;
}

.technical-cross {
  width: 14px;
  height: 14px;
}

.technical-cross::before,
.technical-cross::after {
  content: "";
  position: absolute;
  background: var(--technical-line);
}

.technical-cross::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.technical-cross::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.technical-cross.is-left {
  left: 0;
  bottom: 20%;
}

.technical-cross.is-right {
  right: 2%;
  top: 10%;
}

.technical-axis {
  background: var(--technical-line);
  opacity: .65;
  transform-origin: left center;
}

.technical-axis.is-horizontal {
  left: 9%;
  right: 7%;
  top: 52%;
  height: 1px;
  transform: scaleX(var(--graph-enter));
}

.technical-axis.is-vertical {
  top: 8%;
  bottom: 13%;
  left: 48%;
  width: 1px;
  transform: scaleY(var(--graph-enter));
  transform-origin: center bottom;
}

.technical-measure.is-top {
  right: 7%;
  top: 11%;
}

.technical-measure.is-base {
  right: 28%;
  bottom: 8%;
}

.services,
.process,
.contact {
  min-height: 100svh;
  min-height: 100dvh;
}

.services {
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.22fr);
  grid-template-areas:
    "copy visual"
    "list list";
  align-content: center;
  column-gap: clamp(60px, 8vw, 136px);
  row-gap: clamp(34px, 5dvh, 74px);
}

.services-copy,
.contact-copy,
.process .section-heading {
  min-width: 0;
  transform: translate3d(0, calc(var(--parallax-y) * .4), 0);
}

.services-copy .lead,
.process .lead,
.contact .lead {
  max-width: 720px;
  color: var(--technical-fg);
  font-size: clamp(46px, 5.35vw, 96px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

.services-copy .section-deck,
.process .section-deck,
.contact-copy p:not(.section-label) {
  max-width: 560px;
  color: var(--technical-muted);
  font-size: clamp(15px, 1.12vw, 20px);
  line-height: 1.45;
}

.services-cube-stage {
  grid-area: visual;
  align-self: center;
  height: clamp(360px, 43dvh, 540px);
  min-height: clamp(360px, 43dvh, 540px);
  overflow: visible;
  transform: translate3d(0, calc(var(--parallax-y) * -.55), 0);
}

.services-cube-stage::before {
  inset: 4% 0 18% 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--technical-line) 70%, transparent) 1px, transparent 1px),
    linear-gradient(0deg, color-mix(in srgb, var(--technical-line) 70%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.services-cube-stage::after {
  bottom: 10%;
}

.service-list {
  grid-area: list;
  grid-column: 1 / -1;
  justify-self: end;
  align-self: start;
  display: grid;
  grid-template-columns: minmax(220px, 1.14fr) repeat(3, minmax(170px, .88fr));
  gap: clamp(18px, 2vw, 34px);
  width: min(980px, 100%);
  border: 0;
  background: transparent;
}

.service {
  min-height: clamp(240px, 34dvh, 360px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 0;
  border-left: 1px solid var(--technical-line);
  background: transparent;
  color: var(--technical-fg);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 22px), 0);
  opacity: calc(.45 + var(--panel-enter) * .55);
}

.service:first-child {
  border: 1px solid color-mix(in srgb, var(--technical-accent) 85%, transparent);
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--technical-accent) 9%, transparent), transparent 44%),
    color-mix(in srgb, var(--technical-bg) 90%, var(--technical-fg) 10%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.service-index,
.step span {
  color: var(--technical-accent);
}

.service strong,
.step strong {
  color: var(--technical-fg);
  font-family: var(--display-font);
  font-size: clamp(19px, 1.5vw, 30px);
  line-height: 1.05;
  letter-spacing: 0;
}

.service strong::before,
.step strong::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 0 18px;
  background: var(--technical-accent);
}

.service p,
.step p {
  color: var(--technical-muted);
}

.process-band {
  background: transparent;
  border: 0;
  overflow: visible;
}

.process-band::before {
  background: var(--technical-bg);
  opacity: 1;
}

.process {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(48px, 6vw, 112px);
  align-items: center;
  min-height: 100svh;
  min-height: 100dvh;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  justify-self: end;
  gap: 0;
  width: min(780px, 100%);
  background: transparent;
  border: 0;
  transform: translate3d(0, calc(var(--parallax-y) * -.45), 0);
}

.step {
  gap: clamp(32px, 7dvh, 82px);
  min-height: clamp(360px, 50dvh, 620px);
  padding: clamp(26px, 2.6vw, 44px);
  border: 1px solid color-mix(in srgb, var(--technical-line) 82%, transparent);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, .18)),
    color-mix(in srgb, var(--technical-bg) 86%, var(--technical-fg) 14%);
  box-shadow: 0 28px 56px rgba(11, 20, 35, .12);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 30px), 0);
  opacity: calc(.5 + var(--panel-enter) * .5);
}

.step:nth-child(1) {
  z-index: 3;
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 30px - 22px), 0);
}

.step:nth-child(2) {
  z-index: 2;
  margin-left: -28px;
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 30px + 24px), 0);
}

.step:nth-child(3) {
  z-index: 1;
  margin-left: -28px;
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 30px + 62px), 0);
}

.step span {
  font-size: clamp(50px, 5.2vw, 92px);
}

.contact {
  grid-template-columns: minmax(360px, .76fr) minmax(520px, 1.24fr);
  align-content: center;
  column-gap: clamp(44px, 6vw, 104px);
  row-gap: clamp(18px, 3dvh, 34px);
  padding-bottom: clamp(86px, 11vw, 140px);
}

.contact .lead {
  max-width: 620px;
  font-size: clamp(42px, 4.8vw, 88px);
}

.contact-copy p:not(.section-label) {
  max-width: 480px;
}

.contact-routes span {
  background: color-mix(in srgb, var(--technical-bg) 80%, var(--technical-fg) 20%);
}

.contact .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  margin: 0;
  padding: 22px clamp(24px, 4.8vw, 72px);
  border-top: 1px solid var(--technical-line);
  background: transparent;
}

.technical-form-panel {
  position: relative;
  gap: 14px;
  padding: clamp(24px, 2.4vw, 42px);
  border: 1px solid var(--technical-line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--technical-fg) 8%, transparent), transparent 52%),
    color-mix(in srgb, var(--technical-bg) 90%, var(--technical-fg) 10%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 28px + var(--parallax-y) * -.35), 0);
  opacity: calc(.55 + var(--panel-enter) * .45);
}

.technical-form-panel::before,
.technical-form-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-color: var(--technical-line);
  border-style: solid;
}

.technical-form-panel::before {
  inset: -32px -32px -46px -56px;
  border-width: 1px 1px 1px 0;
  opacity: .7;
}

.technical-form-panel::after {
  right: -62px;
  top: 12%;
  bottom: 22%;
  width: 1px;
  border-width: 0 1px 0 0;
  opacity: .72;
}

.field input,
.field textarea,
.field select {
  border-color: color-mix(in srgb, var(--technical-accent) 84%, transparent);
  background: color-mix(in srgb, var(--technical-bg) 78%, var(--technical-fg) 22%);
}

.technical-form-panel .field {
  gap: 6px;
}

.technical-form-panel .field textarea {
  min-height: clamp(76px, 12dvh, 112px);
}

.project-summary {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 8px 18px;
  align-items: end;
  width: min(420px, 100%);
  color: var(--technical-muted);
  font-family: var(--mono-font);
  font-size: var(--fs-micro);
  line-height: 1.1;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.project-summary > span:first-child {
  grid-row: span 5;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--technical-fg);
}

.project-summary b {
  margin-left: 16px;
  color: var(--technical-muted);
  font-weight: 400;
}

.inquiry .button {
  min-width: min(360px, 100%);
  border-radius: 0;
  padding: 1em 1.35em .92em;
  text-align: left;
  clip-path: none;
}

.inquiry .button::after {
  content: "->";
  float: right;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .services,
  .process,
  .contact {
    grid-template-columns: minmax(300px, .86fr) minmax(420px, 1.14fr);
    column-gap: clamp(36px, 5vw, 72px);
  }

  .process {
    grid-template-columns: minmax(300px, .78fr) minmax(500px, 1.22fr);
  }

  .contact {
    grid-template-columns: minmax(300px, .78fr) minmax(460px, 1.22fr);
    row-gap: 22px;
  }

  .services-copy .lead,
  .process .lead,
  .contact .lead {
    font-size: clamp(40px, 5vw, 68px);
  }

  .service-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .services-copy .lead,
  .process .lead,
  .contact .lead {
    font-size: clamp(34px, 4.2vw, 58px);
  }

  .process {
    grid-template-columns: minmax(330px, .78fr) minmax(520px, 1.22fr);
    gap: clamp(42px, 5vw, 72px);
  }

  .services {
    row-gap: 24px;
  }

  .services-cube-stage {
    height: clamp(260px, 38dvh, 340px);
    min-height: clamp(260px, 38dvh, 340px);
  }

  .service {
    min-height: clamp(180px, 26dvh, 220px);
    padding: 20px;
  }

  .steps {
    width: min(700px, 100%);
  }

  .step {
    gap: 28px;
    min-height: clamp(300px, 44dvh, 380px);
    padding: clamp(20px, 2vw, 28px);
  }

  .step:nth-child(1) {
    transform: translate3d(0, calc((1 - var(--panel-enter)) * 24px - 14px), 0);
  }

  .step:nth-child(2) {
    margin-left: -20px;
    transform: translate3d(0, calc((1 - var(--panel-enter)) * 24px + 18px), 0);
  }

  .step:nth-child(3) {
    margin-left: -20px;
    transform: translate3d(0, calc((1 - var(--panel-enter)) * 24px + 44px), 0);
  }

  .step span {
    font-size: clamp(42px, 4.6vw, 66px);
  }

  .contact {
    grid-template-columns: minmax(340px, .78fr) minmax(500px, 1.22fr);
    column-gap: clamp(40px, 5vw, 72px);
    row-gap: 16px;
    padding-bottom: 76px;
  }

  .contact-copy p:not(.section-label) {
    max-width: 420px;
    margin-top: 16px;
  }

  .contact-routes {
    margin-top: 18px;
  }

  .technical-form-panel {
    gap: 10px;
    padding: 22px 26px;
  }

  .technical-form-panel .field {
    gap: 5px;
  }

  .technical-form-panel .field input,
  .technical-form-panel .field textarea,
  .technical-form-panel .field select {
    padding: 8px 10px;
  }

  .technical-form-panel .field textarea {
    min-height: 68px;
  }

  .project-summary {
    gap: 6px 14px;
    width: min(360px, 100%);
  }

  .inquiry .button {
    min-width: min(320px, 100%);
    padding: .72em 1.15em .66em;
  }

  .contact .footer {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 860px) {
  .technical-section::before,
  .technical-section::after {
    transform: scaleX(1) scaleY(1);
    clip-path: inset(0);
  }

  .technical-graph,
  .technical-meta {
    display: none;
  }

  .services,
  .process,
  .contact {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5dvh, 54px);
    align-content: start;
  }

  .services {
    grid-template-areas:
      "copy"
      "visual"
      "list";
  }

  .process {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .services-copy .lead,
  .process .lead,
  .contact .lead {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 52px);
  }

  .services-cube-stage {
    height: clamp(260px, 38dvh, 420px);
    min-height: clamp(260px, 38dvh, 420px);
  }

  .service-list,
  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .service,
  .service:first-child,
  .step,
  .step:nth-child(n) {
    min-height: 0;
    margin-left: 0;
    padding: 22px;
    border: 1px solid var(--technical-line);
    transform: translate3d(0, calc((1 - var(--panel-enter)) * 18px), 0);
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .technical-form-panel {
    padding: 22px;
  }

  .technical-form-panel::before,
  .technical-form-panel::after {
    display: none;
  }
}

/* Final override: panorama copy follows the video section treatment. */
.panorama-meta {
  left: clamp(44px, 6.6vw, 108px);
  bottom: clamp(52px, 8vh, 88px);
  width: min(560px, calc(52vw - 48px));
  min-height: 0;
  color: rgba(247, 244, 238, .9);
  opacity: var(--note-opacity, 0);
  transform: translate3d(0, var(--note-y, 14px), 0);
  will-change: opacity, transform;
}

.panorama-meta .section-label {
  display: none;
  margin: 0;
}

.panorama-meta .section-label::before,
.panorama-meta .section-label::after {
  content: none;
  display: none;
}

.panorama-meta .lead {
  max-width: 100%;
  margin: 0;
  color: rgba(247, 244, 238, .96);
  font-size: var(--fs-intro-lead);
  line-height: .98;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .36);
}

.panorama-meta .section-label,
.panorama-meta .lead {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  transition: none;
}

.panorama-meta p:last-child {
  display: block;
  max-width: 520px;
  margin: clamp(24px, 3.6vh, 36px) 0 0;
  color: rgba(247, 244, 238, .72);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.34;
  font-weight: 400;
  text-shadow: 0 12px 38px rgba(5, 8, 12, .42);
}

@media (max-width: 760px) {
  .panorama-scene::after {
    background: linear-gradient(180deg, rgba(5, 8, 13, .08) 0%, rgba(5, 8, 13, .16) 38%, rgba(5, 8, 13, .56) 100%);
  }

  .panorama-meta {
    left: 18px;
    right: 18px;
    bottom: 32px;
    width: auto;
  }

  .panorama-meta .lead {
    font-size: clamp(44px, 15vw, 78px);
  }

  .panorama-meta p:last-child {
    max-width: 34rem;
    font-size: 15px;
  }
}

/* Minimal continuous story layer, kept last so it overrides the earlier technical mockup rules. */
.story-section.technical-section {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  overflow: clip;
}

.technical-section::before {
  clip-path: none;
}

.technical-section::after {
  opacity: calc(.24 * var(--graph-enter));
  background:
    linear-gradient(90deg, var(--technical-grid) 1px, transparent 1px),
    linear-gradient(0deg, var(--technical-grid) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: none;
}

.technical-graph,
.technical-meta,
.depth-layer-services,
.depth-layer-process,
.depth-layer-contact {
  display: none;
}

.services,
.process,
.contact {
  min-height: 148svh;
  min-height: 148dvh;
  align-content: start;
  padding-top: clamp(104px, 14dvh, 170px);
  padding-bottom: clamp(120px, 18dvh, 220px);
}

.services-copy,
.process .section-heading,
.contact-copy,
.technical-form-panel {
  position: sticky;
  top: clamp(92px, 16dvh, 150px);
  align-self: start;
  transform: none;
}

.services-copy .lead,
.process .lead,
.contact .lead {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 96px);
  line-height: .95;
}

.services-copy .section-deck,
.process .section-deck,
.contact-copy p:not(.section-label) {
  max-width: 430px;
  margin-top: clamp(18px, 2.5dvh, 30px);
  font-size: clamp(15px, 1.05vw, 18px);
}

.section-heading .section-label {
  margin-top: 0;
}

.services {
  grid-template-columns: minmax(320px, .72fr) minmax(520px, 1fr);
  grid-template-areas:
    "copy visual"
    "copy list";
  column-gap: clamp(64px, 9vw, 150px);
  row-gap: clamp(72px, 12dvh, 150px);
}

.services-cube-stage {
  justify-self: end;
  width: min(760px, 100%);
  height: clamp(340px, 44dvh, 520px);
  min-height: clamp(340px, 44dvh, 520px);
  opacity: .92;
  transform: translate3d(0, calc(var(--parallax-y) * -.25), 0);
}

.services-cube-stage::before,
.services-cube-stage::after {
  opacity: .26;
}

.service-list {
  justify-self: end;
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--technical-line);
  border-bottom: 0;
}

.service,
.service:first-child {
  min-height: 0;
  padding: clamp(22px, 3dvh, 34px) 0;
  border: 0;
  border-bottom: 1px solid var(--technical-line);
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  opacity: calc(.5 + var(--panel-enter) * .5);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 18px), 0);
}

.service-index {
  align-self: start;
  font-size: clamp(22px, 2.2vw, 36px);
}

.service strong,
.step strong {
  font-size: clamp(18px, 1.35vw, 24px);
}

.service strong::before,
.step strong::before {
  width: 22px;
  margin-bottom: 14px;
}

.service p,
.step p {
  max-width: 34rem;
  font-size: clamp(14px, 1vw, 17px);
}

.process-band {
  min-height: 156svh;
  min-height: 156dvh;
}

.process {
  grid-template-columns: minmax(420px, .88fr) minmax(360px, .72fr);
  gap: clamp(64px, 8vw, 124px);
  align-items: start;
}

.steps {
  justify-self: end;
  align-self: start;
  width: min(500px, 100%);
  margin-top: clamp(220px, 42dvh, 520px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--technical-line);
  transform: translate3d(0, calc(var(--parallax-y) * -.15), 0);
}

.step,
.step:nth-child(n) {
  min-height: 0;
  margin-left: 0;
  padding: clamp(26px, 4dvh, 46px) 0;
  border: 0;
  border-bottom: 1px solid var(--technical-line);
  background: transparent;
  box-shadow: none;
  grid-template-columns: 76px minmax(0, 1fr);
  transform: translate3d(0, calc((1 - var(--panel-enter)) * 18px), 0);
}

.step span {
  font-size: clamp(28px, 2.6vw, 44px);
}

.contact {
  grid-template-columns: minmax(320px, .72fr) minmax(500px, 1fr);
  gap: clamp(64px, 9vw, 150px);
}

.contact-routes {
  margin-top: clamp(26px, 4dvh, 46px);
}

.contact-routes span {
  background: transparent;
}

.technical-form-panel {
  justify-self: end;
  width: min(720px, 100%);
  gap: 15px;
  margin-top: clamp(80px, 16dvh, 180px);
  padding: clamp(24px, 3.5vw, 46px);
  border: 1px solid var(--technical-line);
  background: color-mix(in srgb, var(--theme-bg) 92%, transparent);
  box-shadow: none;
}

.technical-form-panel::before,
.technical-form-panel::after {
  opacity: .42;
}

.technical-form-panel .field input,
.technical-form-panel .field textarea,
.technical-form-panel .field select {
  min-height: 44px;
  border: 1px solid var(--accent);
  background: transparent;
}

.technical-form-panel .field textarea {
  min-height: 128px;
}

.project-summary {
  width: min(390px, 100%);
  border-color: color-mix(in srgb, var(--accent) 38%, transparent);
  background: transparent;
}

.inquiry .button {
  min-width: min(340px, 100%);
}

@media (max-width: 980px) {
  .services,
  .process,
  .contact {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(96px, 12dvh, 140px);
    padding-bottom: clamp(96px, 14dvh, 160px);
  }

  .services {
    grid-template-areas:
      "copy"
      "visual"
      "list";
  }

  .services-copy,
  .process .section-heading,
  .contact-copy,
  .technical-form-panel {
    position: relative;
    top: auto;
  }

  .services-copy .lead,
  .process .lead,
  .contact .lead {
    font-size: clamp(36px, 10vw, 64px);
  }

  .services-cube-stage,
  .service-list,
  .steps,
  .technical-form-panel {
    justify-self: stretch;
    width: 100%;
    margin-top: 0;
  }

  .service,
  .service:first-child,
  .step,
  .step:nth-child(n) {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
  }
}

/* Final sizing corrections for the simplified story pass. */
.services-copy .lead,
.process .lead,
.contact .lead {
  font-size: clamp(42px, 5vw, 74px);
}

.service strong,
.service p,
.step strong,
.step p {
  grid-column: 2;
}

.service p,
.step p {
  max-width: 28rem;
}

.technical-section .text-expand {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  will-change: auto;
}

.step span {
  grid-row: 1 / span 2;
}


