:root {
  --ink: #08090a;
  --ink-soft: #121417;
  --paper: #f5f6f3;
  --paper-soft: #d8dcd6;
  --muted: #979d98;
  --line: rgba(255, 255, 255, 0.17);
  --line-dark: rgba(8, 9, 10, 0.16);
  --accent: #d5ff35;
  --max: 1480px;
  --gutter: clamp(20px, 4vw, 72px);
  --header: 84px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.light { background: var(--paper); color: var(--ink); }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { background: var(--ink); backdrop-filter: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--accent);
  color: var(--ink);
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(8, 9, 10, 0.82), rgba(8, 9, 10, 0.18));
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img { width: 186px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.site-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
  transition: right 180ms ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.header-end { justify-self: end; display: flex; align-items: center; gap: 18px; }
.header-index { font-size: 0.7rem; letter-spacing: 0.14em; color: var(--paper-soft); }
.header-socials { display: flex; align-items: center; gap: 5px; }
.header-social-link {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  color: var(--paper-soft);
  font-size: .8rem;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.header-social-link:hover, .header-social-link:focus-visible { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.menu-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(8, 9, 10, 0.35);
  color: var(--paper);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}
.menu-toggle:hover, .menu-toggle:focus-visible { border-color: var(--accent); background: var(--accent); color: var(--ink); }
.menu-toggle span {
  position: absolute;
  left: 11px;
  top: 20px;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease;
}
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.shell { width: min(100%, var(--max)); margin: 0 auto; padding-inline: var(--gutter); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--accent); }
.display {
  margin: 0;
  font-size: clamp(4rem, 10vw, 10.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}
.page-title {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
.lede { max-width: 760px; font-size: clamp(1.1rem, 1.6vw, 1.55rem); line-height: 1.45; }
.muted { color: var(--muted); }
.kicker { color: var(--accent); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 2px 22px 0;
  border: 1px solid currentColor;
  background: rgba(4, 5, 6, .25);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--paper); border-color: var(--paper); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 900ms ease, transform 1600ms ease, visibility 900ms;
}
.hero-slider .hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slider .hero-slide .hero-content {
  min-height: 100%;
  margin: 0;
  padding: calc(var(--header) + 24px) max(var(--gutter), 84px) 24px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.hero-slider .hero-slide.is-active .hero-content {
  opacity: 1;
  transform: none;
  transition-delay: 420ms;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 5, 6, 0.92) 0%, rgba(4, 5, 6, 0.5) 43%, rgba(4, 5, 6, 0.08) 78%), linear-gradient(0deg, rgba(4, 5, 6, 0.88), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header) + 88px) var(--gutter) clamp(42px, 7vw, 92px);
}
.hero-slide--key-art .hero-media img,
.feature-hero--key-art .hero-media img {
  object-fit: contain;
  object-position: center;
}
.hero-slide--key-art .hero-media,
.feature-hero--key-art .hero-media { background: #030405; }
.hero-slide--key-art .hero-media::after,
.feature-hero--key-art .hero-media::after {
  background: linear-gradient(0deg, rgba(4, 5, 6, .72) 0%, transparent 26%, transparent 78%, rgba(4, 5, 6, .38) 100%);
}
.btn-trailer-primary {
  min-height: 56px;
  padding-inline: 28px;
  box-shadow: 0 0 0 0 rgba(213, 255, 53, .38);
  animation: trailer-attention 2.8s ease-out infinite;
}
.btn-trailer-primary i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .52rem;
  line-height: 1;
}
.btn-trailer-primary i::before { display: block; transform: translateX(1px); }
@keyframes trailer-attention {
  0%, 62%, 100% { box-shadow: 0 0 0 0 rgba(213, 255, 53, .3); }
  78% { box-shadow: 0 0 0 9px rgba(213, 255, 53, 0); }
}
.feature-hero--key-art .hero-content { pointer-events: none; }
.story-label { margin-top: 48px; }
.film-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  text-decoration: none;
  transform: translateX(-50%);
}
.film-scroll-cue > span:first-child {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.film-scroll-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(4,5,6,.62);
  color: var(--accent);
  font-size: 1.15rem;
  backdrop-filter: blur(10px);
  animation: film-scroll-pulse 1800ms ease-in-out infinite;
}
.film-scroll-cue:hover .film-scroll-arrow,
.film-scroll-cue:focus-visible .film-scroll-arrow { background: var(--accent); border-color: var(--accent); color: var(--ink); }
@keyframes film-scroll-pulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.film-socials {
  margin: 44px 0 34px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 24px;
}
.film-socials-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.film-socials-heading .eyebrow { margin-bottom: 8px; }
.film-socials-heading h3 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.6rem); letter-spacing: -.04em; }
.film-socials-mark {
  color: var(--accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.film-social-links { display: grid; gap: 8px; }
.film-social-links--official { grid-template-columns: repeat(3, 1fr); }
.film-social-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.film-social-links a:hover,
.film-social-links a:focus-visible { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.film-social-links a b { margin-left: auto; font-size: .9rem; }
.film-social-links a small { color: var(--paper-soft); font-size: .7rem; }
.film-social-links a:hover small,
.film-social-links a:focus-visible small { color: inherit; }
.social-monogram { font-size: .65rem; font-weight: 900; letter-spacing: -.04em; }
.film-socials-subhead { margin: 24px 0 10px; color: var(--paper-soft); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.film-social-links--talent { grid-template-columns: 1fr; }
.film-social-links--talent a { min-height: 46px; }
.hero-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 48px;
}
.hero-slider .hero-grid { grid-template-columns: minmax(0, 1fr); }
.hero-copy { max-width: 1000px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-note { max-width: 420px; margin: 0; padding: 0; align-self: center; color: var(--paper-soft); font-size: clamp(1.1rem, 1.6vw, 1.55rem); line-height: 1.45; }
.hero-director-credit {
  margin: 0 0 20px;
  color: var(--paper);
  font-size: clamp(.72rem, .9vw, .95rem);
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero-director-credit em { font-style: italic; }
.hero-cast {
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 34px;
  color: var(--paper);
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-slide--beast .eyebrow {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  letter-spacing: .18em;
}
.hero-cast span + span::before {
  display: none;
}
.hero-number {
  position: absolute;
  right: var(--gutter);
  top: 28%;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-edge-controls {
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
}
.hero-edge-control {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(4, 5, 6, .25);
  color: var(--paper);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.hero-edge-control--previous { left: clamp(12px, 2vw, 30px); }
.hero-edge-control--next { right: clamp(12px, 2vw, 30px); }
.hero-edge-control:hover,
.hero-edge-control:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-50%) scale(1.04);
}
.hero-edge-control:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
/* Legacy slider control styles remain available for archived pages that still use them. */
.hero-controls {
  display: flex;
  align-items: center;
  background: rgba(8, 9, 10, .76);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.hero-control {
  width: 46px;
  height: 46px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.hero-control:hover, .hero-control:focus-visible { background: var(--accent); color: var(--ink); }
.hero-control:last-child { border-right: 0; }
.hero-count { min-width: 72px; padding: 0 14px; text-align: center; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.hero-dots { flex: 1; display: flex; justify-content: center; gap: 6px; padding: 0 14px; }
.hero-dot { width: 22px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.35); cursor: pointer; }
.hero-dot.is-active { background: var(--accent); }

.section { padding: clamp(80px, 10vw, 150px) 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 44px; }
.section-head p { max-width: 520px; margin: 0; }
.section-head-side { max-width: 520px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.section-head-side p { margin: 0; }
.rule { border-top: 1px solid var(--line); }
.light-section { background: var(--paper); color: var(--ink); }
.light-section .rule { border-color: var(--line-dark); }

.film-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.film-card { position: relative; min-width: 0; background: var(--ink); overflow: hidden; }
.film-card-media { position: relative; aspect-ratio: 2 / 3; overflow: hidden; }
.film-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.65,.2,1); }
.film-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,7,8,.94), transparent 48%); }
.film-card:hover img { transform: scale(1.035); }
.film-card-copy { position: absolute; z-index: 2; inset: auto 22px 22px; }
.film-card h3 { margin: 6px 0 0; font-size: clamp(1.15rem, 1.8vw, 1.8rem); line-height: 1; letter-spacing: -0.035em; text-transform: uppercase; }
.film-card small { color: var(--accent); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.film-card-arrow { position: absolute; z-index: 3; right: 18px; top: 18px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(8,9,10,.5); }

.slate-section { overflow: hidden; }
.slate-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.film-rail-controls { display: flex; gap: 8px; }
.film-rail-control {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .52);
  background: rgba(4, 5, 6, .25);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}
.film-rail-control:hover,
.film-rail-control:focus-visible { background: var(--accent); border-color: var(--accent); color: var(--ink); outline: none; }
.film-rail-control:disabled { border-color: rgba(255, 255, 255, .28); color: rgba(255, 255, 255, .48); opacity: 1; cursor: default; }
.film-rail {
  border: 1px solid var(--line);
  background: var(--line);
  overflow: hidden;
}
.film-rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3px) / 4);
  gap: 1px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.film-rail-track::-webkit-scrollbar { display: none; }
.film-rail-track:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.film-rail-card { scroll-snap-align: start; }
.film-rail-card .film-card-copy { transition: transform 320ms cubic-bezier(.2,.8,.2,1); }
.film-card-genre {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--paper-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 260ms ease, margin 260ms ease, opacity 220ms ease, transform 260ms ease;
}
.film-rail-card:hover .film-card-copy,
.film-rail-card:focus-visible .film-card-copy { transform: translateY(-5px); }
.film-rail-card:hover .film-card-genre,
.film-rail-card:focus-visible .film-card-genre {
  max-height: 32px;
  margin-top: 10px;
  opacity: 1;
  transform: none;
}

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; min-height: 720px; }
.split-media { min-height: 520px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.film-bottom-split { min-height: 0; height: clamp(420px, 26vw, 500px); }
.film-bottom-split .split-media { min-height: 0; }
.film-bottom-split .split-media img { object-fit: cover; }
.about-story-split { grid-template-columns: 1fr 1fr; min-height: 0; }
.about-story-split .split-media { min-height: 0; aspect-ratio: 1 / 1; }
.about-story-split .split-media img { object-fit: cover; object-position: center; }
.about-story-split .split-copy { min-height: 0; justify-content: center; padding: clamp(36px, 4vw, 76px); }
.split-media--ark img { object-position: 72% center; }
.split-media--arrival img { object-position: right center; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 7vw, 110px); background: var(--paper); color: var(--ink); }
.film-bottom-split .split-copy { min-height: 0; height: 100%; justify-content: center; padding-block: clamp(32px, 3vw, 56px); }
.split-copy .eyebrow::before { background: var(--ink); }
.split-copy p { max-width: 620px; }

.news-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.news-card { min-height: 300px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.news-card:first-child { min-height: 410px; background: var(--accent); color: var(--ink); }
.news-card time, .meta { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.news-card h3 { margin: 28px 0 0; font-size: clamp(1.55rem, 2.5vw, 3.1rem); line-height: 1; letter-spacing: -0.045em; }

.page-hero { padding: calc(var(--header) + 100px) 0 70px; border-bottom: 1px solid var(--line); }
.page-hero-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); align-items: center; gap: clamp(50px, 8vw, 130px); }
.films-hero-row { align-items: center; }
.page-hero p { margin: 0; color: var(--paper-soft); }
.page-hero .page-title { font-size: clamp(4rem, 7.2vw, 7.75rem); }
.page-hero-row > p { max-width: 420px; align-self: center; font-size: clamp(1.1rem, 1.6vw, 1.55rem); line-height: 1.45; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn { min-height: 42px; padding: 0 16px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.filter-btn:hover, .filter-btn.is-active { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.film-card[hidden] { display: none; }

.feature-hero { min-height: 100svh; }
.feature-hero .hero-media img { object-position: center; }
.feature-hero .display { font-size: clamp(4.5rem, 13vw, 13rem); }
.detail-layout { display: grid; grid-template-columns: minmax(260px, 430px) 1fr; gap: clamp(45px, 8vw, 130px); align-items: start; }
.detail-poster { position: sticky; top: 110px; }
.detail-poster-frame { position: relative; }
.detail-poster img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.detail-poster-frame--natural img { height: auto; aspect-ratio: auto; object-fit: contain; }
.poster-trailer-link {
  position: static;
  width: 100%;
  min-height: 58px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 2px 22px 0;
  border: 1px solid var(--accent);
  background: linear-gradient(90deg, var(--ink) 0 50%, var(--accent) 50% 100%);
  background-position: 100% 0;
  background-size: 200% 100%;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-position 300ms cubic-bezier(.2,.8,.2,1), border-color 180ms ease, box-shadow 300ms ease, color 180ms ease;
}
.poster-trailer-link > span {
  display: inline-grid;
  place-items: center;
  line-height: 1;
  transform: translateY(0);
  transition: transform 180ms ease;
}
.poster-trailer-link:hover,
.poster-trailer-link:focus-visible {
  background-position: 0 0;
  border-color: var(--accent);
  box-shadow: 0 0 26px rgba(213,255,53,.2);
  color: var(--paper);
}
.poster-trailer-link:hover > span,
.poster-trailer-link:focus-visible > span { color: var(--accent); transform: translateX(4px); }
.poster-trailer-link.is-unavailable,
.split-trailer-link.is-unavailable { opacity: .72; cursor: not-allowed; }
.split-media--beast-still { background: #020508; }
.split-media--beast-still img { object-fit: cover; object-position: 60% center; }
.split-trailer-link { margin-left: 8px; }
.detail-copy h2 { max-width: 870px; }
.detail-copy .lede { color: var(--paper-soft); }
.detail-meta { margin: 48px 0; border-top: 1px solid var(--line); }
.detail-meta-row { display: grid; grid-template-columns: 160px 1fr; align-items: center; gap: 28px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.detail-meta-row dt { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.detail-meta-row dd { margin: 0; }
.detail-meta-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; }
.detail-meta-link b { color: var(--accent); font-weight: 500; }
.detail-meta-link:hover span, .detail-meta-link:focus-visible span { text-decoration: underline; text-underline-offset: 4px; }
.detail-meta-row--watch { align-items: start; }
.status-with-watch { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.watch-availability { width: 100%; }
.watch-links { display: flex; flex-wrap: wrap; gap: 8px; }
.watch-link { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid var(--line); background: rgba(255,255,255,.035); color: var(--paper); font-size: .66rem; font-weight: 900; line-height: 1; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
.watch-link i { color: var(--accent); font-size: 1rem; transition: color .2s ease; }
.watch-provider-mark { display: inline-flex; width: 19px; height: 19px; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent); color: #050505; font-size: .63rem; font-weight: 900; }
.watch-link:hover, .watch-link:focus-visible { border-color: var(--accent); background: var(--accent); color: #050505; transform: translateY(-1px); }
.watch-link:hover i, .watch-link:focus-visible i { color: #050505; }
.watch-link:hover .watch-provider-mark, .watch-link:focus-visible .watch-provider-mark { background: #050505; color: var(--accent); }
.watch-link--guide { border-color: rgba(207,255,29,.45); }

.statement { padding: clamp(100px, 14vw, 210px) 0; }
.statement p { margin: 0; max-width: 1180px; font-size: clamp(2.2rem, 5.5vw, 6.5rem); font-weight: 700; letter-spacing: -.06em; line-height: .98; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.stat {
  min-height: clamp(260px, 17vw, 320px);
  padding: clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(3rem, 6vw, 7rem); letter-spacing: -.07em; line-height: .9; }
.stat span { display: block; margin-top: 15px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.stat--feature { background: var(--accent); color: var(--ink); }
.stat--feature strong { max-width: 8ch; font-size: clamp(2.2rem, 4.3vw, 5rem); line-height: .86; text-transform: uppercase; }
.stat--feature span { color: var(--ink); }
.team-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.team-person { position: relative; min-height: 180px; padding: 32px 72px 32px 0; border-bottom: 1px solid var(--line); }
.team-person:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 42px; }
.team-person:nth-child(even) { padding-left: 42px; }
.team-person h3 { margin: 0 0 8px; font-size: clamp(1.6rem, 2.5vw, 2.8rem); letter-spacing: -.04em; }
.team-person p { margin: 0; color: var(--muted); }
.team-person a { position: absolute; right: 24px; top: 35px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 100svh; padding-top: var(--header); }
.contact-panel { padding: clamp(70px, 8vw, 130px) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.contact-panel:first-child { border-right: 1px solid var(--line); }
.contact-details { margin-top: 50px; }
.contact-details a, .contact-details address { display: block; margin: 0 0 12px; font-style: normal; font-size: clamp(1.1rem, 1.6vw, 1.45rem); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .69rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 15px 0; background: transparent; color: var(--paper); outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }
.field select option { color: var(--ink); }
.form-note { color: var(--muted); font-size: .78rem; }
.form-note.is-success { color: var(--accent); }
.form-note.is-error { color: #ff8f8f; }
.contact-form button:disabled { cursor: wait; opacity: .58; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { position: relative; padding: clamp(46px, 5vw, 68px) var(--gutter) 24px; border-top: 1px solid var(--line); background: #050607; }
.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) .8fr 1.15fr .9fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
}
.footer-brand,
.footer-column { padding: clamp(28px, 3.5vw, 46px); border-right: 1px solid var(--line); }
.footer-column:last-child { border-right: 0; }
.footer-brand img { width: min(220px, 100%); }
.footer-brand p { max-width: 280px; margin: 24px 0 0; color: var(--paper-soft); font-size: .95rem; line-height: 1.6; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-style: normal; }
.footer-column a, .footer-column span { color: var(--paper-soft); font-size: .88rem; line-height: 1.55; text-decoration: none; }
.footer-column a { display: flex; align-items: center; gap: 10px; }
.footer-column a::before,
.footer-contact > span::before {
  width: 16px;
  flex: 0 0 16px;
  color: var(--muted);
  font-family: FontAwesome;
  text-align: center;
}
.footer-column a[href="films.html"]::before { content: "\f008"; }
.footer-column a[href="news.html"]::before { content: "\f1ea"; }
.footer-column a[href="about.html"]::before { content: "\f1ad"; }
.footer-column a[href="investing.html"]::before { content: "\f201"; }
.footer-column a[href*="theanimationroundtable.com"]::before { content: "\f0c0"; }
.footer-column a[href="contact.html"]::before,
.footer-column a[href^="mailto:"]::before { content: "\f0e0"; }
.footer-column a[href^="tel:"]::before { content: "\f095"; }
.footer-contact > span { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact > span::before { content: "\f041"; padding-top: 2px; }
.footer-column a:hover, .footer-column a:focus-visible { color: var(--accent); }
.footer-column a[href*="theanimationroundtable.com"] { color: var(--accent); }
.footer-column a[href^="mailto:"] { text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 4px; }
.footer-heading { margin: 0 0 12px; color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.footer-bottom { width: min(100%, var(--max)); margin: 0 auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--paper); text-decoration: none; }
.footer-socials a:hover, .footer-socials a:focus-visible { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.copyright { color: var(--muted); font-size: .75rem; }

.film-latest { padding-top: clamp(70px, 8vw, 115px); padding-bottom: clamp(70px, 8vw, 115px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0b0d0f; }
.film-latest-grid { display: grid; grid-template-columns: .85fr 1.15fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.film-latest-card { position: relative; min-height: 270px; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--paper); text-decoration: none; transition: background 180ms ease, color 180ms ease; }
.film-latest-card--video { background: var(--accent); color: var(--ink); }
.film-latest-card:hover, .film-latest-card:focus-visible { background: var(--paper); color: var(--ink); }
.film-latest-type { display: flex; align-items: center; gap: 10px; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.film-latest-card h3 { max-width: 780px; margin: 46px 0 0; font-size: clamp(1.75rem, 3.2vw, 4rem); line-height: .98; letter-spacing: -.045em; }
.film-latest-arrow { position: absolute; right: 24px; top: 24px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; }

.film-page-hero .hero-media img { object-position: center; }
.film-page-hero .hero-media::after { background: linear-gradient(90deg, rgba(4,5,6,.93) 0%, rgba(4,5,6,.52) 44%, rgba(4,5,6,.12) 78%), linear-gradient(0deg, rgba(4,5,6,.9), transparent 58%); }
.film-page-hero .display { max-width: 1100px; font-size: clamp(3.5rem, 9vw, 9.5rem); }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.split-media--poster { background: #050607; }
.split-media--poster img { object-fit: contain; object-position: center; }
.film-latest-grid--equal { grid-template-columns: repeat(2, 1fr); }
.film-social-links--resources { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.news-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.news-story { display: flex; min-width: 0; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0b0d0f; transition: background 180ms ease, color 180ms ease; }
.news-story:hover, .news-story:focus-visible { background: var(--paper); color: var(--ink); }
.news-story-media { aspect-ratio: 16 / 10; overflow: hidden; background: #121417; }
.news-story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.65,.2,1); }
.news-story:hover .news-story-media img { transform: scale(1.035); }
.news-story-copy { min-height: 250px; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 38px); }
.news-story-copy h2 { margin: 28px 0 40px; font-size: clamp(1.35rem, 2.15vw, 2.45rem); line-height: 1.03; letter-spacing: -.04em; }
.news-story-link { margin-top: auto; color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.news-story:hover .news-story-link { color: var(--ink); }

.investing-hero { background: radial-gradient(circle at 78% 35%, rgba(213,255,53,.15), transparent 25%), #08090a; }
.investing-hero .page-hero-row { align-items: center; }
.investing-hero .page-hero-row > * { align-self: center; }
.investing-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.investor-form { padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line); background: #0b0d0f; }
.investor-form .btn { width: fit-content; margin-top: 12px; }

.profile-hero { background: radial-gradient(circle at 78% 40%, rgba(213,255,53,.12), transparent 26%), #08090a; }
.profile-hero-grid { display: grid; grid-template-columns: 1fr minmax(310px, 430px); align-items: center; gap: clamp(44px, 8vw, 120px); }
.profile-hero-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; }
.profile-contact-card { border: 1px solid var(--line); background: #0b0d0f; }
.profile-contact-heading { margin: 0; padding: 18px 22px; border-bottom: 1px solid var(--line); color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.profile-contact-link { min-height: 70px; display: grid; grid-template-columns: 28px minmax(0, 1fr) 24px; align-items: center; gap: 13px; padding: 14px 20px; border-bottom: 1px solid var(--line); color: var(--paper); transition: background 180ms ease, color 180ms ease; }
.profile-contact-link:last-child { border-bottom: 0; }
.profile-contact-link > i { width: 28px; color: var(--accent); text-align: center; }
.profile-contact-link span { min-width: 0; display: flex; flex-direction: column; }
.profile-contact-link small { color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.profile-contact-link strong { overflow-wrap: anywhere; font-size: .92rem; font-weight: 650; }
.profile-contact-link b { font-weight: 500; text-align: right; }
.profile-contact-link:hover, .profile-contact-link:focus-visible { background: var(--accent); color: var(--ink); }
.profile-contact-link:hover > i, .profile-contact-link:focus-visible > i, .profile-contact-link:hover small, .profile-contact-link:focus-visible small { color: var(--ink); }
.profile-layout { display: grid; grid-template-columns: minmax(240px, .65fr) 1.35fr; gap: clamp(50px, 9vw, 145px); align-items: start; }
.profile-aside { position: sticky; top: 120px; }
.profile-aside h2 { margin: 0; max-width: 330px; font-size: clamp(2rem, 3.2vw, 3.6rem); line-height: .98; letter-spacing: -.045em; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.profile-copy p { margin: 0 0 28px; color: var(--paper-soft); font-size: clamp(1.15rem, 1.65vw, 1.55rem); line-height: 1.6; }
.profile-cta { border-top: 1px solid var(--line); background: #0b0d0f; }
.profile-cta .btn { margin-top: 34px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1280px) {
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; place-items: center; }
  .header-socials { display: none; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    z-index: 101;
    width: 100%;
    height: calc(100dvh - var(--header));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: var(--gutter);
    background: var(--ink);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
  .site-nav a { font-size: clamp(1.8rem, 4.5vw, 3.25rem); line-height: 1.05; letter-spacing: -.04em; }
  .site-nav a::after { display: none; }
}

@media (max-width: 1000px) {
  :root { --header: 72px; }
  .site-header { grid-template-columns: 1fr auto; }
  .brand img { width: 158px; }
  .menu-toggle { display: grid; place-items: center; }
  .header-index { display: none; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    z-index: 101;
    width: 100%;
    height: calc(100dvh - var(--header));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: var(--gutter);
    background: var(--ink);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
  .site-nav a { font-size: clamp(1.8rem, 7vw, 3.6rem); line-height: 1.05; letter-spacing: -.04em; }
  .site-nav a::after { display: none; }
  .hero-grid, .page-hero-row { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  .hero-controls-shell { display: block; }
  .hero-controls { width: max-content; margin-left: auto; }
  .hero-dots { flex: 0 0 auto; }
  .film-grid { grid-template-columns: repeat(2, 1fr); }
  .film-rail-track { grid-auto-columns: calc((100% - 1px) / 2); }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 62vw; }
  .film-bottom-split { min-height: 0; height: auto; }
  .film-bottom-split .split-media { min-height: 0; aspect-ratio: 16 / 9; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:first-child { grid-column: 1 / -1; }
  .detail-layout { grid-template-columns: 300px 1fr; gap: 45px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .investing-layout, .profile-layout { grid-template-columns: 1fr; }
  .profile-aside { position: static; }
  .footer-brand, .footer-column { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .footer-grid > :nth-child(even) { border-right: 0; }
  .footer-grid > :nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 660px) {
  .hero { min-height: 820px; }
  .hero-media img { object-position: 62% center; }
  .hero-slide--key-art .hero-media img,
  .feature-hero--key-art .hero-media img { object-fit: cover; object-position: center; }
  .hero-media::after { background: linear-gradient(0deg, rgba(4,5,6,.97) 3%, rgba(4,5,6,.42) 72%, rgba(4,5,6,.55)); }
  .hero-number { display: none; }
  .hero-controls-wrap { bottom: 40px; }
  .hero-dots { display: none; }
  .hero-content { padding-bottom: 40px; }
  .film-grid, .news-grid, .team-list, .stats, .contact-form { grid-template-columns: 1fr; }
  .film-rail-track { grid-auto-columns: 82%; }
  .slate-actions { align-items: stretch; }
  .news-card:first-child { grid-column: auto; }
  .section-head { display: block; }
  .section-head p { margin-top: 20px; }
  .section-head-side { margin-top: 24px; }
  .section-head-side p { margin-top: 0; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-poster { position: static; max-width: 320px; }
  .detail-meta-row { grid-template-columns: 110px 1fr; }
  .film-social-links--official { grid-template-columns: 1fr; }
  .film-socials-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .film-latest-grid { grid-template-columns: 1fr; }
  .film-latest-grid--equal, .film-social-links--resources, .news-archive-grid { grid-template-columns: 1fr; }
  .profile-hero-grid { grid-template-columns: 1fr; }
  .profile-contact-card { margin-top: 10px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .team-person:nth-child(odd), .team-person:nth-child(even) { padding: 28px 62px 28px 0; border-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-column { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-grid > :nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid > :last-child { border-bottom: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column-reverse; }
}

/* Flyout navigation: cinematic focus-pull hover and opening motion. */
@media (max-width: 1280px) {
  .site-nav a {
    display: block;
    color: var(--paper);
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(-18px, 0, 0);
    transition:
      color 220ms ease,
      opacity 260ms ease,
      filter 260ms ease,
      transform 360ms cubic-bezier(.2, .8, .2, 1),
      text-shadow 220ms ease;
  }
  .site-nav a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    width: 4px;
    height: .72em;
    background: var(--accent);
    box-shadow: 0 0 22px rgba(213, 255, 53, .62);
    opacity: 0;
    transform: translateY(-50%) scaleY(.2);
    transition: opacity 220ms ease, transform 280ms cubic-bezier(.2, .8, .2, 1);
  }
  .site-nav.is-open a {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
  .site-nav.is-open a:nth-child(1) { transition-delay: 35ms; }
  .site-nav.is-open a:nth-child(2) { transition-delay: 65ms; }
  .site-nav.is-open a:nth-child(3) { transition-delay: 95ms; }
  .site-nav.is-open a:nth-child(4) { transition-delay: 125ms; }
  .site-nav.is-open a:nth-child(5) { transition-delay: 155ms; }
  .site-nav.is-open a:nth-child(6) { transition-delay: 185ms; }
  .site-nav.is-open a:nth-child(7) { transition-delay: 215ms; }
  .site-nav.is-open:has(a:is(:hover, :focus-visible)) a:not(:hover):not(:focus-visible) {
    color: var(--muted);
    opacity: .28;
    filter: blur(1.5px);
    transform: translate3d(-5px, 0, 0);
    transition-delay: 0ms;
  }
  .site-nav.is-open a:is(:hover, :focus-visible) {
    color: var(--accent);
    opacity: 1;
    filter: blur(0);
    outline: none;
    transform: translate3d(18px, 0, 0);
    text-shadow: 0 0 30px rgba(213, 255, 53, .24);
    transition-delay: 0ms;
  }
  .site-nav.is-open a:is(:hover, :focus-visible)::before {
    opacity: .5;
    transform: translateY(-50%) scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .film-scroll-arrow { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

