:root {
  color-scheme: light;
  --paper: #f2f1ed;
  --paper-deep: #e6e4de;
  --ink: #080807;
  --ink-soft: rgba(8, 8, 7, 0.68);
  --line: rgba(8, 8, 7, 0.12);
  --dark: #050505;
  --acid: #dfff00;
  --violet: #b6a8ff;
  --cyan: #92e8ff;
  --coral: #ff7b61;
  --logo-gold: #b87916;
  --radius: 8px;
  --gutter: clamp(18px, 3vw, 42px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --work-motion: 0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  cursor: none;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Arial Narrow,
    "Helvetica Neue Condensed Bold",
    "Inter Tight",
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  overflow-x: hidden;
  cursor: none;
}

body::selection {
  background: var(--acid);
  color: var(--ink);
}

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

button {
  border: 0;
  color: inherit;
  cursor: none;
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.09), transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.22), transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: multiply;
}

#stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  transition: opacity 220ms ease;
}

main,
.site-header,
.menu-pill,
.menu-panel,
.contact-chip,
.work-jump,
.cursor {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  color: var(--ink);
  text-transform: uppercase;
  transition:
    color 260ms ease,
    mix-blend-mode 260ms ease;
}

.is-dark-scene .site-header {
  color: var(--paper);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-orb {
  display: block;
  width: 82px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 48%, #ffe8a1 0 24%, transparent 25%),
    radial-gradient(circle at 72% 52%, #e0a640 0 26%, transparent 27%),
    linear-gradient(90deg, #f2cf73, #f7d87e 50%, #9f6f15);
  filter: saturate(1.08) contrast(1.08);
  transform: rotate(-4deg);
}

.nav {
  gap: clamp(18px, 4vw, 64px);
  font-size: clamp(0.86rem, 1vw, 1.02rem);
  font-weight: 900;
}

.nav a,
.text-link,
.large-link {
  position: relative;
  width: max-content;
}

.nav a::after,
.text-link::after,
.large-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.nav a:hover::after,
.text-link:hover::after,
.large-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-pill {
  position: fixed;
  left: var(--gutter);
  bottom: clamp(26px, 9vh, 90px);
  z-index: 15;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(242, 241, 237, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 18px 52px rgba(8, 8, 7, 0.12);
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition:
    background 220ms ease,
    color 220ms ease;
}

.menu-pill:hover,
.menu-pill[aria-expanded="true"] {
  background: var(--ink);
  color: var(--paper);
}

.menu-pill span {
  position: relative;
  width: 14px;
  height: 14px;
}

.menu-pill span::before,
.menu-pill span::after {
  position: absolute;
  left: 1px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-pill span::before {
  top: 3px;
}

.menu-pill span::after {
  bottom: 3px;
}

.menu-pill[aria-expanded="true"] span::before {
  top: 6px;
  transform: rotate(45deg);
}

.menu-pill[aria-expanded="true"] span::after {
  bottom: 6px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  left: var(--gutter);
  bottom: calc(clamp(26px, 9vh, 90px) + 56px);
  z-index: 14;
  display: grid;
  gap: 8px;
  min-width: 220px;
  border: 1px solid rgba(8, 8, 7, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(242, 241, 237, 0.78);
  box-shadow: 0 24px 76px rgba(8, 8, 7, 0.14);
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease);
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel a {
  border-radius: 6px;
  padding: 10px 12px;
}

.menu-panel a:hover {
  background: var(--ink);
  color: var(--paper);
}

.work-jump {
  position: fixed;
  right: var(--gutter);
  bottom: clamp(26px, 8vh, 70px);
  z-index: 12;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(8, 8, 7, 0.3);
  border-radius: 6px;
  padding: 0 14px 0 12px;
  background: rgba(242, 241, 237, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 18px 52px rgba(8, 8, 7, 0.12);
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease,
    visibility 220ms ease;
}

.work-jump.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.work-jump:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.work-jump-arrow {
  position: relative;
  width: 16px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 220ms var(--ease);
}

.work-jump-arrow::before {
  position: absolute;
  left: 7px;
  top: 1px;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.work-jump-arrow::after {
  position: absolute;
  left: 3px;
  bottom: 2px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.work-jump:hover .work-jump-arrow {
  transform: translateY(3px);
}

.work-jump.is-past-work .work-jump-arrow {
  transform: rotate(180deg);
}

.work-jump.is-past-work:hover .work-jump-arrow {
  transform: rotate(180deg) translateY(3px);
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 25;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(8, 8, 7, 0.72);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition:
    width 220ms var(--ease),
    height 220ms var(--ease),
    opacity 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.cursor span {
  position: absolute;
  inset: 19px;
  border-radius: 50%;
  background: currentColor;
}

.cursor.is-active {
  width: 82px;
  height: 82px;
  background: rgba(223, 255, 0, 0.18);
  border-color: rgba(8, 8, 7, 0.4);
}

.scene-section {
  position: relative;
  min-height: 100svh;
  padding: clamp(90px, 11vw, 150px) var(--gutter);
  overflow: hidden;
}

.hero {
  display: grid;
  align-content: space-between;
  padding-top: clamp(138px, 12vw, 180px);
}

.hero-copy {
  max-width: min(780px, 72vw);
  margin-left: clamp(120px, 14vw, 210px);
}

.eyebrow,
.statement-kicker {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(3.15rem, 5.45vw, 6.15rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7.2vw, 8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 56px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.32vw, 1.24rem);
  line-height: 1.35;
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-right: 76px;
  padding-left: clamp(120px, 14vw, 180px);
  color: var(--ink-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-bottom p {
  max-width: 330px;
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 950;
  text-transform: uppercase;
}

.statement {
  display: grid;
  align-content: end;
  min-height: 150svh;
}

.statement h2 {
  max-width: 1120px;
  margin-left: auto;
}

.section-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(20px, 6vw, 80px);
  margin-bottom: clamp(50px, 8vw, 120px);
}

.section-head h2,
.section-head .eyebrow {
  grid-column: 1;
}

.section-head .text-link {
  grid-column: 2;
  grid-row: 2;
}

.work {
  min-height: 260svh;
}

.work-rail {
  display: grid;
  gap: clamp(80px, 18vw, 240px);
  padding-bottom: 12vh;
}

.case-card {
  width: min(640px, 72vw);
  margin-left: clamp(280px, 36vw, 520px);
  transform-style: preserve-3d;
}

.case-card.offset {
  margin-left: clamp(120px, 20vw, 280px);
}

.case-card a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 34px 120px rgba(8, 8, 7, 0.18);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms ease;
}

.case-card a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.82));
  content: "";
  opacity: 0.7;
  transition: opacity 220ms ease;
}

.case-card:hover a {
  box-shadow: 0 50px 160px rgba(8, 8, 7, 0.28);
}

.case-card:hover a::after {
  opacity: 1;
}

.case-card figure {
  aspect-ratio: 1.12 / 1;
  margin: 0;
}

.case-card img {
  filter: saturate(0.86);
  transform: scale(1.04);
  transition:
    transform 900ms var(--ease),
    filter 400ms ease;
}

.case-card:hover img {
  filter: saturate(1.14) contrast(1.04);
  transform: scale(1.12);
}

.case-index,
.case-meta,
.case-card h3 {
  position: absolute;
  z-index: 2;
}

.case-index {
  top: 18px;
  right: 18px;
  display: grid;
  width: 52px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 950;
}

.case-meta {
  left: 22px;
  right: 22px;
  top: 22px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
  font-weight: 950;
  text-transform: uppercase;
}

.case-meta p {
  margin: 0;
}

.case-meta ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
  max-width: 300px;
  margin: 0 58px 0 0;
  padding: 0;
  list-style: none;
}

.case-meta li {
  border: 1px solid rgba(242, 241, 237, 0.42);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 0.72rem;
}

.case-card h3 {
  left: 22px;
  right: 22px;
  bottom: 18px;
  margin: 0;
  transform: translateY(8px);
  transition: transform 260ms var(--ease);
}

.case-card:hover h3 {
  transform: translateY(0);
}

.dark {
  background: var(--dark);
  color: var(--paper);
}

.dark .eyebrow {
  color: rgba(242, 241, 237, 0.62);
}

.method {
  min-height: 140svh;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242, 241, 237, 0.16);
}

.method-card {
  min-height: clamp(300px, 40vw, 520px);
  padding: clamp(22px, 3vw, 38px);
  background: var(--dark);
  transition:
    background 260ms ease,
    color 260ms ease;
}

.method-card:hover {
  background: var(--acid);
  color: var(--ink);
}

.method-card span {
  display: inline-grid;
  width: 44px;
  height: 32px;
  margin-bottom: clamp(80px, 12vw, 170px);
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 950;
}

.method-card p {
  max-width: 330px;
  color: currentColor;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.42;
}

.systems {
  min-height: 130svh;
}

.orbit-board {
  position: relative;
  min-height: min(760px, 82svh);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 18%, rgba(146, 232, 255, 0.34), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(255, 123, 97, 0.28), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(8, 8, 7, 0.04));
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 260ms var(--ease);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: min(420px, 72vw);
  min-height: 220px;
  place-items: center;
  border: 1px solid rgba(8, 8, 7, 0.28);
  border-radius: 999px;
  padding: 28px;
  background: rgba(242, 241, 237, 0.54);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}

.orbit-core strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4.7rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.orbit-core span {
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.orbit-board ul {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.orbit-board li {
  position: absolute;
  left: var(--x);
  top: var(--y);
  max-width: 180px;
  border-radius: 999px;
  padding: 12px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-weight: 950;
  text-transform: uppercase;
  animation: drift 5s ease-in-out infinite;
  animation-delay: calc(var(--x) * -0.03s);
}

.contact {
  min-height: 100svh;
  display: grid;
  align-content: end;
}

.contact h2 {
  max-width: 1100px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(34px, 5vw, 70px);
}

.large-link {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(242, 241, 237, 0.28);
  border-radius: 999px;
  padding: 0 22px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 950;
  text-transform: uppercase;
}

.first-screen {
  display: grid;
  align-content: start;
  min-height: 100svh;
  padding-top: clamp(86px, 8vw, 124px);
  padding-bottom: 0;
}

.first-screen-copy {
  width: min(880px, 72vw);
  margin-left: clamp(108px, 13.8vw, 190px);
}

.first-screen h1 {
  margin-bottom: 64px;
  font-size: clamp(3rem, 4.75vw, 5.65rem);
  line-height: 0.98;
}

.first-screen-sub {
  max-width: 470px;
  margin-top: 42px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.08;
}

.first-screen-bottom {
  position: relative;
  z-index: 3;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.48fr);
  grid-template-rows: minmax(0, 1fr) auto;
  column-gap: clamp(18px, 3vw, 52px);
  row-gap: clamp(24px, 5vw, 80px);
  align-items: end;
  min-height: calc(100svh - clamp(76px, 7vw, 112px));
  margin-top: clamp(540px, 84vh, 960px);
  margin-bottom: 0;
  padding-top: clamp(84px, 8vw, 118px);
  padding-right: clamp(30px, 4.8vw, 84px);
  padding-bottom: clamp(24px, 4vw, 56px);
  padding-left: clamp(30px, 4.8vw, 84px);
}

.first-screen-bottom::before {
  position: absolute;
  inset: clamp(-20px, -2.2vw, -12px) clamp(-18px, -2vw, -10px) clamp(18px, 3.4vw, 46px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(242, 241, 237, 0.2)),
    rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 80px rgba(8, 8, 7, 0.08);
  backdrop-filter: blur(18px) saturate(1.18);
  content: "";
}

.first-screen-bottom h2 {
  align-self: center;
  max-width: 940px;
  font-size: clamp(2.85rem, 6.25vw, 7.3rem);
  line-height: 0.86;
}

.first-screen-body {
  align-self: center;
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

.intro-image-placeholder {
  overflow: hidden;
  width: min(520px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(8, 8, 7, 0.16);
  border-radius: 8px;
  background: rgba(242, 241, 237, 0.76);
}

.intro-image-placeholder img {
  filter: saturate(0.96) contrast(1.02);
}

.first-screen-bottom p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.45;
}

.word-highlight {
  color: var(--logo-gold);
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.works {
  min-height: 230svh;
  padding-top: clamp(104px, 10vw, 168px);
}

.works-heading {
  position: relative;
  top: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 132px);
  pointer-events: none;
}

.works-heading > * {
  pointer-events: auto;
}

.works-heading h2 {
  max-width: 860px;
  font-size: clamp(3.2rem, 7.4vw, 9.4rem);
  line-height: 0.82;
}

.case-stack {
  --work-stack-gap: clamp(24px, 3.8vw, 58px);
  --work-stack-gap-motion: clamp(48px, 6.7vw, 84px);
  --work-stack-pad: clamp(8px, 2vw, 24px);
  --work-stack-pad-motion: clamp(26px, 3vw, 38px);
  --work-stack-motion-reserve: calc(var(--work-stack-pad-motion) + var(--work-stack-gap-motion) + var(--work-stack-gap-motion));

  position: relative;
  z-index: 2;
  display: grid;
  gap: calc(var(--work-stack-gap) + (var(--work-stack-gap-motion) * var(--work-motion)));
  padding-top: calc(var(--work-stack-pad) + (var(--work-stack-pad-motion) * var(--work-motion)));
  padding-bottom: calc(var(--work-stack-motion-reserve) * (1 - var(--work-motion)));
}

.work-card {
  width: min(680px, 62vw);
  margin-left: clamp(260px, 36vw, 470px);
  transform-style: preserve-3d;
}

.work-card.vertical {
  width: min(440px, 48vw);
  margin-left: clamp(360px, 46vw, 600px);
}

.work-card.small {
  width: min(570px, 56vw);
  margin-left: clamp(240px, 36vw, 510px);
}

.work-card a {
  position: relative;
  display: block;
  border-radius: 8px;
  background: #d9d8d3;
  color: var(--ink);
  box-shadow: 0 26px 110px rgba(8, 8, 7, 0.12);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(calc(1.065 - (0.165 * var(--work-motion))));
  transition:
    box-shadow 260ms ease,
    transform 680ms var(--ease);
}

.work-card:hover a,
.work-card:focus-within a {
  box-shadow: 0 42px 140px rgba(8, 8, 7, 0.22);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(calc(var(--ry, 0deg) + 180deg)) scale(calc(1.065 - (0.165 * var(--work-motion))));
}

.work-card-face {
  overflow: hidden;
  border-radius: 8px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.work-card figure {
  margin: 0;
}

.work-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(8, 8, 7, 0.12);
  padding: clamp(18px, 2.5vw, 32px);
  background: #ffffff;
  transform: rotateY(180deg);
}

.work-card img {
  height: auto;
  object-fit: contain;
}

.work-card-cover {
  display: flex;
  min-height: clamp(240px, 32vw, 390px);
  padding: clamp(18px, 2.5vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 58%),
    #d9d8d3;
}

.work-card-top,
.work-card ul {
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.work-card-top {
  max-width: 88%;
  font-size: clamp(1.35rem, 2.4vw, 3rem);
  line-height: 0.94;
  font-weight: 950;
}

.work-card-summary {
  z-index: 2;
  max-width: 34ch;
  margin: clamp(10px, 1.25vw, 16px) 0 auto;
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  font-weight: 650;
  line-height: 1.32;
}

.work-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-card li {
  border: 1px solid rgba(8, 8, 7, 0.34);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 950;
  pointer-events: none;
}

.external-link-icon {
  width: clamp(30px, 3vw, 46px);
  height: clamp(30px, 3vw, 46px);
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.case-page #stage {
  opacity: 0.16;
}

.case-main {
  position: relative;
  z-index: 1;
}

.case-page .scene-section {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.case-hero {
  min-height: 100svh;
  padding-top: clamp(118px, 14vw, 190px);
}

.case-eyebrow,
.case-section-label {
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.case-hero-grid,
.case-two-col,
.case-screen-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.case-hero-grid {
  margin-top: clamp(24px, 4vw, 52px);
}

.case-hero h1 {
  max-width: 920px;
  font-size: clamp(3.6rem, 5.6vw, 7.2rem);
  line-height: 0.94;
}

.case-lede,
.case-copy p,
.case-screen-row p,
.case-process span,
.case-principles p,
.case-facts p {
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.48;
}

.case-lede {
  max-width: 760px;
  margin-top: clamp(36px, 5vw, 62px);
  border: 1px solid rgba(8, 8, 7, 0.12);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(242, 241, 237, 0.64);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 22px 72px rgba(8, 8, 7, 0.1);
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  backdrop-filter: blur(18px);
}

.case-stats {
  display: grid;
  gap: 12px;
  margin: clamp(8px, 2vw, 24px) 0 0;
}

.case-stats div,
.case-facts article,
.case-principles article,
.case-impact-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(242, 241, 237, 0.72);
  backdrop-filter: blur(14px);
}

.case-stats div {
  padding: clamp(16px, 2vw, 24px);
}

.case-stats dt {
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-stats dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.35vw, 3.8rem);
  font-weight: 950;
  line-height: 0.9;
}

.case-hero-shot {
  margin: clamp(42px, 8vw, 98px) 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 36px 130px rgba(8, 8, 7, 0.16);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.case-hero-shot img {
  height: auto;
  object-fit: contain;
}

.case-section {
  min-height: 92svh;
  padding-top: clamp(86px, 11vw, 160px);
  padding-bottom: clamp(86px, 11vw, 160px);
}

.case-section h2,
.case-screen-row h2 {
  font-size: clamp(3rem, 6.2vw, 7.4rem);
  line-height: 0.88;
}

.case-copy,
.case-screen-row > div {
  padding-top: clamp(8px, 1.4vw, 18px);
}

.case-copy > p,
.case-screen-row p {
  max-width: 620px;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
}

.case-facts {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 42px);
}

.case-facts article {
  padding: 18px;
}

.case-facts strong,
.case-process strong,
.case-principles strong,
.case-impact-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.case-facts p {
  margin: 10px 0 0;
  font-size: 0.96rem;
}

.case-process {
  display: grid;
  gap: 12px;
  margin: clamp(24px, 4vw, 42px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: case-step;
}

.case-process li {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  counter-increment: case-step;
}

.case-process li::before {
  color: var(--coral);
  font-size: 1.25rem;
  font-weight: 950;
  content: counter(case-step, decimal-leading-zero);
}

.case-process-compact li {
  grid-template-columns: 52px minmax(0, 0.32fr) minmax(0, 1fr);
}

.case-dark {
  color: var(--paper);
}

.case-dark .case-section-label,
.case-impact .case-section-label {
  border-color: rgba(242, 241, 237, 0.18);
  color: rgba(242, 241, 237, 0.68);
}

.case-dark .char,
.case-impact .char {
  color: var(--paper);
}

.case-dark .case-principles article,
.case-impact .case-impact-grid article {
  border-color: rgba(242, 241, 237, 0.16);
  background: rgba(242, 241, 237, 0.07);
}

.case-dark .case-principles strong,
.case-dark .case-principles p,
.case-impact .case-copy p,
.case-impact .case-impact-grid strong,
.case-impact .case-impact-grid span,
.case-impact .large-link {
  color: var(--paper);
}

.case-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 6vw, 72px);
}

.case-principles article {
  min-height: 280px;
  padding: clamp(18px, 2.4vw, 28px);
}

.case-principles span {
  display: block;
  margin-bottom: clamp(34px, 6vw, 76px);
  color: var(--coral);
  font-size: 1rem;
  font-weight: 950;
}

.case-principles p {
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.case-screen-row {
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  align-items: center;
  margin-top: clamp(42px, 7vw, 92px);
}

.case-screen-row:first-of-type {
  margin-top: clamp(28px, 5vw, 70px);
}

.case-screen-row-flip figure {
  order: 2;
}

.case-screen-row figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 110px rgba(8, 8, 7, 0.14);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.case-screen-row img {
  height: auto;
  object-fit: contain;
}

.case-screen-row h2 {
  font-size: clamp(2.4rem, 4.6vw, 6.4rem);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.case-tags li {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-impact {
  color: var(--paper);
}

.case-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.case-impact-grid article {
  padding: clamp(16px, 2vw, 24px);
}

.case-impact-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(242, 241, 237, 0.68);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
}

.spark {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.54fr);
  gap: clamp(26px, 7vw, 116px);
  align-items: center;
  min-height: 118svh;
}

.spark-media {
  min-height: min(680px, 72svh);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.spark-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06);
}

.spark h2 {
  font-size: clamp(3.2rem, 7.4vw, 9.4rem);
}

.spark-kicker {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 5.6rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.spark-copy p:not(.spark-kicker) {
  max-width: 510px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.48;
}

.round-link {
  display: inline-grid;
  width: 132px;
  height: 132px;
  place-items: center;
  margin-top: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.round-link:hover {
  background: var(--ink);
  color: var(--paper);
}

.services {
  min-height: 120svh;
  padding-top: clamp(80px, 10vw, 150px);
}

.services h2 {
  margin-bottom: clamp(52px, 8vw, 110px);
  font-size: clamp(3.2rem, 7.4vw, 9.4rem);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-item {
  position: relative;
  min-height: clamp(360px, 42vw, 620px);
  border-right: 1px solid var(--line);
  padding: clamp(20px, 3vw, 36px);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition:
    background 280ms ease,
    transform 260ms var(--ease);
}

.service-item:last-child {
  border-right: 0;
}

.service-item:hover {
  background: var(--acid);
}

.service-item h3 {
  max-width: 260px;
  margin-bottom: clamp(110px, 18vw, 240px);
  font-size: clamp(2rem, 4.8vw, 6.2rem);
}

.service-item button {
  position: absolute;
  top: clamp(22px, 3vw, 38px);
  right: clamp(20px, 3vw, 34px);
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: none;
}

.service-item button::before {
  position: absolute;
  inset: 16px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.service-item p {
  max-width: 340px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.45;
}

.achievements {
  min-height: 120svh;
}

.achievements > .text-link {
  position: absolute;
  top: clamp(90px, 12vw, 160px);
  right: var(--gutter);
}

.achievements h2 {
  margin-top: clamp(80px, 11vw, 150px);
  margin-bottom: clamp(52px, 8vw, 100px);
  font-size: clamp(3.2rem, 7.4vw, 9.4rem);
}

.achievement-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 70px);
  margin-bottom: clamp(70px, 10vw, 130px);
}

.achievement-row span {
  font-size: clamp(2rem, 5vw, 7rem);
  font-weight: 950;
  text-transform: uppercase;
}

.achievement-row strong {
  color: rgba(242, 241, 237, 0.5);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242, 241, 237, 0.18);
}

.metric-card {
  min-height: 300px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--dark);
}

.metric-card strong {
  display: block;
  font-size: clamp(5rem, 15vw, 17rem);
  line-height: 0.8;
}

.metric-card span {
  display: block;
  margin: 18px 0 34px;
  color: rgba(242, 241, 237, 0.62);
  font-weight: 950;
  text-transform: uppercase;
}

.metric-card p,
.clients-copy {
  max-width: 540px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.5;
}

.clients {
  min-height: 120svh;
}

.clients h2 {
  max-width: 760px;
  margin-bottom: 32px;
}

.clients-copy {
  margin-left: auto;
  margin-bottom: clamp(60px, 9vw, 120px);
  color: var(--ink);
}

.client-orbit {
  position: relative;
  min-height: min(660px, 72svh);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 28%, rgba(146, 232, 255, 0.54), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(223, 255, 0, 0.6), transparent 28%),
    #deddd8;
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.client-orbit span {
  position: absolute;
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 950;
  text-transform: uppercase;
}

.client-orbit span:nth-child(1) {
  left: 8%;
  top: 12%;
}

.client-orbit span:nth-child(2) {
  right: 7%;
  top: 22%;
}

.client-orbit span:nth-child(3) {
  left: 22%;
  bottom: 18%;
}

.client-orbit span:nth-child(4) {
  right: 20%;
  bottom: 12%;
}

.client-orbit span:nth-child(5) {
  left: 41%;
  top: 45%;
}

.news {
  min-height: 120svh;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: clamp(120px, 18vw, 260px);
}

.news-card {
  display: grid;
  gap: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-card img {
  aspect-ratio: 1.18 / 1;
  border-radius: 8px;
  filter: saturate(0.82);
  transition:
    filter 240ms ease,
    transform 500ms var(--ease);
}

.news-card:hover img {
  filter: saturate(1.1);
  transform: translateY(-8px);
}

.news-card span {
  color: var(--ink-soft);
}

.news-card strong {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
}

.final-link {
  display: grid;
  min-height: 70svh;
  place-items: center;
}

.final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(1120px, 100%);
  gap: 18px;
  border-top: 1px solid rgba(242, 241, 237, 0.2);
  border-bottom: 1px solid rgba(242, 241, 237, 0.2);
  padding: clamp(30px, 5vw, 70px) 0;
  text-transform: uppercase;
}

.final-card span {
  grid-column: 1 / -1;
  color: rgba(242, 241, 237, 0.62);
  font-weight: 950;
}

.final-card strong {
  font-size: clamp(3.5rem, 10vw, 12rem);
  line-height: 0.85;
}

.final-card em {
  align-self: end;
  font-size: clamp(2rem, 5vw, 6rem);
  font-style: normal;
  font-weight: 950;
}

.social-footer {
  display: grid;
  align-content: end;
  min-height: 72svh;
}

.social-footer h2 {
  max-width: 980px;
  margin-bottom: clamp(44px, 8vw, 112px);
  font-size: clamp(3.2rem, 7.4vw, 9.4rem);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(242, 241, 237, 0.22);
}

.social-links a {
  display: flex;
  min-height: clamp(120px, 16vw, 230px);
  align-items: end;
  border-right: 1px solid rgba(242, 241, 237, 0.22);
  padding: clamp(20px, 3vw, 40px) 0;
  color: var(--paper);
  font-size: clamp(2rem, 5vw, 6.6rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.social-links a:last-child {
  border-right: 0;
}

.social-links a:hover {
  color: var(--acid);
}

.char {
  display: inline-block;
  transform: translateY(1.05em);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

.is-visible .char,
.char.is-visible {
  transform: translateY(0);
}

.word {
  display: inline-block;
  overflow: visible;
  vertical-align: top;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible,
.is-visible.reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(10px, -14px, 0);
  }
}

@media (min-width: 721px) {
  .menu-pill,
  .menu-panel {
    display: none;
  }
}

@media (min-width: 1021px) {
  .case-hero .case-lede {
    margin-top: clamp(72px, 6vw, 104px);
  }
}

@media (max-width: 1020px) {
  .brand span:last-child {
    display: none;
  }

  .nav {
    gap: 18px;
  }

  .hero-copy {
    max-width: 100%;
    margin-left: 0;
  }

  .section-head,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .section-head .text-link {
    grid-column: 1;
    grid-row: auto;
  }

  .case-card,
  .case-card.offset {
    width: min(760px, 100%);
    margin-left: 0;
  }

  .first-screen-copy,
  .work-card,
  .work-card.vertical,
  .work-card.small {
    width: 100%;
    margin-left: 0;
  }

  .first-screen-bottom,
  .spark,
  .service-list,
  .metric-grid,
  .news-list,
  .case-hero-grid,
  .case-two-col,
  .case-screen-row,
  .case-principles {
    grid-template-columns: 1fr;
  }

  .first-screen-bottom {
    grid-template-rows: auto;
    align-items: start;
    padding-right: clamp(24px, 5vw, 54px);
    padding-left: clamp(24px, 5vw, 54px);
  }

  .first-screen-bottom h2,
  .first-screen-body {
    align-self: start;
  }

  .hero-actions {
    grid-row: auto;
  }

  .case-screen-row-flip figure {
    order: 0;
  }

  .case-principles article {
    min-height: auto;
  }

  .case-principles span {
    margin-bottom: 34px;
  }

  .works-heading {
    position: relative;
    top: auto;
  }

  .service-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 16px;
  }

  .nav {
    display: none;
  }

  .brand-orb {
    width: 64px;
    height: 28px;
  }

  .scene-section {
    min-height: 92svh;
    padding: 86px 18px;
  }

  .case-page .scene-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .first-screen {
    min-height: 100svh;
  }

  .first-screen-bottom {
    min-height: calc(100svh - 74px);
    margin-top: clamp(460px, 78vh, 760px);
    padding-top: 92px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero {
    min-height: 100svh;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 5.7rem);
  }

  h2 {
    font-size: clamp(3.1rem, 15vw, 6.2rem);
  }

  .hero-bottom,
  .case-meta {
    align-items: start;
    flex-direction: column;
  }

  .hero-bottom {
    padding-right: 0;
    padding-left: 0;
  }

  .case-meta ul {
    justify-content: start;
    margin-right: 0;
  }

  .case-index {
    top: auto;
    bottom: 18px;
  }

  .method-card {
    min-height: 260px;
  }

  .method-card span {
    margin-bottom: 70px;
  }

  .orbit-board {
    min-height: 720px;
  }

  .orbit-board li {
    max-width: 140px;
  }

  .large-link {
    width: 100%;
    justify-content: center;
  }

  .first-screen-copy {
    width: 100%;
  }

  .first-screen h1,
  .first-screen-bottom h2,
  .works-heading h2,
  .social-footer h2,
  .services h2,
  .achievements h2,
  .spark h2,
  .case-hero h1,
  .case-section h2,
  .case-screen-row h2 {
    font-size: clamp(3.1rem, 15vw, 5.8rem);
  }

  .first-screen-bottom h2 {
    font-size: clamp(2.65rem, 12vw, 4.65rem);
  }

  .case-hero {
    min-height: auto;
    padding-top: 108px;
  }

  .case-stats {
    grid-template-columns: 1fr;
  }

  .case-process li,
  .case-process-compact li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .case-process span {
    grid-column: 2;
  }

  .case-impact-grid {
    grid-template-columns: 1fr;
  }

  .case-tags li {
    font-size: 0.7rem;
  }

  .first-screen-bottom {
    padding-bottom: 36px;
  }

  .case-stack {
    padding-top: 0;
    padding-bottom: 0;
    gap: 42px;
  }

  .work-card,
  .work-card.vertical,
  .work-card.small {
    width: 100%;
  }

  .spark-media,
  .client-orbit {
    min-height: 520px;
  }

  .achievement-row span {
    font-size: clamp(2rem, 11vw, 4.6rem);
  }

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

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-links a {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 241, 237, 0.22);
  }

  .social-links a:last-child {
    border-bottom: 0;
  }
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

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