:root {
  --black: #050505;
  --coal: #0a0a0b;
  --charcoal: #111113;
  --paper: #efeee9;
  --ivory: #f6f4ee;
  --stone: #d4d0c6;
  --white: #f7f7f3;
  --warm: #a9784b;
  --ink: #101012;
  --muted-dark: #85847f;
  --muted-light: #696761;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(8, 8, 9, 0.16);
  --header-h: 58px;
  --dock-h: 0px;
  --edge: clamp(24px, 4.15vw, 76px);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-family: var(--sans);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

body {
  color: var(--white);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.skip {
  position: fixed;
  z-index: 900;
  top: -80px;
  left: 16px;
  padding: 11px 15px;
  background: #fff;
  color: #000;
}

.skip:focus {
  top: 12px;
}

.global-header {
  position: fixed;
  z-index: 700;
  inset: 0 0 auto;
  height: var(--header-h);
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.84);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.global-mark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.global-mark img {
  width: 19px;
  height: 19px;
  filter: none;
}

.global-mark span {
  font-size: 11px;
  font-weight: 430;
  letter-spacing: 0.22em;
}

.global-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav a,
.language-link {
  padding: 8px 0;
  color: #aaa9a4;
  font-size: 8px;
  font-weight: 450;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.global-nav a:hover,
.global-nav a:focus-visible,
.language-link:hover,
.language-link:focus-visible {
  color: #fff;
}

.language-link {
  grid-column: 3;
  justify-self: end;
}

.product-dock {
  position: fixed;
  z-index: 680;
  inset: var(--header-h) 0 auto;
  height: var(--dock-h);
  padding: 0 var(--edge);
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 9, 0.74);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
}

.product-dock a {
  min-width: 42px;
  display: grid;
  grid-template-columns: auto auto;
  align-content: center;
  align-items: center;
  gap: 8px;
  color: #9c9b96;
  font-size: 8px;
  font-weight: 430;
  letter-spacing: 0.08em;
  transition: color 180ms ease, transform 180ms ease;
}

.product-dock a:hover,
.product-dock a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.dock-glyph {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}

.glyph-ordo {
  border: 1px solid currentColor;
}

.glyph-ordo::before,
.glyph-ordo::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
}

.glyph-ordo::after {
  inset: 7px;
  background: currentColor;
}

.glyph-studio {
  border: 1px solid currentColor;
  transform: rotate(-8deg);
}

.glyph-studio::after {
  content: "";
  position: absolute;
  inset: 4px -4px -4px 4px;
  border: 1px solid currentColor;
}

.glyph-vela::before,
.glyph-vela::after {
  content: "";
  position: absolute;
  left: 1px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.glyph-vela::before {
  top: 3px;
  width: 15px;
  height: 8px;
}

.glyph-vela::after {
  top: 8px;
  left: 5px;
  width: 9px;
  height: 7px;
}

.glyph-via {
  border: 1px solid currentColor;
  border-radius: 2px;
}

.glyph-via::before {
  content: "";
  position: absolute;
  inset: 4px 2px auto;
  border-top: 1px solid currentColor;
}

.glyph-network::before,
.glyph-network::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.glyph-network::before {
  left: 0;
}

.glyph-network::after {
  right: 0;
}

.glyph-network {
  background: linear-gradient(currentColor, currentColor) center 9px / 100% 1px no-repeat;
}

.experience {
  width: 100%;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.experience::-webkit-scrollbar {
  display: none;
}

.scene {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}

.eyebrow,
.surface-note,
.hero-footer,
.scene-number,
.panel-status,
.product-panel > b,
.device-bar,
.decision-rail small,
.decision-rail button,
.ordo-metrics,
.studio-ledger small,
.horizon-card small,
.horizon-card > span,
.contact-panel > span,
.contact-footer span,
.contact-footer nav {
  font-size: 8px;
  font-weight: 440;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  color: var(--muted-dark);
}

h1,
h2,
p {
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(52px, 6.5vw, 104px);
  font-weight: 185;
  line-height: 0.89;
  letter-spacing: -0.06em;
}

h2 em {
  color: #7d7870;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.045em;
}

.text-link {
  width: min(320px, 100%);
  min-height: 48px;
  margin-top: 28px;
  padding: 0 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 430;
}

.text-link span {
  font-size: 16px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.dark-link {
  color: var(--ink);
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 28px) var(--edge) 24px;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 72% 43%, rgba(121, 113, 101, 0.14), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.035), transparent 24%),
    #050505;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(68%, 1060px);
  height: calc(100% - 54px);
  display: grid;
  align-content: center;
  justify-items: start;
}

.hero-copy h1 {
  z-index: 3;
  width: 100%;
  margin: clamp(32px, 7vh, 74px) 0 0;
  color: #f5f4ef;
  font-size: clamp(78px, 12.6vw, 204px);
  font-weight: 120;
  line-height: 0.8;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.hero-statement {
  z-index: 5;
  margin-top: clamp(24px, 3.2vh, 40px);
  display: grid;
  gap: 5px;
}

.hero-statement p,
.hero-statement strong {
  margin: 0;
  font-size: clamp(18px, 1.65vw, 27px);
  font-weight: 270;
  line-height: 1.15;
}

.hero-statement strong {
  color: #9f9d96;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
}

.hero-surface {
  position: absolute;
  z-index: 1;
  inset: var(--header-h) 0 0 47%;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 50%, rgba(255, 255, 255, 0.055), transparent 33%),
    radial-gradient(circle at 58% 50%, rgba(168, 131, 87, 0.055), transparent 52%);
}

.hero-mark {
  position: absolute;
  top: 50%;
  left: 57%;
  width: min(34vw, 500px);
  overflow: visible;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 44px 80px rgba(0, 0, 0, 0.68));
}

.hero-mark-outer,
.hero-mark-inner {
  fill: none;
  stroke: url("#hero-metal");
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-mark-outer {
  stroke-width: 2.15;
}

.hero-mark-inner {
  stroke-width: 1.05;
  opacity: 0.58;
}

.hero-mark-glint {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 0.48;
  stroke-linecap: round;
  stroke-dasharray: 14 170;
  stroke-dashoffset: 188;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.42));
}

body[data-visual-motion="on"] .hero-mark-glint {
  animation: hero-metal-glint 15s cubic-bezier(0.35, 0, 0.22, 1) infinite;
}

@keyframes hero-metal-glint {
  0%, 34% {
    stroke-dashoffset: 188;
    opacity: 0;
  }
  40% {
    opacity: 0.46;
  }
  67% {
    stroke-dashoffset: -178;
    opacity: 0.54;
  }
  73%, 100% {
    stroke-dashoffset: -178;
    opacity: 0;
  }
}

.hero-mark-point {
  fill: url("#hero-pearl");
  filter: drop-shadow(0 0 8px rgba(217, 199, 166, 0.58));
}

.hero-footer {
  position: absolute;
  z-index: 5;
  inset: auto var(--edge) 24px;
  padding-top: 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  color: #696964;
}

.hero-footer span:last-child {
  text-align: right;
}

/* Manifesto */
.manifesto {
  padding: calc(var(--header-h) + var(--dock-h) + 30px) var(--edge) 34px;
  background: var(--paper);
  color: var(--ink);
}

.scene-number {
  position: absolute;
  top: calc(var(--header-h) + var(--dock-h) + 30px);
  right: var(--edge);
  color: #77756f;
}

.manifesto-copy {
  position: absolute;
  top: 22%;
  left: var(--edge);
}

.manifesto-copy h2 {
  margin-top: 28px;
  font-size: clamp(62px, 8.1vw, 132px);
}

.manifesto-aside {
  position: absolute;
  top: 28%;
  right: var(--edge);
  width: min(37vw, 530px);
}

.manifesto-aside > p {
  margin: 0;
  color: #4f4e49;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.65;
}

.manifesto-rule {
  margin-top: 38px;
  border-top: 1px solid var(--line-light);
}

.manifesto-rule span {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.signature-system {
  position: absolute;
  right: var(--edge);
  bottom: 32px;
  width: min(46vw, 660px);
  height: 112px;
}

.signature-lines {
  position: absolute;
  inset: 0 92px 0 0;
  display: grid;
  align-content: center;
  gap: 13px;
}

.signature-lines i {
  height: 1px;
  display: block;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), #202020);
}

.signature-lines i:nth-child(2) { width: 84%; }
.signature-lines i:nth-child(3) { width: 62%; }
.signature-lines i:nth-child(4) { width: 76%; }
.signature-lines i:nth-child(5) { width: 45%; }

.signature-point {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #1a1a1b;
  border-radius: 50%;
  transform: translateY(-50%);
}

.signature-point::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: inherit;
}

.signature-point span {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.signature-system small {
  position: absolute;
  right: 7px;
  bottom: -4px;
  color: #77756f;
  font-size: 7px;
  letter-spacing: 0.12em;
}

/* Products */
.products {
  padding: calc(var(--header-h) + var(--dock-h) + 24px) var(--edge) 28px;
  background:
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.055), transparent 31%),
    #070708;
}

.products-head {
  height: 25%;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  gap: 7vw;
  align-items: end;
}

.products-head h2 {
  margin-top: 17px;
  font-size: clamp(43px, 5.2vw, 82px);
}

.products-head > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: #85847f;
  font-size: 13px;
  line-height: 1.6;
}

.product-gallery {
  height: calc(75% - 18px);
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(205px, 0.33fr) minmax(0, 1fr);
  border: 1px solid #2b2b2e;
  background: #0c0c0e;
}

.product-selector {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  border-right: 1px solid #2b2b2e;
}

.product-selector button {
  min-height: 0;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 29px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #2b2b2e;
  background: transparent;
  color: #6f6e69;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.product-selector button:last-child {
  border-bottom: 0;
}

.product-selector button:hover,
.product-selector button:focus-visible,
.product-selector button.is-active {
  background: #f1efe9;
  color: #111113;
  outline: none;
}

.product-selector span {
  grid-row: 1 / 3;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.product-selector strong {
  align-self: end;
  font-size: clamp(18px, 1.75vw, 29px);
  font-weight: 260;
  letter-spacing: -0.035em;
}

.product-selector small {
  align-self: start;
  margin-top: 2px;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.product-panel {
  position: absolute;
  inset: 0;
  padding: clamp(22px, 2.6vw, 38px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-panel.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.panel-ordo {
  background: linear-gradient(180deg, #020202 0%, #060606 100%);
}

.panel-studio {
  background: linear-gradient(180deg, #070707 0%, #080808 100%);
  color: #f5f4ef;
}

.panel-vela {
  background: linear-gradient(180deg, #040404 0%, #060606 100%);
}

.panel-via {
  background: linear-gradient(180deg, #010101 0%, #020202 100%);
}

.panel-network {
  background: linear-gradient(180deg, #060606 0%, #070707 100%);
}

.panel-status {
  color: #77756f;
}

.panel-copy {
  position: relative;
  z-index: 4;
  align-self: center;
}

.panel-copy strong {
  display: block;
  font-size: clamp(56px, 7.3vw, 116px);
  font-weight: 170;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.panel-copy p {
  width: min(44%, 430px);
  margin: 18px 0 0;
  color: #97958f;
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 1.45;
}

.panel-studio .panel-copy p,
.panel-studio .panel-status {
  color: #8f8d87;
}

.product-panel > b {
  z-index: 4;
  align-self: end;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  color: #b1afa8;
  font-weight: 440;
}

.product-panel > b i {
  font-size: 15px;
  font-style: normal;
}

.panel-art {
  position: absolute;
  z-index: 1;
  top: 12%;
  right: 4%;
  bottom: 8%;
  width: 55%;
}

.product-render {
  top: 6%;
  right: 0;
  bottom: 8%;
  width: 60%;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.product-render::after {
  content: none;
}

.product-render img,
.product-render video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-mask-image: radial-gradient(ellipse 62% 62% at center, #000 46%, rgba(0, 0, 0, 0.96) 66%, transparent 94%);
  mask-image: radial-gradient(ellipse 62% 62% at center, #000 46%, rgba(0, 0, 0, 0.96) 66%, transparent 94%);
  mix-blend-mode: screen;
}

.product-render video {
  background: transparent;
}

.product-render video:not([poster*="product-network"]) {
  transform: scale(0.88);
  -webkit-mask-image: radial-gradient(
    ellipse 50% 50% at center,
    #000 58%,
    rgba(0, 0, 0, 0.9) 74%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 50% 50% at center,
    #000 58%,
    rgba(0, 0, 0, 0.9) 74%,
    transparent 100%
  );
}

.product-stage-controls {
  position: absolute;
  z-index: 7;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 6px;
}

.product-stage-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(5, 5, 5, 0.56);
  color: #d4d1c9;
  font: 300 18px/1 var(--sans);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.product-stage-controls button:hover,
.product-stage-controls button:focus-visible {
  border-color: #f1efe9;
  background: #f1efe9;
  color: #111113;
  outline: none;
}

.art-ordo {
  border: 1px solid #333338;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #0a0a0c;
  background-size: 34px 34px;
  transform: perspective(900px) rotateY(-12deg) rotateX(4deg);
  box-shadow: 26px 38px 80px rgba(0, 0, 0, 0.42);
}

.ordo-window {
  position: absolute;
  inset: 12%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

.ordo-window i {
  border: 1px solid #3c3c42;
  background: rgba(255, 255, 255, 0.035);
}

.ordo-window i:nth-child(2) {
  background: #efede7;
}

.ordo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d58a48;
  box-shadow: 0 0 28px #d58a48;
}

.art-studio {
  perspective: 900px;
}

.studio-sheet {
  position: absolute;
  width: 58%;
  height: 66%;
  border: 1px solid rgba(20, 20, 20, 0.3);
  background:
    linear-gradient(#161616 0 0) 12% 14% / 28% 2px no-repeat,
    linear-gradient(#161616 0 0) 12% 23% / 58% 1px no-repeat,
    linear-gradient(#161616 0 0) 12% 28% / 44% 1px no-repeat,
    rgba(246, 244, 238, 0.92);
  box-shadow: 0 28px 50px rgba(40, 34, 26, 0.17);
}

.studio-sheet-a {
  top: 18%;
  left: 0;
  transform: rotate(-8deg);
}

.studio-sheet-b {
  top: 8%;
  left: 20%;
  background-color: #1a1a1b;
  transform: rotate(2deg);
}

.studio-sheet-c {
  top: 21%;
  left: 39%;
  transform: rotate(10deg);
}

.art-vela {
  display: grid;
  place-items: center;
}

.art-vela i {
  position: absolute;
  width: calc(26% + var(--n, 0) * 14%);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 206, 231, 0.34);
  border-radius: 50%;
}

.art-vela i:nth-child(1) { --n: 0; }
.art-vela i:nth-child(2) { --n: 1; }
.art-vela i:nth-child(3) { --n: 2; }
.art-vela i:nth-child(4) { --n: 3; }

.art-vela::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e9edf4;
  box-shadow: 0 0 38px rgba(205, 226, 255, 0.7);
}

.art-via {
  display: grid;
  place-items: center;
}

.via-chrome {
  position: relative;
  width: 92%;
  height: 72%;
  border: 1px solid #3b3d3d;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #0c0d0d;
  background-size: 42px 42px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
}

.via-chrome::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 38px;
  border-bottom: 1px solid #3b3d3d;
  background: #151717;
}

.via-chrome span {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #767875;
  box-shadow: 12px 0 0 -1px #151717, 12px 0 0 0 #767875, 24px 0 0 -1px #151717, 24px 0 0 0 #767875;
}

.via-chrome i {
  position: absolute;
  left: 8%;
  height: 1px;
  background: #858581;
}

.via-chrome i:nth-of-type(1) { top: 38%; width: 48%; }
.via-chrome i:nth-of-type(2) { top: 48%; width: 67%; opacity: 0.55; }
.via-chrome i:nth-of-type(3) { top: 58%; width: 34%; opacity: 0.28; }

.art-network {
  display: grid;
  place-items: center;
}

.art-network span {
  position: absolute;
  width: calc(28% + var(--n, 0) * 18%);
  aspect-ratio: 1;
  border: 1px solid rgba(206, 180, 147, 0.29);
  transform: rotate(45deg);
}

.art-network span:nth-child(1) { --n: 0; }
.art-network span:nth-child(2) { --n: 1; }
.art-network span:nth-child(3) { --n: 2; }

.art-network i {
  position: absolute;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8b083, transparent);
  box-shadow: 0 0 22px #9b6d3f;
  transform: rotate(-22deg);
}

/* Ordo */
.ordo {
  padding: calc(var(--header-h) + var(--dock-h) + 30px) var(--edge) 28px;
  background:
    radial-gradient(circle at 69% 48%, rgba(112, 108, 99, 0.12), transparent 32%),
    #09090a;
}

.ordo-intro {
  position: absolute;
  z-index: 3;
  top: 22%;
  left: var(--edge);
  width: 38%;
}

.ordo-intro h2 {
  margin-top: 23px;
  font-size: clamp(48px, 5.65vw, 92px);
}

.ordo-intro > p {
  max-width: 550px;
  margin: 25px 0 0;
  color: #92918b;
  font-size: 13px;
  line-height: 1.65;
}

.ordo-device {
  position: absolute;
  top: 20%;
  right: var(--edge);
  width: 52%;
  height: 59%;
  overflow: hidden;
  border: 1px solid #36363a;
  border-radius: 13px;
  background: #0f0f11;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.55);
  transform: perspective(1200px) rotateY(-3deg);
}

.device-bar {
  height: 46px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #323237;
  color: #777772;
}

.device-bar b {
  color: #9a9993;
  font-weight: 420;
}

.device-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ca47f;
  box-shadow: 0 0 16px rgba(124, 164, 127, 0.55);
}

.ordo-flow {
  height: calc(100% - 46px);
  padding: clamp(16px, 2vw, 28px);
  display: grid;
  grid-template-columns: 0.85fr 1.35fr 0.95fr;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #0c0c0e;
  background-size: 32px 32px;
}

.flow-goal,
.flow-result,
.flow-human,
.flow-specialists span {
  border: 1px solid #343438;
  background: rgba(255, 255, 255, 0.025);
}

.flow-goal,
.flow-result {
  position: relative;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.flow-goal::after,
.flow-specialists::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 3;
  width: 24px;
  color: #c9a475;
  font-size: 13px;
  text-align: center;
  transform: translateY(-50%);
}

.ordo-flow small {
  color: #706f6a;
  font-size: 7px;
  letter-spacing: 0.14em;
}

.ordo-flow strong {
  font-size: clamp(14px, 1.4vw, 21px);
  font-weight: 300;
  line-height: 1.2;
}

.flow-specialists {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.flow-specialists span {
  padding: 13px;
  display: grid;
  align-content: space-between;
  color: #d6d3cb;
  font-size: clamp(10px, 0.9vw, 13px);
}

.flow-specialists b {
  color: #74736e;
  font-size: 7px;
  font-weight: 440;
  letter-spacing: 0.12em;
}

.flow-result {
  border-color: #57534d;
  background: rgba(208, 181, 145, 0.055);
}

.flow-human {
  grid-column: 1 / 4;
  min-height: 66px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 0.45fr 1fr auto;
  gap: 18px;
  align-items: center;
  border-color: #6c675f;
}

.flow-human i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9c7a6;
  box-shadow: 0 0 18px rgba(217, 199, 166, 0.5);
}

.device-grid {
  height: calc(100% - 46px);
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: 1fr 58px;
}

.device-grid > aside {
  grid-row: 1 / 3;
  padding: 14px 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 17px;
  border-right: 1px solid #303034;
}

.device-logo {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #7d7c77;
  color: #dddcd7;
  font-size: 9px;
}

.device-grid > aside i {
  width: 7px;
  height: 7px;
  border: 1px solid #55555a;
  border-radius: 50%;
}

.device-grid > aside i.is-on {
  background: #e8e6e0;
}

.office-floor {
  position: relative;
  padding: 18px;
  display: grid;
  grid-template-columns: 0.8fr 1.25fr;
  grid-template-rows: 1fr 0.9fr;
  gap: 9px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.room {
  position: relative;
  padding: 12px;
  border: 1px solid #35353a;
  background: rgba(255, 255, 255, 0.025);
}

.room span {
  color: #777772;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.room i {
  position: absolute;
  bottom: 17%;
  width: 15px;
  height: 15px;
  border-radius: 50% 50% 42% 42%;
  background: #cac5bb;
  box-shadow: 0 17px 0 -3px #6c6964;
}

.room i:nth-of-type(1) { left: 21%; }
.room i:nth-of-type(2) { left: 54%; background: #8f9da8; }
.room i:nth-of-type(3) { left: 75%; background: #b08876; }

.room-strategy {
  grid-row: 1 / 3;
}

.room-review {
  background: rgba(231, 227, 216, 0.1);
}

.handoff-line {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 40%;
  right: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c49869, transparent);
  box-shadow: 0 0 15px #8a613c;
}

.decision-rail {
  padding: 0 14px;
  display: grid;
  grid-template-columns: 0.55fr 1fr auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid #303034;
}

.decision-rail small {
  color: #696964;
}

.decision-rail strong {
  font-size: 11px;
  font-weight: 360;
}

.decision-rail button {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #55555a;
  background: transparent;
  color: #8c8b86;
}

.ordo-metrics {
  position: absolute;
  right: var(--edge);
  bottom: 26px;
  width: 52%;
  padding-top: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  color: #777772;
}

.ordo-metrics span {
  display: flex;
  gap: 12px;
}

.ordo-metrics b {
  color: #dbd9d3;
  font-weight: 440;
}

/* Studio */
.studio {
  padding: calc(var(--header-h) + var(--dock-h) + 30px) var(--edge) 30px;
  background: var(--ivory);
  color: var(--ink);
}

.studio::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 48%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}

.studio-title {
  position: absolute;
  top: 20%;
  left: var(--edge);
  width: 39%;
}

.studio-title h2 {
  margin-top: 24px;
  font-size: clamp(55px, 6.8vw, 110px);
}

.studio-title > p {
  max-width: 520px;
  margin: 26px 0 0;
  color: #5e5c56;
  font-size: 13px;
  line-height: 1.62;
}

.studio-ledger {
  position: absolute;
  top: 24%;
  right: var(--edge);
  width: 44%;
  border-top: 1px solid var(--line-light);
}

.studio-ledger a {
  min-height: 88px;
  display: grid;
  grid-template-columns: 37px 1fr auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  transition: padding 180ms ease, background 180ms ease;
}

.studio-ledger a:hover,
.studio-ledger a:focus-visible {
  padding: 0 13px;
  background: #111113;
  color: #f5f4ef;
}

.studio-ledger > a > span {
  color: #7b7973;
  font-size: 8px;
}

.studio-ledger strong {
  display: block;
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 285;
  letter-spacing: -0.035em;
}

.studio-ledger small {
  display: block;
  margin-top: 5px;
  color: #77756f;
  letter-spacing: 0.08em;
}

.studio-ledger b {
  font-size: 18px;
  font-weight: 280;
}

.studio-process {
  position: absolute;
  right: var(--edge);
  bottom: 24px;
  width: 44%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.studio-process span {
  min-height: 58px;
  padding: 10px 8px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line-light);
  color: #383734;
  font-size: 10px;
}

.studio-process span:last-child {
  border-right: 0;
}

.studio-process b {
  color: #89867f;
  font-size: 7px;
  font-weight: 440;
  letter-spacing: 0.14em;
}

/* Horizon */
.horizon {
  padding: calc(var(--header-h) + var(--dock-h) + 34px) var(--edge) 28px;
  background:
    radial-gradient(circle at 20% 45%, rgba(119, 102, 82, 0.16), transparent 28%),
    #070708;
}

.horizon-head {
  position: absolute;
  top: 22%;
  left: var(--edge);
  width: 34%;
}

.horizon-head h2 {
  margin-top: 23px;
  font-size: clamp(46px, 5.35vw, 88px);
}

.horizon-head > p {
  margin: 26px 0 0;
  color: #8e8d87;
  font-size: 13px;
  line-height: 1.65;
}

.horizon-cards {
  position: absolute;
  top: 20%;
  right: var(--edge);
  bottom: 8%;
  width: 57%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.horizon-card {
  position: relative;
  min-width: 0;
  padding: 20px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid #343438;
  background: #0e0e10;
  transition: transform 220ms ease, border-color 220ms ease;
}

.horizon-card:hover,
.horizon-card:focus-visible {
  z-index: 3;
  border-color: #85847f;
  transform: translateY(-7px);
}

.horizon-card small,
.horizon-card > span {
  color: #777772;
}

.horizon-card strong {
  margin-top: 28px;
  font-size: clamp(36px, 4.1vw, 64px);
  font-weight: 190;
  letter-spacing: -0.05em;
}

.horizon-card > p {
  margin: 7px 0 0;
  color: #8c8b86;
  font-size: 11px;
}

.horizon-media {
  min-height: 160px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.horizon-media video {
  width: 104%;
  height: 104%;
  object-fit: contain;
  background: transparent;
  -webkit-mask-image: radial-gradient(ellipse 58% 58% at center, #000 46%, rgba(0, 0, 0, 0.94) 68%, transparent 94%);
  mask-image: radial-gradient(ellipse 58% 58% at center, #000 46%, rgba(0, 0, 0, 0.94) 68%, transparent 94%);
  mix-blend-mode: screen;
}

.horizon-media video:not([poster*="product-network"]) {
  transform: scale(0.92);
  -webkit-mask-image: radial-gradient(
    ellipse 50% 50% at center,
    #000 58%,
    rgba(0, 0, 0, 0.9) 74%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 50% 50% at center,
    #000 58%,
    rgba(0, 0, 0, 0.9) 74%,
    transparent 100%
  );
}

.horizon-card > span {
  padding-top: 12px;
  border-top: 1px solid #343438;
}

.mini-vela,
.mini-via,
.mini-network {
  position: relative;
  min-height: 160px;
}

.mini-vela {
  display: grid;
  place-items: center;
}

.mini-vela i {
  position: absolute;
  width: calc(38px + var(--n, 0) * 35px);
  height: calc(38px + var(--n, 0) * 35px);
  border: 1px solid rgba(154, 183, 211, 0.35);
  border-radius: 50%;
}

.mini-vela i:nth-child(1) { --n: 0; }
.mini-vela i:nth-child(2) { --n: 1; }
.mini-vela i:nth-child(3) { --n: 2; }

.mini-via {
  margin: 30px 0;
  border: 1px solid #373a39;
}

.mini-via::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 25px;
  border-bottom: 1px solid #373a39;
}

.mini-via i {
  position: absolute;
  left: 15%;
  width: 66%;
  height: 1px;
  background: #6b6f6b;
}

.mini-via i:nth-child(1) { top: 47%; }
.mini-via i:nth-child(2) { top: 58%; width: 48%; }
.mini-via i:nth-child(3) { top: 69%; width: 29%; }

.mini-network {
  display: grid;
  place-items: center;
}

.mini-network i {
  position: absolute;
  width: calc(39px + var(--n, 0) * 38px);
  height: calc(39px + var(--n, 0) * 38px);
  border: 1px solid rgba(183, 148, 109, 0.34);
  transform: rotate(45deg);
}

.mini-network i:nth-child(1) { --n: 0; }
.mini-network i:nth-child(2) { --n: 1; }
.mini-network i:nth-child(3) { --n: 2; }

.mini-network b {
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b88756, transparent);
  transform: rotate(-20deg);
}

/* Contact */
.contact {
  padding: calc(var(--header-h) + var(--dock-h) + 36px) var(--edge) 24px;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, 0.11) 50%, transparent 50.05%),
    #050505;
}

.contact-copy {
  position: absolute;
  top: 23%;
  left: var(--edge);
  width: 47%;
}

.contact-copy h2 {
  margin-top: 24px;
  font-size: clamp(59px, 7.5vw, 120px);
}

.contact-panel {
  position: absolute;
  top: 29%;
  right: var(--edge);
  width: 41%;
}

.contact-panel > span {
  color: #777772;
}

.contact-mail {
  margin-top: 32px;
  padding: 0 0 13px;
  display: block;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(20px, 2.5vw, 38px);
  font-weight: 250;
  letter-spacing: -0.035em;
}

.contact-panel nav {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: #b3b1aa;
  font-size: 11px;
}

.contact-panel nav a {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-dark);
}

.contact-panel nav a:last-child {
  border-right: 0;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: #fff;
}

.contact-footer {
  position: absolute;
  inset: auto var(--edge) 20px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 30px;
  border-top: 1px solid var(--line-dark);
}

.contact-footer > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.contact-footer strong {
  font-size: 12px;
  font-weight: 430;
  letter-spacing: 0.18em;
}

.contact-footer span,
.contact-footer nav,
.contact-footer p {
  color: #666660;
}

.contact-footer nav {
  display: flex;
  gap: 18px;
}

.contact-footer p {
  grid-column: 1 / 3;
  max-width: 780px;
  margin: 0;
  font-size: 7px;
  line-height: 1.5;
  letter-spacing: 0.035em;
}

.scene-counter {
  position: fixed;
  z-index: 690;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 7px;
  letter-spacing: 0.1em;
  mix-blend-mode: difference;
}

.scene-counter i {
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Motion */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(17px);
  transition:
    opacity 620ms ease,
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .scene.is-current .reveal {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .scene.is-current .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.motion-ready .scene.is-current .reveal:nth-child(3) {
  transition-delay: 130ms;
}

@media (max-width: 1100px) {
  .manifesto-copy h2 {
    font-size: clamp(55px, 7.4vw, 92px);
  }

  .product-gallery {
    grid-template-columns: 185px 1fr;
  }

  .panel-art {
    width: 49%;
  }

  .ordo-intro {
    width: 41%;
  }

  .ordo-device,
  .ordo-metrics {
    width: 50%;
  }

  .horizon-head {
    width: 32%;
  }

  .horizon-cards {
    width: 59%;
  }

  .horizon-card {
    padding: 16px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 54px;
    --dock-h: 0px;
    --edge: 22px;
  }

  html,
  body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .global-header {
    padding: 0 16px;
    grid-template-columns: 1fr auto 1fr;
  }

  .global-mark {
    grid-column: 2;
    justify-self: center;
  }

  .global-mark span {
    font-size: 10px;
  }

  .global-nav {
    display: none;
  }

  .language-link {
    grid-column: 3;
  }

  .product-dock {
    padding: 0 14px;
    justify-content: flex-start;
    gap: 25px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

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

  .product-dock a {
    flex: 0 0 auto;
  }

  .experience {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .scene {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
    scroll-snap-align: none;
  }

  .scene-counter {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 26px);
  }

  .hero-copy {
    position: relative;
    inset: auto;
    width: 100%;
    height: calc(100svh - var(--header-h) - 76px);
    align-content: center;
  }

  .hero-surface {
    inset: var(--header-h) 0 0 24%;
  }

  .surface-note {
    display: none;
  }

  .hero-copy h1 {
    margin-top: 40px;
    font-size: clamp(60px, 18vw, 112px);
    letter-spacing: 0.01em;
  }

  .hero-statement {
    margin-top: 28px;
  }

  .hero-mark {
    top: 48%;
    left: 64%;
    width: min(86vw, 470px);
    opacity: 0.26;
  }

  .hero-axis {
    opacity: 0.08;
  }

  .hero-footer {
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
  }

  .hero-footer span:nth-child(even) {
    text-align: right;
  }

  .manifesto {
    min-height: 850px;
    padding: calc(var(--header-h) + var(--dock-h) + 38px) var(--edge) 36px;
  }

  .manifesto-copy,
  .manifesto-aside,
  .signature-system {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .manifesto-copy {
    margin-top: 28px;
  }

  .manifesto-copy h2 {
    font-size: clamp(54px, 15.5vw, 84px);
  }

  .manifesto-aside {
    margin-top: 48px;
  }

  .signature-system {
    margin-top: 48px;
  }

  .scene-number {
    top: calc(var(--header-h) + var(--dock-h) + 38px);
  }

  .products {
    min-height: 980px;
    padding: calc(var(--header-h) + var(--dock-h) + 34px) var(--edge) 40px;
  }

  .products-head {
    height: auto;
    display: block;
  }

  .products-head h2 {
    font-size: clamp(48px, 13.8vw, 76px);
  }

  .products-head > p {
    margin-top: 24px;
  }

  .product-gallery {
    height: 620px;
    margin-top: 38px;
    grid-template-columns: 1fr;
    grid-template-rows: 76px 1fr;
  }

  .product-selector {
    grid-row: 1;
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid #2b2b2e;
    scrollbar-width: none;
  }

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

  .product-selector button {
    min-width: 126px;
    padding: 10px 12px;
    grid-template-columns: 22px 1fr;
    border-right: 1px solid #2b2b2e;
    border-bottom: 0;
  }

  .product-selector strong {
    font-size: 18px;
  }

  .product-selector small {
    font-size: 6px;
  }

  .product-panel {
    padding: 21px;
  }

  .product-stage-controls {
    bottom: 17px;
    right: 17px;
  }

  .product-stage-controls button {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .panel-copy {
    align-self: start;
    margin-top: 36px;
  }

  .panel-copy strong {
    font-size: clamp(52px, 15vw, 78px);
  }

  .panel-copy p {
    width: 78%;
  }

  .panel-art {
    top: 34%;
    right: -3%;
    bottom: 13%;
    width: 90%;
    opacity: 0.94;
  }

  .product-render img,
  .product-render video {
    width: 94%;
    height: 94%;
  }

  .panel-copy p {
    width: 68%;
  }

  .ordo {
    min-height: 990px;
    padding: calc(var(--header-h) + var(--dock-h) + 36px) var(--edge) 40px;
  }

  .ordo-intro,
  .ordo-device,
  .ordo-metrics {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .ordo-intro h2 {
    font-size: clamp(48px, 13.5vw, 76px);
  }

  .ordo-device {
    height: 500px;
    margin-top: 42px;
    transform: none;
  }

  .ordo-flow {
    padding: 14px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(128px, 1fr) auto auto;
    gap: 8px;
  }

  .flow-goal,
  .flow-result {
    min-height: 62px;
    padding: 12px;
    grid-template-columns: 0.45fr 1fr;
    align-items: center;
    gap: 12px;
  }

  .flow-goal::after,
  .flow-specialists::after {
    content: none;
  }

  .flow-specialists {
    gap: 6px;
  }

  .flow-specialists span {
    padding: 10px;
  }

  .flow-human {
    grid-column: 1;
    min-height: 58px;
    grid-template-columns: 0.55fr 1fr auto;
    gap: 10px;
    padding: 0 12px;
  }

  .room i {
    width: 12px;
    height: 12px;
  }

  .decision-rail {
    grid-template-columns: 1fr auto;
  }

  .decision-rail small {
    display: none;
  }

  .ordo-metrics {
    margin-top: 30px;
    gap: 15px;
  }

  .ordo-metrics span {
    display: grid;
    gap: 5px;
  }

  .studio {
    min-height: 1000px;
    padding: calc(var(--header-h) + var(--dock-h) + 36px) var(--edge) 40px;
  }

  .studio::after {
    inset: 49% 0 0;
  }

  .studio-title,
  .studio-ledger,
  .studio-process {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .studio-title h2 {
    font-size: clamp(54px, 15.5vw, 83px);
  }

  .studio-ledger {
    margin-top: 56px;
  }

  .studio-ledger a {
    min-height: 96px;
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
  }

  .studio-ledger strong {
    font-size: 20px;
  }

  .studio-ledger small {
    font-size: 6px;
    line-height: 1.5;
  }

  .studio-process {
    margin-top: 30px;
  }

  .horizon {
    min-height: 1100px;
    padding: calc(var(--header-h) + var(--dock-h) + 36px) var(--edge) 44px;
  }

  .horizon-head,
  .horizon-cards {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .horizon-head h2 {
    font-size: clamp(49px, 13.7vw, 76px);
  }

  .horizon-cards {
    margin-top: 52px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .horizon-card {
    min-height: 240px;
    grid-template-columns: 1fr 0.8fr;
    grid-template-rows: auto auto 1fr auto;
  }

  .horizon-card small,
  .horizon-card strong,
  .horizon-card > p,
  .horizon-card > span {
    grid-column: 1;
  }

  .horizon-card strong {
    margin-top: 20px;
  }

  .horizon-media {
    grid-column: 2;
    grid-row: 1 / 5;
    min-height: 100%;
    margin: 0;
  }

  .horizon-media video {
    width: 108%;
    height: 108%;
  }

  .contact {
    min-height: 820px;
    padding: calc(var(--header-h) + var(--dock-h) + 42px) var(--edge) 26px;
    background: #050505;
  }

  .contact-copy,
  .contact-panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
  }

  .contact-copy h2 {
    font-size: clamp(56px, 15.7vw, 86px);
  }

  .contact-panel {
    margin-top: 64px;
  }

  .contact-footer {
    grid-template-columns: 1fr;
  }

  .contact-footer nav {
    justify-self: start;
  }

  .contact-footer p {
    grid-column: 1;
  }
}

@media (max-width: 430px) {
  .product-dock {
    gap: 21px;
  }

  .product-dock a {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    font-size: 7px;
  }

  .dock-glyph {
    width: 16px;
    height: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 17.2vw, 73px);
    letter-spacing: 0;
  }

  .hero-statement {
    margin-top: 24px;
  }

  .product-gallery {
    height: 590px;
  }

  .product-selector button {
    min-width: 116px;
  }

  .ordo-device {
    height: 500px;
  }

  .device-grid {
    grid-template-columns: 42px 1fr;
  }

  .office-floor {
    padding: 10px;
    gap: 6px;
  }

  .ordo-metrics {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .brand-intro {
    display: none;
  }
}
