:root {
  --bg: #050506;
  --bg-soft: #0a0a0c;
  --panel: #111115;
  --panel-2: #17171b;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f7f4ef;
  --muted: #aaa6a0;
  --muted-2: #74706b;
  --red: #e10613;
  --red-soft: #ff3030;
  --steel: #8ca3aa;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 5%, rgba(225, 6, 19, 0.14), transparent 26rem),
    linear-gradient(180deg, #050506 0%, #08080a 38%, #050506 100%);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: 4px;
}

::selection {
  background: var(--red);
  color: white;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #020203;
  transition: opacity 560ms ease, visibility 560ms ease;
}

body.is-loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__brand {
  position: relative;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.preloader__track {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 2.8rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.preloader__track span {
  display: block;
  width: 46%;
  height: 100%;
  background: var(--red);
  animation: loadTrack 950ms ease forwards;
}

.focus-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 998;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, opacity 180ms ease;
  mix-blend-mode: difference;
}

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

.focus-cursor.is-active {
  width: 3rem;
  height: 3rem;
  border-color: var(--red-soft);
}

.scroll-rail {
  position: fixed;
  right: 1.2rem;
  top: 7rem;
  bottom: 2rem;
  z-index: 40;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.scroll-rail__label {
  position: absolute;
  top: -4.8rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
  color: var(--muted-2);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-progress {
  position: absolute;
  left: -1px;
  top: 0;
  width: 3px;
  height: 0%;
  background: var(--red);
  box-shadow: 0 0 1.5rem rgba(225, 6, 19, 0.6);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding: 1.15rem 2rem;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.9), rgba(5, 5, 6, 0.42), transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 1.75rem;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
}

.brand__line {
  width: 1.9rem;
  height: 1px;
  background: var(--red);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 8, 0.62);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.site-nav .nav-cta {
  background: var(--red);
  color: white;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle__bar {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.scene {
  position: relative;
  min-height: 86vh;
  padding: 7.5rem 6rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 6rem 6rem;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 78%, transparent);
  opacity: 0.36;
}

.scene-noise,
.scene-noise::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-noise {
  opacity: 0.14;
  background:
    repeating-radial-gradient(circle at 17% 32%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
}

.scene-noise::after {
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: translateX(-100%);
  animation: scan 5.5s linear infinite;
}

.media-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 28%, rgba(225, 6, 19, 0.2), transparent 24rem),
    linear-gradient(135deg, #08080a, #030304);
}

.media-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.9) 0%, rgba(5, 5, 6, 0.48) 50%, rgba(5, 5, 6, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.45), rgba(5, 5, 6, 0.88));
}

.ambient-video,
.media-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ambient-video {
  object-fit: cover;
  opacity: 0;
  filter: grayscale(0.65) contrast(1.2) brightness(0.52) saturate(0.7);
  transition: opacity 800ms ease;
}

.ambient-video.is-ready {
  opacity: 0.58;
}

.media-fallback {
  background:
    radial-gradient(circle at 72% 32%, rgba(225, 6, 19, 0.18), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 2rem),
    linear-gradient(135deg, #0d0d10, #040405);
}

.media-layer--hero .ambient-video {
  transform: scale(1.08);
}

.hero {
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding-top: 9rem;
}

.viewfinder {
  position: absolute;
  inset: 7rem 4rem 4rem;
  pointer-events: none;
  opacity: 0.44;
}

.viewfinder span {
  position: absolute;
  width: 4.4rem;
  height: 4.4rem;
  border-color: rgba(255, 255, 255, 0.64);
}

.viewfinder span:nth-child(1) {
  left: 0;
  top: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.viewfinder span:nth-child(2) {
  right: 0;
  top: 0;
  border-top: 1px solid;
  border-right: 1px solid;
}

.viewfinder span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.viewfinder span:nth-child(4) {
  left: 0;
  bottom: 0;
  border-left: 1px solid;
  border-bottom: 1px solid;
}

.film-orbit-shell {
  position: absolute;
  right: -11rem;
  top: 8.5rem;
  z-index: 1;
  width: min(48rem, 50vw);
  aspect-ratio: 1;
  opacity: 0.84;
  pointer-events: none;
}

.film-orbit-canvas {
  width: 100%;
  height: 100%;
}

.film-orbit-fallback {
  position: absolute;
  inset: 10%;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 300ms ease;
}

.film-orbit-shell.is-fallback .film-orbit-fallback {
  opacity: 1;
}

.film-orbit-shell.is-fallback .film-orbit-canvas {
  opacity: 0;
}

.film-orbit-fallback::before,
.film-orbit-fallback::after,
.film-orbit-fallback span {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.film-orbit-fallback::before {
  width: 76%;
  height: 76%;
}

.film-orbit-fallback::after {
  width: 42%;
  height: 42%;
  border-color: rgba(225, 6, 19, 0.5);
}

.film-orbit-fallback span {
  width: 16rem;
  height: 9rem;
  border-radius: 0;
  background: linear-gradient(120deg, rgba(225, 6, 19, 0.12), rgba(255, 255, 255, 0.04));
}

.film-orbit-fallback span:nth-child(1) {
  transform: translate(-38%, -22%) rotate(-12deg);
}

.film-orbit-fallback span:nth-child(2) {
  transform: translate(26%, 20%) rotate(9deg);
}

.film-orbit-fallback span:nth-child(3) {
  width: 8rem;
  height: 13rem;
  transform: translate(10%, -32%) rotate(18deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(57rem, 78%);
}

.section-kicker,
.scene-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 58rem;
  margin: 0 0 1.2rem;
  font-size: 6rem;
  line-height: 0.92;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: 4.2rem;
  line-height: 0.96;
}

h3 {
  margin-bottom: 0.85rem;
  font-size: 1.18rem;
  line-height: 1.12;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.hero__content p {
  max-width: 43rem;
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  min-width: 12rem;
  padding: 0 1.2rem;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button span {
  position: relative;
  z-index: 1;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(0.77, 0, 0.175, 1);
}

.button:hover::before,
.button:focus-visible::before {
  transform: scaleX(1);
}

.button--primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.button--primary::before {
  background: #b4040e;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost::before {
  background: rgba(255, 255, 255, 0.1);
}

.hero__meta {
  position: absolute;
  left: 6rem;
  right: 6rem;
  bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.hero__meta span {
  min-height: 3.3rem;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 6, 0.72);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.scene-label {
  position: absolute;
  left: 6rem;
  top: 7.5rem;
  color: var(--red-soft);
}

.scene--problem {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
  gap: 4rem;
  align-items: center;
  min-height: 82vh;
}

.split-copy,
.solution-copy,
.section-head {
  position: relative;
  z-index: 2;
}

.split-copy {
  max-width: 45rem;
}

.pain-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pain-grid article {
  min-height: 8.6rem;
  padding: 1.15rem;
  background:
    linear-gradient(120deg, rgba(225, 6, 19, 0.12), transparent 45%),
    #0b0b0d;
}

.pain-grid article:last-child {
  grid-column: span 2;
}

.pain-grid span,
.take-index,
.process-number,
.audience-cards span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--red-soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  font-weight: 800;
}

.pain-grid strong,
.take-card h3,
.process-list strong,
.audience-cards h3 {
  display: block;
  color: var(--text);
  font-weight: 850;
}

.scene--solution {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 1.12fr);
  gap: 5rem;
  align-items: center;
  min-height: 82vh;
  background: #070708;
}

.cinema-stack {
  position: relative;
  z-index: 2;
  min-height: 28rem;
  perspective: 900px;
}

.cinema-plane,
.focus-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cinema-plane {
  width: min(30rem, 80%);
  height: 16rem;
  background:
    linear-gradient(120deg, rgba(225, 6, 19, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(10, 10, 12, 0.72);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.38);
}

.cinema-plane--one {
  left: 0;
  top: 2rem;
  transform: rotateY(-12deg) rotateZ(-4deg);
}

.cinema-plane--two {
  right: 4%;
  top: 8rem;
  transform: rotateY(14deg) rotateZ(3deg);
}

.cinema-plane--three {
  left: 14%;
  bottom: 1rem;
  transform: rotateY(-8deg) rotateZ(6deg);
}

.focus-ring {
  left: 50%;
  top: 50%;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  border-color: rgba(225, 6, 19, 0.38);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.section-head {
  width: min(58rem, 100%);
  margin-bottom: 3rem;
}

.scene--productions,
.scene--audience,
.scene--manifesto {
  min-height: auto;
}

.take-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.take-card {
  position: relative;
  min-height: 19rem;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    #09090b;
  overflow: hidden;
  transition: background 240ms ease, transform 240ms ease;
}

.take-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(225, 6, 19, 0.2), transparent 36%),
    repeating-linear-gradient(90deg, transparent 0 0.7rem, rgba(255, 255, 255, 0.04) 0.7rem 0.72rem);
  opacity: 0;
  transform: translateY(0.7rem);
  transition: opacity 240ms ease, transform 240ms ease;
}

.take-card:hover {
  background:
    linear-gradient(180deg, rgba(225, 6, 19, 0.08), transparent),
    #0f0f12;
}

.take-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.take-card h3,
.take-card p,
.take-card span {
  position: relative;
  z-index: 1;
}

.take-card p {
  font-size: 0.92rem;
}

.scene--process {
  min-height: auto;
  background: #070708;
}

.edit-suite {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.edit-suite__topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  list-style: none;
}

.process-list li {
  min-height: 14rem;
  padding: 1.2rem;
  background: rgba(11, 11, 13, 0.88);
}

.process-list p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.timeline {
  position: relative;
  height: 9rem;
  padding: 1rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(6, 6, 7, 0.88);
  background-size: 4rem 100%;
  overflow: hidden;
}

.timeline span {
  position: absolute;
  display: block;
}

.playhead {
  top: 0;
  bottom: 0;
  left: calc(var(--scroll-progress, 0) * 1%);
  width: 2px;
  background: var(--red);
  box-shadow: 0 0 1.5rem rgba(225, 6, 19, 0.7);
}

.playhead::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  top: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.clip {
  height: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.clip-a {
  left: 3%;
  top: 1.4rem;
  width: 31%;
}

.clip-b {
  left: 27%;
  top: 3.3rem;
  width: 44%;
  background: rgba(225, 6, 19, 0.22);
}

.clip-c {
  left: 62%;
  top: 5.2rem;
  width: 29%;
  background: rgba(140, 163, 170, 0.16);
}

.waveform {
  left: 4%;
  right: 4%;
  bottom: 1.2rem;
  height: 1.2rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, transparent 0 0.35rem, rgba(255, 255, 255, 0.35) 0.35rem 0.42rem);
  mask-image: repeating-radial-gradient(ellipse at center, black 0 0.22rem, transparent 0.22rem 0.5rem);
  opacity: 0.72;
}

.audience-cards,
.manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.audience-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-cards article {
  min-height: 17rem;
  padding: 1.3rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    #0a0a0c;
}

.audience-cards p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

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

.manifesto-grid p {
  min-height: 10rem;
  margin: 0;
  padding: 1.4rem;
  display: flex;
  align-items: end;
  background:
    linear-gradient(140deg, rgba(225, 6, 19, 0.1), transparent 46%),
    #0a0a0c;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.scene--final {
  display: grid;
  place-items: center;
  min-height: 84vh;
}

.final-frame {
  position: relative;
  z-index: 2;
  width: min(58rem, 100%);
  padding: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(225, 6, 19, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.final-frame::before,
.final-frame::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4rem;
}

.final-frame::before {
  left: 1rem;
  top: 1rem;
  border-left: 1px solid var(--red);
  border-top: 1px solid var(--red);
}

.final-frame::after {
  right: 1rem;
  bottom: 1rem;
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}

.final-frame p {
  max-width: 45rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes loadTrack {
  from {
    transform: translateX(0) scaleX(0.1);
  }
  to {
    transform: translateX(124%) scaleX(1);
  }
}

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

@media (max-width: 1180px) {
  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .scene {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero__meta,
  .scene-label {
    left: 3rem;
    right: 3rem;
  }

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

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

@media (max-width: 860px) {
  .preloader__brand {
    font-size: 3.3rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .site-header {
    min-height: 4.4rem;
    padding: 0.85rem 1rem;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 91;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    align-content: center;
    gap: 0.5rem;
    width: 100vw;
    height: 100vh;
    min-height: 100svh;
    padding: 5rem 1rem;
    border: 0;
    background: rgba(5, 5, 6, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
  }

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

  body.nav-open .nav-toggle__bar:first-child {
    transform: translateY(0.19rem) rotate(45deg);
  }

  body.nav-open .nav-toggle__bar:nth-child(2) {
    transform: translateY(-0.19rem) rotate(-45deg);
  }

  .site-nav a {
    justify-content: center;
    min-height: 3.25rem;
    font-size: 1rem;
  }

  .scroll-rail {
    display: none;
  }

  .scene,
  .hero {
    min-height: auto;
    padding: 6.8rem 1.1rem 4rem;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero__content {
    width: 100%;
  }

  .hero__content p {
    font-size: 1rem;
  }

  .film-orbit-shell {
    right: -12rem;
    top: 5rem;
    width: 34rem;
    opacity: 0.58;
  }

  .viewfinder {
    inset: 5.2rem 1rem 1rem;
  }

  .hero__meta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
  }

  .scene-label {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin-bottom: 1.3rem;
  }

  .scene--problem,
  .scene--solution {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .cinema-stack {
    min-height: 24rem;
  }

  .process-list,
  .audience-cards,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .edit-suite__topbar {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .take-card,
  .audience-cards article {
    min-height: 13rem;
  }

  .manifesto-grid p {
    min-height: 7rem;
  }

  .final-frame {
    padding: 3rem 1.2rem 1.5rem;
  }

  .site-footer {
    display: grid;
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 560px) {
  .preloader__brand {
    font-size: 2.5rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand__line {
    width: 0.9rem;
  }

  .brand__name {
    font-size: 1.15rem;
  }

  .button {
    width: 100%;
  }

  .film-orbit-shell {
    right: -11.5rem;
    top: 7rem;
    width: 27rem;
    opacity: 0.38;
  }

  .hero__meta,
  .take-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid article:last-child {
    grid-column: auto;
  }

  .cinema-stack {
    min-height: 18rem;
  }

  .cinema-plane {
    width: 88%;
    height: 10rem;
  }
}

@media (pointer: coarse) {
  .focus-cursor {
    display: none;
  }
}

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

  .preloader {
    display: none;
  }

  .ambient-video {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
