@font-face {
  font-family: "Axella Unbounded";
  src: url("/studio/fonts/unbounded-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "Axella Plex";
  src: url("/studio/fonts/ibm-plex-sans-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 75% 100%;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #020202;
  --graphite: #0b0d10;
  --graphite-soft: #14171c;
  --white: #f3f4f6;
  --silver: #aeb4be;
  --line: rgba(243, 244, 246, 0.18);
  --line-strong: rgba(243, 244, 246, 0.38);
  --ice: #79a9ff;
  --display: "Axella Unbounded", Arial, sans-serif;
  --body: "Axella Plex", Arial, sans-serif;
  --page-pad: 2.5rem;
  --ease: cubic-bezier(0.2, 0.72, 0, 1);
  --quick: 140ms;
  --standard: 420ms;
  --slow: 900ms;
}

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

html {
  min-width: 20rem;
  background: var(--black);
  scroll-behavior: smooth;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 430;
  line-height: 1.45;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 500;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform var(--quick) ease-out;
}

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

.topline {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.5rem;
  padding: 1rem var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: background-color var(--standard) ease, border-color var(--standard) ease;
}

.topline.is-solid {
  border-color: var(--line);
  background: rgba(2, 2, 2, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topline__brand {
  justify-self: start;
}

.topline__brand img {
  width: 8.5rem;
  height: auto;
}

.topline__edition {
  margin: 0;
  color: rgba(243, 244, 246, 0.72);
  font-size: 0.72rem;
  font-weight: 620;
  text-transform: uppercase;
}

.topline__edition span {
  margin: 0 0.6rem;
  color: var(--silver);
}

.topline__contact {
  position: relative;
  justify-self: end;
  padding: 0.5rem 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.topline__contact::after,
.text-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--standard) var(--ease);
}

.topline__contact:hover::after,
.text-link:hover::after {
  transform: scaleX(0.25);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle i,
.menu-toggle i::after {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform var(--standard) var(--ease);
}

.menu-toggle i::after {
  transform: translateY(0.35rem);
}

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

.menu-toggle[aria-expanded="true"] i::after {
  transform: rotate(-90deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: flex-end;
  padding: 7rem 1rem 7rem;
  background: rgba(2, 2, 2, 0.97);
}

.mobile-menu nav {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.mobile-menu a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 440;
}

.cinema-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.cinema-hero__video {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.8);
  transform: scale(1.015);
}

.cinema-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, transparent 22%, transparent 58%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 35%, rgba(0, 0, 0, 0.12));
}

.pointer-light {
  --spot-x: 50%;
  --spot-y: 50%;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle 20rem at var(--spot-x) var(--spot-y), rgba(121, 169, 255, 0.22), rgba(220, 230, 255, 0.06) 34%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.cinema-hero__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 43rem;
  height: 43rem;
  border: 1px solid rgba(243, 244, 246, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.75;
}

.cinema-hero__orbit::before,
.cinema-hero__orbit::after {
  position: absolute;
  content: "";
}

.cinema-hero__orbit::before {
  inset: 8%;
  border: 1px solid rgba(243, 244, 246, 0.16);
  border-radius: 50%;
}

.cinema-hero__orbit::after {
  left: 50%;
  top: -0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 2rem rgba(121, 169, 255, 0.9);
}

.cinema-hero__orbit i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 122%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 244, 246, 0.42), transparent);
  transform: translate(-50%, -50%) rotate(18deg);
}

.cinema-hero__orbit i + i {
  transform: translate(-50%, -50%) rotate(-24deg);
  opacity: 0.45;
}

.cinema-hero__labels {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  top: 48%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(243, 244, 246, 0.76);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.cinema-hero__labels span:nth-child(2) {
  text-align: center;
}

.cinema-hero__labels span:last-child {
  text-align: right;
}

.cinema-hero__title {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: 7.5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: transform, opacity;
}

.cinema-hero__title h1 {
  max-width: 100%;
  margin: 0;
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 320;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.cinema-hero__title > p {
  margin: 1.6rem 0 0;
  font-size: 1.35rem;
  font-weight: 560;
}

.cinema-hero__title > span {
  max-width: 38rem;
  margin-top: 0.45rem;
  color: rgba(243, 244, 246, 0.72);
  font-size: 1rem;
}

.cinema-hero__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.action {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(243, 244, 246, 0.5);
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform var(--quick) ease-out, background-color var(--quick) ease-out, color var(--quick) ease-out;
}

.action:active,
.dock a:active,
.reel-controls button:active,
.lead-form button:active {
  transform: scale(0.97);
}

.action--light {
  background: var(--white);
  color: var(--black);
}

.action--light:hover {
  background: #ffffff;
}

.action--ghost {
  background: rgba(2, 2, 2, 0.28);
  backdrop-filter: blur(12px);
}

.action--ghost:hover {
  background: rgba(243, 244, 246, 0.12);
}

.cinema-hero__scroll {
  position: absolute;
  left: var(--page-pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: rgba(243, 244, 246, 0.58);
  font-size: 0.68rem;
  font-weight: 650;
  text-transform: uppercase;
}

.cinema-hero__scroll span {
  width: 3rem;
  height: 1px;
  background: rgba(243, 244, 246, 0.54);
}

.treatment-world {
  position: relative;
  overflow: clip;
  background: var(--black);
  isolation: isolate;
}

.fluid-stage {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.fluid-stage canvas,
.fluid-stage__fallback {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
}

.fluid-stage canvas {
  opacity: 0;
  transition: opacity 600ms ease;
}

.fluid-stage__fallback {
  margin-top: -100svh;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.18), rgba(2, 2, 2, 0.78)),
    url("/media/materials/smoked-glass-poster.webp") center / cover no-repeat;
  opacity: 0.52;
}

.fluid-stage.is-webgl canvas {
  opacity: 1;
}

.fluid-stage.is-webgl .fluid-stage__fallback {
  opacity: 0.13;
}

.grain-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.68'/%3E%3C/svg%3E");
  background-size: 11rem 11rem;
}

.chapter {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 13rem var(--page-pad);
}

.chapter + .chapter {
  border-top: 1px solid var(--line);
}

.chapter-label {
  margin: 0;
  color: rgba(243, 244, 246, 0.56);
  font-size: 0.72rem;
  font-weight: 670;
  text-transform: uppercase;
}

.chapter-heading {
  display: grid;
  grid-template-columns: 1fr 2.25fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line);
}

.chapter-heading h2,
.reels-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 4.4rem;
  font-weight: 330;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chapter-heading__note {
  display: flex;
  min-height: 11rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(243, 244, 246, 0.72);
}

.chapter-heading__note p {
  margin: 0;
  font-size: 1rem;
}

.text-link {
  position: relative;
  align-self: flex-start;
  padding-bottom: 0.5rem;
  color: var(--white);
  font-weight: 600;
}

.text-link span {
  margin-left: 0.6rem;
}

.format-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 5rem;
}

.format-scene {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(243, 244, 246, 0.06);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--quick) ease-out;
}

.format-scene--lower {
  margin-top: 7rem;
}

.format-scene:hover {
  border-color: var(--line-strong);
}

.format-scene > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.format-scene:hover > video {
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.08);
}

.format-scene__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.82));
}

.format-scene__index,
.format-scene__arrow {
  position: absolute;
  top: 1.5rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 660;
}

.format-scene__index {
  left: 1.5rem;
}

.format-scene__arrow {
  right: 1.5rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(243, 244, 246, 0.48);
  border-radius: 50%;
  font-size: 1rem;
  transition: transform var(--standard) var(--ease), background-color var(--quick) ease, color var(--quick) ease;
}

.format-scene:hover .format-scene__arrow {
  transform: rotate(45deg);
  background: var(--white);
  color: var(--black);
}

.format-scene__copy {
  position: absolute;
  inset: auto 1.5rem 1.5rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.format-scene__copy strong {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 410;
  line-height: 1.03;
  text-transform: uppercase;
}

.format-scene__copy small {
  max-width: 15rem;
  color: rgba(243, 244, 246, 0.72);
  font-size: 0.9rem;
}

.chapter-heading--wide {
  grid-template-columns: 1fr 3.25fr;
}

.production-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0 7rem;
}

.production-intro > p {
  max-width: 32rem;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.35;
}

.production-intro ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.production-intro li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(243, 244, 246, 0.76);
  font-size: 0.95rem;
}

.production-panels {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
}

.production-main,
.production-side article {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(243, 244, 246, 0.075);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.production-main {
  display: grid;
  min-height: 35rem;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
  padding: 2.5rem;
}

.production-main > div {
  display: flex;
  flex-direction: column;
}

.production-main h3,
.production-side h3 {
  margin: 2rem 0 1.25rem;
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 420;
  line-height: 1.08;
  text-transform: uppercase;
}

.production-main > div > p:last-child,
.production-side p {
  max-width: 30rem;
  margin: auto 0 0;
  color: rgba(243, 244, 246, 0.66);
}

.round-action {
  position: relative;
  align-self: center;
  justify-self: center;
  display: grid;
  width: min(23rem, 100%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px dashed rgba(243, 244, 246, 0.6);
  border-radius: 50%;
  background: rgba(2, 2, 2, 0.14);
  text-align: center;
  transition: transform var(--standard) var(--ease), background-color var(--standard) ease, color var(--standard) ease;
}

.round-action span {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 420;
  line-height: 1.15;
  text-transform: uppercase;
}

.round-action i {
  position: absolute;
  right: 22%;
  top: 22%;
  font-style: normal;
}

.round-action:hover {
  transform: rotate(-3deg) scale(1.02);
  background: var(--white);
  color: var(--black);
}

.production-side {
  display: grid;
  gap: 0.75rem;
}

.production-side article {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  padding: 2rem;
}

.production-side article > span {
  color: rgba(243, 244, 246, 0.48);
  font-size: 0.72rem;
}

.production-side h3 {
  font-size: 1.55rem;
}

.chapter--reels {
  max-width: none;
  padding-right: 0;
}

.reels-heading {
  display: grid;
  grid-template-columns: 1fr 2.25fr 1fr;
  gap: 2rem;
  padding-right: var(--page-pad);
}

.reels-heading > p:last-child {
  align-self: end;
  max-width: 20rem;
  margin: 0;
  color: rgba(243, 244, 246, 0.68);
}

.reel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 3.5rem var(--page-pad) 1.5rem 0;
}

.reel-controls span {
  margin-right: 1rem;
  color: rgba(243, 244, 246, 0.58);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.reel-controls button {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(2, 2, 2, 0.32);
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color var(--quick) ease, color var(--quick) ease, opacity var(--quick) ease, transform var(--quick) ease;
}

.reel-controls button:hover:not(:disabled) {
  background: var(--white);
  color: var(--black);
}

.reel-controls button:disabled {
  cursor: default;
  opacity: 0.28;
}

.reel-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 var(--page-pad) 3rem 0;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
}

.reel-rail::-webkit-scrollbar {
  display: none;
}

.reel-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reel {
  flex: 0 0 68rem;
  max-width: 76vw;
  scroll-snap-align: start;
}

.reel__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #000;
  cursor: pointer;
}

.reel__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms var(--ease), opacity 300ms ease;
}

.reel__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.56));
  content: "";
}

.reel__media:hover video {
  transform: scale(1.018);
  opacity: 0.9;
}

.reel__media > span {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(243, 244, 246, 0.54);
  border-radius: 3px;
  background: rgba(2, 2, 2, 0.58);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.reel__meta {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.reel__meta span,
.reel__meta time {
  color: rgba(243, 244, 246, 0.52);
  font-size: 0.72rem;
}

.reel__meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 420;
  text-transform: uppercase;
}

.contact-scene {
  position: relative;
  z-index: 3;
  padding: 5rem var(--page-pad) 9rem;
}

.contact-scene__panel {
  display: grid;
  min-height: 42rem;
  grid-template-columns: 0.55fr 1.45fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 4rem;
  border-radius: 7px;
  background: var(--white);
  color: var(--black);
}

.contact-scene__panel .chapter-label {
  color: rgba(2, 2, 2, 0.56);
}

.contact-scene__panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 5.1rem;
  font-weight: 360;
  line-height: 0.95;
  letter-spacing: 0;
}

.lead-form {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.6rem;
}

.lead-form label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lead-form label > span {
  font-size: 0.75rem;
  font-weight: 620;
}

.lead-form input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid rgba(2, 2, 2, 0.42);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: 1.05rem;
}

.lead-form input:focus {
  border-color: var(--black);
  box-shadow: 0 1px 0 var(--black);
}

.lead-form input[aria-invalid="true"] {
  border-color: #a40000;
}

.lead-form small {
  color: rgba(2, 2, 2, 0.5);
  font-size: 0.72rem;
}

.lead-form button {
  display: flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-radius: 3px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-weight: 620;
  transition: transform var(--quick) ease-out, background-color var(--quick) ease-out;
}

.lead-form button:hover:not(:disabled) {
  background: #1d2025;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.lead-form button i {
  font-style: normal;
}

.lead-form__status {
  min-height: 1.3rem;
  margin: 0;
  color: rgba(2, 2, 2, 0.68);
  font-size: 0.78rem;
}

.contact-scene__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 0;
}

.contact-scene__footer img {
  width: 8.5rem;
}

.contact-scene__footer nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
}

.contact-scene__footer nav a {
  color: rgba(243, 244, 246, 0.66);
  transition: color var(--quick) ease;
}

.contact-scene__footer nav a:hover {
  color: var(--white);
}

.contact-scene__footer > span {
  justify-self: end;
  color: rgba(243, 244, 246, 0.5);
  font-size: 0.78rem;
}

.dock {
  position: fixed;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 130;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  border: 1px solid rgba(243, 244, 246, 0.14);
  border-radius: 7px;
  background: rgba(5, 6, 8, 0.72);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dock a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 3px;
  color: rgba(243, 244, 246, 0.76);
  font-size: 0.78rem;
  font-weight: 580;
  white-space: nowrap;
  transition: color var(--quick) ease, background-color var(--quick) ease, transform var(--quick) ease;
}

.dock a:hover {
  background: rgba(243, 244, 246, 0.1);
  color: var(--white);
}

.dock__mark {
  width: 3rem;
  padding: 0.55rem !important;
}

.dock__mark img {
  width: 1.2rem;
  height: 1.5rem;
  object-fit: contain;
}

.dock .dock__cta {
  background: var(--white);
  color: var(--black);
}

.dock .dock__cta:hover {
  background: #ffffff;
  color: var(--black);
}

.film-dialog {
  width: min(92vw, 82rem);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.film-dialog::backdrop {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
}

.film-dialog__surface {
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--black);
}

.film-dialog__surface header {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
}

.film-dialog__surface h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 460;
  text-transform: uppercase;
}

.film-dialog__surface header button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.75rem;
}

.film-dialog video {
  width: 100%;
  max-height: calc(100svh - 8rem);
  aspect-ratio: 16 / 9;
  background: #000;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms var(--ease), transform 850ms var(--ease);
}

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

.js [data-mask] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1100ms var(--ease);
}

.js [data-mask="bottom"] {
  clip-path: inset(100% 0 0 0);
}

.js [data-mask].is-visible {
  clip-path: inset(0 0 0 0);
}

@media (min-width: 100rem) {
  :root {
    --page-pad: 3.5rem;
  }

  .cinema-hero__title h1 {
    font-size: 7.2rem;
  }

  .chapter-heading h2,
  .reels-heading h2 {
    font-size: 5.2rem;
  }
}

@media (max-width: 75rem) {
  :root {
    --page-pad: 1.5rem;
  }

  .cinema-hero__title h1 {
    font-size: 4.8rem;
  }

  .chapter-heading h2,
  .reels-heading h2 {
    font-size: 3.5rem;
  }

  .format-scene__copy {
    align-items: start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .format-scene__copy strong {
    font-size: 1.7rem;
  }

  .production-main {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .contact-scene__panel {
    grid-template-columns: 0.45fr 1.4fr 1fr;
    padding: 2.5rem;
  }

  .contact-scene__panel h2 {
    font-size: 3.9rem;
  }
}

@media (max-width: 58rem) {
  .topline {
    grid-template-columns: 1fr auto;
  }

  .topline__edition,
  .topline__contact {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .cinema-hero__title h1 {
    font-size: 4rem;
  }

  .chapter-heading,
  .reels-heading {
    grid-template-columns: 0.55fr 2fr;
  }

  .chapter-heading__note,
  .reels-heading > p:last-child {
    grid-column: 2;
    min-height: 0;
  }

  .production-panels {
    grid-template-columns: 1fr;
  }

  .production-side {
    grid-template-columns: 1fr 1fr;
  }

  .contact-scene__panel {
    min-height: 0;
    grid-template-columns: 1fr 2fr;
  }

  .contact-scene__panel .lead-form {
    grid-column: 2;
    margin-top: 4rem;
  }
}

@media (max-width: 43rem) {
  :root {
    --page-pad: 1rem;
  }

  body {
    font-size: 0.96rem;
  }

  .topline {
    min-height: 4.7rem;
    padding-top: max(0.8rem, env(safe-area-inset-top));
  }

  .topline__brand img {
    width: 7.4rem;
  }

  .cinema-hero {
    min-height: 100svh;
  }

  .cinema-hero__video {
    object-position: 56% center;
  }

  .cinema-hero__orbit {
    width: 92vw;
    height: 92vw;
    top: 43%;
  }

  .cinema-hero__labels {
    top: 42%;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.62rem;
  }

  .cinema-hero__labels span:nth-child(2),
  .cinema-hero__labels span:last-child {
    text-align: right;
  }

  .cinema-hero__labels span:last-child {
    display: none;
  }

  .cinema-hero__title {
    bottom: 6.8rem;
    align-items: flex-start;
    text-align: left;
  }

  .cinema-hero__title h1 {
    width: 100%;
    font-size: 2.65rem;
    line-height: 1.02;
    white-space: normal;
  }

  .cinema-hero__title > p {
    margin-top: 1.15rem;
    font-size: 1.08rem;
  }

  .cinema-hero__title > span {
    max-width: 21rem;
    font-size: 0.86rem;
  }

  .cinema-hero__actions {
    width: 100%;
  }

  .action {
    min-width: 0;
    flex: 1;
    padding-inline: 0.8rem;
    font-size: 0.82rem;
  }

  .cinema-hero__scroll {
    display: none;
  }

  .pointer-light {
    display: none;
  }

  .chapter {
    padding: 7rem var(--page-pad);
  }

  .chapter-heading,
  .chapter-heading--wide,
  .reels-heading {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .chapter-heading h2,
  .reels-heading h2 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .chapter-heading__note {
    gap: 1.5rem;
  }

  .format-stage {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .format-scene,
  .format-scene--lower {
    margin-top: 0;
    aspect-ratio: 4 / 5;
  }

  .format-scene__copy {
    inset: auto 1rem 1rem;
  }

  .format-scene__index {
    left: 1rem;
    top: 1rem;
  }

  .format-scene__arrow {
    right: 1rem;
    top: 1rem;
  }

  .format-scene__copy strong {
    font-size: 1.55rem;
  }

  .format-scene__copy small {
    font-size: 0.82rem;
  }

  .production-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 4rem;
  }

  .production-intro > p {
    font-size: 1.15rem;
  }

  .production-intro ul {
    grid-template-columns: 1fr;
  }

  .production-main {
    min-height: 38rem;
    grid-template-columns: 1fr;
    padding: 1.3rem;
  }

  .production-main h3 {
    font-size: 1.75rem;
  }

  .production-main > div > p:last-child {
    margin-top: 3rem;
  }

  .round-action {
    width: 14rem;
  }

  .round-action span {
    font-size: 1.15rem;
  }

  .production-side {
    grid-template-columns: 1fr;
  }

  .production-side article {
    min-height: 13rem;
  }

  .chapter--reels {
    padding-right: 0;
  }

  .reels-heading,
  .reel-controls {
    padding-right: var(--page-pad);
  }

  .reels-heading > p:last-child {
    max-width: 100%;
  }

  .reel-controls {
    justify-content: space-between;
    padding-top: 2.5rem;
  }

  .reel-controls span {
    margin-right: auto;
  }

  .reel-controls button {
    width: 3rem;
    height: 3rem;
  }

  .reel-rail {
    gap: 0.75rem;
  }

  .reel {
    flex-basis: 88vw;
    max-width: 88vw;
  }

  .reel__media {
    aspect-ratio: 16 / 9;
  }

  .reel__media > span {
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.72rem;
  }

  .reel__meta {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .reel__meta h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 1.1rem;
  }

  .contact-scene {
    padding: 2rem var(--page-pad) 7rem;
  }

  .contact-scene__panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .contact-scene__panel h2 {
    font-size: 2.55rem;
  }

  .contact-scene__panel .lead-form {
    width: 100%;
    margin-top: 3rem;
  }

  .contact-scene__footer {
    grid-template-columns: 1fr auto;
    padding-top: 1.5rem;
  }

  .contact-scene__footer nav {
    display: none;
  }

  .contact-scene__footer > span {
    grid-column: 2;
  }

  .dock {
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    width: calc(100% - 1.25rem);
    justify-content: space-between;
  }

  .dock a {
    min-height: 2.65rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.75rem;
  }

  .dock a:nth-child(2),
  .dock a:nth-child(4) {
    display: none;
  }

  .film-dialog {
    width: calc(100vw - 1rem);
  }

  .film-dialog__surface header {
    min-height: 3.5rem;
  }
}

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

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

  .cinema-hero__video {
    visibility: hidden;
  }

  .cinema-hero {
    background: var(--black) url("/media/showreel/axella-showreel-poster.webp") center / cover no-repeat;
  }

  body[data-page="brand"] .cinema-hero {
    background-image: url("/media/portfolio/ads-axella/poster.webp");
  }

  .fluid-stage canvas,
  .pointer-light {
    display: none;
  }

  .js [data-reveal],
  .js [data-mask] {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(255, 255, 255, 0.5);
    --line-strong: rgba(255, 255, 255, 0.78);
  }

  .dock,
  .topline.is-solid {
    background: #000;
    backdrop-filter: none;
  }
}

/* Home portal: one cinematic entry, two clear routes. */
body[data-page="home"] {
  background: #020202;
}

body[data-page="home"] .topline {
  grid-template-columns: 1fr auto;
  min-height: 5rem;
  border: 0;
}

body[data-page="home"] .topline.is-solid {
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="home"] .topline__contact {
  --liquid-radius: 999px;
  --liquid-tint: rgba(12, 14, 18, 0.32);
  min-height: 2.9rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.84rem;
  transition: transform var(--quick) ease-out;
}

body[data-page="home"] .topline__contact::after {
  display: none;
}

body[data-page="home"] .topline__contact .liquid-glass__content {
  display: grid;
  min-height: 2.9rem;
  padding: 0 1.15rem;
  place-items: center;
}

body[data-page="home"] .topline__contact:hover {
  transform: translateY(-2px);
}

.portal-hero {
  position: relative;
  min-height: max(45rem, 100svh);
  overflow: hidden;
  background: #020202;
  isolation: isolate;
}

.portal-hero__video,
.portal-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portal-hero__video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.78);
  transform: scale(1.01);
}

.portal-hero__veil {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.04) 34%, rgba(0, 0, 0, 0.72) 72%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.12));
}

.portal-hero__title {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  top: 35%;
  z-index: 4;
  text-align: center;
}

.portal-hero__title h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 5.6rem;
  font-weight: 330;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-hero__title p {
  margin: 1.15rem 0 0;
  color: rgba(243, 244, 246, 0.82);
  font-size: 1.12rem;
  font-weight: 520;
}

.portal-routes {
  position: absolute;
  right: var(--page-pad);
  bottom: 2rem;
  left: var(--page-pad);
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.portal-route {
  --liquid-radius: 2rem;
  --liquid-tint: rgba(8, 10, 14, 0.18);
  position: relative;
  display: block;
  min-height: 12rem;
  color: var(--white);
  transform: translateY(0);
  transition: transform var(--standard) var(--ease), box-shadow var(--standard) var(--ease);
}

.portal-route:hover,
.portal-route:focus-visible {
  transform: translateY(-0.45rem);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), 0 44px 110px rgba(0, 0, 0, 0.22);
}

.portal-route > video,
.portal-route__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.portal-route > video {
  z-index: 0;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.75);
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.portal-route:hover > video,
.portal-route:focus-visible > video {
  transform: scale(1.035);
  filter: saturate(0.94) contrast(1.08) brightness(0.82);
}

.portal-route__veil {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 70%), linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.portal-route__copy {
  position: absolute;
  right: 5.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.portal-route__copy strong {
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 420;
  line-height: 1;
  text-transform: uppercase;
}

.portal-route__copy > span {
  color: rgba(243, 244, 246, 0.72);
  font-size: 0.9rem;
}

.portal-route__arrow {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 4;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 1.05rem;
  transition: transform var(--standard) var(--ease), background-color var(--quick) ease;
}

.portal-route:hover .portal-route__arrow,
.portal-route:focus-visible .portal-route__arrow {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.92);
  color: #020202;
}

.lead-dialog {
  width: min(42rem, calc(100vw - 2rem));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.lead-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lead-dialog__surface {
  --liquid-radius: 2.4rem;
  --liquid-tint: rgba(8, 10, 14, 0.74);
  min-height: 32rem;
}

.lead-dialog__surface > header,
.lead-dialog__content {
  position: relative;
  z-index: 4;
}

.lead-dialog__surface > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem 0;
}

.lead-dialog__surface > header img {
  width: 7.5rem;
}

.lead-dialog__surface > header button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.lead-dialog__content {
  padding: 3.5rem 3.5rem 3rem;
}

.lead-dialog__content h2 {
  margin: 0 0 3rem;
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 380;
  line-height: 0.98;
  text-transform: uppercase;
}

body[data-page="home"] .lead-form {
  height: auto;
  color: var(--white);
}

body[data-page="home"] .lead-form input {
  min-height: 3.7rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

body[data-page="home"] .lead-form input:focus {
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

body[data-page="home"] .lead-form small,
body[data-page="home"] .lead-form__status {
  color: rgba(243, 244, 246, 0.62);
}

body[data-page="home"] .lead-form > button {
  min-height: 3.8rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
}

@media (max-width: 58rem) {
  body[data-page="home"] .topline {
    padding: 0.85rem 1rem;
  }

  body[data-page="home"] .topline__brand img {
    width: 7.25rem;
  }

  body[data-page="home"] .topline__contact {
    display: block;
  }

  .portal-hero {
    min-height: max(42rem, 100svh);
  }

  .portal-hero__title {
    top: 25%;
    right: 1rem;
    left: 1rem;
  }

  .portal-hero__title h1 {
    font-size: 3rem;
  }

  .portal-hero__title p {
    max-width: 20rem;
    margin: 0.9rem auto 0;
    font-size: 0.98rem;
  }

  .portal-routes {
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: 0.75rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .portal-route {
    --liquid-radius: 1.5rem;
    min-height: 7.35rem;
  }

  .portal-route__copy {
    right: 4.6rem;
    bottom: 1.05rem;
    left: 1.1rem;
  }

  .portal-route__copy strong {
    font-size: 1.45rem;
  }

  .portal-route__copy > span {
    font-size: 0.78rem;
  }

  .portal-route__arrow {
    right: 1rem;
    bottom: 1rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .lead-dialog {
    width: calc(100vw - 1rem);
  }

  .lead-dialog__surface {
    --liquid-radius: 1.75rem;
    min-height: min(38rem, calc(100svh - 1rem));
  }

  .lead-dialog__content {
    padding: 3rem 1.25rem 1.5rem;
  }

  .lead-dialog__content h2 {
    margin-bottom: 2.5rem;
    font-size: 2.45rem;
  }
}

@media (max-width: 23rem) {
  .portal-hero__title h1 { font-size: 2.65rem; }
  body[data-page="home"] .topline__contact .liquid-glass__content { padding: 0 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  .portal-hero__video,
  .portal-route > video { visibility: hidden; }
  .portal-hero { background: #020202 url("/media/showreel/axella-showreel-poster.webp") center / cover no-repeat; }
  .portal-route:first-child { background: #080808 url("/media/portfolio/ads-axella/poster.webp") center / cover no-repeat; }
  .portal-route:last-child { background: #080808 url("/media/portfolio/axella-presents/poster.webp") center / cover no-repeat; }
}
