/* orbitron-latin-wght-normal */
@font-face {
  font-family: "Orbitron Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 400 900;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/orbitron:vf@latest/latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0c0c0b;
  --ink: #f3f0e8;
  --muted: #a4a09a;
  --line: rgba(243, 240, 232, 0.18);
  --chrome: #d7d7d1;
  --violet: #9b7cff;
  --orange: #ff7a1a;
  --page-max: 1440px;
  --content-max: 1180px;
  --gutter: clamp(18px, 4vw, 64px);
  --section-y: clamp(88px, 11vw, 156px);
  --max: var(--page-max);
  --pad: var(--gutter);
  --font: "Orbitron Variable", "Eurostile", "Microgramma", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 8%, rgba(155, 124, 255, 0.12), transparent 30vw),
    radial-gradient(circle at 12% 18%, rgba(255, 122, 26, 0.12), transparent 28vw),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  font-variation-settings: "wght" 500;
}

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

main,
section,
div,
article,
figure,
p,
h1,
h2,
h3,
span {
  min-width: 0;
}

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

.grain,
.cursor-light,
.scroll-orbit {
  pointer-events: none;
  position: fixed;
  z-index: 50;
}

.grain,
.cursor-light {
  inset: 0;
}

.grain {
  opacity: 0.18;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3px 3px;
}

.cursor-light {
  opacity: 0.38;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 20%), rgba(255, 255, 255, 0.14), transparent 18rem);
}

.scroll-orbit {
  --progress: 0deg;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  width: clamp(76px, 9vw, 126px);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 240, 232, 0.28);
  border-radius: 50%;
  opacity: 0.82;
  transform: rotate(var(--progress));
  mix-blend-mode: difference;
}

.scroll-orbit::before,
.scroll-orbit::after,
.scroll-orbit span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.scroll-orbit::before {
  inset: 18%;
  border: 1px dashed rgba(243, 240, 232, 0.26);
}

.scroll-orbit::after {
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--chrome);
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.88);
}

.scroll-orbit span {
  width: 5px;
  height: 5px;
  background: var(--orange);
}

.scroll-orbit span:nth-child(1) {
  top: 16%;
  right: 10%;
}

.scroll-orbit span:nth-child(2) {
  bottom: 13%;
  left: 19%;
}

.scroll-orbit span:nth-child(3) {
  right: 22%;
  bottom: 20%;
  background: var(--violet);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  color: var(--ink);
  mix-blend-mode: difference;
}

.brand-mark img {
  width: clamp(58px, 6.8vw, 96px);
  filter: drop-shadow(0 0px 9px rgba(255, 255, 255, 0.12));
}

.section-nav {
  display: flex;
  gap: clamp(12px, 3vw, 36px);
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-nav a {
  color: rgba(243, 240, 232, 0.78);
}

.section-panel {
  position: relative;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 520;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2 {
  max-width: 14ch;
  margin: 0;
  font-weight: 760;
  font-variation-settings: "wght" 760;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(42px, 9.4vw, 132px);
}

h2 {
  font-size: clamp(30px, 5.6vw, 76px);
}

p {
  color: rgba(243, 240, 232, 0.78);
  overflow-wrap: anywhere;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-content: end;
  overflow: hidden;
}

.hero::after,
.section-panel::before {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: 0;
  height: 1px;
  background: var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.92) 82%);
}

.hero__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  opacity: 0.72;
  filter: contrast(1.08) saturate(0.9);
}

.hero__content {
  width: min(1040px, 100%);
  padding-top: 22vh;
}

.hero__lead {
  max-width: 680px;
  margin: 26px 0 0 auto;
  font-size: clamp(16px, 2vw, 24px);
}

.hero__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(48px, 9vw, 112px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.split-section.reverse .section-copy {
  order: 2;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.section-copy p:not(.eyebrow),
.manifesto p {
  max-width: 560px;
  font-size: clamp(15px, 1.45vw, 20px);
  text-wrap: pretty;
}

.feature-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
  display: grid;
}

.presentation-pin {
  position: relative;
  top: auto;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(243, 240, 232, 0.26);
  background: #080807;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.presentation-pin img {
  width: 100%;
  aspect-ratio: 1.5;
  min-height: 0;
  object-fit: cover;
}

.presentation-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.18), transparent 58%);
  transform: translateX(-120%);
  animation: chrome-scan 5.5s ease-in-out infinite;
}

@keyframes chrome-scan {
  0%, 35% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.feature-frame img {
  width: 100%;
  aspect-ratio: 1.5;
  min-height: 0;
  object-fit: cover;
}

.feature-frame.tall img {
  aspect-ratio: 0.86;
  min-height: 0;
}

.board-frame img {
  aspect-ratio: 1.5;
  object-fit: cover;
}

.feature-frame figcaption {
  margin: 0;
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.78);
}

.image-stack {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-grid article {
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.stat-grid strong {
  display: block;
  color: var(--chrome);
  font-size: 48px;
  line-height: 1;
}

.stat-grid span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 0.65fr);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(36px, 7vw, 92px);
}

.section-heading h2 {
  max-width: 16ch;
}

.logo-lab {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.logo-lab .section-heading {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.logo-system {
  width: 100vw;
  margin-left: 50%;
  padding: 0 var(--gutter);
  transform: translateX(-50%);
}

.logo-system__hero,
.logo-system__matrix figure,
.logo-rail figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8e8e4;
  display: grid;
  place-items: center;
}

.logo-system__hero::after,
.logo-system__matrix figure::after,
.logo-rail figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.34), transparent 56%),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.22), transparent 34%);
  opacity: 0.6;
  mix-blend-mode: screen;
  transform: translateX(-35%);
}

.logo-system img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 4vw, 70px);
  filter:
    drop-shadow(0 32px 56px rgba(0, 0, 0, 0.18))
    contrast(1.04);
}

.logo-system__hero {
  max-width: var(--page-max);
  margin: 0 auto clamp(14px, 1.6vw, 22px);
  min-height: clamp(300px, 48vw, 620px);
}

.logo-system__hero img {
  padding: clamp(26px, 7vw, 120px);
}

.logo-system__hero figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  color: rgba(5, 5, 5, 0.68);
}

.logo-system__matrix {
  max-width: var(--page-max);
  margin: 0 auto clamp(14px, 1.6vw, 22px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}

.logo-system__matrix figure {
  aspect-ratio: 1.22;
}

.logo-system__matrix figure:nth-child(1),
.logo-system__matrix figure:nth-child(3) {
  background: #080807;
}

.logo-system__matrix figure:nth-child(1) img,
.logo-system__matrix figure:nth-child(3) img {
  padding: clamp(18px, 3.4vw, 54px);
}

.logo-rail-window {
  display: grid;
  gap: clamp(10px, 1.2vw, 18px);
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: clamp(10px, 1.2vw, 18px) 0;
  background:
    linear-gradient(90deg, #050505, transparent 12%, transparent 88%, #050505),
    #070707;
}

.logo-rail {
  display: flex;
  gap: clamp(10px, 1.2vw, 18px);
  width: max-content;
  will-change: transform;
}

.logo-rail:nth-child(2) {
  margin-left: clamp(-220px, -16vw, -80px);
}

.logo-rail figure {
  width: clamp(260px, 31vw, 520px);
  aspect-ratio: 1.45;
  flex: 0 0 auto;
  background: #080807;
}

.logo-rail img {
  padding: 0;
  transform: none;
}

.logo-rail figure:nth-child(even) {
  background: #080807;
}

.logo-rail figure:nth-child(3) img,
.logo-rail figure:nth-child(4) img {
  padding-inline: 0;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.color-system {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: 100svh;
}

.color-system .section-copy {
  align-self: center;
}

.swatch-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(72px, 1fr));
  min-height: min(78svh, 820px);
  border: 1px solid var(--line);
  align-self: stretch;
}

.swatch-wall span {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(16px, 2vw, 28px);
  background: var(--swatch);
  color: #050505;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 650;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.swatch-wall small,
.swatch-wall em {
  font-size: 11px;
  opacity: 0.68;
}

.swatch-wall b,
.swatch-wall em {
  font-style: normal;
  font-weight: 650;
}

.swatch-wall span:nth-child(1) {
  color: var(--ink);
}

.objects {
  max-width: none;
}

.objects .section-heading {
  max-width: var(--page-max);
}

.object-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--page-max);
  margin: 0 auto;
  overflow: visible;
  padding: 0 var(--pad) 12px;
  scrollbar-width: thin;
}

.object-card {
  min-height: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
    #080807;
}

.object-card.tall {
  transform: none;
}

.object-card.scale img {
  transform: scale(1.12);
}

.object-card img {
  width: 100%;
  aspect-ratio: 0.78;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.62));
}

.cinematic {
  max-width: none;
  min-height: 110svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  isolation: isolate;
}

.cinematic .radar-ring {
  position: absolute;
  z-index: 2;
  right: 8vw;
  top: 18vh;
  width: clamp(180px, 28vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 240, 232, 0.24);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 12vw rgba(243, 240, 232, 0.01),
    0 0 80px rgba(255, 122, 26, 0.12);
  mix-blend-mode: screen;
}

.cinematic .radar-ring::before,
.cinematic .radar-ring::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(243, 240, 232, 0.18);
  border-radius: 50%;
}

.cinematic .radar-ring::after {
  inset: 46%;
  background: rgba(255, 122, 26, 0.62);
  border: 0;
  box-shadow: 0 0 36px rgba(255, 122, 26, 0.72);
}

.photo-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 112%;
}

.photo-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.02);
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-gallery__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.photo-thumbs {
  position: absolute;
  left: var(--gutter);
  top: clamp(92px, 17vh, 180px);
  z-index: 2;
  display: flex;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(243, 240, 232, 0.22);
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(14px);
}

.photo-thumbs button {
  display: grid;
  gap: 7px;
  width: clamp(78px, 7.2vw, 104px);
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(243, 240, 232, 0.72);
  font: inherit;
  font-size: 10px;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.photo-thumbs button::after {
  content: "";
  height: 1px;
  background: rgba(243, 240, 232, 0.2);
}

.photo-thumbs button.is-active {
  color: var(--ink);
}

.photo-thumbs button.is-active::after {
  background: var(--orange);
}

.photo-thumbs img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border: 1px solid rgba(243, 240, 232, 0.2);
  filter: saturate(0.85);
}

.cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.78));
}

.cinematic__caption {
  position: relative;
  z-index: 2;
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
}

.cinematic__caption h2 {
  max-width: 15ch;
}

.cinematic__caption p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(15px, 1.4vw, 20px);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: end;
  min-height: 72svh;
}

.manifesto::after {
  content: "+++";
  position: absolute;
  right: var(--gutter);
  top: 44%;
  color: rgba(243, 240, 232, 0.22);
  font-size: clamp(64px, 16vw, 220px);
  line-height: 1;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.context-hero {
  overflow: hidden;
  margin-bottom: clamp(16px, 2vw, 28px);
  border: 1px solid var(--line);
  background: #070707;
}

.context-hero__media {
  overflow: hidden;
  background: #050505;
}

.context-hero img {
  width: 100%;
  height: clamp(420px, 58vw, 720px);
  object-fit: cover;
  object-position: center;
}

.context-hero figcaption {
  position: static;
  margin: 0;
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.84);
}

.context-grid figure,
.context-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.context-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.context-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: 1 / -1;
  min-height: 220px;
  padding: clamp(20px, 3vw, 40px);
}

.context-board {
  display: block;
  min-height: 0;
  aspect-ratio: 1.5;
}

.context-board img {
  background: #050505;
  object-fit: cover;
  scale: 1.04;
}

.context-grid span {
  color: var(--muted);
  font-size: 12px;
}

.brainstorm-board {
  max-width: none;
  overflow: hidden;
}

.brainstorm-board .section-heading,
.brainstorm-board__intro {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
}

.brainstorm-board__intro {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 64px);
  color: rgba(243, 240, 232, 0.68);
  font-size: clamp(15px, 1.35vw, 19px);
}

.board-canvas {
  position: relative;
  width: min(100%, 1680px);
  height: min(760px, 78svh);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(243, 240, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(243, 240, 232, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.018) 1px, transparent 1px),
    #050505;
  background-size: 96px 96px, 96px 96px, 16px 16px, 16px 16px;
  touch-action: none;
}

.board-canvas::before {
  content: "00  01  02  03  04  05  06  07  08  09  10  11  12  13  14  15  16  17  18  19  20  21";
  position: absolute;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: 0;
  color: rgba(243, 240, 232, 0.22);
  font-size: 10px;
  word-spacing: 18px;
  white-space: nowrap;
}

.board-card {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  width: min(var(--w), 28vw);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(243, 240, 232, 0.18);
  background: #080807;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  transform: translate3d(var(--drag-x, 0px), var(--drag-y, 0px), 0) rotate(var(--r));
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.board-card.is-dragging {
  z-index: 20;
  cursor: grabbing;
  border-color: rgba(243, 240, 232, 0.52);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.72);
}

.board-card img {
  width: 100%;
  height: auto;
  max-height: clamp(110px, 17vw, 250px);
  object-fit: contain;
  pointer-events: none;
  background: #050505;
}

.board-card.is-wide img,
.board-card.is-large img {
  max-height: clamp(120px, 16vw, 240px);
}

.board-card.logo-card img,
.board-card.is-small img {
  max-height: clamp(90px, 13vw, 190px);
}

.board-card.is-featured {
  width: min(var(--w), 34vw);
}

.board-card.is-featured img {
  max-height: clamp(220px, 32vw, 430px);
}

.board-card figcaption {
  margin: 0;
  padding: 9px 11px 10px;
  border-top: 1px solid rgba(243, 240, 232, 0.12);
  background: rgba(5, 5, 5, 0.86);
  color: rgba(243, 240, 232, 0.68);
  font-size: 10px;
  pointer-events: none;
}

.team-carousel {
  max-width: none;
  min-height: 220svh;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.team-carousel__sticky {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  min-height: 100svh;
  max-width: var(--page-max);
  margin: 0 auto;
  overflow: hidden;
}

.team-carousel__copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(18px, 3vw, 54px);
  align-items: end;
}

.team-carousel__copy h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.team-carousel__copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(243, 240, 232, 0.68);
  font-size: clamp(14px, 1.15vw, 17px);
  text-wrap: pretty;
}

.team-carousel__viewport {
  position: relative;
  height: clamp(420px, 58svh, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 22%, rgba(243, 240, 232, 0.08), transparent 28%),
    linear-gradient(rgba(243, 240, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.035) 1px, transparent 1px),
    #050505;
  background-size: auto, 48px 48px, 48px 48px, auto;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.team-carousel__viewport[data-reveal] {
  transform-origin: center bottom;
}

.team-carousel__rail {
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 1.6vw, 24px);
  height: 100%;
  width: max-content;
  padding: clamp(12px, 1.6vw, 22px);
  will-change: transform;
}

.team-carousel__card {
  flex: 0 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(243, 240, 232, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
    #080807;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.team-carousel__card img {
  align-self: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(0.94);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.team-carousel__card figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 40px);
  margin: 0;
  padding: clamp(12px, 1.6vw, 20px);
  border-top: 1px solid rgba(243, 240, 232, 0.18);
  background: rgba(5, 5, 5, 0.88);
  color: rgba(243, 240, 232, 0.84);
  font-size: clamp(10px, 0.9vw, 13px);
  line-height: 1.25;
}

.team-carousel__card figcaption small,
.team-carousel__card figcaption span {
  display: block;
}

.team-carousel__card figcaption small {
  color: var(--orange);
}

.team-carousel__card figcaption span {
  max-width: 40ch;
  text-align: right;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.team-carousel__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  height: 1px;
  background: rgba(243, 240, 232, 0.14);
}

.team-carousel__progress span {
  display: block;
  width: calc(var(--team-progress, 0) * 100%);
  height: 100%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.62);
}

.contact-prompt {
  max-width: none;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(243, 240, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(243, 240, 232, 0.08), transparent 30%),
    #050505;
  background-size: 180px 180px, 180px 180px, auto, auto;
}

.contact-prompt__logo {
  width: clamp(98px, 12vw, 180px);
  margin-bottom: clamp(24px, 5vw, 68px);
  filter: drop-shadow(0 18px 46px rgba(255, 255, 255, 0.18));
}

.contact-prompt h2 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(54px, 9vw, 142px);
  line-height: 0.98;
  color: transparent;
  background: linear-gradient(180deg, #f4f2eb 18%, #a7a5a0 48%, #ffffff 72%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 48px rgba(255, 255, 255, 0.08);
}

.contact-prompt__mail {
  display: inline-block;
  margin-top: clamp(30px, 5vw, 80px);
  color: rgba(243, 240, 232, 0.84);
  font-size: clamp(28px, 4.8vw, 60px);
  line-height: 1;
  text-transform: lowercase;
  text-decoration: none;
  letter-spacing: 0;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    text-shadow 180ms ease;
}

.contact-prompt__mail:hover {
  color: var(--ink);
  opacity: 1;
  text-shadow: 0 0 32px rgba(243, 240, 232, 0.18);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transform-origin: center bottom;
  will-change: transform, opacity, clip-path;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .scroll-orbit,
  .cursor-light {
    display: none;
  }

  .team-carousel {
    min-height: auto;
  }

  .team-carousel__sticky {
    position: relative;
    top: auto;
  }

  .team-carousel__viewport {
    height: auto;
    overflow-x: auto;
  }

  .team-carousel__rail {
    height: min(420px, 68svh);
    transform: none;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: clamp(40px, 8.8vw, 96px);
  }

  h2 {
    font-size: clamp(30px, 5vw, 58px);
  }

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

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

  .context-grid article {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .section-nav {
    display: none;
  }

  .section-panel {
    padding-top: clamp(72px, 16vw, 104px);
    padding-bottom: clamp(72px, 16vw, 104px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero__lead {
    margin-left: 0;
  }

  .hero__footer,
  .split-section,
  .split-section.reverse,
  .color-system,
  .manifesto,
  .context-grid {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .section-copy {
    order: 0;
  }

  .sticky-copy {
    position: relative;
    top: auto;
  }

  .presentation-pin {
    position: relative;
    top: auto;
  }

  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-heading h2,
  .cinematic__caption h2,
  h1,
  h2 {
    max-width: 100%;
  }

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

  .logo-system__hero {
    min-height: clamp(280px, 58vw, 520px);
  }

  .logo-rail figure {
    width: clamp(240px, 52vw, 430px);
  }

  .swatch-wall {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .swatch-wall span {
    min-height: clamp(86px, 13vh, 130px);
    writing-mode: horizontal-tb;
    transform: none;
    align-items: center;
  }

  .feature-frame img,
  .feature-frame.tall img,
  .context-grid img {
    min-height: 0;
  }

  .photo-thumbs {
    top: auto;
    bottom: clamp(200px, 34vh, 320px);
  }

  .object-card.tall {
    transform: none;
  }

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

  .board-canvas {
    height: min(760px, 78svh);
  }

  .team-carousel__sticky {
    gap: 28px;
  }

  .team-carousel__copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .team-carousel__viewport {
    height: clamp(380px, 56svh, 560px);
  }

  .team-carousel__card figcaption {
    gap: 10px;
  }

  .board-card {
    width: min(var(--w), 42vw);
  }

  .board-card.is-featured {
    width: min(var(--w), 52vw);
  }

  .board-card img {
    max-height: 220px;
  }

  .contact-prompt h2 {
    font-size: clamp(48px, 11vw, 96px);
  }

}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .hero__footer {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 10px;
  }

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

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

  .object-card {
    min-height: 380px;
  }

  .object-card img {
    aspect-ratio: 1;
    height: auto;
  }

  .logo-system__matrix {
    grid-template-columns: 1fr;
  }

  .logo-system__hero {
    min-height: 300px;
  }

  .logo-system__hero img,
  .logo-system__matrix img {
    padding: 40px;
    transform: scale(0.9);
  }

  .logo-rail img {
    padding: 0;
    transform: none;
  }

  .logo-rail figure {
    width: 78vw;
  }

  .photo-thumbs {
    right: var(--gutter);
    overflow-x: auto;
  }

  .photo-thumbs button {
    width: 82px;
    flex: 0 0 auto;
  }

  .team-carousel {
    min-height: 190svh;
  }

  .team-carousel__viewport {
    height: min(460px, 64svh);
  }

  .team-carousel__rail {
    gap: 10px;
    padding: 10px;
  }

  .team-carousel__card figcaption {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px 11px 12px;
    font-size: 9px;
  }

  .team-carousel__card figcaption span {
    max-width: 100%;
    text-align: left;
  }

  .board-canvas {
    height: 76svh;
  }

  .board-card {
    width: min(var(--w), 64vw);
  }

  .board-card.is-featured {
    width: min(var(--w), 72vw);
  }

  .board-card img {
    max-height: 190px;
  }

}
