:root {
  --black: #090909;
  --black-soft: #111112;
  --white: #f4f2eb;
  --paper: #e8e6df;
  --silver: #b8b9b6;
  --gray: #7e7f7c;
  --orange: #ff4b12;
  --orange-hot: #ff6a2b;
  --line-dark: rgba(9, 9, 9, .16);
  --line-light: rgba(255, 255, 255, .15);
  --display: 'Space Grotesk', 'Arial Black', sans-serif;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

::selection {
  color: var(--black);
  background: var(--orange);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 16px;
  color: var(--black);
  background: var(--white);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.hero-shell,
.footer-shell {
  width: min(1320px, calc(100% - 72px));
  margin-inline: auto;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .08);
}

.page-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  transform-origin: left;
  background: var(--orange);
}

/* Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 600;
  padding: 22px 0;
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  padding-block: 13px;
  background: rgba(9, 9, 9, .84);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.nav-shell {
  width: min(1320px, calc(100% - 72px));
  min-height: 48px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: .96rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  transform: skewX(-14deg);
  color: var(--black);
  background: var(--orange);
  font-size: .92rem;
  letter-spacing: -.08em;
}

.brand-mark::first-letter {
  transform: skewX(14deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links > a:not(.nav-contact)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  transition: transform .25s ease;
}

.nav-links > a:not(.nav-contact):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--black);
  background: var(--white);
  transition: color .2s ease, background .2s ease;
}

.nav-contact:hover {
  color: var(--white);
  background: var(--orange);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-button[aria-expanded='true'] > span:nth-of-type(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded='true'] > span:nth-of-type(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 142px 0 58px;
  background: var(--black);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 70%);
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.pointer-light {
  position: absolute;
  left: var(--pointer-x, 72%);
  top: var(--pointer-y, 24%);
  width: 700px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 75, 18, .12), transparent 62%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(244, 242, 235, .55);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.hero-meta p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 75, 18, .12);
  animation: statusPulse 2s ease-in-out infinite;
}

.meta-slash {
  margin-inline: 8px;
  color: var(--orange);
}

.hero-copy {
  position: relative;
  padding: clamp(42px, 6vw, 84px) 0 clamp(42px, 5vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, .5fr);
  align-items: end;
  gap: 48px;
}

.hero-index {
  position: absolute;
  top: 52px;
  right: 0;
  margin: 0;
  color: var(--orange);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.25rem, 10vw, 9.5rem);
  font-weight: 600;
  line-height: .77;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-intro {
  max-width: 370px;
  padding-bottom: 5px;
}

.hero-intro p {
  margin: 0 0 34px;
  color: rgba(244, 242, 235, .66);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
  font-size: .72rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.logo-machine {
  --machine-rotate-x: 0deg;
  --machine-rotate-y: 0deg;
  perspective: 1200px;
}

.machine-frame {
  position: relative;
  height: clamp(300px, 36vw, 500px);
  overflow: hidden;
  transform: rotateX(var(--machine-rotate-x)) rotateY(var(--machine-rotate-y));
  background: #a2a3a1;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .5);
  transition: transform .15s ease-out;
}

.machine-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 51%;
  filter: contrast(1.08) saturate(.25);
  transform: scale(1.015);
}

.machine-noise {
  position: absolute;
  inset: 0;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, .35) 0, rgba(0, 0, 0, .35) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}

.machine-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .2), transparent 16%, transparent 84%, rgba(0, 0, 0, .2)),
    linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 24%, transparent 76%, rgba(0, 0, 0, .18));
  pointer-events: none;
}

.machine-scan {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -10%;
  width: 2px;
  background: var(--orange);
  box-shadow: 0 0 18px 3px rgba(255, 75, 18, .72), 0 0 60px 12px rgba(255, 75, 18, .18);
  animation: scan 5.5s cubic-bezier(.5, 0, .3, 1) infinite;
}

.machine-label {
  position: absolute;
  z-index: 3;
  margin: 0;
  color: rgba(0, 0, 0, .64);
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.machine-label-top {
  top: 18px;
  left: 20px;
}

.machine-label-bottom {
  right: 20px;
  bottom: 18px;
}

.machine-cross {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
}

.machine-cross::before,
.machine-cross::after {
  content: '';
  position: absolute;
  background: var(--orange);
}

.machine-cross::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 2px;
}

.machine-cross::after {
  top: 0;
  left: 5px;
  width: 2px;
  height: 12px;
}

.cross-one {
  top: 17px;
  right: 20px;
}

.cross-two {
  left: 20px;
  bottom: 17px;
}

.machine-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 2px 0;
  color: rgba(244, 242, 235, .45);
  font-size: .58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

/* Marquee */
.marquee {
  overflow: hidden;
  color: var(--black);
  background: var(--orange);
  border-block: 1px solid var(--black);
}

.marquee-track {
  width: max-content;
  min-height: 58px;
  display: flex;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding-inline: 28px;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.marquee i {
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: var(--black);
}

/* Light sections */
.section-light {
  color: var(--black);
  background: var(--paper);
}

.studio {
  padding: clamp(92px, 12vw, 180px) 0 clamp(100px, 13vw, 190px);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.section-tag span {
  color: var(--orange);
}

.section-tag p {
  margin: 0;
}

.section-tag-light {
  border-color: var(--line-light);
}

.studio-statement {
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  gap: 64px;
}

.studio-statement h2,
.work-heading h2,
.principles-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.studio-statement h2 {
  max-width: 980px;
  font-size: clamp(3.5rem, 7.7vw, 8rem);
  line-height: .86;
}

.studio-statement h2 em,
.work-heading h2 em,
.contact h2 em {
  color: var(--orange);
  font-style: normal;
}

.studio-statement > p {
  margin: 0 0 3px;
  padding-left: 24px;
  border-left: 2px solid var(--orange);
  color: #53534f;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black);
  border: 1px solid var(--black);
}

.capability-card {
  min-height: 500px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease, box-shadow .3s ease;
}

.capability-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.card-dark {
  color: var(--white);
  background: var(--black);
}

.card-orange {
  color: var(--black);
  background: var(--orange);
}

.card-silver {
  color: var(--black);
  background:
    radial-gradient(circle at 25% 10%, rgba(255, 255, 255, .9), transparent 28%),
    linear-gradient(145deg, #dbdcd9, #9b9d9b 62%, #e6e6e2);
}

.card-number,
.card-kicker {
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.card-number {
  opacity: .55;
}

.card-kicker {
  margin: 0 0 16px;
  opacity: .62;
}

.capability-card h3 {
  max-width: 320px;
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.capability-card div > p:last-child {
  max-width: 340px;
  margin: 0;
  opacity: .66;
  font-size: .95rem;
  line-height: 1.55;
}

/* Work */
.work {
  position: relative;
  overflow: hidden;
  padding: clamp(94px, 12vw, 170px) 0 clamp(110px, 14vw, 190px);
  background: #0b0b0c;
}

.work-backdrop {
  position: absolute;
  inset: 0;
  opacity: .52;
  background:
    radial-gradient(circle at 70% 52%, rgba(30, 177, 189, .24), transparent 27%),
    radial-gradient(circle at 20% 90%, rgba(255, 75, 18, .1), transparent 24%),
    linear-gradient(130deg, transparent 0 48%, rgba(255, 255, 255, .03) 48% 48.1%, transparent 48.1%);
}

.work .section-shell {
  position: relative;
}

.work-heading {
  padding: clamp(52px, 7vw, 92px) 0 56px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.work-overline {
  margin: 0 0 12px;
  color: rgba(244, 242, 235, .52);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.work-heading h2 {
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: .82;
}

.product-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 650px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .025);
}

.product-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(69, 225, 219, .22), transparent 24%),
    linear-gradient(145deg, #062d35, #03181e 60%, #0a4b51);
  border-right: 1px solid var(--line-light);
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.product-core {
  position: relative;
  z-index: 2;
  width: clamp(180px, 22vw, 290px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #063f50;
  background: #74e3df;
  border: 12px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(94, 226, 222, .06), 0 30px 90px rgba(0, 0, 0, .35);
}

.product-core span {
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.12em;
}

.product-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(116, 227, 223, .28);
  border-radius: 50%;
}

.orbit-one {
  width: 72%;
  aspect-ratio: 1;
  animation: orbitSpin 18s linear infinite;
}

.orbit-one::after {
  content: '';
  position: absolute;
  top: 16%;
  left: 9%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

.orbit-two {
  width: 48%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbitSpin 12s linear infinite reverse;
}

.bubble {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  animation: bubbleFloat 5s ease-in-out infinite;
}

.bubble-one {
  top: 16%;
  right: 15%;
  width: 36px;
  height: 36px;
}

.bubble-two {
  bottom: 20%;
  left: 14%;
  width: 18px;
  height: 18px;
  animation-delay: -1.5s;
}

.bubble-three {
  top: 29%;
  left: 20%;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .66);
  animation-delay: -3s;
}

.visual-coordinate {
  position: absolute;
  right: 22px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, .38);
  font-family: var(--display);
  font-size: .55rem;
  line-height: 1.55;
  letter-spacing: .12em;
}

.product-copy {
  padding: clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-meta {
  margin-bottom: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line-light);
  color: rgba(244, 242, 235, .64);
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.product-copy h3 {
  margin: clamp(64px, 9vw, 140px) 0 26px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.product-copy > p {
  max-width: 530px;
  margin: 0 0 42px;
  color: rgba(244, 242, 235, .6);
  font-size: 1.02rem;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
  min-width: 220px;
  min-height: 54px;
  padding: 0 18px;
  font-size: .7rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.button-light {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
}

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

/* Principles */
.principles {
  padding: clamp(92px, 12vw, 180px) 0;
}

.principles-heading {
  padding: clamp(58px, 8vw, 104px) 0 clamp(64px, 9vw, 120px);
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 60px;
}

.principles-heading h2 {
  max-width: 920px;
  font-size: clamp(4rem, 8.5vw, 8.8rem);
  line-height: .82;
}

.principles-heading > p {
  margin: 0;
  color: #555550;
  font-size: 1.05rem;
  line-height: 1.6;
}

.principle-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.principle-list li {
  display: grid;
  grid-template-columns: 72px 1fr .55fr;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding .25s ease, background .25s ease;
}

.principle-list li:hover {
  padding-inline: 18px;
  background: rgba(255, 75, 18, .07);
}

.principle-list span {
  color: var(--orange);
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.principle-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.7vw, 4rem);
  font-weight: 600;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.principle-list p {
  margin: 0;
  color: #5f5f59;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  min-height: 86svh;
  display: flex;
  align-items: center;
  background: var(--black);
}

.contact-grid {
  opacity: .24;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.pointer-light-contact {
  width: 900px;
  background: radial-gradient(circle, rgba(255, 75, 18, .18), transparent 62%);
}

.contact-shell {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.contact-kicker {
  margin: 0 0 38px;
  color: rgba(244, 242, 235, .5);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.contact h2 {
  max-width: 1150px;
  font-size: clamp(4rem, 9vw, 9.3rem);
  line-height: .81;
}

.contact-link {
  margin-top: clamp(56px, 8vw, 100px);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-block: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.2rem, 3.3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -.04em;
  text-decoration: none;
  transition: color .2s ease, padding .25s ease;
}

.contact-link:hover {
  padding-inline: 18px;
  color: var(--orange);
}

/* Footer */
.site-footer {
  padding: 54px 0;
  border-top: 1px solid var(--line-light);
  background: var(--black);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 36px;
}

.footer-brand {
  justify-self: start;
}

.footer-shell p {
  margin: 0;
  color: rgba(244, 242, 235, .48);
  font-size: .68rem;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-shell p:last-child {
  justify-self: end;
  text-align: right;
}

.footer-shell a:not(.brand) {
  color: var(--white);
  text-underline-offset: 4px;
}

/* Reveal motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .75, .2, 1);
}

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

@keyframes statusPulse {
  50% { opacity: .48; }
}

@keyframes scan {
  0%, 12% { left: -6%; opacity: 0; }
  18% { opacity: 1; }
  78% { opacity: 1; }
  86%, 100% { left: 106%; opacity: 0; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes bubbleFloat {
  50% { transform: translateY(-18px); opacity: .5; }
}

@media (max-width: 980px) {
  .hero-copy,
  .studio-statement,
  .principles-heading {
    grid-template-columns: 1fr;
  }

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

  .hero-intro {
    max-width: 520px;
  }

  .hero-index {
    display: none;
  }

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

  .capability-card {
    min-height: 400px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .product-meta {
    margin-bottom: 0;
  }

  .product-copy h3 {
    margin-top: 76px;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .hero-shell,
  .footer-shell,
  .nav-shell {
    width: min(100% - 36px, 1320px);
  }

  .site-header {
    padding-block: 14px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 75px 18px auto;
    padding: 24px;
    display: grid;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background: rgba(17, 17, 18, .98);
    border: 1px solid var(--line-light);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links > a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .nav-contact {
    min-height: 54px;
    margin-top: 18px;
    padding-inline: 16px !important;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 42px;
  }

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

  .hero-copy {
    padding-block: 46px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 19vw, 6rem);
    line-height: .8;
  }

  .machine-frame {
    height: 280px;
  }

  .machine-caption span:last-child {
    display: none;
  }

  .studio-statement {
    gap: 42px;
  }

  .studio-statement h2,
  .work-heading h2,
  .principles-heading h2,
  .contact h2 {
    font-size: clamp(3.5rem, 16vw, 5.6rem);
  }

  .studio-statement > p {
    padding-left: 18px;
  }

  .capability-card {
    min-height: 380px;
    padding: 24px;
  }

  .work-heading {
    padding-bottom: 38px;
  }

  .product-visual {
    min-height: 430px;
  }

  .product-copy {
    padding: 30px 24px 38px;
  }

  .product-copy h3 {
    margin-top: 60px;
  }

  .principle-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .principle-list li > p {
    grid-column: 2;
  }

  .contact {
    min-height: 78svh;
  }

  .contact-shell {
    padding-block: 96px;
  }

  .contact-link {
    font-size: clamp(.95rem, 5vw, 1.45rem);
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-shell p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: .82rem;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .machine-frame {
    height: 230px;
  }

  .machine-label {
    font-size: .48rem;
  }

  .machine-caption {
    font-size: .52rem;
  }

  .studio-statement h2,
  .work-heading h2,
  .principles-heading h2,
  .contact h2 {
    font-size: 3.35rem;
  }

  .product-visual {
    min-height: 360px;
  }

  .product-copy h3 {
    font-size: 2.7rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
