:root {
  --bg: #050505;
  --paper: #f4f1e8;
  --ink: #f7f4ed;
  --muted: #a9a49a;
  --line: rgba(247, 244, 237, 0.16);
  --lime: #c8ff00;
  --red: #ff4932;
  --blue: #3ea7ff;
  --gold: #d7ff00;
  --hero-accent: #d7ff00;
  --hero-accent-soft: #efff5a;
  --panel: #11110f;
  --radius: 6px;
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --body-font: "Helvetica Neue", Arial, sans-serif;
  --display-font: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --serif-font: Georgia, "Times New Roman", serif;
  --motion-drift-x: 0px;
  --motion-drift-y: 0px;
  --grid-drift-x: 0px;
  --grid-drift-y: 0px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--body-font);
  letter-spacing: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-position:
    var(--grid-drift-x) var(--grid-drift-y),
    var(--grid-drift-x) var(--grid-drift-y),
    0 0;
  background-size: 64px 64px;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 2;
}

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

video {
  background: #111;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 12px;
  color: #050505;
  background: var(--lime);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

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

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: #050505;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 52%),
    var(--hero-accent);
  transition: transform 900ms var(--ease), opacity 600ms var(--ease);
}

.loading-screen.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.loader-mark {
  width: 92px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 2px solid #050505;
  border-radius: var(--radius);
  font-family: var(--display-font);
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.loader-line {
  width: min(280px, 70vw);
  height: 6px;
  border: 1px solid #050505;
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: #050505;
  transform-origin: left;
  animation: loadbar 1100ms var(--ease) infinite alternate;
}

.loading-screen p {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
}

@keyframes loadbar {
  from { transform: scaleX(0.1); }
  to { transform: scaleX(1); }
}

@keyframes railSweep {
  from { transform: translate3d(-18%, 0, 0) rotate(-12deg); }
  to { transform: translate3d(18%, 0, 0) rotate(-12deg); }
}

@keyframes scanDrift {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

@keyframes metricPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(200, 255, 0, 0); }
  50% { text-shadow: 0 0 24px rgba(200, 255, 0, 0.36); }
}

@keyframes monitorScan {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 0 0, 0 84px; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hero-accent), var(--lime), var(--blue));
  box-shadow: 0 0 22px rgba(200, 255, 0, 0.28);
  overflow: hidden;
}

.scroll-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: translateX(-100%);
  animation: progressGlint 1600ms linear infinite;
}

@keyframes progressGlint {
  to { transform: translateX(100vw); }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 998;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  display: none;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 255, 0, 0.8);
  border-radius: 50%;
  transition: width 180ms var(--ease), height 180ms var(--ease), border-color 180ms var(--ease);
}

.motion-backdrop {
  position: fixed;
  inset: -18%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.08;
  mix-blend-mode: normal;
  transform: translate3d(var(--motion-drift-x), var(--motion-drift-y), 0);
}

.motion-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 43%, rgba(215, 255, 0, 0.08) 44%, transparent 45% 56%, rgba(247, 244, 237, 0.05) 57%, transparent 58%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(247, 244, 237, 0.045) 119px, transparent 120px);
  transform: translate3d(var(--motion-drift-x), var(--motion-drift-y), 0);
}

.motion-backdrop span {
  position: absolute;
  left: -18vw;
  width: 46vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 255, 0, 0.26), rgba(247, 244, 237, 0.12), transparent);
  transform: rotate(-12deg);
  animation: railSweep 8s linear infinite alternate;
}

.motion-backdrop span:nth-child(1) {
  top: 20%;
}

.motion-backdrop span:nth-child(2) {
  top: 52%;
  left: 42vw;
  animation-duration: 10s;
  animation-delay: -3s;
}

.motion-backdrop span:nth-child(3) {
  top: 76%;
  left: 18vw;
  animation-duration: 12s;
  animation-delay: -7s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.34);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 240ms var(--ease), border-color 240ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.78);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 900;
}

.brand-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #050505;
  background: var(--ink);
  border-radius: var(--radius);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.header-role {
  margin: 0;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  justify-self: center;
}

.header-links,
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-links {
  justify-self: end;
}

.header-actions {
  justify-self: end;
}

.header-links a,
.menu-socials a,
.contact-socials a,
.site-footer a {
  position: relative;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.header-links a::after,
.menu-socials a::after,
.contact-socials a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.header-links a:hover::after,
.menu-socials a:hover::after,
.contact-socials a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.icon-link,
.menu-toggle,
.dialog-close {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.icon-link:hover,
.menu-toggle:hover,
.dialog-close:hover {
  color: #050505;
  background: var(--lime);
  border-color: var(--lime);
}

.menu-toggle {
  position: relative;
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 2px;
  background: currentColor;
  transition: transform 240ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1fr);
  gap: 6vw;
  padding: calc(var(--header-h) + 36px) 42px 42px;
  background: rgba(17, 18, 14, 0.98);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 650ms var(--ease), visibility 650ms var(--ease);
}

.menu-panel.is-open {
  transform: translateY(0);
  visibility: visible;
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    radial-gradient(circle at 40% 35%, rgba(200, 255, 0, 0.1), transparent 32%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 68px);
  pointer-events: none;
}

.menu-media,
.menu-content {
  position: relative;
  z-index: 1;
}

.menu-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.menu-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 550ms var(--ease), opacity 550ms var(--ease), filter 240ms var(--ease);
}

.menu-panel.is-open .menu-media img {
  transform: translateY(0);
  opacity: 1;
}

.menu-media img:hover {
  filter: grayscale(0) contrast(1.02);
}

.menu-content {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
}

.menu-content > a {
  font-size: 4.6rem;
  line-height: 0.92;
  text-transform: uppercase;
  font-weight: 950;
  color: var(--ink);
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.menu-content > a:hover {
  color: var(--lime);
  transform: translateX(10px);
}

.menu-socials {
  display: flex;
  gap: 18px;
  margin-top: 36px;
}

.section-pad {
  padding-left: 6vw;
  padding-right: 6vw;
}

.hero-section {
  min-height: 86svh;
  padding-top: calc(var(--header-h) + 42px);
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 6vw;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(215, 255, 0, 0.12), transparent 40%),
    linear-gradient(180deg, transparent 55%, rgba(62, 167, 255, 0.08));
}

.hero-cover {
  min-height: 92svh;
  grid-template-columns: minmax(320px, 0.94fr) minmax(320px, 0.64fr);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-cover::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 34%, rgba(5, 5, 5, 0.5) 64%, rgba(5, 5, 5, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.22) 46%, rgba(5, 5, 5, 0.96) 100%);
}

.hero-cover::after {
  z-index: 2;
  opacity: 0.3;
  background:
    linear-gradient(rgba(247, 244, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
  pointer-events: none;
}

.hero-plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translate3d(calc(var(--hero-x, 0) * -10px), calc(var(--hero-y, 0) * -8px), 0) scale(1.045);
  filter: saturate(0.92) contrast(1.08);
  transition: opacity 520ms var(--ease), transform 900ms var(--ease), filter 520ms var(--ease);
}

.hero-plate.is-active {
  opacity: 1;
  filter: saturate(1.06) contrast(1.03);
}

.hero-cover .hero-copy,
.hero-cover .hero-proof {
  position: relative;
  z-index: 3;
}

.hero-cover .hero-copy {
  align-self: end;
  max-width: 720px;
  padding-bottom: 3.6vh;
}

.hero-cover .hero-kicker {
  max-width: 680px;
  font-size: 1.68rem;
  line-height: 1.12;
}

.hero-cover .hero-intro {
  max-width: 620px;
}

.hero-cover .hero-stage {
  min-height: 0;
}

.hero-proof {
  align-self: end;
  display: grid;
  gap: 10px;
  width: min(420px, 100%);
  margin-left: auto;
  padding-bottom: 3.6vh;
}

.hero-proof-card {
  position: relative;
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: 104px 34px minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 8px 10px 8px 8px;
  color: var(--ink);
  text-align: left;
  background: rgba(5, 5, 5, 0.58);
  border: 1px solid rgba(247, 244, 237, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  cursor: pointer;
  overflow: hidden;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}

.hero-proof-card::after {
  content: "";
  position: absolute;
  left: 122px;
  right: 10px;
  bottom: 8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease);
}

.hero-proof-card:hover,
.hero-proof-card:focus-visible {
  transform: translateX(-8px);
  border-color: rgba(247, 244, 237, 0.52);
}

.hero-proof-card.is-active {
  color: #050505;
  background: rgba(247, 244, 237, 0.92);
  border-color: rgba(247, 244, 237, 0.95);
}

.hero-proof-card.is-active::after {
  transform: scaleX(1);
}

.hero-proof-card img {
  grid-row: 1 / 3;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.92) contrast(1.06);
  transition: transform 420ms var(--ease), filter 220ms var(--ease);
}

.hero-proof-card:hover img,
.hero-proof-card:focus-visible img,
.hero-proof-card.is-active img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.02);
}

.hero-proof-card span,
.hero-proof-card strong,
.hero-proof-card em,
.hero-live-note span,
.hero-live-note strong {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 950;
}

.hero-proof-card span {
  grid-row: 1 / 3;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  line-height: 1;
}

.hero-proof-card.is-active span {
  color: #050505;
}

.hero-proof-card strong,
.hero-proof-card em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-proof-card strong {
  align-self: end;
  font-size: 0.86rem;
}

.hero-proof-card em {
  align-self: start;
  color: var(--muted);
  font-size: 0.68rem;
}

.hero-proof-card.is-active em {
  color: rgba(5, 5, 5, 0.68);
}

.hero-live-note {
  display: grid;
  gap: 7px;
  margin-top: 8px;
  padding: 14px 0 0 18px;
  border-top: 1px solid rgba(247, 244, 237, 0.24);
  border-left: 1px solid rgba(247, 244, 237, 0.24);
}

.hero-live-note span {
  color: var(--lime);
  font-size: 0.7rem;
}

.hero-live-note strong {
  max-width: 340px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.02;
}

.hero-motion {
  min-height: 92svh;
  grid-template-columns: minmax(320px, 0.74fr) minmax(520px, 1fr);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-motion::before {
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(200, 255, 0, 0.12), transparent 34%),
    linear-gradient(290deg, rgba(62, 167, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(215, 255, 0, 0.09), transparent 54%);
}

.hero-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.62) 48%, rgba(5, 5, 5, 0.88) 100%),
    radial-gradient(circle at 72% 34%, rgba(200, 255, 0, 0.1), transparent 30%);
}

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

.hero-motion .hero-kicker {
  max-width: 640px;
  font-size: 2rem;
  line-height: 1.06;
}

.hero-motion .hero-intro {
  max-width: 640px;
}

.hero-motion-stage {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.38fr);
  grid-template-rows: 1fr auto;
  gap: 14px;
}

.hero-monitor,
.hero-cue,
.hero-system-readout {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(247, 244, 237, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.hero-monitor {
  grid-row: 1 / 3;
  min-height: 560px;
  isolation: isolate;
}

.hero-monitor::before,
.hero-monitor::after,
.hero-cue::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-monitor::before {
  opacity: 0.28;
  background:
    linear-gradient(rgba(247, 244, 237, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: screen;
}

.hero-monitor::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, transparent 44%, rgba(5, 5, 5, 0.86) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.44), transparent 60%),
    repeating-linear-gradient(180deg, transparent 0 14px, rgba(247, 244, 237, 0.08) 15px, transparent 16px);
  animation: monitorScan 3200ms linear infinite;
}

.hero-monitor-video,
.hero-cue-video,
.project-preview {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  background: #090909;
}

.hero-monitor-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.01);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.hero-monitor:hover .hero-monitor-video {
  transform: scale(1.055);
  filter: saturate(1.18) contrast(1.08);
}

.hero-monitor-top,
.hero-monitor-caption {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-transform: uppercase;
  font-weight: 950;
}

.hero-monitor-top {
  top: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247, 244, 237, 0.24);
}

.hero-monitor-top span,
.hero-monitor-caption span,
.hero-cue span,
.hero-cue em,
.hero-system-readout span,
.video-slate span {
  color: var(--lime);
  font-size: 0.68rem;
  font-style: normal;
}

.hero-monitor-top strong {
  font-size: 0.74rem;
}

.hero-monitor-caption {
  bottom: 16px;
  align-items: end;
}

.hero-monitor-caption strong {
  max-width: 360px;
  font-size: 1.35rem;
  line-height: 0.98;
  text-align: right;
}

.hero-cue-stack {
  display: grid;
  gap: 14px;
}

.hero-cue {
  min-height: 194px;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 14px;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 950;
  isolation: isolate;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.hero-cue::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.82)),
    linear-gradient(135deg, color-mix(in srgb, var(--cue) 24%, transparent), transparent 54%);
}

.hero-cue:hover,
.hero-cue:focus-visible {
  transform: translateX(-8px);
  border-color: color-mix(in srgb, var(--cue) 70%, var(--ink));
}

.hero-cue-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.66;
  filter: saturate(0.92) contrast(1.08);
  transition: opacity 180ms var(--ease), filter 180ms var(--ease), transform 520ms var(--ease);
}

.hero-cue:hover .hero-cue-video,
.hero-cue:focus-visible .hero-cue-video {
  opacity: 0.9;
  filter: saturate(1.1) contrast(1.03);
  transform: scale(1.04);
}

.hero-cue span,
.hero-cue strong,
.hero-cue em {
  position: relative;
  z-index: 2;
}

.hero-cue strong {
  font-size: 1rem;
}

.hero-system-readout {
  grid-column: 2;
  display: grid;
  gap: 0;
  align-self: stretch;
}

.hero-system-readout span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(247, 244, 237, 0.12);
  color: var(--muted);
}

.hero-system-readout span:first-child {
  color: var(--lime);
}

.hero-cinema {
  min-height: 92svh;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.56fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  align-content: center;
  column-gap: clamp(34px, 6.4vw, 104px);
  row-gap: clamp(22px, 3vw, 36px);
  padding-top: calc(var(--header-h) + 34px);
  padding-bottom: 34px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.9) 86%, #050505 100%),
    linear-gradient(90deg, rgba(215, 255, 0, 0.28) 0 2px, transparent 2px calc(100% - 2px), rgba(247, 244, 237, 0.12) calc(100% - 2px)),
    repeating-linear-gradient(90deg, rgba(247, 244, 237, 0.035) 0 1px, transparent 1px 108px),
    repeating-linear-gradient(180deg, rgba(247, 244, 237, 0.025) 0 1px, transparent 1px 108px),
    #050505;
}

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

.hero-cinema::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), transparent 42%, rgba(5, 5, 5, 0.86) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.44) 50%, rgba(5, 5, 5, 0.84) 100%);
}

.hero-cinema::after {
  z-index: 2;
  opacity: 0.72;
  background:
    linear-gradient(90deg, transparent 0 61%, rgba(215, 255, 0, 0.18) 61.08% 61.2%, transparent 61.3%),
    linear-gradient(180deg, transparent 0 74%, rgba(247, 244, 237, 0.11) 74.06% 74.16%, transparent 74.26%);
}

.hero-cinema-copy,
.hero-workbench-stage,
.hero-capability-strip,
.hero-side-label {
  position: relative;
  z-index: 4;
}

.hero-cinema-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 830px;
}

.hero-cinema .eyebrow {
  color: var(--hero-accent);
}

.hero-cinema .hero-kicker {
  max-width: 850px;
  margin: 0;
  font-family: var(--body-font);
  font-size: clamp(3.2rem, 6.2vw, 7.7rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: none;
  color: var(--ink);
  text-wrap: balance;
}

.hero-cinema .hero-kicker span {
  display: block;
  color: var(--hero-accent);
}

.hero-cinema .hero-intro {
  max-width: 690px;
  color: rgba(247, 244, 237, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.62;
}

.hero-cinema .button.primary {
  color: #050505;
  background: var(--hero-accent);
  border-color: var(--hero-accent);
}

.hero-cinema .button.secondary {
  color: var(--ink);
  background: rgba(5, 5, 5, 0.4);
  border-color: rgba(247, 244, 237, 0.24);
}

.hero-workbench-stage {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: min(500px, 100%);
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 244, 237, 0.055), rgba(247, 244, 237, 0.02)),
    rgba(5, 5, 5, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.hero-workbench-stage:hover .stage-preview img,
.hero-workbench-stage:focus-within .stage-preview img {
  opacity: 0.92;
  transform: scale(1.035);
}

.stage-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  padding: 0 2px;
}

.stage-topbar span,
.stage-topbar strong,
.stage-output,
.stage-layer span,
.stage-layer strong,
.stage-layer em,
.hero-capability-strip span {
  text-transform: uppercase;
  font-weight: 950;
}

.stage-topbar span,
.stage-layer span,
.hero-capability-strip strong {
  color: var(--hero-accent);
  font-size: 0.68rem;
}

.stage-topbar strong {
  color: var(--ink);
  font-size: 0.74rem;
}

.stage-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.15);
  border-radius: calc(var(--radius) - 1px);
  background: #080808;
}

.stage-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transform: scale(1.01);
  transition: opacity 220ms var(--ease), transform 700ms var(--ease);
}

.stage-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.68)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.5), transparent 48%);
  pointer-events: none;
}

.stage-reticle {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(215, 255, 0, 0.72);
  border-radius: calc(var(--radius) - 2px);
  opacity: 0.72;
}

.stage-output {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 7px 9px;
  color: #050505;
  background: var(--hero-accent);
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.66rem;
}

.stage-layers {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.13);
  border-radius: calc(var(--radius) - 1px);
  background: rgba(247, 244, 237, 0.08);
}

.stage-layer {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 12px;
  padding: 11px;
  background: rgba(5, 5, 5, 0.74);
}

.stage-layer span {
  grid-row: 1 / 3;
}

.stage-layer strong {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.1;
}

.stage-layer em {
  color: rgba(247, 244, 237, 0.54);
  font-size: 0.64rem;
  font-style: normal;
  line-height: 1.15;
}

.stage-layer.is-active {
  background: rgba(215, 255, 0, 0.12);
}

.stage-timeline {
  position: relative;
  min-height: 54px;
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 0.52fr;
  gap: 6px;
  padding: 16px 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.13);
  border-radius: calc(var(--radius) - 1px);
  background:
    repeating-linear-gradient(90deg, rgba(247, 244, 237, 0.08) 0 1px, transparent 1px 42px),
    rgba(5, 5, 5, 0.66);
}

.stage-timeline span {
  height: 10px;
  border-radius: 999px;
  background: rgba(247, 244, 237, 0.22);
}

.stage-timeline span:nth-child(2) {
  background: rgba(215, 255, 0, 0.82);
}

.stage-timeline i {
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--hero-accent);
  box-shadow: 0 0 18px rgba(215, 255, 0, 0.55);
  animation: timelineScan 7s linear infinite;
}

@keyframes timelineScan {
  0% {
    left: 10px;
  }

  100% {
    left: calc(100% - 10px);
  }
}

.hero-capability-strip {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(247, 244, 237, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(247, 244, 237, 0.1);
}

.hero-capability-strip span {
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: rgba(247, 244, 237, 0.76);
  background: rgba(5, 5, 5, 0.72);
  font-size: 0.72rem;
  line-height: 1.2;
}

.hero-capability-strip strong {
  flex: 0 0 auto;
}

.hero-system-board {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  width: min(440px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(247, 244, 237, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 255, 0, 0.18), transparent 34%),
    linear-gradient(rgba(247, 244, 237, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.045) 1px, transparent 1px),
    rgba(5, 5, 5, 0.54);
  background-size: auto, 54px 54px, 54px 54px, auto;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

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

.hero-system-board::before {
  inset: 14%;
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: 50%;
}

.hero-system-board::after {
  left: 50%;
  top: 50%;
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 255, 0, 0.78), transparent);
  transform: translate(-50%, -50%) rotate(-24deg);
}

.system-node,
.system-core {
  position: absolute;
  display: grid;
  gap: 4px;
  text-transform: uppercase;
  font-weight: 950;
}

.system-node {
  width: min(172px, 42%);
  padding: 12px;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(247, 244, 237, 0.18);
  border-radius: var(--radius);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.system-node:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 255, 0, 0.84);
  background: rgba(215, 255, 0, 0.14);
}

.system-node span,
.system-node em,
.system-core span {
  color: var(--hero-accent);
  font-size: 0.68rem;
  font-style: normal;
}

.system-node strong {
  font-size: 0.9rem;
  line-height: 0.98;
}

.system-node em {
  color: rgba(247, 244, 237, 0.58);
  line-height: 1.25;
}

.system-core {
  left: 50%;
  top: 50%;
  place-items: center;
  width: 136px;
  height: 136px;
  padding: 16px;
  text-align: center;
  color: #050505;
  background: var(--hero-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(215, 255, 0, 0.12), 0 28px 60px rgba(0, 0, 0, 0.34);
}

.system-core span {
  color: #050505;
  font-family: var(--display-font);
  font-size: 2.35rem;
  line-height: 0.82;
}

.system-core strong {
  max-width: 94px;
  font-size: 0.7rem;
  line-height: 1.05;
}

.system-node-language {
  left: 7%;
  top: 8%;
}

.system-node-screens {
  right: 7%;
  top: 16%;
}

.system-node-pipeline {
  left: 8%;
  bottom: 13%;
}

.system-node-dimension {
  right: 8%;
  bottom: 8%;
}

.hero-title {
  grid-column: 1 / -1;
  grid-row: 3;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  color: var(--hero-accent);
  font-family: var(--display-font);
  font-size: clamp(4rem, 10.4vw, 10rem);
  line-height: 0.96;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  text-shadow: 0 0 42px rgba(215, 255, 0, 0.12);
}

@media (min-width: 1500px) {
  .hero-title {
    font-size: clamp(9rem, 9.6vw, 11rem);
  }
}

@media (max-width: 1240px) and (min-width: 1081px) {
  .hero-title {
    font-size: 8.2rem;
  }
}

.hero-title span {
  color: inherit;
  font-family: inherit;
}

.hero-side-label {
  position: absolute;
  top: 50%;
  margin: 0;
  color: rgba(247, 244, 237, 0.62);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 950;
  writing-mode: vertical-rl;
}

.hero-side-left {
  left: 2.8vw;
  transform: translateY(-50%) rotate(180deg);
}

.hero-side-right {
  right: 2.8vw;
  transform: translateY(-50%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 950;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.reel-heading h2,
.contact-inner h2,
.dialog-copy h2 {
  margin: 0;
  font-family: var(--display-font);
  text-transform: uppercase;
  font-weight: 950;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: 6.8rem;
}

.hero-copy h1 span,
.section-heading h2 span {
  display: block;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.hero-kicker {
  margin: 26px 0 0;
  max-width: 560px;
  font-size: 1.55rem;
  line-height: 1.16;
  font-weight: 900;
}

.hero-intro {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.project-open,
.contact-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.button::after,
.project-open::after,
.contact-link::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.42) 48%, transparent 68% 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 520ms var(--ease);
}

.button.primary,
.contact-link {
  color: #050505;
  background: var(--lime);
  border-color: var(--lime);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.button:hover,
.project-open:hover,
.contact-link:hover {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after,
.project-open:hover::after,
.project-open:focus-visible::after,
.contact-link:hover::after,
.contact-link:focus-visible::after {
  transform: translateX(120%);
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 540px;
}

.hero-reel-field {
  min-height: 540px;
  overflow: hidden;
  isolation: isolate;
}

.hero-reel-field::before,
.hero-reel-field::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-reel-field::before {
  z-index: 0;
  background:
    linear-gradient(rgba(247, 244, 237, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 88%, transparent);
}

.hero-reel-field::after {
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), transparent 32%, transparent 70%, rgba(5, 5, 5, 0.46)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), transparent 38%, rgba(5, 5, 5, 0.88));
}

.reel-ribbon {
  position: absolute;
  z-index: 1;
  left: -12%;
  right: -12%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 28%);
  gap: 12px;
  will-change: transform;
}

.reel-ribbon figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(247, 244, 237, 0.18);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
}

.reel-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.94) contrast(1.08);
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.reel-ribbon figure:hover img {
  transform: scale(1.1);
  filter: saturate(1.14) contrast(1.03);
}

.reel-ribbon figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  max-width: calc(100% - 16px);
  padding: 6px 8px;
  color: #050505;
  background: var(--lime);
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ribbon-one {
  top: 52px;
  transform: rotate(-7deg);
  animation: ribbonDriftOne 18s linear infinite alternate;
}

.ribbon-two {
  top: 204px;
  transform: rotate(5deg);
  animation: ribbonDriftTwo 20s linear infinite alternate;
}

.ribbon-three {
  top: 358px;
  transform: rotate(-3deg);
  animation: ribbonDriftThree 22s linear infinite alternate;
}

.hero-reel-field:hover .reel-ribbon {
  animation-play-state: paused;
}

.reel-signal {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 42px;
  width: min(300px, 44%);
  padding: 14px 0 0 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reel-signal span,
.reel-signal strong {
  display: block;
  text-transform: uppercase;
  font-weight: 950;
}

.reel-signal span {
  color: var(--lime);
  font-size: 0.72rem;
}

.reel-signal strong {
  margin-top: 7px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 0.96;
}

.reel-scrub {
  position: absolute;
  left: 0;
  bottom: 42px;
  z-index: 5;
  display: grid;
  gap: 8px;
  width: min(260px, 38%);
}

.reel-scrub span {
  height: 7px;
  border: 1px solid rgba(247, 244, 237, 0.22);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime) 0 48%, rgba(247, 244, 237, 0.12) 48% 100%);
}

.reel-scrub span:nth-child(2) {
  width: 72%;
  background: linear-gradient(90deg, var(--hero-accent) 0 64%, rgba(247, 244, 237, 0.12) 64% 100%);
}

.reel-scrub span:nth-child(3) {
  width: 52%;
  background: linear-gradient(90deg, var(--blue) 0 38%, rgba(247, 244, 237, 0.12) 38% 100%);
}

@keyframes ribbonDriftOne {
  from { transform: translate3d(-3%, 0, 0) rotate(-7deg); }
  to { transform: translate3d(5%, -10px, 0) rotate(-7deg); }
}

@keyframes ribbonDriftTwo {
  from { transform: translate3d(4%, 0, 0) rotate(5deg); }
  to { transform: translate3d(-6%, 12px, 0) rotate(5deg); }
}

@keyframes ribbonDriftThree {
  from { transform: translate3d(-5%, 0, 0) rotate(-3deg); }
  to { transform: translate3d(4%, 8px, 0) rotate(-3deg); }
}

.hero-spotlight {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  isolation: isolate;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.5);
}

.hero-spotlight::before,
.hero-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-spotlight::before {
  opacity: 0.22;
  background:
    linear-gradient(rgba(247, 244, 237, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mix-blend-mode: screen;
}

.hero-spotlight::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72), transparent 54%),
    linear-gradient(180deg, transparent 45%, rgba(5, 5, 5, 0.84));
}

.spotlight-slide {
  z-index: 1;
  overflow: hidden;
}

.spotlight-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.05);
  transition: transform 1200ms var(--ease), filter 520ms var(--ease);
}

.spotlight-slide.is-active img {
  transform: scale(1);
  filter: saturate(1.08) contrast(1.03);
}

.spotlight-caption {
  position: absolute;
  left: 22px;
  right: 282px;
  bottom: 28px;
  z-index: 4;
  max-width: 320px;
}

.spotlight-caption span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 9px;
  color: #050505;
  background: var(--slide-accent, var(--lime));
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 950;
}

.spotlight-caption h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 3.1rem;
  line-height: 0.92;
  font-weight: 950;
}

.spotlight-caption p {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(247, 244, 237, 0.78);
  line-height: 1.45;
}

.spotlight-index {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  width: 230px;
  display: grid;
  align-content: end;
  gap: 8px;
}

.spotlight-index button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: baseline;
  min-height: 78px;
  padding: 12px;
  color: var(--ink);
  text-align: left;
  background: rgba(5, 5, 5, 0.52);
  border: 1px solid rgba(247, 244, 237, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.spotlight-index button:hover,
.spotlight-index button.is-active {
  color: #050505;
  background: var(--lime);
  border-color: var(--lime);
  transform: translateX(-4px);
}

.spotlight-index span,
.spotlight-index strong,
.spotlight-index em {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 950;
}

.spotlight-index span {
  grid-row: span 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.spotlight-index strong {
  font-size: 0.8rem;
}

.spotlight-index em {
  color: var(--muted);
  font-size: 0.68rem;
}

.spotlight-index button:hover em,
.spotlight-index button.is-active em {
  color: rgba(5, 5, 5, 0.72);
}

.hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}

.motion-board {
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(247, 244, 237, 0.11), rgba(247, 244, 237, 0.025)),
    #0b0b09;
  isolation: isolate;
}

.motion-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(247, 244, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  transform: scale(1.035) translateX(26px);
  pointer-events: none;
  transition: opacity 520ms var(--ease), transform 720ms var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

.motion-board-slide {
  z-index: 1;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 10px;
  padding: 12px;
}

.board-topline,
.board-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 950;
}

.board-topline span {
  color: #050505;
  background: var(--slide-accent, var(--lime));
  border-radius: var(--radius);
  padding: 7px 9px;
}

.board-topline strong,
.board-meta span:last-child {
  color: rgba(247, 244, 237, 0.74);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-layout {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.62fr);
  gap: 10px;
}

.board-hero-image,
.board-stack figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.18);
  border-radius: var(--radius);
  background: #111;
}

.board-hero-image img,
.board-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 760ms var(--ease), filter 360ms var(--ease);
}

.hero-slide.is-active .board-hero-image img {
  transform: scale(1.055);
}

.board-hero-image:hover img,
.board-stack figure:hover img {
  transform: scale(1.09);
  filter: saturate(1.1) contrast(1.04);
}

.board-hero-image figcaption,
.board-stack figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 9px;
  color: #050505;
  background: var(--slide-accent, var(--lime));
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-stack {
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.board-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 0.58fr;
  gap: 8px;
}

.board-timeline span {
  position: relative;
  height: 7px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.2);
  border-radius: 999px;
  background: rgba(247, 244, 237, 0.08);
}

.board-timeline span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: var(--slide-accent, var(--lime));
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slide.is-active .board-timeline span::after {
  animation: timelineFill 900ms var(--ease) forwards;
  animation-delay: var(--d);
}

.board-meta {
  color: var(--ink);
}

@keyframes timelineFill {
  to { transform: scaleX(1); }
}

.slide-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
}

.slide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 54%),
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms var(--ease), filter 520ms var(--ease);
}

.hero-slide.is-active .slide-visual img {
  transform: scale(1.07);
}

.split-slide {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  padding: 10px;
}

.split-slide img {
  min-width: 0;
  border-radius: var(--radius);
}

.split-slide img:last-child {
  transform: translateY(12%) scale(1.02);
}

.red-slide {
  background: #8f1115;
}

.slide-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  max-width: 520px;
}

.slide-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 9px;
  color: #050505;
  background: var(--slide-accent, var(--lime));
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 950;
}

.slide-copy h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 4.2rem;
  line-height: 0.9;
  font-weight: 950;
}

.slide-copy p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(247, 244, 237, 0.78);
  line-height: 1.45;
}

.hero-controls {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.hero-arrow,
.hero-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 950;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.hero-arrow:hover,
.hero-tabs button:hover,
.hero-tabs button.is-active {
  color: #050505;
  background: var(--lime);
  border-color: var(--lime);
}

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

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}

.hero-frame .compare {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-base,
.compare-top {
  position: absolute;
  inset: 0;
}

.compare-top {
  width: var(--reveal);
  overflow: hidden;
  border-right: 2px solid var(--lime);
}

.compare-top img {
  width: calc(100% / (var(--reveal-num, 0.52)));
  max-width: none;
  filter: grayscale(1);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-handle {
  position: absolute;
  left: var(--reveal);
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.52);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.compare-handle span,
.compare-handle::before,
.compare-handle::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.compare-handle::before {
  transform: translateX(-9px) rotate(-45deg);
}

.compare-handle::after {
  transform: translateX(9px) rotate(135deg);
}

.compare-handle span {
  width: 2px;
  height: 22px;
  border: 0;
  background: var(--ink);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.signal-strip div {
  position: relative;
  padding: 18px 6vw;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.signal-strip div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.62), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease);
}

.signal-strip.is-counted div::after {
  transform: scaleX(1);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  display: block;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.signal-strip.is-counted strong[data-count-to] {
  animation: metricPulse 900ms var(--ease) 1;
}

.signal-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: #050505;
  background: var(--paper);
}

.ticker-track {
  width: max-content;
  display: flex;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 14px 22px;
  text-transform: uppercase;
  font-size: 1.35rem;
  font-weight: 950;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.work-section {
  padding-top: 92px;
  padding-bottom: 96px;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2,
.reel-heading h2,
.contact-inner h2,
.dialog-copy h2 {
  font-size: 4.4rem;
}

.section-heading p:not(.eyebrow),
.about-copy p:not(.eyebrow),
.contact-inner p:not(.eyebrow),
.dialog-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

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

.project-card {
  position: relative;
  --spot-x: 50%;
  --spot-y: 50%;
  min-height: 540px;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  gap: 14px;
  padding: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform-style: preserve-3d;
  transition: border-color 240ms var(--ease), background 240ms var(--ease), transform 240ms var(--ease);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 35%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92));
  pointer-events: none;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), color-mix(in srgb, var(--accent) 34%, transparent), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 16%, transparent), transparent 42%);
  transition: opacity 220ms var(--ease);
}

.project-card:hover {
  border-color: color-mix(in srgb, var(--accent), white 8%);
  background: color-mix(in srgb, var(--accent), #050505 90%);
}

.project-card:hover::after,
.project-card:focus-within::after {
  opacity: 0.84;
}

.project-card.tall-card {
  grid-row: span 2;
}

.project-media {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.project-media::before,
.project-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms var(--ease), transform 300ms var(--ease);
}

.project-media::before {
  left: 10px;
  top: 10px;
  border-left: 1px solid var(--accent);
  border-top: 1px solid var(--accent);
  transform: translate(-8px, -8px);
}

.project-media::after {
  right: 10px;
  bottom: 10px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: translate(8px, 8px);
}

.project-card:hover .project-media::before,
.project-card:hover .project-media::after,
.project-card:focus-within .project-media::before,
.project-card:focus-within .project-media::after {
  opacity: 1;
  transform: translate(0, 0);
}

.project-media img,
.project-media video {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 650ms var(--ease), filter 650ms var(--ease);
}

.project-media video {
  position: absolute;
  inset: 0;
  max-width: none;
  opacity: 0.72;
  filter: saturate(0.92) contrast(1.08);
}

.project-card:hover .project-media img,
.project-card:hover .project-media video,
.project-card:focus-within .project-media video {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.04);
}

.video-slate {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 14px;
  color: var(--ink);
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 5, 5, 0.86) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 74%), transparent 60%);
  pointer-events: none;
}

.video-slate strong {
  max-width: 240px;
  text-transform: uppercase;
  font-size: 1.34rem;
  line-height: 0.94;
}

.project-hover {
  position: absolute;
  inset: 12px;
  z-index: 2;
  display: grid;
  align-content: space-between;
  padding: 12px;
  color: #050505;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent), white 14%), rgba(255, 255, 255, 0.1)),
    var(--accent);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 220ms var(--ease), transform 260ms var(--ease);
  pointer-events: none;
}

.project-card:hover .project-hover,
.project-card:focus-within .project-hover {
  opacity: 0.94;
  transform: translateY(0) scale(1);
}

.project-hover span,
.project-hover strong {
  text-transform: uppercase;
  font-weight: 950;
}

.project-hover span {
  justify-self: start;
  padding: 7px 9px;
  border: 1px solid rgba(5, 5, 5, 0.26);
  border-radius: var(--radius);
  font-size: 0.72rem;
}

.project-hover strong {
  max-width: 220px;
  font-size: 1.75rem;
  line-height: 0.94;
}

.project-meta,
.project-card h3,
.project-card p,
.project-open {
  position: relative;
  z-index: 3;
}

.project-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.project-card h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.72rem;
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: normal;
}

.project-card p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.project-open {
  justify-self: start;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.project-open:hover {
  color: #050505;
  background: var(--accent);
  border-color: var(--accent);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  padding-top: 92px;
  padding-bottom: 92px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(200, 255, 0, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.025);
}

.about-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 36px);
}

.capability-grid {
  display: grid;
  gap: 12px;
}

.capability {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.54);
}

.capability span {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 900;
}

.capability h3 {
  margin: 18px 0 10px;
  text-transform: uppercase;
  font-size: 1.45rem;
}

.capability p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.reel-section {
  padding-top: 78px;
  padding-bottom: 86px;
  overflow: hidden;
}

.reel-heading {
  padding-bottom: 24px;
}

.reel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 42vw);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding: 0 6vw 18px;
}

.reel-track::-webkit-scrollbar {
  height: 8px;
}

.reel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.reel-track::-webkit-scrollbar-thumb {
  background: var(--lime);
}

.reel-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--panel);
}

.reel-frame img,
.reel-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.reel-frame video {
  background: #090909;
}

.reel-frame:hover img,
.reel-frame:hover video {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.05);
}

.reel-frame figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 9px;
  color: #050505;
  background: var(--lime);
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 950;
}

.contact-section {
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
  color: #050505;
  background:
    linear-gradient(135deg, rgba(215, 255, 0, 0.92), rgba(200, 255, 0, 0.78)),
    var(--hero-accent);
}

.contact-inner h2 {
  max-width: 1050px;
}

.contact-inner .eyebrow {
  color: #050505;
}

.contact-inner p:not(.eyebrow) {
  color: rgba(5, 5, 5, 0.72);
}

.contact-link {
  margin-top: 28px;
  color: var(--ink);
  background: #050505;
  border-color: #050505;
  font-size: 1.1rem;
}

.contact-socials {
  display: flex;
  gap: 20px;
  margin-top: 22px;
  color: #050505;
}

.contact-socials a::after {
  background: #050505;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

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

.project-dialog {
  width: min(1240px, calc(100vw - 36px));
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(215, 255, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #0a0908, #050505 72%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 220ms var(--ease), transform 260ms var(--ease);
}

.project-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: auto;
  padding: 0 14px;
}

.dialog-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(420px, 1.32fr);
  gap: 22px;
  padding: 66px 28px 28px;
  transform: translateY(14px);
  transition: transform 320ms var(--ease);
}

.dialog-grid::before {
  content: "CASE STUDY";
  position: absolute;
  top: 42px;
  left: 24px;
  z-index: 0;
  color: rgba(247, 244, 237, 0.045);
  font-family: var(--display-font);
  font-size: 7rem;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.project-dialog[open] .dialog-grid {
  transform: translateY(0);
}

.dialog-copy {
  position: sticky;
  z-index: 1;
  top: 0;
  align-self: start;
  padding-top: 0;
}

.dialog-copy h2 {
  font-size: 3.5rem;
}

.dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.dialog-tags span {
  padding: 8px 10px;
  color: #050505;
  background: var(--lime);
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 950;
}

.dialog-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.dialog-facts div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.dialog-facts span,
.dialog-sections h3,
.dialog-live,
.dialog-media-item figcaption {
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 950;
}

.dialog-facts span {
  color: var(--lime);
}

.dialog-facts strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.dialog-sections {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dialog-sections article {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.dialog-sections h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.dialog-sections p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.dialog-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 14px;
  color: #050505;
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: var(--radius);
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.dialog-live:hover {
  transform: translateY(-2px);
}

.dialog-media {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.dialog-media-loading {
  display: grid;
  gap: 12px;
}

.dialog-media-loading span {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent, rgba(247, 244, 237, 0.08), transparent),
    rgba(255, 255, 255, 0.04);
  background-size: 220% 100%;
  animation: skeletonSweep 1100ms linear infinite;
}

.dialog-media-item {
  display: grid;
  gap: 8px;
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: mediaRise 520ms var(--ease) forwards;
}

.dialog-media-item:nth-child(2) {
  animation-delay: 70ms;
}

.dialog-media-item:nth-child(3) {
  animation-delay: 120ms;
}

.dialog-media-item:nth-child(n + 4) {
  animation-delay: 170ms;
}

.dialog-media-item img,
.dialog-media-item video {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #111;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.dialog-media-item video {
  aspect-ratio: 16 / 9;
}

.dialog-media-item figcaption {
  color: var(--muted);
}

.dialog-video-trigger {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(215, 255, 0, 0.11), rgba(62, 167, 255, 0.06)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.dialog-video-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.58)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.34), transparent 54%);
  pointer-events: none;
}

.dialog-video-trigger:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  background:
    linear-gradient(135deg, rgba(200, 255, 0, 0.18), rgba(62, 167, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.dialog-video-trigger .dialog-video-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  opacity: 0.72;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.01);
  transition: transform 520ms var(--ease), opacity 180ms var(--ease), filter 180ms var(--ease);
}

.dialog-video-trigger:hover .dialog-video-poster {
  opacity: 0.86;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.06);
}

.dialog-video-trigger strong {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 950;
}

.video-play-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.12);
}

.video-play-icon::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 15px solid var(--lime);
}

@keyframes skeletonSweep {
  from { background-position: 100% 0; }
  to { background-position: -120% 0; }
}

@keyframes mediaRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  clip-path: inset(10% 0 0 0);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease),
    filter 720ms var(--ease),
    clip-path 720ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0);
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-role {
    display: none;
  }

  .header-links {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

  .hero-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-cinema {
    height: auto;
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    align-items: start;
    row-gap: 22px;
    padding-top: calc(var(--header-h) + 34px);
  }

  .hero-cinema-copy,
  .hero-workbench-stage,
  .hero-capability-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1;
    grid-row: auto;
  }

  .hero-cinema-copy {
    max-width: 760px;
  }

  .hero-cinema .hero-kicker {
    font-size: clamp(3.4rem, 9vw, 5.4rem);
  }

  .hero-workbench-stage {
    justify-self: start;
    width: min(720px, 100%);
  }

  .hero-capability-strip {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-side-label {
    display: none;
  }

  .hero-cover {
    min-height: auto;
    align-items: start;
  }

  .hero-cover::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 54%, rgba(5, 5, 5, 0.55) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.36) 48%, rgba(5, 5, 5, 0.98) 100%);
  }

  .hero-cover .hero-copy {
    padding-bottom: 0;
  }

  .hero-motion {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-motion-stage {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-monitor {
    grid-row: auto;
    min-height: 460px;
  }

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

  .hero-system-readout {
    grid-column: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-system-readout span {
    min-height: 46px;
    border-right: 1px solid rgba(247, 244, 237, 0.12);
  }

  .hero-proof {
    width: 100%;
    margin-left: 0;
    padding-bottom: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof-card {
    min-height: 86px;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .hero-proof-card::after {
    left: 8px;
  }

  .hero-proof-card span {
    grid-row: 2;
    color: currentColor;
    font-size: 0.78rem;
  }

  .hero-proof-card img {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .hero-proof-card strong,
  .hero-proof-card em {
    grid-column: 2;
  }

  .hero-live-note {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .hero-copy h1 {
    font-size: 5rem;
  }

  .hero-stage,
  .hero-spotlight,
  .hero-reel-field {
    min-height: 500px;
  }

  .reel-ribbon {
    grid-auto-columns: 238px;
  }

  .ribbon-one {
    top: 38px;
  }

  .ribbon-two {
    top: 192px;
  }

  .ribbon-three {
    top: 338px;
  }

  .reel-signal strong {
    font-size: 1.2rem;
  }

  .spotlight-caption {
    right: 220px;
    max-width: 310px;
  }

  .spotlight-caption h2 {
    font-size: 2.55rem;
  }

  .spotlight-index {
    width: 200px;
  }

  .section-heading h2,
  .about-copy h2,
  .reel-heading h2,
  .contact-inner h2,
  .dialog-copy h2 {
    font-size: 3.5rem;
  }

  .slide-copy h2 {
    font-size: 3.4rem;
  }

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

  .about-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  .motion-backdrop {
    display: none;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-actions .icon-link {
    display: none;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: calc(var(--header-h) + 24px) 18px 24px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .menu-media {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .menu-content > a {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .menu-socials {
    flex-wrap: wrap;
  }

  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-h) + 26px);
    padding-bottom: 26px;
    gap: 26px;
  }

  .hero-cinema {
    min-height: auto;
    gap: 18px;
    padding-top: calc(var(--header-h) + 22px);
    padding-bottom: 42px;
  }

  .hero-cinema::before {
    background-size: auto, auto, 48px 48px, 48px 48px;
  }

  .hero-cinema::after {
    display: none;
  }

  .hero-cinema-copy {
    padding-top: 0;
  }

  .hero-cinema .hero-kicker {
    font-size: clamp(2.5rem, 11.5vw, 3.35rem);
    line-height: 0.96;
  }

  .hero-cinema .hero-intro {
    max-width: 340px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-workbench-stage {
    width: 100%;
    gap: 8px;
    padding: 8px;
  }

  .stage-topbar {
    min-height: 28px;
  }

  .stage-topbar strong {
    display: none;
  }

  .stage-preview {
    aspect-ratio: 16 / 9;
  }

  .stage-reticle {
    inset: 10px;
  }

  .stage-output {
    left: 10px;
    bottom: 10px;
    font-size: 0.58rem;
  }

  .stage-layer {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 2px 9px;
    padding: 9px;
  }

  .stage-layer strong {
    font-size: 0.7rem;
  }

  .stage-layer em {
    font-size: 0.57rem;
  }

  .stage-timeline {
    min-height: 42px;
    padding: 13px 8px 9px;
  }

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

  .hero-capability-strip span {
    min-height: 40px;
  }

  .system-core {
    width: 96px;
    height: 96px;
    padding: 12px;
  }

  .system-core span {
    font-size: 1.7rem;
  }

  .system-core strong {
    font-size: 0.58rem;
  }

  .system-node {
    width: 42%;
    padding: 8px;
  }

  .system-node strong {
    font-size: 0.72rem;
  }

  .system-node em {
    display: none;
  }

  .hero-cover {
    min-height: 86svh;
  }

  .hero-cover::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 64%, rgba(5, 5, 5, 0.64) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.48) 45%, rgba(5, 5, 5, 0.98) 100%);
  }

  .hero-cover::after {
    background-size: 48px 48px;
  }

  .hero-cover .hero-kicker {
    font-size: 1.2rem;
  }

  .hero-cover .hero-intro {
    line-height: 1.5;
  }

  .hero-motion {
    min-height: 86svh;
  }

  .hero-motion .hero-kicker {
    font-size: 1.34rem;
    line-height: 1.12;
  }

  .hero-motion-stage {
    gap: 10px;
  }

  .hero-monitor {
    min-height: 250px;
  }

  .hero-monitor-top,
  .hero-monitor-caption {
    left: 10px;
    right: 10px;
  }

  .hero-monitor-top {
    top: 10px;
  }

  .hero-monitor-top span {
    display: none;
  }

  .hero-monitor-caption {
    bottom: 10px;
    display: grid;
    justify-items: start;
  }

  .hero-monitor-caption strong {
    max-width: 260px;
    font-size: 1rem;
    text-align: left;
  }

  .hero-cue-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-cue {
    min-height: 116px;
    padding: 10px;
  }

  .hero-cue strong {
    font-size: 0.78rem;
  }

  .hero-cue em {
    font-size: 0.58rem;
  }

  .hero-system-readout {
    display: none;
  }

  .hero-plate {
    object-position: 60% center;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-proof-card {
    min-height: 70px;
    grid-template-columns: 76px 26px minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
  }

  .hero-proof-card img {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .hero-proof-card span {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 1rem;
  }

  .hero-proof-card strong,
  .hero-proof-card em {
    grid-column: 3;
  }

  .hero-proof-card::after {
    left: 110px;
  }

  .hero-proof-card strong {
    font-size: 0.8rem;
  }

  .hero-proof-card em {
    font-size: 0.64rem;
  }

  .hero-live-note {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3.05rem;
  }

  .hero-kicker {
    font-size: 1.25rem;
  }

  .hero-stage {
    min-height: 430px;
    padding-bottom: 0;
  }

  .hero-motion .hero-intro {
    display: none;
  }

  .hero-motion .hero-ctas {
    margin-top: 18px;
  }

  .hero-motion-stage {
    min-height: 318px;
  }

  .hero-motion-stage .hero-monitor {
    min-height: 206px;
  }

  .hero-motion-stage .hero-cue {
    min-height: 92px;
  }

  .hero-reel-field {
    min-height: 430px;
  }

  .hero-reel-field::before {
    background-size: 42px 42px;
  }

  .reel-ribbon {
    left: -34%;
    right: -34%;
    grid-auto-columns: 184px;
    gap: 8px;
  }

  .reel-ribbon figure {
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
  }

  .reel-ribbon figcaption {
    left: 6px;
    bottom: 6px;
    max-width: calc(100% - 12px);
    padding: 5px 6px;
    font-size: 0.56rem;
  }

  .ribbon-one {
    top: 28px;
  }

  .ribbon-two {
    top: 154px;
  }

  .ribbon-three {
    top: 278px;
  }

  .reel-signal {
    right: 0;
    bottom: 16px;
    width: 62%;
    padding: 11px 0 0 12px;
  }

  .reel-signal span {
    font-size: 0.62rem;
  }

  .reel-signal strong {
    font-size: 0.98rem;
  }

  .reel-scrub {
    bottom: 20px;
    width: 34%;
    gap: 6px;
  }

  .reel-scrub span {
    height: 6px;
  }

  .hero-spotlight {
    min-height: 540px;
  }

  .spotlight-caption {
    left: 14px;
    right: 14px;
    bottom: 104px;
    max-width: none;
  }

  .spotlight-caption h2 {
    font-size: 2rem;
  }

  .spotlight-caption p {
    max-width: 310px;
    font-size: 0.88rem;
  }

  .spotlight-index {
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 10px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .spotlight-index button {
    min-height: 72px;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
  }

  .spotlight-index button:hover,
  .spotlight-index button.is-active {
    transform: translateY(-3px);
  }

  .spotlight-index span {
    grid-row: auto;
    font-size: 1.1rem;
  }

  .spotlight-index strong {
    font-size: 0.7rem;
  }

  .spotlight-index em {
    display: none;
  }

  .spotlight-slide img {
    object-position: center;
  }

  .slide-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .slide-copy h2 {
    font-size: 2.15rem;
  }

  .slide-copy p {
    font-size: 0.88rem;
  }

  .split-slide {
    grid-template-columns: 1fr;
  }

  .split-slide img:last-child {
    display: none;
  }

  .hero-controls {
    grid-template-columns: 36px 1fr 36px;
    gap: 7px;
  }

  .hero-arrow,
  .hero-tabs button {
    min-height: 38px;
    font-size: 0.62rem;
  }

  .hero-tabs {
    gap: 6px;
  }

  .hero-tabs button {
    padding: 0 4px;
  }

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

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .signal-strip div {
    padding: 16px 18px;
  }

  .ticker span {
    font-size: 1.05rem;
  }

  .section-heading h2,
  .about-copy h2,
  .reel-heading h2,
  .contact-inner h2,
  .dialog-copy h2 {
    font-size: 2.45rem;
  }

.work-section,
  .about-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .project-card,
  .project-card.tall-card {
    min-height: 470px;
    grid-row: auto;
  }

  .project-card p {
    min-height: 0;
  }

  .reel-track {
    grid-auto-columns: minmax(280px, 86vw);
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-link {
    width: 100%;
    font-size: 0.95rem;
  }

  .contact-socials {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer span:last-child {
    text-align: left;
  }

  .dialog-grid {
    grid-template-columns: 1fr;
    padding: 66px 18px 18px;
  }

  .dialog-grid::before {
    display: none;
  }

  .dialog-copy {
    position: static;
    padding-top: 0;
  }

  .dialog-facts {
    grid-template-columns: 1fr;
  }

  .dialog-media-item img,
  .dialog-media-item video {
    max-height: 72svh;
  }

  .dialog-media-loading span,
  .dialog-video-trigger {
    min-height: 190px;
  }
}

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

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

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .motion-backdrop {
    display: none;
  }
}
