@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Portfolio Inter";
  src: url("assets/fonts/Inter-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

:root {
  --black: #050505;
  --ink: #121212;
  --paper: #f3f1eb;
  --muted: #8b8b86;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #f2f2f2;
  --warm: #d7c4a4;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Portfolio Inter", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  color: var(--accent);
  background: var(--black);
}

body.dialog-open {
  overflow: hidden;
}

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

a,
button {
  color: inherit;
}

button {
  font: inherit;
}

.line-icon {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  flex: 0 0 auto;
}

.line-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.7px, transparent 0.8px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 0;
  height: 2px;
  background: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  color: #fff;
  mix-blend-mode: difference;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small,
.top-nav a,
.social-rail a,
.eyebrow {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
}

.top-nav {
  display: flex;
  gap: 28px;
}

.top-nav a {
  text-decoration: none;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.28);
}

.lang-switch button {
  min-width: 34px;
  height: 26px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.lang-switch button.active {
  background: #fff;
  color: #050505;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.social-rail {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 25;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}

.social-rail a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  font-size: 9px;
  background: rgba(10, 10, 10, 0.34);
  backdrop-filter: blur(12px);
  transition: border-color 220ms, color 220ms, transform 220ms, background 220ms;
}

.social-rail a > span:last-child {
  writing-mode: vertical-rl;
  line-height: 1;
}

.social-rail .line-icon {
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.56);
}

.social-rail a:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-2px);
}

.section-dark {
  background: var(--black);
  color: var(--accent);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 54px) 36px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 43vw);
  align-items: end;
  gap: 28px;
}

.hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(255, 255, 255, 0.2) 49%, transparent 62%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  transform: translateX(-80%);
  animation: heroScan 4.8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.hero::before {
  content: "Z";
  position: absolute;
  right: 12vw;
  top: 10svh;
  font-size: clamp(220px, 38vw, 720px);
  font-weight: 900;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  transform: rotate(-12deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  transform: translateY(var(--scroll-shift, 0));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.hero h1,
.gtm h2,
.links h2 {
  margin: 0;
  font-size: clamp(74px, 14vw, 208px);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  position: relative;
  font-family: "Portfolio Inter", "Arial Black", "Microsoft YaHei UI", sans-serif;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.16),
    0 0 64px rgba(215, 196, 164, 0.12);
  animation: titleBreath 11s ease-in-out infinite;
}

.hero h1::before,
.hero h1::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero h1::before {
  inset: -0.025em -0.01em;
  background:
    repeating-linear-gradient(0deg, transparent 0 0.115em, rgba(255, 255, 255, 0.13) 0.118em 0.122em),
    linear-gradient(90deg, rgba(0, 210, 255, 0.12), transparent 22%, transparent 74%, rgba(255, 38, 82, 0.1));
  mix-blend-mode: screen;
  opacity: 0.26;
  transform: translate(0.025em, -0.018em);
  clip-path: inset(0 0 0 0);
  pointer-events: none;
}

.hero h1::after {
  left: -2%;
  right: -2%;
  height: 0.12em;
  top: 46%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), rgba(215, 196, 164, 0.44), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(0.01em);
  animation: titleScan 12s steps(1, end) infinite;
}

.hero h1 span {
  color: var(--warm);
}

.hero-position {
  max-width: min(720px, 92vw);
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.hero-position p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.35vw, 24px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-position span {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.75;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: min(64svh, 680px);
  min-height: 430px;
  overflow: hidden;
  background: #111;
  clip-path: inset(0 round 2px);
  transform: translateY(var(--scroll-shift, 0));
  transition: transform 120ms linear;
  cursor: crosshair;
}

.hero-visual.is-switching {
  animation: heroVisualShake 760ms steps(1, end);
}

.hero-image {
  position: absolute;
  inset: 0;
  transition: opacity 280ms steps(2, end), transform 420ms cubic-bezier(0.76, 0, 0.24, 1), filter 280ms steps(2, end);
  will-change: opacity, transform, filter, clip-path;
}

.hero-image-next {
  opacity: 0;
  transform: translate3d(14px, -5px, 0) scale(1.045);
  filter: contrast(1.28) saturate(1.12) blur(1px);
  clip-path: inset(0 0 86% 0);
}

.hero-visual.is-switching .hero-image-current {
  animation: heroGlitchOut 720ms steps(1, end) both;
}

.hero-visual.is-switching .hero-image-next {
  animation: heroGlitchIn 720ms steps(1, end) both;
}

.hero-glitch-stack {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-visual.is-switching .hero-glitch-stack {
  opacity: 1;
}

.hero-slice {
  position: absolute;
  inset: 0;
  background-image: var(--slice-image);
  background-size: cover;
  background-position: center;
  clip-path: inset(var(--slice-top) 0 var(--slice-bottom) 0);
  opacity: 0;
  filter:
    contrast(1.22)
    saturate(1.08)
    drop-shadow(4px 0 rgba(0, 210, 255, 0.36))
    drop-shadow(-4px 0 rgba(255, 24, 78, 0.28));
  mix-blend-mode: normal;
  transform: translate3d(var(--slice-x), var(--slice-y), 0) scale(1.018);
  animation: heroSliceDrive 760ms var(--slice-delay) steps(1, end) both;
  will-change: transform, opacity, clip-path, filter;
}

.hero-slice::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 6px);
  mix-blend-mode: overlay;
}

.hero-flash {
  position: absolute;
  inset: -4%;
  z-index: 5;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.18) 24%, rgba(255, 38, 62, 0.1) 28%, rgba(0, 195, 255, 0.1) 34%, transparent 44%),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.08) 10px 11px);
  transform: translateX(-82%) skewX(-8deg);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-visual.is-switching .hero-flash {
  opacity: 0.58;
  animation: heroImageSweep 720ms steps(5, end);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255, 52, 52, 0.1), transparent 18%, transparent 78%, rgba(0, 225, 255, 0.1)),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 19px 20px, transparent 21px 34px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-visual.is-switching::before {
  animation: heroGlitchBars 720ms steps(1, end);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 55%),
    radial-gradient(circle at 30% 30%, transparent, rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.hero-frame {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 6;
  width: min(280px, calc(100% - 48px));
}

.hero-frame strong {
  display: block;
  font-size: clamp(112px, 15vw, 240px);
  line-height: 0.72;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-shadow: 18px 18px 0 rgba(215, 196, 164, 0.18);
}

.hero-frame p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 13px;
}

.hero-meta {
  position: absolute;
  left: 36px;
  bottom: 34px;
  display: flex;
  gap: 36px;
  z-index: 3;
}

.hero-meta div {
  display: grid;
  gap: 4px;
  min-width: 92px;
}

.hero-meta .line-icon {
  width: 15px;
  height: 15px;
  margin-bottom: 4px;
  color: rgba(215, 196, 164, 0.62);
}

.hero-meta span {
  font-size: 22px;
  font-weight: 900;
}

.hero-meta small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.intro-strip {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  flex: 0 0 auto;
  margin: 0;
  padding: 24px 48px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(26px, 5vw, 76px);
  line-height: 0.9;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.intro-strip .line-icon {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.34);
}

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

@keyframes heroScan {
  0%,
  18% {
    transform: translateX(-85%);
  }
  55%,
  100% {
    transform: translateX(85%);
  }
}

@keyframes heroImageSweep {
  0% {
    transform: translateX(-82%) skewX(-8deg);
    clip-path: inset(0 0 76% 0);
  }
  18% {
    transform: translateX(-34%) skewX(12deg);
    clip-path: inset(42% 0 30% 0);
  }
  36% {
    transform: translateX(8%) skewX(-16deg);
    clip-path: inset(8% 0 60% 0);
  }
  58% {
    transform: translateX(34%) skewX(8deg);
    clip-path: inset(64% 0 10% 0);
  }
  100% {
    transform: translateX(86%) skewX(-8deg);
    clip-path: inset(0);
  }
}

@keyframes heroVisualShake {
  0%,
  100% {
    transform: translate3d(0, var(--scroll-shift, 0), 0);
  }
  8% {
    transform: translate3d(-4px, calc(var(--scroll-shift, 0) + 2px), 0);
  }
  14% {
    transform: translate3d(5px, calc(var(--scroll-shift, 0) - 2px), 0);
  }
  21% {
    transform: translate3d(-3px, calc(var(--scroll-shift, 0) + 1px), 0);
  }
  34% {
    transform: translate3d(4px, calc(var(--scroll-shift, 0) - 1px), 0);
  }
  48% {
    transform: translate3d(-2px, var(--scroll-shift, 0), 0);
  }
  62% {
    transform: translate3d(2px, calc(var(--scroll-shift, 0) + 1px), 0);
  }
}

@keyframes heroSliceDrive {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--slice-x) * -0.75), var(--slice-y), 0) scale(1.04);
    filter:
      contrast(1.42)
      saturate(1.16)
      hue-rotate(-8deg)
      drop-shadow(6px 0 rgba(0, 210, 255, 0.38))
      drop-shadow(-6px 0 rgba(255, 24, 78, 0.34));
  }
  8% {
    opacity: 0.58;
    transform: translate3d(calc(var(--slice-x) * 0.9), calc(var(--slice-y) * -0.7), 0) scale(1.035);
    clip-path: inset(calc(var(--slice-top) + 2%) 0 calc(var(--slice-bottom) - 1%) 0);
  }
  18% {
    opacity: 0.36;
    transform: translate3d(calc(var(--slice-x) * -0.45), calc(var(--slice-y) * 1.1), 0) scale(1.028);
    filter:
      contrast(1.36)
      saturate(1.12)
      hue-rotate(8deg)
      drop-shadow(7px 0 rgba(0, 210, 255, 0.32))
      drop-shadow(-7px 0 rgba(255, 24, 78, 0.28));
  }
  31% {
    opacity: 0.52;
    transform: translate3d(calc(var(--slice-x) * 0.38), calc(var(--slice-y) * -0.55), 0) scale(1.022);
  }
  48% {
    opacity: 0.42;
    transform: translate3d(calc(var(--slice-x) * -0.48), 0, 0) scale(1.016);
    clip-path: inset(calc(var(--slice-top) - 1%) 0 calc(var(--slice-bottom) + 3%) 0);
  }
  66% {
    opacity: 0.5;
    transform: translate3d(0, 0, 0) scale(1.015);
    filter:
      contrast(1.22)
      saturate(1.08)
      drop-shadow(3px 0 rgba(0, 210, 255, 0.28))
      drop-shadow(-3px 0 rgba(255, 24, 78, 0.24));
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
  }
}

@keyframes heroGlitchIn {
  0% {
    opacity: 0;
    transform: translate3d(18px, -6px, 0) scale(1.055);
    filter: contrast(1.38) saturate(1.12) hue-rotate(-8deg);
    clip-path: inset(0 0 82% 0);
  }
  14% {
    opacity: 0.82;
    transform: translate3d(-12px, 4px, 0) scale(1.04);
    filter: contrast(1.32) saturate(1.1) hue-rotate(7deg);
    clip-path: inset(48% 0 26% 0);
  }
  28% {
    opacity: 0.5;
    transform: translate3d(10px, -1px, 0) scale(1.032);
    filter: contrast(1.42) saturate(1.08);
    clip-path: inset(12% 0 58% 0);
  }
  44% {
    opacity: 1;
    transform: translate3d(-5px, 2px, 0) scale(1.024);
    filter: contrast(1.2) saturate(1.08);
    clip-path: inset(70% 0 8% 0);
  }
  64% {
    opacity: 0.86;
    transform: translate3d(6px, 0, 0) scale(1.02);
    filter: contrast(1.35);
    clip-path: inset(28% 0 42% 0);
  }
  78% {
    opacity: 1;
    transform: translate3d(-2px, 0, 0) scale(1.01);
    filter: contrast(1.15);
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
    clip-path: inset(0);
  }
}

@keyframes heroGlitchOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
    clip-path: inset(0);
  }
  12% {
    opacity: 0.9;
    transform: translate3d(-8px, 2px, 0) scale(1.026);
    filter: contrast(1.32) saturate(1.1) hue-rotate(6deg);
    clip-path: inset(18% 0 54% 0);
  }
  26% {
    opacity: 0.42;
    transform: translate3d(10px, -4px, 0) scale(1.04);
    filter: contrast(1.38) saturate(1.05);
    clip-path: inset(62% 0 14% 0);
  }
  42% {
    opacity: 0.58;
    transform: translate3d(-12px, 3px, 0) scale(1.04);
    filter: contrast(1.24) blur(0.4px);
    clip-path: inset(0 0 76% 0);
  }
  62% {
    opacity: 0.22;
    transform: translate3d(6px, 0, 0) scale(1.055);
    filter: blur(1px) contrast(1.12);
    clip-path: inset(76% 0 0 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1.06);
    filter: blur(2px);
    clip-path: inset(0);
  }
}

@keyframes heroGlitchBars {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0);
    clip-path: inset(0);
  }
  10% {
    opacity: 0.28;
    transform: translateX(-6px);
    clip-path: inset(6% 0 80% 0);
  }
  24% {
    opacity: 0.36;
    transform: translateX(8px);
    clip-path: inset(36% 0 42% 0);
  }
  40% {
    opacity: 0.25;
    transform: translateX(-10px);
    clip-path: inset(72% 0 8% 0);
  }
  58% {
    opacity: 0.34;
    transform: translateX(5px);
    clip-path: inset(18% 0 62% 0);
  }
  72% {
    opacity: 0.18;
    transform: translateX(-3px);
    clip-path: inset(54% 0 24% 0);
  }
}

@keyframes titleBreath {
  0%,
  100% {
    letter-spacing: 0;
    filter: contrast(1);
  }
  50% {
    letter-spacing: 0;
    filter: contrast(1.06) brightness(1.04);
  }
}

@keyframes titleScan {
  0% {
    top: 12%;
    opacity: 0;
    transform: translateX(-18%);
  }
  9% {
    opacity: 0.14;
  }
  13% {
    top: 34%;
    transform: translateX(8%);
  }
  16% {
    opacity: 0;
  }
  46% {
    top: 66%;
    opacity: 0;
    transform: translateX(-10%);
  }
  52% {
    opacity: 0.1;
  }
  58% {
    top: 82%;
    transform: translateX(16%);
  }
  100% {
    opacity: 0;
  }
}

.showreel {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showreel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.025);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showreel.is-playing video {
  transform: scale(1);
}

.showreel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.08) 64%, rgba(0, 0, 0, 0.42)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 44%);
  pointer-events: none;
}

.showreel-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 72px));
  margin: 0 36px 58px;
}

.sound-unlock {
  position: absolute;
  right: 36px;
  bottom: 42px;
  z-index: 2;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms, transform 220ms, border-color 220ms, background 220ms;
  backdrop-filter: blur(12px);
}

.sound-unlock .sound-icon,
.sound-unlock .line-icon {
  width: 16px;
  height: 16px;
}

.sound-unlock:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.showreel.needs-sound .sound-unlock {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.showreel-copy h2 {
  margin: 0;
  font-size: clamp(68px, 13vw, 190px);
  line-height: 0.82;
  font-weight: 900;
}

.showreel-copy p:last-child {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.capabilities,
.workflow {
  padding: 132px 36px;
  border-bottom: 1px solid var(--line);
}

.capabilities {
  border-top: 1px solid var(--line);
}

.capabilities-head,
.workflow-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 54px;
}

.capabilities-head .eyebrow,
.workflow-head .eyebrow {
  margin-bottom: 10px;
}

.capabilities-head h2,
.workflow-head h2 {
  margin: 0;
  font-size: clamp(52px, 10vw, 168px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
}

.capabilities-head p:last-child {
  grid-column: 2;
  max-width: 620px;
  margin: -34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 34px;
}

.capability-card {
  min-height: 238px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 360ms, color 360ms;
}

.card-kicker,
.workflow-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 38px;
}

.card-kicker > span,
.workflow-kicker > span {
  display: block;
  color: rgba(215, 196, 164, 0.48);
  font-size: 12px;
  font-weight: 900;
}

.card-kicker .line-icon,
.workflow-kicker .line-icon {
  color: rgba(255, 255, 255, 0.42);
  transition: color 260ms, transform 260ms;
}

.capability-card h3,
.workflow-item h3 {
  margin: 0 0 18px;
  max-width: 360px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
}

.capability-card p,
.workflow-item p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.capability-card:hover,
.workflow-item:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 196, 164, 0.74);
}

.capability-card:hover h3,
.workflow-item:hover h3,
.workflow-item:hover strong {
  color: #fff;
}

.capability-card:hover .line-icon,
.workflow-item:hover .line-icon {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.workflow {
  padding-top: 104px;
}

.workflow-head {
  margin-bottom: 28px;
}

.workflow-head h2 {
  font-size: clamp(42px, 7.8vw, 128px);
}

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

.workflow-item {
  padding: 22px 24px 28px 0;
  border-right: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 360ms;
}

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

.workflow-kicker {
  margin-bottom: 30px;
}

.workflow-item h3 {
  font-size: clamp(18px, 1.45vw, 25px);
}

.workflow-item strong {
  display: block;
  min-height: 44px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.55;
}

.workflow-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.work-stage {
  position: relative;
  min-height: auto;
  padding: 136px 0 96px;
  scroll-margin-top: var(--header-h);
}

.work-pin {
  position: relative;
  top: auto;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  padding: 24px 0 38px 36px;
}

.project-index {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  padding: 126px 36px;
  border-bottom: 1px solid var(--line);
}

.sticky-title {
  position: sticky;
  top: 118px;
  align-self: start;
}

.sticky-title h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 112px);
  line-height: 0.94;
  font-weight: 900;
}

.index-preview {
  width: min(380px, 70%);
  aspect-ratio: 4 / 3;
  margin-top: 34px;
  overflow: hidden;
  background: #111;
  opacity: 0.78;
  transform: translateY(16px);
}

.index-preview img {
  transform: scale(1.06);
  transition: opacity 260ms, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.index-preview.is-switching img {
  opacity: 0.28;
  transform: scale(1.12);
}

.index-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.index-row {
  min-height: 98px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1.2fr) minmax(180px, 0.8fr) 96px;
  gap: 18px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.index-row span,
.index-row b,
.index-row em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.index-row strong {
  font-size: clamp(19px, 2.2vw, 34px);
  line-height: 1.1;
  font-weight: 900;
}

.index-row:hover strong {
  color: var(--warm);
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 920px);
  gap: 36px;
  padding-right: 36px;
  margin-bottom: 12px;
}

.section-heading h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(34px, 6.4vw, 104px);
  line-height: 0.95;
  font-weight: 900;
}

.work-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding-right: 36px;
}

.work-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.work-progress span {
  display: block;
  width: var(--work-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--warm), #fff);
  transition: width 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-current {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.work-current b {
  font-size: 46px;
  line-height: 0.9;
  font-weight: 900;
  color: var(--warm);
}

.work-current p {
  margin: 0;
  max-width: 220px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-viewport {
  position: relative;
  overflow: hidden;
  padding: 6px 0 0;
}

.work-viewport::before,
.work-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12vw;
  z-index: 2;
  pointer-events: none;
}

.work-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.work-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0));
}

.work-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 34vw);
  gap: 22px;
  min-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 34vw 22px 0;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(215, 196, 164, 0.7) rgba(255, 255, 255, 0.12);
  touch-action: pan-x;
}

.work-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.work-track::-webkit-scrollbar {
  height: 3px;
}

.work-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.work-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--warm), #fff);
}

.feature-card {
  position: relative;
  height: clamp(460px, 58vh, 660px);
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.08), transparent 54%),
    #070707;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  transform: translate3d(0, calc((18px * var(--card-depth, 0)) + var(--active-y, 0px)), 0) scale(var(--active-scale, 1));
  opacity: 0;
  transform-origin: center bottom;
  filter: saturate(calc(1 - 0.2 * var(--card-depth, 0))) brightness(calc(1 - 0.08 * var(--card-depth, 0)));
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 420ms;
  scroll-snap-align: start;
}

.feature-card.is-visible {
  opacity: 1;
}

.feature-card.tall {
  height: clamp(460px, 58vh, 660px);
  margin-top: 0;
}

.feature-card.is-active {
  z-index: 3;
  --active-y: -8px;
  --active-scale: 1.012;
  filter: saturate(1.06) brightness(1.03);
  box-shadow: inset 0 0 0 1px rgba(215, 196, 164, 0.24), 0 18px 60px rgba(0, 0, 0, 0.44);
}

.feature-card.is-active img {
  transform: scale(1.035);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.9)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  pointer-events: none;
}

.feature-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.12), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    #080808;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms;
}

.feature-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.feature-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.feature-card span,
.project-tile span {
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 3.6vw, 58px);
  line-height: 0.92;
  letter-spacing: 0;
}

.feature-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.gtm {
  min-height: 100svh;
  padding: 96px 36px 128px;
}

.gtm-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.gtm-title .eyebrow {
  grid-column: 1 / -1;
  color: rgba(0, 0, 0, 0.45);
}

.gtm-title h2 {
  color: #b7b7b2;
}

.gtm-title p:last-child {
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.8;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-bar button {
  min-height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.filter-bar button.active {
  background: var(--ink);
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-tile {
  position: relative;
  border: 0;
  padding: 0;
  background: #ddd;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transform: translateY(28px);
  opacity: 0;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  aspect-ratio: 16 / 10;
  min-height: 0;
  isolation: isolate;
}

.project-tile.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  opacity: 0.84;
}

.project-tile span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
}

.project-tile img,
.project-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-tile:hover img,
.project-tile:hover video {
  transform: scale(1.03);
}

.project-tile.is-hidden {
  display: none;
}

.project-grid.is-filtering .project-tile:not(.is-hidden) {
  animation: gridFilterIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes gridFilterIn {
  from {
    opacity: 0.42;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-block {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

[data-reveal].index-row {
  opacity: 0.22;
  transform: translateX(34px);
  transition: opacity 600ms, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].index-row.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.profile {
  display: grid;
  grid-template-columns: minmax(560px, 0.92fr) minmax(460px, 1fr);
  gap: clamp(40px, 4vw, 88px);
  align-items: center;
  padding: 136px 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.profile > * {
  min-width: 0;
}

.profile h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 118px);
  line-height: 0.88;
  white-space: nowrap;
  overflow-wrap: normal;
}

.avatar-lockup {
  width: min(260px, 62vw);
  margin: 34px 0 0;
  padding: 0;
}

.avatar-lockup img {
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.avatar-lockup figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-copy .profile-lead {
  max-width: 660px;
  margin: 0 0 22px;
  font-size: clamp(24px, 2.15vw, 38px);
  line-height: 1.3;
  font-weight: 850;
  text-wrap: balance;
}

.profile-copy .profile-note {
  max-width: 620px;
  margin: 0 0 46px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(14px, 1.08vw, 18px);
  line-height: 1.85;
  font-weight: 650;
}

.profile dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.profile dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.brand-experience {
  padding: 112px 36px;
  border-bottom: 1px solid var(--line);
}

.brand-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 44px;
}

.brand-head .eyebrow {
  margin-bottom: 8px;
}

.brand-head h2 {
  margin: 0;
  font-size: clamp(42px, 7.6vw, 132px);
  line-height: 0.86;
  font-weight: 900;
}

.brand-head p:last-child {
  grid-column: 2;
  max-width: 660px;
  margin: -24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.78;
}

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

.brand-token {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px 0 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(16px, 1.6vw, 28px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    color 240ms,
    border-color 240ms;
}

.brand-token:nth-child(4n) {
  border-right: 0;
}

.brand-token.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-token .line-icon {
  width: 15px;
  height: 15px;
  color: rgba(215, 196, 164, 0.42);
}

.brand-token:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(215, 196, 164, 0.46);
}

.links {
  min-height: 90svh;
  padding: 118px 36px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 540px);
  gap: 54px;
  align-items: end;
}

.links h2 {
  font-size: clamp(58px, 11vw, 170px);
}

.link-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.link-list span {
  font-weight: 850;
}

.link-list b {
  font-size: 11px;
}

.project-dialog {
  width: min(1380px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  border: 0;
  padding: 0;
  background: #080808;
  color: #fff;
  overflow: hidden;
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(16px);
  animation: dialogBackdropIn 260ms ease both;
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.62fr);
  animation: dialogPanelIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes dialogPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dialogBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dialog-media {
  height: min(86vh, 860px);
  min-height: 620px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 52%),
    #030303;
  overflow: hidden;
}

.case-viewer {
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto 96px;
  background: #030303;
}

.case-stage {
  min-height: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #050505;
  background-size: 42px 42px;
  overflow: hidden;
  position: relative;
}

.case-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, transparent 34%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.5));
}

.case-stage img,
.case-stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
  padding: 28px;
  transform-origin: center;
}

.case-stage.is-entering img,
.case-stage.is-entering video {
  animation: caseReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.case-controls {
  display: grid;
  grid-template-columns: 86px 1fr 68px 86px;
  gap: 12px;
  align-items: center;
  padding: 12px 18px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.72);
}

.case-controls button {
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.case-controls button.active {
  background: rgba(215, 196, 164, 0.16);
  border-color: var(--warm);
}

.case-progress {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.case-progress b {
  position: absolute;
  right: 0;
  top: -24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
}

.case-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--warm);
  transition: width 260ms ease;
}

.case-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 116px;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 18px 18px;
  background: rgba(0, 0, 0, 0.72);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(215, 196, 164, 0.7) rgba(255, 255, 255, 0.12);
}

.case-strip::-webkit-scrollbar {
  height: 3px;
}

.case-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.case-strip::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--warm), #fff);
}

.case-thumb {
  position: relative;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  background: #151515;
  opacity: 0.54;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  scroll-snap-align: start;
}

.case-thumb.active,
.case-thumb:hover {
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--warm);
}

.case-thumb img,
.case-thumb video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.case-thumb span {
  position: absolute;
  left: 8px;
  bottom: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 900;
  text-shadow: 0 1px 8px #000;
}

@keyframes caseReveal {
  from {
    opacity: 0;
    transform: scale(0.965) translateY(14px);
    filter: blur(8px) saturate(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: none;
  }
}

.dialog-copy {
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  max-height: min(86vh, 860px);
  overflow-y: auto;
}

.dialog-copy h3 {
  max-width: 520px;
  margin: 0 0 20px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1;
}

.dialog-text {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.76;
  font-size: 14px;
}

.dialog-facts {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.dialog-facts li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.dialog-facts span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-facts b {
  font-size: 13px;
  line-height: 1.55;
}

.dialog-link {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 14px 18px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero h1,
  .hero h1::after,
  .hero-scan,
  .intro-strip p,
  .hero-visual.is-switching,
  .hero-visual.is-switching::before,
  .hero-visual.is-switching .hero-image-current,
  .hero-visual.is-switching .hero-image-next {
    animation: none !important;
  }

  .hero-glitch-stack,
  .hero-flash {
    display: none !important;
  }

  .hero-visual,
  .showreel video,
  .feature-card,
  .brand-token {
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .capability-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .brand-token:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .brand-token:nth-child(2n) {
    border-right: 0;
  }

  .workflow-item:nth-child(2n) {
    border-right: 0;
  }

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

  .profile h2 {
    font-size: clamp(54px, 12vw, 118px);
    max-width: none;
  }

  .profile-copy .profile-lead,
  .profile-copy .profile-note {
    max-width: 900px;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 18px;
  }

  .top-nav {
    position: fixed;
    inset: var(--header-h) 14px auto 14px;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px;
    background: rgba(0, 0, 0, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    mix-blend-mode: normal;
  }

  .top-nav.is-open {
    display: grid;
  }

  .menu-button {
    display: flex;
  }

  .header-actions {
    gap: 10px;
  }

  .lang-switch {
    mix-blend-mode: normal;
  }

  .social-rail {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 108px 18px 24px;
  }

  .hero-copy {
    align-self: auto;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 104px);
  }

  .hero h1::after {
    display: none;
  }

  .hero-visual {
    min-height: 360px;
    height: 54svh;
  }

  .hero-meta {
    position: relative;
    left: auto;
    bottom: auto;
    grid-row: 3;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-position {
    margin-top: 20px;
  }

  .capabilities,
  .workflow,
  .brand-experience {
    padding-top: 86px;
    padding-bottom: 88px;
  }

  .capabilities-head,
  .workflow-head,
  .brand-head {
    gap: 14px;
    margin-bottom: 34px;
  }

  .capabilities-head p:last-child,
  .brand-head p:last-child {
    grid-column: 1;
    margin: 0;
  }

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

  .capability-card {
    min-height: auto;
  }

  .card-kicker,
  .workflow-kicker {
    margin-bottom: 22px;
  }

  .workflow-grid {
    border-top: 0;
  }

  .workflow-item,
  .workflow-item:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .intro-strip p {
    padding: 18px 26px;
  }

  .work-stage,
  .capabilities,
  .workflow,
  .brand-experience,
  .gtm,
  .profile,
  .links {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading,
  .capabilities-head,
  .workflow-head,
  .brand-head,
  .gtm-title,
  .project-index,
  .profile,
  .brand-experience,
  .links {
    grid-template-columns: 1fr;
  }

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

  .index-preview {
    width: 100%;
    max-width: 420px;
  }

  .index-row {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 116px;
    align-items: start;
    padding: 18px 0;
  }

  .index-row em,
  .index-row b {
    grid-column: 2;
  }

  .work-stage {
    min-height: auto;
    padding-top: 88px;
  }

  .work-pin {
    position: relative;
    top: auto;
    height: auto;
    padding: 0 18px 40px;
  }

  .work-meta {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .work-current {
    justify-items: start;
    text-align: left;
  }

  .work-viewport::before,
  .work-viewport::after {
    display: none;
  }

  .work-track {
    grid-auto-columns: 82vw;
    overflow-x: auto;
    padding-right: 18px;
    scroll-snap-type: x mandatory;
  }

  .work-track::-webkit-scrollbar {
    height: 2px;
  }

  .work-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
  }

  .feature-card,
  .feature-card.tall {
    height: 470px;
    margin-top: 0;
    scroll-snap-align: start;
    transform: none;
    filter: none;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .project-tile {
    aspect-ratio: 4 / 5;
  }

  .profile-copy .profile-lead {
    font-size: 28px;
  }

  .profile-copy .profile-note {
    font-size: 15px;
  }

  .profile dl {
    grid-template-columns: 1fr;
  }

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

  .brand-token {
    min-height: 74px;
    padding-right: 12px;
  }

  .project-dialog[open] {
    grid-template-columns: 1fr;
  }

  .dialog-media {
    min-height: 320px;
    height: 58vh;
    max-height: none;
  }

  .case-viewer {
    grid-template-rows: minmax(0, 1fr) auto 96px;
  }

  .case-strip {
    grid-auto-columns: 112px;
  }

  .dialog-copy {
    padding: 28px;
  }

  .showreel-copy {
    width: auto;
    margin: 0 18px 42px;
  }

  .sound-unlock {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 62px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-frame strong {
    font-size: 32px;
  }

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

  .hero-meta small {
    font-size: 9px;
  }

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

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

  .brand-token,
  .brand-token:nth-child(2n),
  .brand-token:nth-child(4n) {
    border-right: 0;
  }

  .project-tile.wide {
    grid-row: span 1;
  }

  .links h2 {
    font-size: 56px;
  }

  .profile h2 {
    font-size: clamp(36px, 10.4vw, 48px);
    line-height: 0.96;
  }
}
