@font-face {
  font-family: "Dia";
  src: url("/Type/Dia-Regular.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter Display";
  src: url("/Type/InterDisplay-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter Display";
  src: url("/Type/InterDisplay-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Autoscape Round";
  src: url("/Type/AutoscapeRoundLLTrialTT-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Space Mono";
  src: url("/Type/SpaceMono-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@property --ambient-bg {
  syntax: "<color>";
  inherits: true;
  initial-value: #252836;
}

:root {
  --paper: #fff;
  --ambient-bg: #252836;
  --charcoal: #252836;
  --deep-charcoal: #242424;
  --teal: #2a5550;
  --earth: #61584d;
  --about-ink: #000;
  --utility-grey: #606b9d;
  --footer-type: clamp(11px, 0.926vw, 16px);
  --gutter: clamp(18px, 2.2vw, 38px);
  --home-gutter: clamp(20px, 1.91vw, 33px);
  --media-gutter: clamp(12px, 1.273vw, 22px);
  --bar: clamp(58px, 6.94vh, 78px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--charcoal);
  color: #fff;
  font-family: "Inter Display", Arial, sans-serif;
  min-width: 320px;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow: hidden;
}

button,
a,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
input:focus {
  outline: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

button {
  background: none;
  border: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-shell {
  --charcoal: var(--ambient-bg);
  --utility-grey: hsl(from var(--ambient-bg) h calc(s + 5.5) 49.6%);
  --identity-secondary: #888ca2;
  background: var(--ambient-bg);
  color: #fff;
  display: grid;
  grid-template-rows: var(--bar) minmax(0, 1fr) var(--bar);
  height: 100dvh;
  isolation: isolate;
}

body[data-route="home"] .site-shell {
  background: var(--charcoal);
}

body[data-route="home"] .site-header,
body[data-route="home"] .site-footer,
body[data-route="about"] .site-header,
body[data-route="about"] .site-footer {
  padding-left: var(--home-gutter);
  padding-right: clamp(20px, 2.14vw, 37px);
}

body[data-route="home"][data-ambient="cycle"] .site-shell {
  animation: ambient-shift 96s ease-in-out infinite;
}

/* Reversible palette trial. The ambient cycle and its calculated tints stay intact. */
body[data-ambient="black"] { background: #000; }

body[data-ambient="black"]:not([data-route]) .site-shell,
body[data-route="home"][data-ambient="black"] .site-shell {
  --ambient-bg: #000;
  --charcoal: #000;
  --utility-grey: #fff;
  --identity-secondary: #fff;
  animation: none;
  background: #000;
  color: #fff;
}

body[data-route="about"] .site-shell {
  animation: none;
  background: var(--paper);
  color: var(--about-ink);
}

body[data-route="about"] #app {
  overflow: visible;
}

@keyframes ambient-shift {
  0%, 100% { --ambient-bg: #252836; }
  33.333% { --ambient-bg: #213937; }
  66.666% { --ambient-bg: #362725; }
}

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 30;
}

.site-header {
  justify-content: space-between;
}

.site-footer {
  font-size: var(--footer-type);
  justify-content: flex-end;
  letter-spacing: -0.018em;
  line-height: 1;
}

.site-footer p,
.site-footer time {
  margin: 0;
}

.identity-line,
.identity-cycle {
  display: flex;
  white-space: nowrap;
}

.identity-line {
  align-items: baseline;
  min-width: 0;
}

.identity-cycle {
  align-items: baseline;
  font-size: clamp(12px, 1.1vw, 19px);
  letter-spacing: -0.018em;
  line-height: 1;
  margin: 0 0 0 3px;
  min-width: min(48vw, 700px);
}

.typing-cursor {
  animation: cursor-blink 780ms steps(1, end) infinite;
  background: currentColor;
  display: inline-block;
  height: 1.05em;
  margin-left: 3px;
  width: 1px;
}

@keyframes cursor-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.wordmark,
.player-wordmark {
  font-size: clamp(14px, 1.215vw, 21px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.wordmark {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.more-films {
  cursor: pointer;
  letter-spacing: -0.018em;
  transform: translateY(1.5px);
  transition:
    color 240ms ease,
    transform 420ms var(--ease-out);
}

.more-films:hover,
.more-films:focus-visible {
  color: #fff;
  transform: translate(5px, 1.5px);
}

body[data-route="about"] .more-films {
  opacity: 0;
  pointer-events: none;
}

body[data-route="home"] .identity-line {
  color: #fff;
  font-family: "Autoscape Round", "Space Mono", monospace;
}

body[data-route="home"] .wordmark {
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: clamp(14px, 1.1vw, 19px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-transform: uppercase;
}

body[data-route="home"] .identity-cycle {
  color: var(--identity-secondary);
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: clamp(13px, 0.984vw, 17px);
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 0 0.55em;
}

body[data-route="home"] .typing-cursor {
  color: var(--identity-secondary);
  height: 0.9em;
}

body[data-route="home"] .site-nav {
  color: var(--utility-grey);
  font-family: "Autoscape Round", "Space Mono", monospace;
}

body[data-route="home"] .menu-toggle {
  transform: translateY(calc(3.383vh - var(--bar) / 2 + clamp(9px, 0.868vw, 15px) / 2));
}

body[data-route="home"] .site-footer {
  color: #fff;
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: var(--footer-type);
  letter-spacing: 0;
}

body[data-route="about"] .identity-line,
body[data-route="about"] .site-nav,
body[data-route="about"] .site-footer {
  font-family: "Autoscape Round", "Space Mono", monospace;
}

body[data-route="about"] .wordmark {
  color: #000;
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: clamp(14px, 1.1vw, 19px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-transform: uppercase;
}

body[data-route="about"] .identity-cycle {
  display: none;
}

body[data-route="about"] .nav-cluster {
  color: #000;
}

body[data-route="about"] .menu-toggle {
  transform: translateY(calc(3.16vh - var(--bar) / 2 + clamp(9px, 0.868vw, 15px) / 2));
}

body[data-route="about"] .site-footer {
  color: #000;
  font-size: var(--footer-type);
  letter-spacing: 0;
}

.more-films {
  align-items: baseline;
  display: inline-flex;
  gap: 6px;
}

.more-icon {
  color: currentColor;
  font-family: "Inter Display", Arial, sans-serif;
  font-size: 1.18em;
  line-height: 1;
}

.live-clock {
  cursor: default;
  font-variant-numeric: tabular-nums;
  position: relative;
  text-align: right;
  transform: translateY(-1.25px);
  white-space: nowrap;
}

.clock-time {
  display: block;
  transition:
    color 260ms ease,
    opacity 320ms ease,
    transform 480ms var(--ease-out);
}

.clock-location {
  color: #fff;
  display: flex;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.clock-location-part {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em);
  transition:
    clip-path 520ms steps(var(--piece-steps), end),
    opacity 180ms ease,
    transform 480ms var(--ease-out);
  transition-delay: 0ms;
}

.live-clock:hover .clock-time,
.live-clock:focus-visible .clock-time {
  opacity: 0;
  transform: translateY(-5px);
}

.live-clock:hover .clock-location-part,
.live-clock:focus-visible .clock-location-part {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--piece-index) * 115ms);
}

body[data-route="about"] .clock-location {
  color: #000;
  text-shadow: none;
}

.mono-colon,
.film-duration,
.mono-punctuation {
  font-family: "Space Mono", monospace;
}

.nav-cluster {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.nav-cluster::before {
  content: "";
  height: 238px;
  pointer-events: auto;
  position: absolute;
  right: -24px;
  top: -18px;
  width: 190px;
  z-index: 1;
}

.site-nav {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  font-size: clamp(11px, 0.868vw, 15px);
  gap: clamp(6px, 0.84vh, 9.4px);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: right;
  text-transform: uppercase;
  top: calc(100% + 6px);
  transform: translateY(-8px);
  transition:
    opacity 420ms var(--ease-out),
    transform 620ms var(--ease-out);
  white-space: nowrap;
  z-index: 3;
}

.site-nav a,
.site-nav button {
  color: var(--utility-grey);
  cursor: pointer;
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  transition: color 220ms ease;
}

body[data-route="home"] .site-nav [aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  color: #fff;
}

body[data-route="about"] .site-nav a,
body[data-route="about"] .site-nav button {
  color: #6a6a6a;
}

body[data-route="about"] .site-nav [aria-current="page"],
body[data-route="about"] .site-nav a:hover,
body[data-route="about"] .site-nav a:focus-visible,
body[data-route="about"] .site-nav button:hover,
body[data-route="about"] .site-nav button:focus-visible {
  color: #000;
}

.site-nav a::after,
.site-nav button::after {
  display: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav button:hover::after,
.site-nav button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cluster.is-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 54px;
  justify-content: flex-end;
  min-width: 54px;
  position: relative;
  z-index: 4;
}

.menu-toggle:focus-visible {
  outline-offset: -5px;
}

.menu-toggle .menu-dot {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: clamp(9px, 0.868vw, 15px);
  transform: translateZ(0);
  transition:
    opacity 300ms ease,
    transform 500ms var(--ease-out);
  width: clamp(9px, 0.868vw, 15px);
}

.menu-toggle .menu-dot + .menu-dot {
  margin-left: 0;
}

body[data-route="about"] .wordmark {
  transition:
    letter-spacing 420ms var(--ease-out),
    transform 520ms var(--ease-out);
}

body[data-route="about"] .wordmark::before {
  content: "↖";
  font-family: "Inter Display", Arial, sans-serif;
  font-size: 0.88em;
  left: -17px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translate(8px, 7px) rotate(12deg);
  transition:
    opacity 240ms ease,
    transform 520ms var(--ease-out);
}

body[data-route="about"] .wordmark:hover,
body[data-route="about"] .wordmark:focus-visible {
  letter-spacing: 0.035em;
  transform: translateX(16px);
}

body[data-route="about"] .wordmark:hover::before,
body[data-route="about"] .wordmark:focus-visible::before {
  opacity: 1;
  transform: translate(0, 0) rotate(0);
}

.nav-cluster.is-open .menu-toggle .menu-dot:nth-last-child(2) {
  opacity: 0;
  transform: translateX(100%) scale(0.4);
}

#app {
  background: transparent;
  min-height: 0;
  outline: none;
  overflow: hidden;
  position: relative;
}

.page {
  height: 100%;
  opacity: 0;
  position: relative;
  transform: translateY(12px);
  transition:
    opacity 680ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.page.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.page.is-leaving {
  opacity: 0;
  transform: translateY(-9px);
  transition-duration: 260ms;
  transition-timing-function: var(--ease-in-out);
}

.home-page {
  background: transparent;
  overflow: visible;
}

.home-page::after {
  background: var(--charcoal);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 950ms 60ms var(--ease-in-out);
  z-index: 10;
}

.home-page.is-ready::after {
  transform: scaleY(0);
  transform-origin: bottom;
}

.film-viewport {
  inset: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  position: absolute;
  scrollbar-width: none;
  z-index: 2;
}

.film-viewport::-webkit-scrollbar {
  display: none;
}

.film-strip {
  --film-gap: clamp(18px, 1.7vw, 30px);
  --film-rule-color: color-mix(in srgb, var(--utility-grey) 80%, #000);
  align-items: flex-start;
  display: flex;
  gap: var(--film-gap);
  left: var(--home-gutter);
  padding-right: var(--home-gutter);
  position: absolute;
  top: min(calc(51.47dvh - var(--bar)), calc(100% - 22.35375vw - 58px));
  width: max-content;
}

.film-card {
  --intro-y: 55px;
  border: 0;
  cursor: pointer;
  flex: 0 0 39.74vw;
  height: 22.35375vw;
  opacity: 0;
  overflow: visible;
  position: relative;
  transform: translate3d(0, var(--intro-y), 0);
  transition:
    flex-basis 720ms var(--ease-out),
    opacity 600ms var(--ease-out),
    transform 700ms var(--ease-out),
    width 720ms var(--ease-out);
  width: 39.74vw;
}

.film-card:hover,
.film-card:focus-visible:not(.is-pointer-return) {
  flex-basis: 44.5vw;
  width: 44.5vw;
}

/* Shared vertical splices. Remove this rule and .film-divider to omit them. */
.film-divider {
  background: var(--film-rule-color);
  height: 100%;
  left: calc(var(--film-gap) / -2 - .5px);
  opacity: .62;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 1px;
}

.film-card:first-child .film-divider { display: none; }

/*
 * EXPERIMENT: FRAME MARKERS
 * Remove this entire block plus the .frame-markers span in homeMarkup() to
 * cleanly remove the treatment without touching the film-card layout.
 */
.frame-markers {
  --frame-marker-size: 9px;
  /* Previously 2.5px from the marker's tip to the line; now 3px farther away. */
  --frame-marker-clearance: 5.5px;
  color: var(--film-rule-color);
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
  transition: opacity 90ms ease;
  z-index: 5;
}

.frame-marker {
  height: var(--frame-marker-size);
  opacity: 0;
  position: absolute;
  transform: scale(0.35) rotate(45deg);
  width: var(--frame-marker-size);
}

.frame-marker::before,
.frame-marker::after {
  background: currentColor;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.frame-marker::before {
  height: 1px;
  width: 100%;
}

.frame-marker::after {
  height: 100%;
  width: 1px;
}

.frame-marker--tl {
  left: calc(var(--film-gap) / -2 - var(--frame-marker-size) / 2);
  top: calc(0px - var(--frame-marker-size) - var(--frame-marker-clearance));
  transform-origin: center;
}

.frame-marker--bl {
  bottom: calc(0px - var(--frame-marker-size) - var(--frame-marker-clearance));
  left: calc(var(--film-gap) / -2 - var(--frame-marker-size) / 2);
  transform-origin: center;
}

.frame-marker--tr,
.frame-marker--br {
  display: none;
  right: calc(var(--film-gap) / -2 - var(--frame-marker-size) / 2);
  transform-origin: center;
}

.frame-marker--tr { top: calc(0px - var(--frame-marker-size) - var(--frame-marker-clearance)); }

.frame-marker--br {
  bottom: calc(0px - var(--frame-marker-size) - var(--frame-marker-clearance));
}

.film-card:last-child .frame-marker--tr,
.film-card:last-child .frame-marker--br {
  display: block;
}

/* No leading markers: the first image shares the wordmark/footer alignment. */
.film-card:first-child .frame-marker--tl,
.film-card:first-child .frame-marker--bl {
  display: none;
}

.home-page.is-ready .frame-marker {
  animation: frame-marker-arrive 180ms var(--ease-out) both;
  animation-delay: calc(610ms + var(--frame-index) * 28ms + var(--corner-index) * 9ms);
}

.film-strip:has(.film-card:hover) .frame-markers,
.film-strip:has(.film-card:focus-visible:not(.is-pointer-return)) .frame-markers {
  opacity: 0;
}

@keyframes frame-marker-arrive {
  from {
    opacity: 0;
    transform: scale(0.35) rotate(45deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
/* END EXPERIMENT: FRAME MARKERS */

.film-card:nth-child(1) { transition-delay: 180ms; }
.film-card:nth-child(2) { transition-delay: 230ms; }
.film-card:nth-child(3) { transition-delay: 280ms; }
.film-card:nth-child(4) { transition-delay: 330ms; }
.film-card:nth-child(5) { transition-delay: 380ms; }
.film-card:nth-child(6) { transition-delay: 430ms; }
.film-card:nth-child(7) { transition-delay: 480ms; }

.home-page.is-ready .film-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.film-media {
  background: #171717;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.film-media::after {
  background: linear-gradient(110deg, #171717 20%, #262626 42%, #171717 63%);
  background-size: 220% 100%;
  content: "";
  inset: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  transition: opacity 500ms ease;
}

.film-card.is-loaded .film-media::after {
  opacity: 0;
}

.film-card video {
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 850ms var(--ease-out);
  width: 100%;
}

.film-card:hover video,
.film-card:focus-visible:not(.is-pointer-return) video {
  transform: scale(1);
}

.film-meta {
  color: #fff;
  border-top: 1px solid var(--utility-grey);
  box-sizing: border-box;
  display: flex;
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: clamp(8px, 0.695vw, 12px);
  justify-content: space-between;
  left: 1px;
  letter-spacing: 0;
  opacity: 0;
  padding: 6px 7px 0 16px;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: left;
  top: calc(100% + 11px);
  transform: translateY(5px);
  transition:
    opacity 300ms var(--ease-out),
    transform 440ms var(--ease-out);
  white-space: nowrap;
}

.film-play-cue {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: clamp(8px, 0.695vw, 12px);
  gap: 6px;
  left: 17px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -21px;
  transform: translateY(5px);
  transition:
    opacity 300ms var(--ease-out),
    transform 440ms var(--ease-out);
  white-space: nowrap;
  z-index: 3;
}

.film-play-dot {
  background: #fff;
  border-radius: 999px;
  height: clamp(7px, 0.64vw, 11px);
  flex: 0 0 auto;
  width: clamp(7px, 0.64vw, 11px);
}

.film-card:hover .film-meta,
.film-card:focus-visible:not(.is-pointer-return) .film-meta,
.film-card:hover .film-play-cue,
.film-card:focus-visible:not(.is-pointer-return) .film-play-cue {
  opacity: 1;
  transform: translateY(0);
}

.about-page {
  background: transparent;
  color: inherit;
}

.about-copy {
  color: var(--about-ink);
  font-family: "Dia", Arial, sans-serif;
  font-size: clamp(16px, min(1.62vw, 2.507vh), 28px);
  left: max(18px, min(1.794vw, 2.776vh));
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
  max-width: 750px;
  opacity: 0;
  bottom: calc(var(--bar) / -2 - var(--footer-type) / 2 + 1.25px);
  position: absolute;
  top: auto;
  transform: translateY(20px);
  transition:
    opacity 650ms 80ms var(--ease-out),
    transform 800ms 80ms var(--ease-out);
  width: min(43.39vw, 67.14vh, calc(100vw - var(--gutter) * 2));
}

.about-page.is-ready .about-copy {
  opacity: 1;
  transform: translateY(0);
}

.about-copy p {
  margin: 0 0 1.1em;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy a {
  position: relative;
  /* One native underline, including wrapped links. Hover only changes its color. */
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.07em;
}

.film-player {
  --player-surround: #000;
  background: var(--player-surround);
  color: #fff;
  height: 100dvh;
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity 450ms var(--ease-out);
  visibility: hidden;
  width: 100vw;
  z-index: 100;
}

.film-player:focus {
  outline: 0;
}

.film-player.is-open {
  opacity: 1;
  visibility: visible;
}

.film-player::after {
  background: var(--player-surround);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 700ms 30ms var(--ease-in-out);
  z-index: 8;
}

.film-player.is-open::after {
  transform: scaleY(0);
  transform-origin: bottom;
}

.player-topline,
.player-controls {
  align-items: center;
  display: flex;
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: clamp(12px, 0.984vw, 17px);
  position: absolute;
  z-index: 10;
}

.player-topline {
  height: clamp(46px, 6.86vh, 77px);
  justify-content: space-between;
  left: clamp(20px, 1.91vw, 33px);
  right: clamp(20px, 2.14vw, 37px);
  top: 0;
}

.player-frame {
  background: transparent;
  bottom: clamp(46px, 7.02vh, 78px);
  left: var(--media-gutter);
  overflow: hidden;
  position: absolute;
  right: var(--media-gutter);
  top: clamp(46px, 6.86vh, 77px);
  z-index: 2;
}

.player-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.player-close {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: clamp(11px, 0.868vw, 15px);
  gap: clamp(7px, 0.66vw, 11.4px);
  height: 54px;
  justify-content: flex-end;
  min-width: 88px;
  text-transform: uppercase;
  transform: translateY(0.67vh);
}

.player-close-label {
  background: transparent;
  display: block;
  height: auto;
  line-height: normal;
  transition:
    letter-spacing 420ms var(--ease-out),
    transform 480ms var(--ease-out);
  width: auto;
}

.player-close-dot {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: clamp(9px, 0.868vw, 15px);
  flex: 0 0 auto;
  position: relative;
  transition:
    background-color 220ms ease,
    transform 520ms var(--ease-out);
  width: clamp(9px, 0.868vw, 15px);
}

.player-close-dot::before,
.player-close-dot::after {
  background: currentColor;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: transform 480ms var(--ease-out);
  width: 118%;
}

.player-close-dot::before {
  transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
}

.player-close-dot::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
}

.player-close:hover .player-close-label,
.player-close:focus-visible .player-close-label {
  letter-spacing: 0.075em;
  transform: translateX(-4px);
}

.player-close:hover .player-close-dot,
.player-close:focus-visible .player-close-dot {
  background-color: transparent;
  transform: rotate(90deg) scale(1.08);
}

.player-close:hover .player-close-dot::before,
.player-close:hover .player-close-dot::after,
.player-close:focus-visible .player-close-dot::before,
.player-close:focus-visible .player-close-dot::after {
  transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
  transition-delay: 55ms;
}

.player-close:hover .player-close-dot::after,
.player-close:focus-visible .player-close-dot::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
}

.player-wordmark {
  font-family: "Autoscape Round", "Space Mono", monospace;
  font-size: clamp(14px, 1.1vw, 19px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-transform: uppercase;
}

.player-close svg,
.player-controls button svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.player-close svg,
.player-controls .stroke,
.player-fullscreen svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.35;
}

.player-controls {
  bottom: 0;
  height: clamp(46px, 7.02vh, 78px);
  justify-content: space-between;
  left: var(--gutter);
  right: var(--gutter);
}

.player-controls-main {
  align-items: center;
  display: flex;
  gap: clamp(10px, 0.9vw, 16px);
  min-width: 0;
}

.player-controls button {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
}

.player-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.player-play .icon-pause,
.player-play.is-playing .icon-play,
.player-mute .icon-muted,
.player-mute.is-muted .icon-sound {
  display: none;
}

.player-play.is-playing .icon-pause,
.player-mute.is-muted .icon-muted {
  display: block;
}

.player-title,
.player-runtime {
  margin: 0;
  white-space: nowrap;
}

.player-title {
  font-family: "Autoscape Round", monospace;
  font-size: clamp(10px, 0.81vw, 14px);
  letter-spacing: 0;
  max-width: 29vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-current {
  font-family: "Space Mono", monospace;
  font-variant-numeric: tabular-nums;
  min-width: 2.6em;
}

.player-progress {
  appearance: none;
  background: transparent;
  cursor: pointer;
  height: 14px;
  margin: 0;
  width: clamp(92px, 18vw, 310px);
}

.player-progress::-webkit-slider-runnable-track {
  background: rgba(255, 255, 255, 0.55);
  height: 1px;
}

.player-progress::-webkit-slider-thumb {
  appearance: none;
  background: #fff;
  border-radius: 50%;
  height: 7px;
  margin-top: -3px;
  width: 7px;
}

.player-runtime {
  font-family: "Autoscape Round", monospace;
  font-variant-numeric: tabular-nums;
}

.player-runtime .player-duration {
  font-family: "Space Mono", monospace;
}

.cursor {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: #000;
  display: none;
  height: 8px;
  justify-content: center;
  left: 0;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-50%, -50%, 0);
  transition:
    height 350ms var(--ease-out),
    opacity 200ms ease,
    width 350ms var(--ease-out);
  width: 8px;
  z-index: 90;
}

.cursor span {
  font-size: 9px;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

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

.cursor.is-play {
  height: 58px;
  mix-blend-mode: normal;
  width: 58px;
}

.cursor.is-play span {
  opacity: 1;
}

.toast {
  background: #fff;
  bottom: calc(var(--bar) + 14px);
  color: var(--charcoal);
  font-size: 12px;
  left: 50%;
  opacity: 0;
  padding: 10px 13px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 10px);
  transition:
    opacity 300ms ease,
    transform 450ms var(--ease-out);
  z-index: 60;
}

body[data-route="about"] .toast {
  background: var(--about-ink);
  color: #fff;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (pointer: fine) {
  .film-card {
    cursor: pointer;
  }
}

@media (max-width: 760px) {
  :root {
    --bar: 60px;
    --gutter: 12px;
  }

  .site-footer {
    font-size: 12px;
  }

  .identity-cycle {
    flex: 1;
    max-width: none;
    min-width: 0;
    overflow: hidden;
  }

  .identity-line {
    max-width: calc(100vw - 94px);
    overflow: hidden;
  }

  .nav-cluster::before {
    display: none;
  }

  .nav-cluster.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    align-items: flex-start;
    backdrop-filter: blur(28px);
    background: rgba(0, 0, 0, 0.22);
    flex-direction: column;
    font-size: clamp(30px, 11vw, 52px);
    gap: 0.24em;
    height: calc(100dvh - var(--bar));
    justify-content: center;
    left: calc(-100vw + 74px);
    margin: 0;
    padding: 0 var(--gutter) var(--bar);
    position: absolute;
    top: calc(var(--bar) / 2);
    transform: translateY(-18px);
    width: 100vw;
    z-index: -1;
  }

  body[data-route="about"] .site-nav {
    background: rgba(255, 255, 255, 0.96);
  }

  .film-strip {
    left: var(--home-gutter);
    padding-right: var(--home-gutter);
    top: 48%;
  }

  .film-card {
    flex-basis: 78vw;
    height: 43.875vw;
    width: 78vw;
  }

  .film-card:hover,
  .film-card:focus-visible:not(.is-pointer-return) {
    flex-basis: 88vw;
    width: 88vw;
  }

  .film-meta {
    font-size: 9px;
  }

  .about-copy {
    bottom: auto;
    font-size: clamp(16px, 4.6vw, 20px);
    left: var(--gutter);
    line-height: normal;
    max-width: none;
    overflow-y: auto;
    padding-bottom: 24px;
    top: clamp(104px, 18vh, 152px);
    width: calc(100vw - var(--gutter) * 2);
  }

  .player-frame {
    bottom: 82px;
    top: 60px;
  }

  .player-video {
    object-fit: contain;
  }

  .player-controls {
    bottom: 0;
    height: 82px;
  }

  .player-controls-main {
    gap: 11px;
    width: 100%;
  }

  .player-title,
  .player-current {
    display: none;
  }

  .player-progress {
    flex: 1;
    width: auto;
  }

  .player-runtime {
    display: none;
  }

  .cursor {
    display: none;
  }
}

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

  body[data-route="home"] .site-shell {
    background: var(--charcoal);
  }
}
