@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #05080d;
  --bg-soft: #0b1017;
  --panel: rgba(13, 18, 25, 0.88);
  --panel-strong: rgba(10, 14, 20, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f6fa;
  --text-soft: rgba(243, 246, 250, 0.74);
  --text-dim: rgba(243, 246, 250, 0.42);
  --accent: #6ef0aa;
  --accent-soft: rgba(110, 240, 170, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-width: 1380px;
  --page-padding: clamp(18px, 2vw, 32px);
  --hero-radius: 24px;
  --hero-border: rgba(255, 255, 255, 0.08);
  --topbar-height: 74px;
  --motion-duration: 760ms;
  --motion-duration-soft: 560ms;
  --motion-distance: 24px;
  --hero-corner-size: 3.4rem;
}

* {
  box-sizing: border-box;
}

html {
  /* Native wheel/touch scroll must never queue behind scripted motion. */
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(92, 118, 150, 0.14), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(110, 240, 170, 0.08), transparent 22%),
    linear-gradient(180deg, #070b10 0%, #05080d 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  opacity: 0.12;
  pointer-events: none;
}

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

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

button,
a.button {
  font: inherit;
}

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  touch-action: auto;
}

.progress-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 90;
  width: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.progress-rail__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), rgba(110, 240, 170, 0.2));
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 260ms ease,
    transform 260ms var(--ease),
    width 260ms var(--ease),
    height 260ms var(--ease),
    margin 260ms var(--ease);
}

.cursor-orb.is-visible {
  opacity: 1;
}

.cursor-orb.is-active {
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  background: rgba(110, 240, 170, 0.1);
  border-color: rgba(110, 240, 170, 0.26);
}

.motion-debug-badge {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 160;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 10, 15, 0.82);
  color: rgba(243, 246, 250, 0.92);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.motion-debug-badge[data-state="active"] {
  border-color: rgba(110, 240, 170, 0.34);
  color: rgba(110, 240, 170, 0.96);
}

.motion-debug-badge[data-state="reduced"] {
  border-color: rgba(255, 180, 110, 0.34);
  color: rgba(255, 196, 142, 0.96);
}

.motion-debug-badge[data-state="forced"] {
  border-color: rgba(110, 240, 170, 0.34);
  color: rgba(110, 240, 170, 0.96);
}

.topbar {
  position: absolute;
  top: var(--page-padding);
  left: var(--page-padding);
  right: var(--page-padding);
  z-index: 60;
  padding-top: 0;
  background: transparent;
  border-bottom: 0;
}

.topbar__inner,
.section-head,
.films-shell,
.studio-notes,
.capabilities,
.contact-stage,
.footer__inner {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
}

.topbar__inner {
  width: 100%;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  border: 1px solid var(--hero-border);
  border-bottom: 0;
  border-radius: var(--hero-radius) var(--hero-radius) 0 0;
  background: rgba(5, 8, 13, 0.9);
  backdrop-filter: blur(16px) saturate(140%);
  transition:
    border-color 320ms var(--ease),
    background 320ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 320ms var(--ease);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand span {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}

.brand strong,
.brand small {
  font: inherit;
}

.brand small {
  color: var(--text-dim);
}

.nav {
  display: flex;
  gap: 3rem;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  transition:
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

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

.nav a:hover {
  color: rgba(243, 246, 250, 0.96);
  transform: translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
  transition:
    border-color 240ms var(--ease),
    background 240ms var(--ease),
    transform 240ms var(--ease);
}

.mobile-nav-toggle span {
  width: 1.15rem;
  height: 1px;
  background: rgba(243, 246, 250, 0.92);
  transition:
    transform 240ms var(--ease),
    opacity 240ms var(--ease);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  color: var(--text-dim);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
}

.section-head h2,
.studio-notes h2,
.contact-stage h2,
.dialog-project__intro h3,
.film-lead__copy h3 {
  font-family: "Sora", sans-serif;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease),
    background 260ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.button--solid {
  background: linear-gradient(180deg, rgba(24, 36, 48, 0.98), rgba(18, 28, 38, 0.98));
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.hero-reel,
.manifesto,
.capability-stage,
.films-section,
.studio-notes,
.capabilities,
.contact-stage,
.footer {
  position: relative;
  z-index: 2;
}

.hero-reel {
  width: auto;
  min-height: calc(100svh - (var(--page-padding) * 2));
  display: grid;
  align-items: stretch;
  margin: calc(var(--page-padding) + var(--topbar-height)) var(--page-padding) var(--page-padding);
  overflow: clip;
  isolation: isolate;
  background: #070b10;
  border: 1px solid var(--hero-border);
  border-top: 0;
  border-radius: 0 0 var(--hero-radius) var(--hero-radius);
}

.hero-reel__media,
.hero-reel__scrim,
.hero-reel__grain,
.hero-reel__frame,
.hero-reel__content,
.hero-reel__footer,
.hero-reel__hud {
  position: absolute;
  inset: 0;
}

.hero-reel__media {
  overflow: hidden;
  transform: scale(1) translate3d(0, 0, 0);
  transition: transform 600ms var(--ease);
  pointer-events: none;
  touch-action: pan-y;
}

.hero-reel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.98) contrast(1.04) brightness(0.74);
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1000ms var(--ease),
    filter 800ms var(--ease),
    transform 600ms var(--ease);
  pointer-events: none;
}

.hero-reel.is-ready .hero-reel__video {
  opacity: 1;
  animation:
    heroVideoSettle 1600ms var(--ease) both,
    heroVideoDrift 18s ease-in-out 1800ms infinite alternate;
}

.hero-reel.is-switching .hero-reel__video {
  opacity: 0.82;
}

.hero-reel__scrim {
  background:
    linear-gradient(90deg, rgba(4, 7, 11, 0.92) 0%, rgba(4, 7, 11, 0.72) 22%, rgba(4, 7, 11, 0.24) 56%, rgba(4, 7, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 7, 11, 0.14) 0%, rgba(4, 7, 11, 0.08) 28%, rgba(4, 7, 11, 0.18) 72%, rgba(4, 7, 11, 0.8) 100%);
  z-index: 1;
}

.hero-reel__grain {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015)),
    radial-gradient(rgba(255, 255, 255, 0.04) 0.55px, transparent 0.55px);
  background-size: 100% 100%, 14px 14px;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}

.hero-reel__frame {
  z-index: 3;
  pointer-events: none;
}

.hero-reel__corner {
  position: absolute;
  width: var(--hero-corner-size);
  height: var(--hero-corner-size);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-reel__corner--tl {
  top: 1.1rem;
  left: 1.1rem;
  border-top: 1px solid;
  border-left: 1px solid;
}

.hero-reel__corner--tr {
  top: 1.1rem;
  right: 1.1rem;
  border-top: 1px solid;
  border-right: 1px solid;
}

.hero-reel__corner--bl {
  bottom: 8.2rem;
  left: 1.1rem;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.hero-reel__corner--br {
  bottom: 8.2rem;
  right: 1.1rem;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.hero-reel__hud {
  z-index: 4;
  inset: 2rem 4.5rem auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.hero-reel__eyebrow,
.hero-reel__meta {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  color: rgba(243, 246, 250, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: 0;
  min-height: auto;
  padding: 0;
  backdrop-filter: none;
}

.hero-reel__meta span + span {
  position: relative;
  padding-left: 1.35rem;
}

.hero-reel__meta span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.hero-reel__content {
  position: relative;
  z-index: 4;
  inset: 0;
  width: min(calc(100% - 6.4rem), 1520px);
  margin: 0 auto;
  padding: 5.6rem 0 10rem;
  display: grid;
  align-items: center;
  touch-action: pan-y;
}

.hero-reel__copy {
  max-width: 52rem;
  margin: 0;
  text-align: left;
}

.hero-reel__label {
  margin: 0 0 1.6rem;
  color: rgba(243, 246, 250, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-reel h1 {
  margin: 0;
  max-width: 10.5ch;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: clamp(3.8rem, 6vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-reel__headline {
  position: relative;
  min-height: 4.2em;
}

.hero-reel__headline-text {
  position: relative;
  display: block;
  color: var(--text);
  transform-origin: center left;
  will-change: transform, opacity, filter;
}

.glitch-layer {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--text);
  pointer-events: none;
  white-space: normal;
}

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

.glitch-ghost,
.glitch-slice {
  opacity: 0;
}

.glitch-ghost {
  z-index: 3;
}

.glitch-slice {
  z-index: 4;
}

.slice-1 {
  clip-path: inset(0 0 68% 0);
}

.slice-2 {
  clip-path: inset(33% 0 33% 0);
}

.slice-3 {
  clip-path: inset(68% 0 0 0);
}

.hero-reel__headline-flash {
  position: absolute;
  inset: 38% -2% 38% -2%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.12) 45%,
      rgba(255, 255, 255, 0.42) 50%,
      rgba(255, 255, 255, 0.12) 55%,
      rgba(255, 255, 255, 0) 100%
    );
  mix-blend-mode: screen;
  filter: blur(0.6px);
}

.hero-reel__headline.is-fading .hero-reel__headline-text {
  opacity: 0.12;
}

.hero-reel__headline.is-glitching .glitch-main {
  animation: heroMonoMain 700ms cubic-bezier(0.2, 0.86, 0.18, 1) both;
}

.hero-reel__headline.is-glitching .ghost-1 {
  animation: heroGhostOne 700ms steps(2, end) both;
}

.hero-reel__headline.is-glitching .ghost-2 {
  animation: heroGhostTwo 700ms steps(2, end) both;
}

.hero-reel__headline.is-glitching .slice-1 {
  animation: heroSliceOne 700ms cubic-bezier(0.2, 0.86, 0.18, 1) both;
}

.hero-reel__headline.is-glitching .slice-2 {
  animation: heroSliceTwo 700ms cubic-bezier(0.2, 0.86, 0.18, 1) both;
}

.hero-reel__headline.is-glitching .slice-3 {
  animation: heroSliceThree 700ms cubic-bezier(0.2, 0.86, 0.18, 1) both;
}

.hero-reel__headline.is-glitching .hero-reel__headline-flash {
  animation: heroScanlineFlash 700ms ease-out both;
}

.hero-reel__headline.is-pulsing .glitch-main {
  animation: heroPulseMain 150ms ease-out both;
}

.hero-reel__headline.is-pulsing .ghost-1 {
  animation: heroPulseGhostOne 150ms steps(2, end) both;
}

.hero-reel__headline.is-pulsing .ghost-2 {
  animation: heroPulseGhostTwo 150ms steps(2, end) both;
}

.hero-reel__headline.is-pulsing .slice-1,
.hero-reel__headline.is-pulsing .slice-2,
.hero-reel__headline.is-pulsing .slice-3 {
  animation: heroPulseSlice 150ms ease-out both;
}

.hero-reel__headline.is-pulsing .hero-reel__headline-flash {
  animation: heroPulseFlash 150ms ease-out both;
}

.hero-reel__summary {
  max-width: 30rem;
  margin: 1.8rem 0 0;
  color: rgba(243, 246, 250, 0.84);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-inline: 0;
}

.hero-reel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.6rem;
}

.hero-reel__link,
.hero-reel__link-arrow,
.hero-reel__scroll,
.hero-reel__playback,
.hero-reel__info-label {
  color: rgba(243, 246, 250, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-reel__link {
  display: inline-flex;
  align-items: center;
  transition:
    transform 300ms var(--ease),
    color 300ms var(--ease);
}

.hero-reel__link-arrow {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition:
    transform 300ms var(--ease),
    border-color 300ms var(--ease),
    background 300ms var(--ease);
}

.hero-reel__actions:hover .hero-reel__link {
  transform: translateX(2px);
  color: rgba(243, 246, 250, 0.96);
}

.hero-reel__actions:hover .hero-reel__link-arrow {
  transform: translateX(2px) rotate(-10deg);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.hero-reel__footer {
  z-index: 4;
  inset: auto calc(1.1rem + var(--hero-corner-size) + 0.75rem) 8.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  pointer-events: none;
}

.hero-reel__scroll {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-left: 0.25rem;
  transform: none;
}

.hero-reel__scroll-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  animation: heroScrollPulse 1800ms ease-in-out infinite;
}

.hero-reel__playback {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  padding-right: 0;
  margin-right: 0;
}

.hero-reel__copyright {
  color: rgba(243, 246, 250, 0.72);
  white-space: nowrap;
  transform: none;
}

.hero-reel__info {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 13, 0.82);
  backdrop-filter: blur(10px);
}

.hero-reel__info-block {
  min-height: 7.2rem;
  padding: 1.5rem 2rem 1.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.hero-reel__info-block:first-child {
  border-left: 0;
}

.hero-reel__info-label {
  color: rgba(243, 246, 250, 0.42);
}

.hero-reel__info-block strong {
  max-width: 16rem;
  color: rgba(243, 246, 250, 0.92);
  font-weight: 500;
  line-height: 1.45;
}

.anchor-point {
  position: absolute;
  inset: -6rem auto auto 0;
}

.capability-board,
.films-board,
.work-board,
.contact-board {
  width: calc(100% - (var(--page-padding) * 2));
  margin: 0 var(--page-padding) var(--page-padding);
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
  border: 1px solid var(--hero-border);
  border-radius: var(--hero-radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.96), rgba(4, 7, 11, 0.96)),
    rgba(255, 255, 255, 0.02);
}

.capability-board {
  grid-template-columns: minmax(350px, 0.78fr) minmax(0, 1.62fr);
  min-height: min(82vw, 1040px);
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.985), rgba(3, 6, 10, 0.985)),
    rgba(255, 255, 255, 0.02);
}

.board-intro {
  min-height: 100%;
  padding: 3.4rem 3rem;
  display: grid;
  align-content: center;
  gap: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-board__intro {
  position: relative;
  overflow: hidden;
  align-content: start;
  padding: 3.65rem 3.2rem 2.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 34%),
    radial-gradient(circle at 60% 88%, rgba(255, 255, 255, 0.04), transparent 38%);
}

.capability-board__intro::before {
  content: "";
  position: absolute;
  inset: auto -6% 4.2rem 2rem;
  height: 17rem;
  opacity: 0.2;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 920 420' fill='none'%3E%3Cg stroke='rgba(255,255,255,0.92)' stroke-width='1.1' stroke-linecap='square'%3E%3Cpath d='M88 312H832'/%3E%3Cpath d='M176 262h568'/%3E%3Cpath d='M174 262c24-74 110-114 186-124h199c68 12 155 55 186 124'/%3E%3Cpath d='M282 238c24-52 78-91 132-104h88c55 13 108 52 133 104'/%3E%3Cpath d='M214 294c27-24 56-36 94-40h304c38 4 67 16 94 40'/%3E%3Cpath d='M134 314c0-42 34-76 76-76s76 34 76 76'/%3E%3Cpath d='M634 314c0-42 34-76 76-76s76 34 76 76'/%3E%3Ccircle cx='210' cy='314' r='69'/%3E%3Ccircle cx='710' cy='314' r='69'/%3E%3Cpath d='M438 122v132'/%3E%3Cpath d='M482 122v132'/%3E%3Cpath d='M424 160h74'/%3E%3Cpath d='M402 194h118'/%3E%3Cpath d='M168 152v210'/%3E%3Cpath d='M752 152v210'/%3E%3Cpath d='M112 206h696' opacity='.35'/%3E%3Cpath d='M90 350h740' opacity='.4'/%3E%3Cpath d='M372 102h176'/%3E%3Cpath d='M316 180h286' opacity='.5'/%3E%3C/g%3E%3Cg stroke='rgba(255,255,255,0.44)' stroke-width='0.8'%3E%3Cpath d='M68 116H852'/%3E%3Cpath d='M68 82H852'/%3E%3Cpath d='M96 54v336'/%3E%3Cpath d='M824 54v336'/%3E%3Cpath d='M460 58v326'/%3E%3C/g%3E%3C/svg%3E")
      center bottom / contain no-repeat;
  filter: blur(0.2px);
}

.capability-board__blueprint {
  position: relative;
  min-height: 19rem;
  margin-top: auto;
}

.capability-board__blueprint-cross {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  opacity: 0.34;
}

.capability-board__blueprint-cross::before,
.capability-board__blueprint-cross::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.22);
}

.capability-board__blueprint-cross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.capability-board__blueprint-cross::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.capability-board__blueprint-cross--one {
  right: 0.1rem;
  bottom: 4.5rem;
}

.capability-board__blueprint-cross--two {
  right: 3.1rem;
  bottom: 1.3rem;
}

.capability-board__blueprint-signoff {
  position: absolute;
  left: 0;
  bottom: 0;
  color: rgba(243, 246, 250, 0.38);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-transform: uppercase;
}

.board-intro__eyebrow {
  color: rgba(243, 246, 250, 0.52);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.board-intro h2 {
  margin: 0;
  max-width: 8ch;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 4.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.board-intro p {
  max-width: 19rem;
  margin: 0;
  color: rgba(243, 246, 250, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.board-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
  color: rgba(243, 246, 250, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 300ms var(--ease),
    color 300ms var(--ease);
}

.board-link__arrow {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition:
    transform 300ms var(--ease),
    border-color 300ms var(--ease),
    background 300ms var(--ease);
}

.board-link:hover .board-link__arrow,
.contact-board__submit:hover .board-link__arrow {
  transform: translateX(2px) rotate(-8deg);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.board-link:hover {
  transform: translateX(2px);
  color: rgba(243, 246, 250, 0.98);
}

.capability-board__list {
  display: grid;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 32%);
}

.capability-board__list::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  opacity: 0.45;
}

.films-board__stage {
  display: grid;
  gap: 1.25rem;
  padding: 1.8rem;
}

.films-board__featured-shell {
  min-width: 0;
}

.films-featured {
  display: grid;
  gap: 1rem;
}

.films-featured__media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  aspect-ratio: 16 / 9;
  cursor: pointer;
  transition: transform 500ms var(--ease), border-color 500ms var(--ease), background 500ms var(--ease);
}

.films-featured__media:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.films-featured__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.005);
  filter: brightness(0.74) saturate(0.96);
  transition: transform 700ms var(--ease), filter 700ms var(--ease), clip-path 900ms var(--ease);
  clip-path: inset(0 0 100% 0);
}

.films-featured.is-visible .films-featured__video {
  clip-path: inset(0 0 0 0);
}

.films-featured__media.is-hovered .films-featured__video,
.films-featured__media:hover .films-featured__video {
  transform: scale(1.03);
  filter: brightness(0.9) saturate(1.03);
}

.films-featured__scrim,
.films-featured__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.films-featured__scrim {
  background:
    linear-gradient(180deg, rgba(6, 9, 14, 0.14), rgba(6, 9, 14, 0.08) 30%, rgba(6, 9, 14, 0.52)),
    linear-gradient(90deg, rgba(6, 9, 14, 0.18), rgba(6, 9, 14, 0) 34%, rgba(6, 9, 14, 0.1));
}

.films-featured__frame {
  border: 1px solid rgba(255, 255, 255, 0.06);
  inset: 1rem;
  border-radius: 0.5rem;
}

.films-featured__meta {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  z-index: 2;
}

.films-featured__meta span,
.films-featured__eyebrow,
.film-card__meta span,
.film-card__index {
  color: rgba(243, 246, 250, 0.64);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.films-featured__meta span {
  min-height: 2rem;
  padding: 0 0.8rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 13, 0.55);
  backdrop-filter: blur(12px);
}

.films-featured__controls {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.films-featured__volume-group {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0 0.55rem 0 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 13, 0.58);
  backdrop-filter: blur(12px);
  transition: border-color 280ms var(--ease), background 280ms var(--ease);
}

.films-featured__volume-group:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 20, 0.74);
}

.films-featured__playpause,
.films-featured__volume,
.films-featured__fullscreen {
  position: absolute;
  min-height: 2.8rem;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 13, 0.58);
  color: rgba(243, 246, 250, 0.92);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease);
}

.films-featured__playpause,
.films-featured__volume,
.films-featured__fullscreen {
  position: relative;
  right: auto;
  bottom: auto;
}

.films-featured__playpause:hover,
.films-featured__volume:hover,
.films-featured__fullscreen:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 20, 0.74);
}

.films-featured__playpause-icon,
.films-featured__volume-icon,
.films-featured__fullscreen-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
}

.films-featured__volume,
.films-featured__fullscreen {
  width: 2.8rem;
  min-width: 2.8rem;
  padding: 0;
  justify-content: center;
}

.films-featured__volume {
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.films-featured__volume.is-muted {
  opacity: 0.74;
}

.films-featured__volume-slider {
  width: 84px;
  accent-color: #f3f6fa;
  background: transparent;
}

.films-featured__volume-slider::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.films-featured__volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4.5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #f3f6fa;
}

.films-featured__volume-slider::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.films-featured__volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #f3f6fa;
}

.films-featured__copy {
  display: grid;
  gap: 0.7rem;
}

.films-featured__copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 3.4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  transition: transform 450ms var(--ease);
}

.films-featured:hover .films-featured__copy h3 {
  transform: translateY(-3px);
}

.films-featured__copy p {
  margin: 0;
  max-width: 34rem;
  color: rgba(243, 246, 250, 0.76);
  line-height: 1.8;
}

.films-board__list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}

.film-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 1.4rem;
  padding: 1.2rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 350ms var(--ease), transform 350ms var(--ease);
}

.film-card:first-child {
  border-top: 0;
}

.film-card:hover,
.film-card.is-active {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-6px);
}

.film-card__copy {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.film-card__body h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 350ms var(--ease);
}

.film-card:hover .film-card__body h3 {
  transform: translateY(-2px);
}

.film-card__body p {
  margin: 0.7rem 0 0;
  max-width: 27rem;
  color: rgba(243, 246, 250, 0.58);
  font-size: 0.84rem;
  line-height: 1.75;
}

.film-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  margin-top: 0.8rem;
}

.film-card__meta span + span {
  position: relative;
}

.film-card__meta span + span::before {
  content: "";
  position: absolute;
  left: -0.6rem;
  top: 50%;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.film-card__preview {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
}

.film-card__preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: brightness(0.78);
  transition: transform 550ms var(--ease), filter 550ms var(--ease), clip-path 700ms var(--ease);
  clip-path: inset(0 0 100% 0);
}

.film-card.is-visible .film-card__preview-video {
  clip-path: inset(0 0 0 0);
}

.film-card:hover .film-card__preview-video,
.film-card__preview.is-hovered .film-card__preview-video {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.film-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(243, 246, 250, 0.86);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0), rgba(5, 8, 13, 0.78));
}

.film-card__arrow {
  transition: transform 320ms var(--ease);
}

.film-card:hover .film-card__arrow {
  transform: translateX(3px) rotate(-8deg);
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 2rem;
  min-height: 13rem;
  padding: 1rem 1.8rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
  transition:
    background 400ms var(--ease),
    transform 400ms var(--ease);
}

.capability-row:first-child {
  border-top: 0;
}

.capability-row:hover {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 40%),
    rgba(255, 255, 255, 0.022);
  transform: translateY(-6px);
}

.capability-row__copy {
  display: grid;
  align-content: center;
  gap: 0;
  max-width: 32rem;
}

.capability-row__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.capability-row__index {
  color: rgba(243, 246, 250, 0.3);
  font-size: clamp(2.8rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.capability-row__dash {
  color: rgba(243, 246, 250, 0.22);
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(0.12rem);
  transition: transform 350ms var(--ease), color 350ms var(--ease);
}

.capability-row__copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 350ms var(--ease),
    letter-spacing 350ms var(--ease),
    transform 350ms var(--ease);
}

.capability-row__divider {
  width: 2.55rem;
  height: 1px;
  margin: 0.95rem 0 1rem;
  background: rgba(255, 255, 255, 0.34);
  transition: width 350ms var(--ease), background 350ms var(--ease), transform 350ms var(--ease);
}

.capability-row__copy p {
  max-width: 24rem;
  margin: 0;
  color: rgba(243, 246, 250, 0.68);
  font-size: 0.98rem;
  line-height: 1.8;
}

.capability-row__visual {
  position: relative;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 0;
  overflow: visible;
  isolation: isolate;
  perspective: 1600px;
  --visual-width: 100%;
  --visual-aspect: 16 / 7.9;
  --visual-tilt: -0.85deg;
  --visual-shift: 0rem;
  --visual-parallax-y: 0px;
  --visual-glow: rgba(198, 208, 255, 0.15);
}

.capability-row__visual::before {
  content: "";
  position: absolute;
  inset: 12% 1.2% 10% 16%;
  background: radial-gradient(circle at 50% 50%, var(--visual-glow), transparent 72%);
  filter: blur(24px);
  opacity: 0.8;
  transform: scale(0.96);
  transition:
    opacity 500ms var(--ease),
    transform 500ms var(--ease),
    filter 500ms var(--ease);
}

.capability-row__visual-shell {
  position: relative;
  display: block;
  width: var(--visual-width);
  max-width: none;
  aspect-ratio: var(--visual-aspect);
  margin-left: auto;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  transform:
    translate3d(var(--visual-shift), var(--visual-parallax-y), 0)
    rotateY(var(--visual-tilt))
    rotateX(calc(var(--visual-tilt) * -0.28));
  transition:
    transform 650ms var(--ease),
    filter 650ms var(--ease),
    box-shadow 650ms var(--ease);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 34px 56px rgba(0, 0, 0, 0.22);
}

.capability-row__visual-blur {
  position: absolute;
  inset: -22% -16% -24% -34%;
  z-index: 0;
  overflow: hidden;
  border-radius: 1.6rem;
  opacity: 0.7;
  transform: translate3d(-0.8rem, 1.35rem, -1px) scale(1.28);
  filter: blur(56px) saturate(1.16) brightness(0.9);
  pointer-events: none;
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease),
    filter 650ms var(--ease);
}

.capability-row__visual-blur img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.24);
}

.capability-row__visual-shell img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 9, 14, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.015),
    0 18px 36px rgba(0, 0, 0, 0.34),
    0 8px 18px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
  transition:
    transform 650ms var(--ease),
    filter 650ms var(--ease),
    box-shadow 650ms var(--ease),
    border-color 650ms var(--ease);
}



.capability-row:hover .capability-row__copy h3 {
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 0.1em;
  transform: translateX(0.18rem);
}

.capability-row:hover .capability-row__index {
  color: rgba(243, 246, 250, 0.62);
}

.capability-row:hover .capability-row__dash {
  color: rgba(243, 246, 250, 0.42);
  transform: translateX(0.18rem);
}

.capability-row:hover .capability-row__divider {
  width: 3.35rem;
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(0.18rem);
}

.capability-row:hover .capability-row__visual::before {
  opacity: 1;
  filter: blur(28px);
  transform: scale(1.04);
}

.capability-row:hover .capability-row__visual-shell {
  transform:
    translate3d(var(--visual-shift), var(--visual-parallax-y), 0)
    scale(1.024)
    rotateY(calc(var(--visual-tilt) * 0.18))
    rotateX(calc(var(--visual-tilt) * -0.04));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    0 42px 68px rgba(0, 0, 0, 0.28);
}

.capability-row:hover .capability-row__visual-blur {
  opacity: 0.88;
  transform: translate3d(-1rem, 1.6rem, -1px) scale(1.34);
  filter: blur(68px) saturate(1.2) brightness(0.94);
}

.capability-row:hover .capability-row__visual-shell img {
  transform: scale(1.05);
  filter: brightness(1.06) saturate(1.03);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.028),
    0 28px 54px rgba(0, 0, 0, 0.42),
    0 12px 24px rgba(0, 0, 0, 0.24);
}



.selected-projects {
  width: calc(100% - (var(--page-padding) * 2));
  margin: 0 var(--page-padding) var(--page-padding);
  display: grid;
  gap: 1.35rem;
}

.selected-projects__hero,
.selected-projects__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hero-border);
  border-radius: var(--hero-radius);
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.96), rgba(4, 7, 11, 0.98)),
    rgba(255, 255, 255, 0.02);
}

.selected-projects__hero {
  min-height: min(68rem, 92svh);
  isolation: isolate;
}

.selected-projects__hero-media,
.selected-projects__hero-overlay {
  position: absolute;
  inset: 0;
}

.selected-projects__hero-media {
  background:
    linear-gradient(180deg, rgba(6, 9, 13, 0.16), rgba(6, 9, 13, 0.16)),
    var(--selected-projects-image) center 58% / cover no-repeat;
  transform: scale(1.02);
  opacity: 1;
  animation: selectedProjectsHeroFade 1100ms var(--ease) 180ms forwards;
}

.selected-projects__hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 10, 0.94) 0%, rgba(3, 6, 10, 0.72) 26%, rgba(3, 6, 10, 0.18) 58%, rgba(3, 6, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 6, 10, 0.18) 0%, rgba(3, 6, 10, 0.12) 38%, rgba(3, 6, 10, 0.84) 100%);
}

.selected-projects__hero-copy {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  min-height: inherit;
  padding: clamp(2.2rem, 5vw, 4.25rem);
  display: grid;
  align-content: end;
  gap: 1.45rem;
}

.selected-projects__eyebrow {
  color: rgba(243, 246, 250, 0.56);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.selected-projects__hero h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.selected-projects__hero p {
  max-width: 31rem;
  margin: 0;
  color: rgba(243, 246, 250, 0.74);
  font-size: 1rem;
  line-height: 1.9;
}

.selected-projects__cta {
  width: fit-content;
  min-height: 3.35rem;
  padding: 0.5rem 0.55rem 0.5rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(243, 246, 250, 0.96);
  background: rgba(8, 11, 16, 0.5);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.24);
  transition:
    transform 320ms var(--ease),
    border-color 320ms var(--ease),
    background 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.selected-projects__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(10, 14, 21, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 44px rgba(0, 0, 0, 0.28);
}

.selected-projects__cta-arrow {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 320ms var(--ease),
    border-color 320ms var(--ease),
    background 320ms var(--ease);
}

.selected-projects__cta:hover .selected-projects__cta-arrow {
  transform: translateX(2px) rotate(-10deg);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.selected-projects__panel {
  padding: 1.35rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

.selected-projects__panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

.selected-projects__stage {
  display: grid;
  gap: 1.15rem;
}

.selected-project-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  gap: 0;
  min-height: clamp(30rem, 68vw, 43rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.35rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), transparent 28%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.97), rgba(4, 7, 11, 0.99));
  transition:
    transform 420ms var(--ease),
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.selected-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px) 0 0 / 7rem 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px) 0 0 / 100% 7rem;
  opacity: 0.07;
  pointer-events: none;
}

.selected-project-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--project-accent) 38%, rgba(255, 255, 255, 0.14));
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.selected-project-card:nth-child(even) {
  grid-template-columns: minmax(22rem, 0.92fr) minmax(0, 1.08fr);
}

.selected-project-card:nth-child(even) .selected-project-card__media {
  order: 2;
}

.selected-project-card:nth-child(even) .selected-project-card__copy {
  order: 1;
}

.selected-project-card__media {
  position: relative;
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--project-accent) 18%, transparent), transparent 28%),
    linear-gradient(180deg, rgba(10, 14, 21, 0.86), rgba(5, 8, 13, 0.96));
}

.selected-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 700ms var(--ease),
    filter 700ms var(--ease);
}

.selected-project-card:hover .selected-project-card__media img {
  transform: scale(1.035);
  filter: brightness(1.03);
}

.selected-project-card__glow {
  position: absolute;
  inset: 12% auto auto 8%;
  width: min(22vw, 16rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--project-accent) 42%, transparent);
  filter: blur(54px);
  opacity: 0.32;
  z-index: 1;
  pointer-events: none;
}

.selected-project-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 1.25rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.84), rgba(4, 7, 11, 0.96));
}

.selected-project-card__heading {
  display: grid;
  gap: 0.9rem;
}

.selected-project-card__indexline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.selected-project-card__index {
  color: rgba(243, 246, 250, 0.24);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.selected-project-card__rule {
  width: 3.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--project-accent), transparent);
}

.selected-project-card__kicker {
  color: rgba(243, 246, 250, 0.54);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.selected-project-card__heading h3 {
  max-width: 13ch;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.9vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.selected-project-card__description {
  max-width: 35ch;
  margin: 0;
  color: rgba(243, 246, 250, 0.7);
  line-height: 1.88;
}

.selected-project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.selected-project-card__tags .tag {
  background: rgba(255, 255, 255, 0.03);
  border-color: color-mix(in srgb, var(--project-accent) 18%, rgba(255, 255, 255, 0.12));
  color: rgba(243, 246, 250, 0.78);
}

.selected-project-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.selected-project-card__meta div {
  display: grid;
  gap: 0.3rem;
}

.selected-project-card__meta dt {
  color: rgba(243, 246, 250, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.selected-project-card__meta dd {
  margin: 0;
  color: rgba(243, 246, 250, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.selected-project-card__thumbs {
  display: flex;
  gap: 0.7rem;
  padding-top: 0.35rem;
}

.selected-project-card__thumb {
  width: clamp(4.5rem, 13vw, 6.6rem);
  aspect-ratio: 1;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(calc(var(--thumb-index) * 2px));
  transition:
    transform 320ms var(--ease),
    border-color 320ms var(--ease),
    background 320ms var(--ease);
}

.selected-project-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  transition:
    transform 500ms var(--ease),
    filter 500ms var(--ease);
}

.selected-project-card:hover .selected-project-card__thumb {
  transform: translateY(calc(var(--thumb-index) * -4px));
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.selected-project-card:hover .selected-project-card__thumb img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.selected-project-card__link {
  width: fit-content;
  min-height: 3.15rem;
  padding: 0.45rem 0.5rem 0.45rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(243, 246, 250, 0.94);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 300ms var(--ease),
    background 300ms var(--ease),
    transform 300ms var(--ease);
}

.selected-project-card__link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--project-accent) 32%, rgba(255, 255, 255, 0.16));
  background: rgba(255, 255, 255, 0.05);
}

.selected-projects__cta:active,
.selected-project-card__link:active,
.films-featured__playpause:active,
.films-featured__volume:active,
.films-featured__fullscreen:active,
.contact-board__submit:active {
  transform: scale(0.985);
}

.selected-project-card__link-arrow {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.contact-board__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 2.2rem 2rem;
}

.field {
  display: grid;
  gap: 0.7rem;
}

.field span {
  color: rgba(243, 246, 250, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 300ms var(--ease), background 300ms var(--ease);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.035);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.field--full {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.contact-board__submit {
  grid-column: 1 / -1;
  min-height: 3.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 246, 250, 0.92);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: transform 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}

.contact-board__submit:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.manifesto {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 6rem auto 0;
  padding: 0 0 2rem;
}

.manifesto__intro {
  max-width: 34rem;
}

.manifesto__intro p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.manifesto__headline {
  margin-top: 2.2rem;
  display: grid;
  gap: 0.5rem;
  color: rgba(243, 246, 250, 0.22);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-head p {
  margin: 0;
  max-width: 38rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.section-head__actions {
  margin-top: 0.4rem;
}

.section-head--split {
  grid-template-columns: minmax(0, 0.22fr) minmax(0, 1fr);
  align-items: start;
}

.capability-stage {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 2rem auto 0;
  padding-top: 4rem;
}

.capability-runway {
  display: grid;
  gap: 6rem;
  margin-top: 4rem;
}

.capability-scene {
  min-height: 72svh;
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 2.8rem;
  align-items: center;
  padding: 0;
}

.capability-scene--visual-left {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
}

.capability-scene--visual-left .capability-scene__copy {
  order: 2;
}

.capability-scene--visual-left .capability-scene__visual {
  order: 1;
}

.capability-scene__copy {
  display: grid;
  gap: 1.1rem;
  align-content: center;
  max-width: 32rem;
  transition:
    transform 800ms var(--ease),
    opacity 800ms var(--ease);
}

.capability-scene__index {
  color: var(--text-dim);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.capability-scene__copy h3 {
  margin: 0;
  max-width: 9ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.capability-scene__copy p {
  margin: 0;
  max-width: 30rem;
  color: rgba(243, 246, 250, 0.84);
  font-size: 1.04rem;
  line-height: 1.8;
}

.capability-scene__support {
  max-width: 31rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(243, 246, 250, 0.92);
  line-height: 1.75;
}

.capability-scene__cta {
  max-width: 30rem;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capability-scene__visual {
  position: relative;
  min-height: 68svh;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(88, 163, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(15, 20, 28, 0.94), rgba(8, 12, 18, 0.92)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.capability-scene__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(3, 7, 15, 0.08), rgba(3, 7, 15, 0.44)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 22%, transparent 74%, rgba(0, 0, 0, 0.28));
  z-index: 1;
  pointer-events: none;
}

.capability-scene__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transform-origin: center;
  transition:
    transform 900ms var(--ease),
    filter 600ms var(--ease),
    opacity 700ms var(--ease);
  will-change: transform;
}

.capability-scene__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0), rgba(6, 8, 12, 0.5));
  pointer-events: none;
}

.capability-scene:hover .capability-scene__visual img {
  filter: saturate(1.06) contrast(1.04);
}

.capability-scene__copy,
.capability-scene__visual {
  opacity: 0;
  transform: translateY(28px);
}

.capability-scene__visual {
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.capability-scene.is-visible .capability-scene__copy,
.capability-scene.is-visible .capability-scene__visual {
  opacity: 1;
  transform: translateY(0);
}

.divider-band {
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.divider-band__track {
  width: max-content;
  display: flex;
  gap: 2.5rem;
  padding: 1rem 0;
  color: rgba(243, 246, 250, 0.46);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  animation: marquee 28s linear infinite;
}

.films-section {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding-top: 6rem;
}

.films-shell {
  margin-top: 2.4rem;
}

.film-player {
  display: grid;
  grid-template-columns: minmax(320px, 0.34fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.film-lead__copy h3 {
  margin: 0.8rem 0 0;
  max-width: 8ch;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.film-lead__copy p {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.film-kicker,
.film-meta,
.film-count {
  color: var(--text-dim);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.film-meta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}

.film-player__stage {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.film-player__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
}

.film-player__video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #090d14;
}

.film-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    transform 240ms var(--ease),
    background 240ms var(--ease);
}

.film-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.film-nav--prev {
  left: 1.25rem;
}

.film-nav--next {
  right: 1.25rem;
}

.film-nav svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.studio-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 2.4rem;
  margin-top: 6rem;
  padding-top: 1rem;
}

.studio-notes__column--quote h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.studio-notes__column--body {
  display: grid;
  gap: 1.1rem;
}

.studio-notes__column--body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.capabilities {
  margin-top: 6rem;
  padding-top: 1rem;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.skills-list,
.strengths-list {
  margin: 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.skills-list li,
.strengths-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: 2rem;
  margin-top: 6rem;
  padding-top: 1rem;
}

.contact-stage__copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-stage__copy p {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-stage__statement {
  color: var(--text);
  font-size: 1.08rem;
}

.contact-stage__panel {
  padding: 1.6rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14, 19, 26, 0.94), rgba(9, 13, 18, 0.9)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.contact-stage__meta {
  display: grid;
  gap: 1rem;
}

.contact-stage__meta div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-stage__meta span {
  display: block;
  color: var(--text-dim);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-stage__meta strong,
.contact-stage__meta a {
  display: inline-block;
  margin-top: 0.45rem;
}

.contact-links {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-links a {
  min-height: 2.8rem;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 240ms var(--ease),
    border-color 240ms var(--ease),
    background 240ms var(--ease);
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 240, 170, 0.2);
  background: rgba(110, 240, 170, 0.08);
}

.footer {
  padding: 1rem var(--page-padding) 2.5rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: calc(100% - (var(--page-padding) * 2));
  margin: 0 auto;
  border: 1px solid var(--hero-border);
  border-radius: var(--hero-radius);
  padding: 1.25rem 1.4rem;
  color: var(--text-dim);
  background: rgba(5, 8, 13, 0.92);
  transition:
    border-color 320ms var(--ease),
    background 320ms var(--ease),
    transform 320ms var(--ease);
}

.footer__brand,
.footer__links,
.footer__copy {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: rgba(243, 246, 250, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__brand span:first-child {
  color: rgba(243, 246, 250, 0.92);
}

.footer__links a {
  position: relative;
}

.footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: rgba(243, 246, 250, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.footer__links a:hover::after {
  transform: scaleX(1);
}

dialog {
  width: min(calc(100% - 1.5rem), 1120px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 11, 16, 0.94);
  color: var(--text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

dialog::backdrop {
  background: rgba(2, 4, 7, 0.68);
  backdrop-filter: blur(12px);
}

.dialog-shell {
  padding: 1rem;
}

.dialog-close {
  display: inline-flex;
  margin-left: auto;
  margin-bottom: 1rem;
  width: 2.7rem;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
}

.dialog-project {
  display: grid;
  gap: 1rem;
}

.dialog-project__intro {
  padding: 0 0.4rem;
}

.dialog-project__kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.dialog-project__intro h3 {
  margin: 0.65rem 0 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.05em;
}

.dialog-project__intro p {
  margin: 0.9rem 0 1.2rem;
  max-width: 50rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.dialog-project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.dialog-project__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.dialog-project__gallery {
  display: grid;
  gap: 0.9rem;
}

.dialog-project__frame {
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 0.75rem;
  background: linear-gradient(180deg, rgba(14, 19, 26, 0.92), rgba(9, 13, 18, 0.9));
}

.dialog-project__frame img {
  max-height: 78svh;
  object-fit: contain;
  transition:
    transform 650ms var(--ease),
    filter 650ms var(--ease);
}

.dialog-project__frame:hover img {
  transform: scale(1.012);
  filter: brightness(1.03);
}

.magnetic {
  will-change: transform;
}

.motion-ready [data-section-reveal] {
  position: relative;
  --section-intro-distance: 128px;
  --section-intro-scale: 0.972;
  opacity: 0;
  transform: translate3d(0, var(--section-intro-distance), 0) scale(var(--section-intro-scale));
  clip-path: inset(10% 0 0 0);
  filter: saturate(0.82) brightness(0.9) blur(1px);
  transition:
    opacity 1200ms var(--ease),
    transform 1200ms var(--ease),
    clip-path 1200ms var(--ease),
    filter 1200ms var(--ease);
  will-change: opacity, transform, clip-path, filter;
}

.motion-ready [data-section-reveal]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.38;
  transform: translate3d(0, -22%, 0);
  transition:
    opacity 1100ms var(--ease),
    transform 1100ms var(--ease);
  pointer-events: none;
}

.motion-ready [data-section-reveal].is-section-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0);
  filter: none;
  animation: sectionIntroEnter 1200ms var(--ease) both;
  will-change: auto;
}

.motion-ready [data-section-reveal].is-section-visible::after {
  opacity: 0;
  transform: translate3d(0, 18%, 0);
}

[data-section-variant="hero"] {
  --section-intro-distance: 144px;
  --section-intro-scale: 0.962;
}

[data-section-variant="feature"] {
  --section-intro-distance: 136px;
  --section-intro-scale: 0.968;
}

[data-section-variant="footer"] {
  --section-intro-distance: 92px;
  --section-intro-scale: 0.984;
}

.motion-ready [data-reveal] {
  opacity: 0;
  --reveal-distance: var(--motion-distance);
  --reveal-scale: 0.986;
  --reveal-x: 0px;
  --reveal-y: var(--reveal-distance);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity var(--motion-duration) var(--ease),
    transform var(--motion-duration) var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: revealEnterUp var(--motion-duration) var(--ease) both;
  will-change: auto;
}

[data-reveal-variant="soft"] {
  --reveal-distance: 18px;
  --reveal-scale: 0.992;
}

.motion-ready [data-reveal][data-reveal-variant="soft"].is-visible,
.motion-ready [data-reveal][data-reveal-variant="soft-scale"].is-visible {
  animation-name: revealEnterUp;
}

[data-reveal-variant="soft-scale"] {
  --reveal-distance: 16px;
  --reveal-scale: 0.978;
}

[data-reveal-variant="hero"] {
  --reveal-distance: 22px;
  --reveal-scale: 0.988;
}

.motion-ready [data-reveal][data-reveal-variant="hero"].is-visible {
  animation-name: revealEnterHero;
}

[data-reveal-variant="left"] {
  --reveal-x: -20px;
  --reveal-y: 8px;
  --reveal-scale: 0.992;
}

.motion-ready [data-reveal][data-reveal-variant="left"].is-visible {
  animation-name: revealEnterLeft;
}

[data-reveal-variant="right"] {
  --reveal-x: 20px;
  --reveal-y: 8px;
  --reveal-scale: 0.992;
}

.motion-ready [data-reveal][data-reveal-variant="right"].is-visible {
  animation-name: revealEnterRight;
}

[data-reveal-variant="nav"] {
  --reveal-distance: -18px;
  --reveal-scale: 0.994;
}

.motion-ready [data-reveal][data-reveal-variant="nav"].is-visible {
  animation-name: revealEnterNav;
}

.motion-ready .capability-row__copy[data-reveal].is-visible,
.motion-ready .capability-row__visual[data-reveal].is-visible,
.motion-ready .films-featured__media[data-reveal].is-visible,
.motion-ready .films-featured__copy[data-reveal].is-visible,
.motion-ready .selected-project-card__media[data-reveal].is-visible,
.motion-ready .selected-project-card__copy[data-reveal].is-visible {
  transition-delay: calc(var(--reveal-delay, 0s) + 0.08s);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes loaderFallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes selectedProjectsHeroFade {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes sectionIntroEnter {
  from {
    opacity: 0;
    transform: translate3d(0, var(--section-intro-distance, 128px), 0) scale(var(--section-intro-scale, 0.972));
    clip-path: inset(10% 0 0 0);
    filter: saturate(0.82) brightness(0.9) blur(1px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    clip-path: inset(0 0 0 0);
    filter: none;
  }
}

@keyframes revealEnterUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance, 24px), 0) scale(var(--reveal-scale, 0.986));
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealEnterHero {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.976);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealEnterLeft {
  from {
    opacity: 0;
    transform: translate3d(-64px, 12px, 0) scale(0.988);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealEnterRight {
  from {
    opacity: 0;
    transform: translate3d(64px, 12px, 0) scale(0.988);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealEnterNav {
  from {
    opacity: 0;
    transform: translate3d(0, -28px, 0) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroVideoSettle {
  from {
    opacity: 0;
    filter: saturate(0.86) contrast(0.98) brightness(0.58);
    transform: scale(1.085);
  }

  to {
    opacity: 1;
    filter: saturate(0.98) contrast(1.04) brightness(0.74);
    transform: scale(1.035);
  }
}

@keyframes heroVideoDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.25%, -0.8%, 0);
  }
}

@keyframes heroScrollPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.18);
  }

  50% {
    transform: scale(1.28);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 240, 170, 0.42);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(110, 240, 170, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(110, 240, 170, 0);
  }
}

@keyframes drift {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(460%);
  }
}

@keyframes heroMonoMain {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(0deg);
    filter: blur(0);
  }

  10% {
    opacity: 0.96;
    transform: translate3d(-2px, 0, 0) skewX(-2deg);
    filter: blur(0.2px);
  }

  24% {
    opacity: 0.92;
    transform: translate3d(7px, -1px, 0) skewX(7deg);
    filter: blur(1px);
  }

  37% {
    opacity: 0.3;
    transform: translate3d(-12px, 1px, 0) skewX(-10deg);
    filter: blur(1.9px);
  }

  51% {
    opacity: 0.18;
    transform: translate3d(10px, -2px, 0) skewX(8deg);
    filter: blur(2.1px);
  }

  68% {
    opacity: 0.78;
    transform: translate3d(-5px, 0, 0) skewX(-4deg);
    filter: blur(0.9px);
  }

  84% {
    opacity: 0.97;
    transform: translate3d(2px, 0, 0) skewX(1deg);
    filter: blur(0.2px);
  }
}

@keyframes heroGhostOne {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }

  12% {
    opacity: 0.2;
    transform: translate3d(-10px, 0, 0);
  }

  30% {
    opacity: 0.55;
    transform: translate3d(16px, 0, 0);
    filter: blur(0.8px);
  }

  46% {
    opacity: 0.28;
    transform: translate3d(-18px, 0, 0);
    filter: blur(1.2px);
  }

  62% {
    opacity: 0.12;
    transform: translate3d(8px, 0, 0);
  }
}

@keyframes heroGhostTwo {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }

  8% {
    opacity: 0.16;
    transform: translate3d(8px, 0, 0);
  }

  27% {
    opacity: 0.42;
    transform: translate3d(-14px, 0, 0);
    filter: blur(0.6px);
  }

  41% {
    opacity: 0.22;
    transform: translate3d(11px, 0, 0);
    filter: blur(1px);
  }

  57% {
    opacity: 0.14;
    transform: translate3d(-6px, 0, 0);
  }
}

@keyframes heroSliceOne {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }

  15% {
    opacity: 0.58;
    transform: translate3d(-18px, -2px, 0) skewX(-12deg);
  }

  34% {
    opacity: 0.72;
    transform: translate3d(22px, 0, 0) skewX(14deg);
  }

  52% {
    opacity: 0.3;
    transform: translate3d(-12px, 2px, 0) skewX(-6deg);
  }

  74% {
    opacity: 0.12;
    transform: translate3d(4px, 0, 0) skewX(2deg);
  }
}

@keyframes heroSliceTwo {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }

  11% {
    opacity: 0.44;
    transform: translate3d(12px, 0, 0) skewX(8deg);
  }

  29% {
    opacity: 0.82;
    transform: translate3d(-26px, 1px, 0) skewX(-14deg);
  }

  48% {
    opacity: 0.4;
    transform: translate3d(18px, -1px, 0) skewX(10deg);
  }

  70% {
    opacity: 0.16;
    transform: translate3d(-6px, 0, 0) skewX(-2deg);
  }
}

@keyframes heroSliceThree {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }

  18% {
    opacity: 0.52;
    transform: translate3d(18px, 2px, 0) skewX(10deg);
  }

  36% {
    opacity: 0.68;
    transform: translate3d(-20px, -1px, 0) skewX(-12deg);
  }

  54% {
    opacity: 0.28;
    transform: translate3d(10px, 1px, 0) skewX(6deg);
  }

  76% {
    opacity: 0.1;
    transform: translate3d(-4px, 0, 0) skewX(-1deg);
  }
}

@keyframes heroScanlineFlash {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(-1.5%, 0, 0) scaleX(0.96);
  }

  21% {
    opacity: 0.18;
  }

  33% {
    opacity: 0.75;
    transform: translate3d(1%, 0, 0) scaleX(1.02);
  }

  47% {
    opacity: 0;
  }

  58% {
    opacity: 0.42;
    transform: translate3d(-0.5%, 0, 0) scaleX(0.99);
  }

  72% {
    opacity: 0;
  }
}

@keyframes heroPulseMain {
  0%,
  100% {
    transform: translate3d(0, 0, 0) skewX(0deg);
    filter: blur(0);
  }

  40% {
    transform: translate3d(-4px, 0, 0) skewX(-4deg);
    filter: blur(0.5px);
  }

  70% {
    transform: translate3d(3px, 0, 0) skewX(3deg);
    filter: blur(0.2px);
  }
}

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

  45% {
    opacity: 0.32;
    transform: translate3d(9px, 0, 0);
  }
}

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

  45% {
    opacity: 0.22;
    transform: translate3d(-9px, 0, 0);
  }
}

@keyframes heroPulseSlice {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }

  50% {
    opacity: 0.28;
    transform: translate3d(7px, 0, 0) skewX(5deg);
  }
}

@keyframes heroPulseFlash {
  0%,
  100% {
    opacity: 0;
  }

  45% {
    opacity: 0.32;
  }
}

@media (max-width: 1100px) {
  .hero-reel__content,
  .capability-scene,
  .capability-scene--visual-left,
  .film-player,
  .studio-notes,
  .capabilities__grid,
  .contact-stage,
  .section-head--split {
    grid-template-columns: 1fr;
  }

  .capability-board,
  .films-board,
  .contact-board {
    grid-template-columns: 1fr;
  }

  .selected-project-card,
  .selected-project-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .selected-project-card:nth-child(even) .selected-project-card__media,
  .selected-project-card:nth-child(even) .selected-project-card__copy {
    order: initial;
  }

  .selected-project-card__description {
    max-width: none;
  }

  .selected-project-card__media {
    min-height: 28rem;
  }

  .board-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .capability-board__intro {
    min-height: 34rem;
  }

  .capability-row {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
    gap: 1.4rem;
  }

  .films-board__stage {
    padding: 1.2rem;
  }

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

  .hero-reel__content {
    align-items: center;
  }

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

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

  .capability-scene {
    min-height: auto;
    gap: 1.5rem;
  }

  .capability-scene--visual-left .capability-scene__copy,
  .capability-scene--visual-left .capability-scene__visual {
    order: initial;
  }

  .capability-scene__visual {
    min-height: 32rem;
  }

  .studio-notes {
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: auto;
    touch-action: auto;
  }

  .topbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 0 0;
  }

  .topbar__inner {
    min-height: 72px;
    padding: 0.9rem 1rem;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .brand span {
    gap: 0.85rem;
    flex-wrap: nowrap;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand small {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav {
    position: fixed;
    top: calc(0.75rem + 72px);
    left: 0.75rem;
    right: 0.75rem;
    z-index: 80;
    display: grid;
    gap: 0.55rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    background: rgba(5, 8, 13, 0.96);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px) saturate(130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 260ms var(--ease),
      transform 260ms var(--ease),
      visibility 260ms var(--ease);
  }

  .nav a {
    min-height: 3rem;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
  }

  .nav a::after {
    display: none;
  }

  html.nav-open,
  html.nav-open body {
    overflow: hidden;
  }

  html.nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  html.nav-open .mobile-nav-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
  }

  html.nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  html.nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  html.nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .capability-board,
  .films-board,
  .contact-board {
    width: min(calc(100% - 1.5rem), var(--max-width));
    margin: 0 auto 1rem;
    border-radius: 1.2rem;
  }

  .selected-projects {
    width: min(calc(100% - 1.5rem), var(--max-width));
    margin: 0 auto 1rem;
  }

  .board-intro {
    padding: 2rem 1.2rem;
  }

  .selected-projects__hero,
  .selected-projects__panel {
    border-radius: 1.2rem;
  }

  .selected-projects__hero {
    min-height: min(42rem, 88svh);
  }

  .selected-projects__hero-copy {
    max-width: 100%;
    padding: 2rem 1.2rem 1.6rem;
    align-content: end;
    gap: 1rem;
  }

  .selected-projects__hero h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
    max-width: 9ch;
  }

  .selected-projects__hero p {
    max-width: 26rem;
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .selected-projects__panel {
    padding: 0.85rem;
    gap: 0.9rem;
  }

  .selected-project-card {
    border-radius: 1rem;
  }

  .selected-project-card__media {
    min-height: auto;
    aspect-ratio: 14 / 15;
  }

  .selected-project-card__copy {
    padding: 1.35rem 1.2rem;
    gap: 1rem;
  }

  .selected-project-card__index {
    font-size: 2.5rem;
  }

  .selected-project-card__heading h3 {
    max-width: none;
    font-size: 1.5rem;
  }

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

  .selected-project-card__thumbs {
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .selected-project-card__thumbs::-webkit-scrollbar {
    display: none;
  }

  .selected-project-card__thumb {
    flex: 0 0 4.6rem;
    width: 4.6rem;
  }

  .capability-board__intro {
    min-height: 24rem;
    padding-bottom: 1.2rem;
  }

  .capability-board__intro::before {
    inset: auto -10% 3rem -2%;
    height: 12rem;
    opacity: 0.16;
  }

  .capability-board__blueprint {
    min-height: 10rem;
  }

  .board-intro h2 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 8.6vw, 3.35rem);
  }

  .board-intro p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.05rem;
  }

  .capability-row__index {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .film-card__copy {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .film-card__index {
    display: inline-block;
  }

  .capability-row__visual {
    min-height: 10rem;
    padding: 0.5rem 0 0.15rem;
  }

  .capability-row__visual-shell {
    width: 100%;
    transform:
      translate3d(var(--visual-shift), var(--visual-parallax-y), 0)
      rotateY(calc(var(--visual-tilt) * 0.55))
      rotateX(calc(var(--visual-tilt) * -0.14));
  }

  .contact-board__form {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .field input,
  .field textarea,
  .contact-board__submit,
  .selected-projects__cta,
  .selected-project-card__link,
  .hero-reel__link {
    min-height: 3rem;
  }

  .field--full {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-reel {
    width: min(calc(100% - 1.5rem), var(--max-width));
    margin: 0 auto 2rem;
    min-height: calc(100svh - 70px);
    border-top: 0;
    border-radius: 0 0 1.2rem 1.2rem;
  }

  .hero-reel__hud,
  .hero-reel__footer {
    inset-inline: 1.2rem;
  }

  .hero-reel__content {
    width: min(calc(100% - 2.4rem), 1520px);
    padding: 8rem 0 11rem;
    align-items: end;
  }

  .hero-reel h1 {
    font-size: clamp(2.65rem, 11vw, 4.25rem);
    max-width: 9.2ch;
  }

  .hero-reel__headline {
    min-height: 3.9em;
  }

  .hero-reel__summary {
    max-width: 23rem;
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .capability-scene__visual,
  .film-player__stage,
  .contact-stage__panel,
  .statement-block,
  dialog {
    border-radius: 22px;
  }

  .manifesto,
  .capability-stage,
  .films-section,
  .studio-notes,
  .capabilities,
  .contact-stage,
  .topbar__inner,
  .footer__inner {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .hero-reel__corner {
    width: 2rem;
    height: 2rem;
  }

  .hero-reel__eyebrow,
  .hero-reel__meta {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .hero-reel__hud {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    inset: 5.8rem 1.2rem auto;
  }

  .hero-reel__footer {
    flex-direction: column;
    align-items: flex-start;
    inset: auto 1.2rem 8.75rem;
    gap: 0.8rem;
  }

  .hero-reel__scroll {
    transform: none;
  }

  .hero-reel__playback {
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .hero-reel__timeline {
    width: 6rem;
  }

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

  .hero-reel__info-block {
    min-height: auto;
    padding: 1.1rem 1.2rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-reel__info-block:first-child {
    border-top: 0;
  }

  .capability-scene__visual {
    min-height: 24rem;
  }

  .film-player {
    gap: 1rem;
  }

  .film-player__stage {
    order: -1;
  }

  .films-board__stage,
  .contact-board__form {
    padding-inline: 1rem;
  }

  .footer {
    padding: 0 0 1.6rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.15rem 1rem;
  }

  .footer__brand,
  .footer__links,
  .footer__copy {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }

  .film-nav {
    width: 3rem;
    height: 3rem;
  }

  .film-nav--prev {
    left: 0.8rem;
  }

  .film-nav--next {
    right: 0.8rem;
  }

  .contact-links {
    gap: 0.6rem;
  }
}

/* Top HUD belongs inside the upper brackets, below their horizontal strokes. */
.hero-reel__hud {
  top: calc(1.1rem + 0.9rem);
}

@media (max-width: 760px) {
  .hero-reel__hud {
    top: calc(1rem + 0.8rem);
  }
}

/* Final corner anchor overrides: keep these after all responsive rules. */
.hero-reel__hud {
  inset: 1.1rem;
  align-items: flex-start;
}

.hero-reel__eyebrow {
  margin-left: calc(var(--hero-corner-size) + 0.65rem);
}

.hero-reel__meta {
  margin-right: calc(var(--hero-corner-size) + 0.65rem);
}

.hero-reel__footer {
  inset-inline: 1.1rem;
  bottom: calc(8.2rem + 0.65rem);
}

.hero-reel__scroll {
  margin-left: calc(var(--hero-corner-size) + 0.65rem);
}

.hero-reel__playback {
  margin-right: calc(var(--hero-corner-size) + 0.65rem);
}

@media (max-width: 760px) {
  .hero-reel__hud {
    inset: 1rem;
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-reel__eyebrow {
    margin-left: calc(var(--hero-corner-size) + 0.45rem);
  }

  .hero-reel__meta {
    width: auto;
    margin-right: calc(var(--hero-corner-size) + 0.45rem);
    justify-content: flex-end;
    text-align: right;
  }

  .hero-reel__footer {
    inset-inline: 1rem;
    bottom: calc(8.2rem + 0.55rem);
  }

  .hero-reel__scroll {
    margin-left: calc(var(--hero-corner-size) + 0.45rem);
  }

  .hero-reel__playback {
    margin-right: calc(var(--hero-corner-size) + 0.45rem);
  }
}

/* Four-corner HUD alignment. Each text group sits against its matching guide. */
.hero-reel__hud {
  inset: 1.1rem;
  align-items: flex-start;
}

.hero-reel__eyebrow {
  margin-left: calc(var(--hero-corner-size) + 0.65rem);
}

.hero-reel__meta {
  margin-right: calc(var(--hero-corner-size) + 0.65rem);
}

.hero-reel__footer {
  inset-inline: 1.1rem;
  bottom: calc(8.2rem + 0.65rem);
}

.hero-reel__scroll {
  margin-left: calc(var(--hero-corner-size) + 0.65rem);
}

.hero-reel__playback {
  margin-right: calc(var(--hero-corner-size) + 0.65rem);
}

@media (max-width: 760px) {
  .hero-reel__hud {
    inset: 1rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-reel__eyebrow {
    margin-left: calc(var(--hero-corner-size) + 0.45rem);
  }

  .hero-reel__meta {
    width: auto;
    margin-right: calc(var(--hero-corner-size) + 0.45rem);
    justify-content: flex-end;
    text-align: right;
  }

  .hero-reel__footer {
    inset-inline: 1rem;
    bottom: calc(8.2rem + 0.55rem);
  }

  .hero-reel__scroll {
    margin-left: calc(var(--hero-corner-size) + 0.45rem);
  }

  .hero-reel__playback {
    margin-right: calc(var(--hero-corner-size) + 0.45rem);
  }
}

@media (max-width: 480px) {
  :root {
    --page-padding: 18px;
  }

  .brand small {
    display: none;
  }

  .topbar {
    padding-top: 0.5rem;
  }

  .topbar__inner,
  .nav,
  .hero-reel,
  .capability-board,
  .films-board,
  .contact-board,
  .selected-projects,
  .footer__inner {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .hero-reel {
    min-height: min(41rem, 100svh - 1rem);
    margin-bottom: 1rem;
  }

  .hero-reel__content {
    width: min(calc(100% - 1.6rem), 1520px);
    padding: 7.4rem 0 10.4rem;
  }

  .hero-reel__hud {
    inset: 5.1rem 0.8rem auto;
  }

  .hero-reel__footer {
    inset: auto 0.8rem 8.1rem;
  }

  .hero-reel h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    max-width: 8.8ch;
  }

  .hero-reel__headline {
    min-height: 3.55em;
  }

  .hero-reel__summary,
  .selected-projects__hero p,
  .board-intro p {
    font-size: 0.9rem;
  }

  .hero-reel__actions {
    gap: 0.7rem;
  }

  .hero-reel__link,
  .selected-projects__cta,
  .selected-project-card__link,
  .contact-board__submit {
    width: 100%;
    justify-content: space-between;
  }

  .selected-projects__hero {
    min-height: 34rem;
  }

  .selected-projects__hero h2 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .selected-project-card__copy {
    padding: 1.1rem 0.95rem;
  }

  .selected-project-card__heading h3 {
    font-size: 1.34rem;
  }

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

  .selected-project-card__thumb {
    flex-basis: 4rem;
    width: 4rem;
  }

  .board-intro,
  .contact-board__form {
    padding: 1rem;
  }

  .capability-row {
    padding: 0.95rem;
  }

  .capability-row__visual {
    min-height: 8rem;
  }

  .capability-row__copy h3,
  .film-card__body h3 {
    font-size: 1.1rem;
  }

  .film-nav {
    width: 2.65rem;
    height: 2.65rem;
  }

  .field input,
  .field textarea {
    padding: 0.92rem 0.9rem;
  }

  .footer__brand,
  .footer__links,
  .footer__copy {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) *,
  html:not(.force-motion) *::before,
  html:not(.force-motion) *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  html:not(.force-motion) .cursor-orb {
    display: none;
  }

  html:not(.force-motion) [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  html:not(.force-motion) [data-section-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }

  html:not(.force-motion) [data-section-reveal]::after {
    opacity: 0 !important;
    transform: none !important;
  }

  html:not(.force-motion) .hero-reel__headline-text,
  html:not(.force-motion) .glitch-layer,
  html:not(.force-motion) .hero-reel__headline-flash {
    transition: opacity 220ms ease !important;
    transform: none !important;
    filter: none !important;
    clip-path: inset(0 0 0 0) !important;
  }

  html:not(.force-motion) .hero-reel__headline.is-pulsing .glitch-ghost,
  html:not(.force-motion) .hero-reel__headline.is-pulsing .glitch-slice,
  html:not(.force-motion) .hero-reel__headline.is-glitching .glitch-ghost,
  html:not(.force-motion) .hero-reel__headline.is-glitching .glitch-slice,
  html:not(.force-motion) .hero-reel__headline.is-glitching .hero-reel__headline-flash,
  html:not(.force-motion) .hero-reel__headline.is-pulsing .hero-reel__headline-flash {
    opacity: 0 !important;
  }

  html:not(.force-motion) .selected-project-card__thumb,
  html:not(.force-motion) .selected-project-card__thumb img,
  html:not(.force-motion) .capability-row,
  html:not(.force-motion) .film-card,
  html:not(.force-motion) .selected-project-card {
    transform: none !important;
  }
}

html.perf-lite .cursor-orb {
  display: none;
}

html.perf-lite .topbar__inner,
html.perf-lite .selected-projects__cta,
html.perf-lite .selected-project-card__surface,
html.perf-lite .films-featured__controls,
html.perf-lite .film-player__controls,
html.perf-lite .contact-card,
html.perf-lite .footer__inner {
  backdrop-filter: none;
}

html.perf-lite .hero-reel.is-ready .hero-reel__video {
  animation: heroVideoSettle 1100ms var(--ease) both;
}

html.perf-lite .hero-reel__grain {
  opacity: 0.08;
}

html.perf-lite .hero-reel__scroll-dot,
html.perf-lite .divider-band__track {
  animation: none;
}

html.perf-lite .capability-row__visual::before,
html.perf-lite .capability-row__visual-blur,
html.perf-lite .selected-project-card__visual-glow,
html.perf-lite .selected-projects__hero-glow,
html.perf-lite .contact-stage__glow,
html.perf-lite .footer__glow {
  filter: none;
  opacity: 0.32;
}

html.perf-lite .hero-reel__video,
html.perf-lite .films-featured__video,
html.perf-lite .film-card__preview-video,
html.perf-lite .selected-project-card__thumb img,
html.perf-lite .capability-row__visual-shell img {
  filter: none;
}

html.perf-lite .glitch-layer,
html.perf-lite .hero-reel__headline-flash {
  animation-duration: 420ms;
}

/* Branded headline glitch remains active; reduced-motion still removes other motion. */
.glitch-enabled .hero-reel__headline.is-glitching .glitch-main {
  animation: heroMonoMain 700ms cubic-bezier(0.2, 0.86, 0.18, 1) both !important;
}
.glitch-enabled .hero-reel__headline.is-glitching .ghost-1 {
  opacity: 0.24 !important;
  animation: heroGhostOne 700ms steps(2, end) both !important;
}
.glitch-enabled .hero-reel__headline.is-glitching .ghost-2 {
  opacity: 0.16 !important;
  animation: heroGhostTwo 700ms steps(2, end) both !important;
}
.glitch-enabled .hero-reel__headline.is-glitching .slice-1 {
  opacity: 0.34 !important;
  animation: heroSliceOne 700ms cubic-bezier(0.2, 0.86, 0.18, 1) both !important;
}
.glitch-enabled .hero-reel__headline.is-glitching .slice-2 {
  opacity: 0.28 !important;
  animation: heroSliceTwo 700ms cubic-bezier(0.2, 0.86, 0.18, 1) both !important;
}
.glitch-enabled .hero-reel__headline.is-glitching .slice-3 {
  opacity: 0.24 !important;
  animation: heroSliceThree 700ms cubic-bezier(0.2, 0.86, 0.18, 1) both !important;
}
.glitch-enabled .hero-reel__headline.is-glitching .hero-reel__headline-flash {
  opacity: 0.2 !important;
  animation: heroScanlineFlash 700ms ease-out both !important;
}

@media (pointer: coarse), (max-width: 768px) {
  .motion-ready [data-section-reveal] {
    --section-intro-distance: 44px;
    --section-intro-scale: 0.992;
    clip-path: none;
    filter: none;
    transition:
      opacity 560ms var(--ease),
      transform 560ms var(--ease);
    will-change: opacity, transform;
  }

  .motion-ready [data-section-reveal]::after {
    display: none;
  }

  .motion-ready [data-section-reveal].is-section-visible {
    filter: none;
    animation: none;
  }

  .motion-ready [data-reveal] {
    --reveal-distance: 28px;
    --reveal-scale: 0.994;
    transition:
      opacity 520ms var(--ease),
      transform 520ms var(--ease);
  }

  .motion-ready [data-reveal].is-visible,
  .motion-ready [data-reveal][data-reveal-variant="soft"].is-visible,
  .motion-ready [data-reveal][data-reveal-variant="soft-scale"].is-visible,
  .motion-ready [data-reveal][data-reveal-variant="hero"].is-visible,
  .motion-ready [data-reveal][data-reveal-variant="left"].is-visible,
  .motion-ready [data-reveal][data-reveal-variant="right"].is-visible,
  .motion-ready [data-reveal][data-reveal-variant="nav"].is-visible {
    animation: none;
  }
}

@media (max-width: 768px) {
  .progress-rail {
    display: none;
  }

  [data-section-reveal] {
    --section-intro-distance: 72px;
    --section-intro-scale: 0.986;
    clip-path: inset(7% 0 0 0);
  }

  [data-reveal-variant="left"],
  [data-reveal-variant="right"] {
    --reveal-x: 0px;
    --reveal-y: 44px;
    --reveal-scale: 0.99;
  }
}

/* Lightweight section motion: preserves cinematic flow without scroll-blocking effects. */
.motion-ready [data-section-reveal] {
  opacity: 0 !important;
  transform: translate3d(0, 24px, 0) !important;
  clip-path: none !important;
  filter: none !important;
  animation: none !important;
  transition:
    opacity 560ms var(--ease),
    transform 560ms var(--ease) !important;
  will-change: opacity, transform !important;
}

.motion-ready [data-section-reveal].is-section-visible {
  opacity: 1 !important;
  transform: none !important;
  will-change: auto !important;
}

.motion-ready [data-section-reveal]::after {
  display: none !important;
}

/* Phone composition pass: deliberate single-column layouts, touch-sized controls, lighter media. */
@media (max-width: 760px) {
  :root {
    --page-padding: 12px;
    --topbar-height: 64px;
  }

  html,
  body {
    min-width: 0;
    overflow-x: clip;
  }

  body {
    font-size: 0.96rem;
  }

  .site-shell {
    overflow-x: clip;
  }

  .topbar {
    top: env(safe-area-inset-top, 0px);
    padding: 0.55rem 0 0;
    z-index: 70;
  }

  .topbar__inner {
    width: calc(100% - 1.25rem);
    min-height: 3.8rem;
    padding: 0.7rem 0.85rem;
    border-radius: 1rem;
    background: rgba(5, 8, 13, 0.82);
    backdrop-filter: blur(18px) saturate(125%);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    max-width: 10rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-nav-toggle {
    width: 2.9rem;
    height: 2.9rem;
    min-width: 2.9rem;
    border-radius: 0.8rem;
  }

  .nav {
    top: calc(env(safe-area-inset-top, 0px) + 4.65rem);
    left: 0.625rem;
    right: 0.625rem;
    gap: 0.45rem;
    padding: 0.65rem;
    border-radius: 1rem;
  }

  .nav a {
    min-height: 3.35rem;
    padding: 0.9rem 1rem;
    font-size: 0.84rem;
    letter-spacing: 0.13em;
  }

  .hero-reel {
    width: calc(100% - 1.25rem);
    min-height: min(47rem, calc(100svh - 4.8rem));
    margin: 0 auto 1rem;
    border-radius: 0 0 1.15rem 1.15rem;
  }

  .hero-reel__media {
    background: #080c13;
  }

  .hero-reel__video {
    object-position: 62% center;
  }

  .hero-reel__hud {
    inset: 4.75rem 1rem auto;
    gap: 0.55rem;
  }

  .hero-reel__eyebrow,
  .hero-reel__meta {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero-reel__meta {
    width: 100%;
    justify-content: space-between;
  }

  .hero-reel__content {
    width: calc(100% - 2rem);
    padding: 7.8rem 0 13rem;
  }

  .hero-reel__copy {
    max-width: 22rem;
  }

  .hero-reel__label {
    margin-bottom: 1rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .hero-reel h1 {
    max-width: 8.5ch;
    font-size: clamp(2.4rem, 11.6vw, 3.8rem);
    line-height: 0.98;
  }

  .hero-reel__headline {
    min-height: 3.65em;
  }

  .hero-reel__summary {
    max-width: 20rem;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .hero-reel__actions {
    margin-top: 1.5rem;
  }

  .hero-reel__link {
    min-height: 3.25rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(5, 8, 13, 0.42);
  }

  .hero-reel__footer {
    inset: auto 1rem 9.2rem;
  }

  .hero-reel__scroll,
  .hero-reel__copyright {
    font-size: 0.6rem;
    letter-spacing: 0.13em;
  }

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

  .hero-reel__info-block {
    min-height: 4.8rem;
    padding: 0.8rem 0.85rem;
    gap: 0.4rem;
  }

  .hero-reel__info-label {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }

  .hero-reel__info-block strong {
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .capability-board,
  .films-board,
  .selected-projects,
  .contact-board {
    width: calc(100% - 1.25rem);
    margin-bottom: 0.9rem;
    border-radius: 1.15rem;
  }

  .board-intro {
    min-height: 0;
    padding: 1.65rem 1rem 1.45rem;
  }

  .board-intro__eyebrow,
  .selected-projects__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .board-intro h2 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 9.8vw, 3.25rem);
    line-height: 0.96;
  }

  .board-intro p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .board-link {
    min-height: 3.1rem;
    padding: 0.75rem 0;
  }

  .capability-board__intro {
    min-height: 20rem;
  }

  .capability-board__blueprint {
    min-height: 6rem;
    opacity: 0.7;
  }

  .capability-board__blueprint-signoff {
    font-size: 0.55rem;
  }

  .capability-board__list,
  .films-board__stage {
    padding: 0.75rem;
  }

  .capability-row {
    gap: 0.9rem;
    padding: 1rem 0.85rem;
    border-radius: 0.95rem;
  }

  .capability-row__copy {
    gap: 0.7rem;
  }

  .capability-row__copy h3 {
    max-width: 13ch;
    font-size: clamp(1.55rem, 7.4vw, 2.2rem);
    line-height: 0.98;
  }

  .capability-row__copy p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .capability-row__visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 0;
  }

  .capability-row__visual-shell {
    transform: none;
  }

  .capability-row__visual-blur {
    display: none;
  }

  .films-featured {
    gap: 0.9rem;
  }

  .films-featured__media {
    aspect-ratio: 4 / 3;
    border-radius: 0.9rem;
  }

  .films-featured__frame {
    inset: 0.65rem;
  }

  .films-featured__meta {
    top: 0.8rem;
    left: 0.8rem;
    right: 0.8rem;
    gap: 0.4rem;
  }

  .films-featured__meta span {
    min-height: 1.8rem;
    padding: 0 0.6rem;
    font-size: 0.58rem;
  }

  .films-featured__controls {
    right: 0.8rem;
    bottom: 0.8rem;
    gap: 0.4rem;
  }

  .films-featured__playpause,
  .films-featured__volume,
  .films-featured__fullscreen {
    min-height: 2.7rem;
  }

  .films-featured__playpause {
    padding: 0 0.75rem;
    font-size: 0.72rem;
  }

  .films-featured__volume-group {
    min-height: 2.7rem;
  }

  .films-featured__volume-slider {
    display: none;
  }

  .films-featured__copy {
    gap: 0.55rem;
  }

  .films-featured__copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 0.98;
  }

  .films-featured__copy p,
  .film-card__body p {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .films-board__list {
    border-radius: 0.85rem;
  }

  .film-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem 0.85rem;
  }

  .film-card__copy {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .film-card__body h3 {
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
  }

  .film-card__preview {
    aspect-ratio: 16 / 9;
    border-radius: 0.7rem;
  }

  .selected-projects__hero {
    min-height: min(36rem, 82svh);
  }

  .selected-projects__hero-copy {
    padding: 1.6rem 1rem 1.25rem;
    gap: 0.9rem;
  }

  .selected-projects__hero h2 {
    max-width: 9.5ch;
    font-size: clamp(2.25rem, 11vw, 3.8rem);
    line-height: 0.96;
  }

  .selected-projects__hero p {
    max-width: 21rem;
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .selected-projects__cta,
  .selected-project-card__link,
  .contact-board__submit {
    min-height: 3.25rem;
  }

  .selected-projects__panel {
    padding: 0.7rem;
  }

  .selected-project-card {
    border-radius: 0.95rem;
  }

  .selected-project-card__media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .selected-project-card__media img {
    object-position: center;
  }

  .selected-project-card__copy {
    gap: 0.95rem;
    padding: 1.25rem 1rem 1.35rem;
  }

  .selected-project-card__heading {
    gap: 0.7rem;
  }

  .selected-project-card__index {
    font-size: 2.2rem;
  }

  .selected-project-card__kicker {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }

  .selected-project-card__heading h3 {
    max-width: 15ch;
    font-size: clamp(1.5rem, 7vw, 2.1rem);
    line-height: 1;
  }

  .selected-project-card__description {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .selected-project-card__meta {
    gap: 0.7rem;
  }

  .selected-project-card__meta dt,
  .selected-project-card__meta dd {
    font-size: 0.62rem;
  }

  .selected-project-card__link {
    width: 100%;
    justify-content: space-between;
  }

  .contact-board__form {
    gap: 0.8rem;
    padding: 1rem;
  }

  .field {
    gap: 0.5rem;
  }

  .field span {
    font-size: 0.62rem;
  }

  .field input,
  .field textarea {
    min-height: 3.25rem;
    padding: 0.9rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 0.7rem;
  }

  .field textarea {
    min-height: 8.5rem;
  }

  .contact-board__submit {
    justify-content: space-between;
    padding: 0 1rem;
    font-size: 0.72rem;
  }

  .footer {
    padding: 0 0 1rem;
  }

  .footer__inner {
    width: calc(100% - 1.25rem);
    gap: 1rem;
    padding: 1.1rem 0.95rem;
    border-radius: 1rem;
  }

  .footer__brand,
  .footer__links,
  .footer__copy {
    gap: 0.65rem 0.9rem;
    font-size: 0.6rem;
    line-height: 1.45;
  }

  dialog {
    width: calc(100% - 1.25rem);
    max-height: calc(100svh - 1.25rem);
    margin: auto;
    border-radius: 1rem;
  }

  .dialog-shell {
    padding: 0.75rem;
  }

  .dialog-project__intro h3 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
    line-height: 1;
  }

  .dialog-project__intro p {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .dialog-project__frame {
    padding: 0.45rem;
    border-radius: 0.8rem;
  }

  .dialog-project__frame img {
    max-height: 64svh;
  }
}

@media (max-width: 360px) {
  .hero-reel__info-block strong {
    font-size: 0.66rem;
  }

  .hero-reel__info-block {
    padding-inline: 0.7rem;
  }

  .films-featured__meta span:nth-child(3) {
    display: none;
  }

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

@media (hover: none), (pointer: coarse) {
  .capability-row:hover,
  .selected-project-card:hover,
  .films-featured__media:hover,
  .film-card:hover {
    transform: none;
  }

  .capability-row:hover .capability-row__visual-shell,
  .selected-project-card:hover .selected-project-card__media img,
  .selected-project-card:hover .selected-project-card__thumb img {
    transform: none;
    filter: none;
  }

  .capability-row:hover .capability-row__visual-blur {
    opacity: 0.5;
    filter: blur(42px);
  }
}

@media (max-width: 760px) {
  :root {
    --hero-corner-size: 2rem;
  }

  .hero-reel__footer {
    inset-inline: calc(1rem + var(--hero-corner-size) + 0.65rem);
    bottom: 8.2rem;
  }

  .hero-reel__playback {
    margin-left: auto;
    margin-right: 0;
  }

  .hero-reel__copyright {
    transform: none;
  }
}

/* Last-in-file corner alignment wins over legacy mobile overrides. */
.hero-reel__hud { inset: 1.1rem; align-items: flex-start; }
.hero-reel__eyebrow { margin-left: calc(var(--hero-corner-size) + 0.65rem); }
.hero-reel__meta { margin-right: calc(var(--hero-corner-size) + 0.65rem); }
.hero-reel__footer {
  inset-inline: 1.1rem;
  bottom: calc(8.2rem + 0.65rem);
}
.hero-reel__scroll { margin-left: calc(var(--hero-corner-size) + 0.65rem); }
.hero-reel__playback { margin-right: calc(var(--hero-corner-size) + 0.65rem); }

@media (max-width: 760px) {
  .hero-reel__hud { inset: 1rem; flex-direction: row; }
  .hero-reel__eyebrow { margin-left: calc(var(--hero-corner-size) + 0.45rem); }
  .hero-reel__meta {
    width: auto;
    margin-right: calc(var(--hero-corner-size) + 0.45rem);
    justify-content: flex-end;
    text-align: right;
  }
  .hero-reel__footer {
    inset-inline: 1rem;
    bottom: calc(8.2rem + 0.55rem);
  }
  .hero-reel__scroll { margin-left: calc(var(--hero-corner-size) + 0.45rem); }
  .hero-reel__playback { margin-right: calc(var(--hero-corner-size) + 0.45rem); }
}

/* Final top HUD position: inside upper corner brackets. */
.hero-reel__hud { top: calc(1.1rem + 0.9rem); }

@media (max-width: 760px) {
  .hero-reel__hud { top: calc(1rem + 0.8rem); }
}

