:root {
  --ink: #070707;
  --ink-2: #0b0c0d;
  --panel: #101113;
  --panel-2: #17191c;
  --bone: #e5e4e2;
  --muted: #989894;
  --blue: #0ea5e9;
  --steel: #5f93c0;
  --amber: #a84f00;
  --gold: #d8b866;
  --line: rgba(229, 228, 226, 0.14);
  --line-strong: rgba(229, 228, 226, 0.28);
  --shadow: 0 32px 110px rgba(0, 0, 0, 0.62);
  --max: 1180px;
  --header-height: 76px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  color: var(--bone);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.1), transparent 26%),
    linear-gradient(270deg, rgba(168, 79, 0, 0.11), transparent 30%);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  background: var(--bone);
  color: var(--ink);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 16px 52px;
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 7, 0.28);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.legal-header {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 7, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 228, 226, 0.74);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--bone);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 112px 52px 34px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.46;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.82) 38%, rgba(7, 7, 7, 0.58) 72%, rgba(7, 7, 7, 0.86) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(7, 7, 7, 0.38) 42%, rgba(7, 7, 7, 0.9) 100%);
}

.hero-grid {
  position: absolute;
  inset: 96px 52px 96px;
  z-index: -2;
  border: 1px solid rgba(229, 228, 226, 0.11);
  background:
    linear-gradient(90deg, rgba(229, 228, 226, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(229, 228, 226, 0.06) 1px, transparent 1px);
  background-size: 18.5% 100%, 100% 33.333%;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.hero-frame span {
  position: absolute;
  z-index: 3;
  width: 74px;
  height: 74px;
  border-color: rgba(216, 184, 102, 0.52);
}

.hero-frame span:nth-child(1) {
  top: 96px;
  left: 52px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.hero-frame span:nth-child(2) {
  top: 96px;
  right: 52px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.hero-frame span:nth-child(3) {
  right: 52px;
  bottom: 96px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.hero-frame span:nth-child(4) {
  bottom: 96px;
  left: 52px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px 330px;
  gap: 34px;
  align-items: center;
  min-height: calc(100svh - 188px);
  max-width: 1380px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  display: grid;
  gap: 2px;
  margin-bottom: 24px;
  font-size: 7.1rem;
  text-transform: uppercase;
}

h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(229, 228, 226, 0.92);
  text-shadow: 0 0 30px rgba(14, 165, 233, 0.22);
}

h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: 4.4rem;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.85rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(229, 228, 226, 0.82);
  font-size: 1.22rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: rgba(216, 184, 102, 0.72);
  background: var(--gold);
  color: #111;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
}

.button.secondary:hover {
  border-color: var(--steel);
}

.lens-stage {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: stretch;
  min-height: 440px;
  padding: 42px 20px;
  border-right: 1px solid rgba(229, 228, 226, 0.12);
  border-left: 1px solid rgba(229, 228, 226, 0.12);
}

.lens-stage::before,
.lens-stage::after {
  position: absolute;
  content: "";
  border: 1px solid;
  border-radius: 50%;
  animation: lensPulse 6s ease-in-out infinite;
}

.lens-stage::before {
  inset: 54px 4px;
  border-color: rgba(14, 165, 233, 0.22);
}

.lens-stage::after {
  inset: 86px 34px;
  border-color: rgba(168, 79, 0, 0.28);
  animation-delay: -2s;
}

.lens-orbit {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 210px;
  height: 210px;
  padding: 16px;
  border: 1px solid rgba(229, 228, 226, 0.2);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.62);
  box-shadow: 0 0 54px rgba(14, 165, 233, 0.16), 0 0 64px rgba(168, 79, 0, 0.13);
}

.lens-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lens-caption {
  z-index: 1;
  display: flex;
  gap: 18px;
  align-self: end;
  color: rgba(229, 228, 226, 0.58);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lens-caption span:first-child {
  color: var(--steel);
}

.lens-caption span:last-child {
  color: var(--gold);
}

.hero-reel {
  display: grid;
  gap: 12px;
}

.hero-reel article {
  position: relative;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 11, 12, 0.76);
  overflow: hidden;
}

.hero-reel article::after {
  position: absolute;
  inset: auto 14px 14px auto;
  width: 42px;
  height: 42px;
  content: "";
  border: 1px solid rgba(216, 184, 102, 0.24);
  transform: rotate(45deg);
}

.hero-reel span,
.service-deck span,
.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.hero-reel strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.24rem;
  text-transform: uppercase;
}

.hero-reel p {
  margin-bottom: 0;
  color: rgba(229, 228, 226, 0.62);
  font-size: 0.92rem;
}

.signal-strip {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 4;
  display: flex;
  gap: 38px;
  width: max-content;
  min-width: 100%;
  padding: 10px 0;
  border-top: 1px solid rgba(229, 228, 226, 0.12);
  border-bottom: 1px solid rgba(229, 228, 226, 0.12);
  color: rgba(229, 228, 226, 0.52);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: signalDrift 24s linear infinite;
}

.signal-strip span {
  white-space: nowrap;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px 28px;
}

.manifesto-grid,
.section-heading,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: 76px;
  align-items: start;
}

.manifesto-copy {
  padding-top: 10px;
  color: rgba(229, 228, 226, 0.74);
  font-size: 1.03rem;
}

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

.section-heading {
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.text-link {
  justify-self: end;
  color: var(--steel);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-wall {
  display: grid;
  gap: 18px;
}

.screening-room {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.55fr);
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(12, 13, 14, 0.82);
  box-shadow: var(--shadow);
}

.screening-player {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #050505;
}

.screening-player::before {
  position: absolute;
  inset: 18px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(216, 184, 102, 0.22);
  pointer-events: none;
}

.screening-player::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.08), rgba(7, 7, 7, 0.32)),
    repeating-linear-gradient(0deg, transparent 0, transparent 8px, rgba(255, 255, 255, 0.025) 9px);
}

.player-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #050505;
  color: var(--bone);
  cursor: pointer;
}

.player-poster img,
.youtube-frame {
  width: 100%;
  height: 100%;
}

.player-poster img {
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 240ms ease;
}

.player-poster:hover img {
  opacity: 1;
  transform: scale(1.018);
}

.youtube-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background: #000;
}

.screening-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.video-signal-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.video-signal {
  min-height: 132px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(229, 228, 226, 0.035), transparent),
    rgba(255, 255, 255, 0.02);
  color: var(--bone);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.video-signal:hover,
.video-signal.is-active {
  border-color: rgba(216, 184, 102, 0.55);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.1), transparent 44%),
    linear-gradient(315deg, rgba(168, 79, 0, 0.11), transparent 44%),
    rgba(255, 255, 255, 0.035);
}

.video-signal:hover {
  transform: translateY(-1px);
}

.video-signal span,
.video-signal em {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-signal span {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.66rem;
}

.video-signal strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.video-signal em {
  color: rgba(229, 228, 226, 0.56);
  font-size: 0.62rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.55fr);
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(12, 13, 14, 0.82);
  box-shadow: var(--shadow);
}

.feature-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.feature-image::before {
  position: absolute;
  inset: 18px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(216, 184, 102, 0.22);
  pointer-events: none;
}

.feature-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.08), rgba(7, 7, 7, 0.32)),
    repeating-linear-gradient(0deg, transparent 0, transparent 8px, rgba(255, 255, 255, 0.025) 9px);
}

.feature-image img,
.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-link {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(229, 228, 226, 0.36);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.55);
  transform: translate(-50%, -50%);
}

.play-link:disabled {
  cursor: default;
}

.play-link span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid var(--bone);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.feature-copy p,
.screening-copy p,
.work-tile p,
.service-deck p,
.process-list p,
.legal-content p {
  color: rgba(229, 228, 226, 0.7);
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.meta-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: rgba(229, 228, 226, 0.68);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-tile,
.service-deck article,
.stats-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.work-tile {
  padding: 12px 12px 24px;
}

.tile-media {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 11;
  place-items: center;
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel-2);
}

.tile-media::before,
.tile-media::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(229, 228, 226, 0.14);
}

.tile-media::before {
  inset: 16%;
}

.tile-media::after {
  inset: 30% 14% 28%;
}

.tile-blue .tile-media {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.24), transparent 45%),
    linear-gradient(315deg, rgba(168, 79, 0, 0.14), transparent 42%),
    #101317;
}

.tile-amber .tile-media {
  background:
    linear-gradient(135deg, rgba(168, 79, 0, 0.26), transparent 45%),
    linear-gradient(315deg, rgba(14, 165, 233, 0.12), transparent 42%),
    #11100e;
}

.tile-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tile .tile-media img {
  width: 100%;
}

.placeholder-title {
  position: relative;
  z-index: 1;
  color: rgba(229, 228, 226, 0.54);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-tile > span {
  display: block;
  margin: 20px 12px 10px;
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-tile h3,
.work-tile p {
  padding: 0 12px;
}

.work-tile h3,
.service-deck h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.work-tile p,
.service-deck p {
  margin-bottom: 0;
}

.service-deck {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-deck article {
  min-height: 320px;
  padding: 26px;
  border-width: 0 1px 0 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(229, 228, 226, 0.035), transparent),
    rgba(255, 255, 255, 0.02);
}

.service-deck article:last-child {
  border-right: 0;
}

.service-deck span {
  margin-bottom: 86px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 58px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.11), transparent 34%),
    linear-gradient(315deg, rgba(168, 79, 0, 0.12), transparent 42%),
    rgba(12, 13, 14, 0.9);
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px minmax(110px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-list strong {
  color: var(--bone);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.process-list p {
  margin-bottom: 0;
}

.reach-header {
  max-width: 780px;
  margin-bottom: 38px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stats-grid article {
  min-height: 230px;
  padding: 28px 22px;
}

.stats-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  color: rgba(229, 228, 226, 0.68);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  padding-bottom: 142px;
}

.contact-panel {
  align-items: center;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.1), transparent 40%),
    linear-gradient(270deg, rgba(168, 79, 0, 0.14), transparent 42%),
    #0b0c0d;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, 0.46fr) minmax(240px, 0.72fr) auto;
  gap: 24px;
  align-items: start;
  padding: 38px 52px;
  border-top: 1px solid var(--line);
  color: rgba(229, 228, 226, 0.62);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-mark {
  width: 32px;
  height: 32px;
}

.site-footer p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(229, 228, 226, 0.78);
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(229, 228, 226, 0.42);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-page {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(168, 79, 0, 0.1), transparent 36%),
    var(--ink);
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 72px) 40px 90px;
}

.legal-hero {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: 5.8rem;
}

.legal-hero p {
  max-width: 760px;
  color: rgba(229, 228, 226, 0.72);
  font-size: 1.12rem;
}

.legal-content {
  display: grid;
  gap: 28px;
  padding-top: 42px;
}

.legal-content article {
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--steel);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--steel);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@keyframes lensPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

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

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

@media (max-width: 1100px) {
  .site-header,
  .site-footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-grid {
    right: 28px;
    left: 28px;
  }

  .hero-frame span:nth-child(1),
  .hero-frame span:nth-child(4) {
    left: 28px;
  }

  .hero-frame span:nth-child(2),
  .hero-frame span:nth-child(3) {
    right: 28px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .hero-reel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 3.7rem;
  }

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

  .service-deck article {
    border-width: 0 1px 1px 0;
  }

  .service-deck article:nth-child(2n) {
    border-right: 0;
  }

  .service-deck article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-layout,
  .screening-room,
  .feature-panel,
  .manifesto-grid,
  .section-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .text-link,
  .contact-actions {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    background-size: 44px 44px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 13px 18px;
  }

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

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .legal-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

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

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 96px 18px 86px;
  }

  .hero-grid,
  .hero-frame {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .lens-stage {
    min-height: 320px;
    order: -1;
  }

  .lens-orbit {
    width: 170px;
    height: 170px;
  }

  .hero-reel,
  .video-signal-list,
  .work-tiles,
  .service-deck,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-reel article {
    min-height: auto;
  }

  .signal-strip {
    bottom: 18px;
  }

  .section {
    padding: 72px 18px;
  }

  .screening-room,
  .feature-panel {
    min-height: 0;
  }

  .screening-player {
    min-height: 250px;
    aspect-ratio: 16 / 10;
  }

  .screening-copy,
  .feature-copy,
  .process-layout,
  .contact-panel {
    padding: 28px;
  }

  .service-deck article,
  .service-deck article:nth-child(2n),
  .service-deck article:nth-last-child(-n + 2) {
    border-width: 0 0 1px;
  }

  .service-deck article:last-child {
    border-bottom: 0;
  }

  .service-deck span {
    margin-bottom: 36px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stats-grid strong,
  .legal-hero h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .legal-header .brand span {
    display: none;
  }

  .legal-main {
    padding: 116px 18px 76px;
  }
}

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