:root {
  color-scheme: dark;
  --bg: #141414;
  --panel: #181818;
  --panel-2: #222;
  --text: #f5f5f1;
  --muted: #b3b3b3;
  --soft: rgba(255, 255, 255, 0.72);
  --red: #e50914;
  --red-dark: #9f0610;
  --teal: #12a6b5;
  --gold: #e0ad22;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 6px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--text);
  color: #000;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.intro-cinematic {
  position: fixed;
  inset: 0;
  z-index: 50;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.intro-cinematic.is-playing {
  pointer-events: none;
}

.intro-cinematic.is-ending {
  animation: introFadeOut 720ms ease both;
}

.intro-cinematic::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 50%, rgba(229, 9, 20, 0.24), transparent 24%),
    linear-gradient(90deg, transparent 0 44%, rgba(229, 9, 20, 0.2) 49%, rgba(229, 9, 20, 0.54) 50%, rgba(229, 9, 20, 0.2) 51%, transparent 56%),
    #000;
  transform: scaleX(0.18);
  animation: introBeam 1400ms cubic-bezier(0.18, 0.89, 0.24, 1) 180ms both;
}

.intro-cinematic.is-playing::before {
  animation: introRedTunnel 2300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-cinematic::after {
  content: "";
  position: absolute;
  inset: -12%;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(229, 9, 20, 0.2) 24%, transparent 34%),
    linear-gradient(90deg, transparent 0 38%, rgba(255, 19, 31, 0.42) 48%, rgba(229, 9, 20, 0.78) 50%, rgba(255, 19, 31, 0.42) 52%, transparent 62%),
    linear-gradient(90deg, transparent 0 66%, rgba(229, 9, 20, 0.22) 76%, transparent 86%);
  filter: blur(20px);
  transform: scaleX(0.16);
}

.intro-cinematic.is-playing::after {
  animation: introLightColumns 2100ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.intro-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 0 38%, rgba(0, 0, 0, 0.78) 70%);
  background-size: 100% 4px, 100% 100%;
  opacity: 0.38;
}

.intro-lockup {
  position: relative;
  text-align: center;
  padding: 24px;
  animation: introSettle 700ms ease 1200ms both;
}

.intro-eyebrow,
.intro-subtitle,
.sound-note {
  margin: 0;
  color: var(--muted);
}

.intro-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.9rem;
}

.intro-logo {
  display: flex;
  justify-content: center;
  gap: clamp(0.02em, 0.6vw, 0.08em);
  margin: 8px 0 10px;
  color: var(--red);
  font-size: 11.5rem;
  line-height: 0.78;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(229, 9, 20, 0.52), 0 12px 50px rgba(0, 0, 0, 0.9);
}

.intro-logo span {
  display: inline-block;
  transform-origin: center;
  animation: letterSnap 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-logo span:nth-child(1) { animation-delay: 120ms; }
.intro-logo span:nth-child(2) { animation-delay: 210ms; }
.intro-logo span:nth-child(3) { animation-delay: 300ms; }
.intro-logo span:nth-child(4) { animation-delay: 390ms; }
.intro-logo span:nth-child(5) { animation-delay: 480ms; }

.intro-subtitle {
  font-size: 1.45rem;
}

.sound-note {
  margin-top: 30px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.intro-cinematic.is-playing .sound-note {
  opacity: 0;
}

.intro-cinematic.is-playing .intro-eyebrow,
.intro-cinematic.is-playing .intro-subtitle {
  animation: introCopyExit 520ms ease both;
}

.intro-cinematic.is-playing .intro-logo {
  animation: introLogoDrive 2300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-cinematic.is-playing .intro-logo span {
  animation-name: netflixLetterMove;
  animation-duration: 2100ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}

.intro-cinematic.is-playing .intro-logo span:nth-child(1) {
  animation-delay: 60ms;
  --letter-x: -1.22em;
  --letter-y: -0.05em;
  --letter-tilt: -7deg;
}

.intro-cinematic.is-playing .intro-logo span:nth-child(2) {
  animation-delay: 120ms;
  --letter-x: -0.54em;
  --letter-y: 0.08em;
  --letter-tilt: 5deg;
}

.intro-cinematic.is-playing .intro-logo span:nth-child(3) {
  animation-delay: 180ms;
  --letter-x: 0;
  --letter-y: -0.02em;
  --letter-tilt: 0deg;
}

.intro-cinematic.is-playing .intro-logo span:nth-child(4) {
  animation-delay: 240ms;
  --letter-x: 0.54em;
  --letter-y: 0.08em;
  --letter-tilt: -4deg;
}

.intro-cinematic.is-playing .intro-logo span:nth-child(5) {
  animation-delay: 300ms;
  --letter-x: 1.2em;
  --letter-y: -0.06em;
  --letter-tilt: 7deg;
}

@keyframes introBeam {
  0% {
    opacity: 0;
    transform: scaleX(0.04) scaleY(0.4);
    filter: blur(18px);
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1) scaleY(1);
    filter: blur(0);
  }
}

@keyframes introRedTunnel {
  0% {
    opacity: 1;
    transform: scaleX(0.18) scaleY(1);
    filter: blur(0);
  }
  36% {
    transform: scaleX(0.06) scaleY(1.34);
    filter: blur(10px);
  }
  70% {
    opacity: 1;
    transform: scaleX(1.4) scaleY(1.08);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scaleX(3.4) scaleY(1.22);
    filter: blur(26px);
  }
}

@keyframes introLightColumns {
  0% {
    opacity: 0;
    transform: scaleX(0.08) scaleY(0.72);
  }
  22% {
    opacity: 1;
  }
  62% {
    opacity: 0.92;
    transform: scaleX(0.64) scaleY(1.18);
    filter: blur(10px);
  }
  100% {
    opacity: 0;
    transform: scaleX(3.4) scaleY(1.32);
    filter: blur(34px);
  }
}

@keyframes letterSnap {
  0% {
    opacity: 0;
    transform: scaleX(0.16) translateY(18px);
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes introSettle {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@keyframes introCopyExit {
  to {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(8px);
  }
}

@keyframes introLogoDrive {
  0% {
    transform: scale(1);
    filter: none;
  }
  34% {
    transform: scale(0.92);
  }
  66% {
    opacity: 1;
    transform: scale(1.18);
    filter: drop-shadow(0 0 34px rgba(229, 9, 20, 0.82));
  }
  100% {
    opacity: 0;
    transform: scale(7.4);
    filter: blur(16px) drop-shadow(0 0 80px rgba(229, 9, 20, 0.9));
  }
}

@keyframes netflixLetterMove {
  0% {
    transform: scaleX(1) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
  34% {
    transform: translate(var(--letter-x), var(--letter-y)) rotate(var(--letter-tilt)) scaleX(0.78) scaleY(1.12);
  }
  64% {
    opacity: 1;
    transform: translate(calc(var(--letter-x) * 1.8), 0) rotate(0deg) scaleX(0.22) scaleY(2.8);
    filter: blur(1px);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--letter-x) * 2.6), 0) scaleX(0.08) scaleY(6.4);
    filter: blur(12px);
  }
}

@keyframes introFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.profile-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 34%),
    radial-gradient(circle at 50% 44%, rgba(229, 9, 20, 0.14), transparent 28%),
    #141414;
}

.profile-gate.is-revealing {
  animation: gateReveal 720ms ease both;
}

.profile-gate.is-revealing .gate-mark {
  animation: gateMarkReveal 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.profile-gate.is-revealing .profiles-panel h1 {
  animation: profileHeadingReveal 620ms ease 160ms both;
}

.profile-gate.is-revealing .profile-tile {
  animation: profileTileReveal 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.profile-gate.is-revealing .profile-tile:nth-child(1) { animation-delay: 260ms; }
.profile-gate.is-revealing .profile-tile:nth-child(2) { animation-delay: 340ms; }
.profile-gate.is-revealing .profile-tile:nth-child(3) { animation-delay: 420ms; }
.profile-gate.is-revealing .profile-tile:nth-child(4) { animation-delay: 500ms; }

@keyframes gateReveal {
  from {
    opacity: 0;
    transform: scale(1.035);
    filter: blur(16px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes gateMarkReveal {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(1.16);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes profileHeadingReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes profileTileReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.92);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.gate-mark,
.brand {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.gate-mark {
  position: fixed;
  top: 28px;
  left: 32px;
  font-size: 3.2rem;
  line-height: 0.82;
}

.profiles-panel {
  width: min(980px, 100%);
  text-align: center;
}

.profiles-panel h1 {
  font-size: 4.2rem;
  font-weight: 400;
  margin: 0 0 34px;
}

.profiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(14px, 2vw, 26px);
}

.profile-tile {
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 0;
}

.profile-avatar {
  width: 188px;
  min-width: 188px;
  aspect-ratio: 1;
  display: grid;
  place-items: end start;
  border-radius: 8px;
  border: 4px solid transparent;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  padding: 14px;
  color: #fff;
  background-image: linear-gradient(180deg, transparent 48%, var(--profile-tint)), var(--avatar);
  background-size: cover;
  background-position: var(--avatar-position, center);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
  box-shadow: var(--shadow);
}

.profile-red {
  --profile-tint: rgba(90, 4, 9, 0.9);
}

.profile-teal {
  --profile-tint: rgba(16, 51, 58, 0.92);
}

.profile-gold {
  --profile-tint: rgba(89, 57, 0, 0.92);
}

.profile-silver {
  --profile-tint: rgba(30, 34, 38, 0.92);
}

.profile-tile:hover,
.profile-tile:focus-visible {
  color: #fff;
  outline: 0;
}

.profile-tile:hover .profile-avatar,
.profile-tile:focus-visible .profile-avatar {
  border-color: #fff;
  transform: translateY(-6px) scale(1.03);
  filter: saturate(1.1);
}

.app-shell {
  min-height: 100vh;
  padding-bottom: 40px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 86px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
  transition: background 180ms ease;
}

.topbar.is-solid,
body.nav-open .topbar {
  background: rgba(12, 12, 12, 0.96);
}

.brand {
  text-decoration: none;
  font-size: 2.15rem;
  line-height: 0.82;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #e5e5e5;
  font-size: 1.08rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--soft);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.search-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 340px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.48);
  padding: 8px 12px;
  border-radius: var(--radius);
}

.search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  min-width: 0;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 150px clamp(28px, 5vw, 76px) 106px;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
  background:
    url("assets/voxel/hero-recruiter.jpg") center / cover;
  transform: scale(1.02);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #141414 0%, rgba(20, 20, 20, 0.9) 32%, rgba(20, 20, 20, 0.18) 69%),
    radial-gradient(circle at 68% 42%, rgba(229, 9, 20, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.22) 0%, transparent 45%, #141414 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, 100%);
}

.eyebrow {
  color: var(--muted);
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.match {
  color: #46d369;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: var(--red);
  font-size: 12.5rem;
  line-height: 0.78;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(229, 9, 20, 0.38), 0 16px 60px rgba(0, 0, 0, 0.96);
}

.hero-kicker {
  margin: 22px 0 8px;
  font-size: 1.75rem;
  font-weight: 800;
}

.hero-copy {
  color: #ededed;
  max-width: 780px;
  line-height: 1.55;
  font-size: 1.28rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  color: #000;
  background: #fff;
}

.btn-secondary {
  color: #fff;
  background: rgba(109, 109, 110, 0.72);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
  color: #f3f3f3;
}

.hero-meta span,
.modal-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
}

.billboard-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -42px clamp(28px, 4vw, 76px) 30px;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
}

.billboard-strip article {
  background: rgba(24, 24, 24, 0.96);
  padding: 24px;
  min-height: 126px;
}

.billboard-strip strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.billboard-strip span {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.35;
}

.content-row {
  margin: 24px 0 6px;
  padding-left: clamp(28px, 4vw, 76px);
}

.row-heading {
  padding-right: clamp(28px, 4vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.row-heading h2 {
  margin: 0 0 14px;
  font-size: 2.15rem;
}

.row-controls {
  display: flex;
  gap: 8px;
}

.row-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}

.card-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 360px;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px clamp(28px, 4vw, 76px) 34px 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.card-row::-webkit-scrollbar {
  display: none;
}

.poster-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 202px;
  aspect-ratio: 16 / 9;
  padding: 18px;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.86) 100%),
    var(--poster) var(--poster-position, center) / cover;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  scroll-snap-align: start;
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 40%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.poster-card:hover,
.poster-card:focus-visible {
  z-index: 3;
  transform: scale(1.12);
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.78);
  filter: saturate(1.08);
}

.poster-card:hover::before,
.poster-card:focus-visible::before {
  opacity: 1;
}

.poster-rating {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  background: rgba(229, 9, 20, 0.92);
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 900;
}

.poster-title {
  position: relative;
  font-weight: 900;
  font-size: 1.58rem;
  line-height: 1.05;
  max-width: 96%;
}

.poster-kicker {
  position: relative;
  color: var(--muted);
  margin-top: 4px;
  font-size: 1rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 56px clamp(28px, 4vw, 76px) 28px;
  padding: clamp(24px, 4vw, 44px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.035);
}

.contact-band h2 {
  margin: 0 0 12px;
  max-width: 920px;
  font-size: 3.1rem;
}

.contact-band p {
  color: var(--muted);
  max-width: 850px;
  line-height: 1.55;
  font-size: 1.2rem;
}

.modal[hidden],
[hidden] {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
}

.modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 880px);
  overflow: auto;
  background: #181818;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-poster {
  min-height: 300px;
  background:
    linear-gradient(180deg, transparent 20%, #181818 100%),
    center / cover no-repeat;
  background-size: cover;
}

.modal-body {
  padding: clamp(22px, 4vw, 42px);
}

.modal-body h2 {
  margin: 0 0 12px;
  font-size: 4rem;
  line-height: 0.95;
}

.modal-logline {
  color: #fff;
  font-size: 1.26rem;
  line-height: 1.55;
}

.modal-meta,
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.modal-meta span {
  color: var(--muted);
}

.modal-body h3 {
  margin: 24px 0 8px;
}

.modal-body p,
.modal-body li {
  color: #ddd;
  line-height: 1.55;
  font-size: 1.08rem;
}

.modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.modal-links .btn {
  min-height: 46px;
  padding: 11px 18px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}

.empty-state {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 30;
  transform: translateX(-50%);
  margin: 0;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(229, 9, 20, 0.94);
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  :root {
    font-size: 16px;
  }

  .intro-logo {
    font-size: 6.8rem;
  }

  .gate-mark {
    font-size: 2rem;
  }

  .profiles-panel h1 {
    font-size: 2.5rem;
  }

  .profile-avatar {
    min-width: 128px;
    width: 128px;
  }

  .profiles {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .topbar {
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    background: rgba(12, 12, 12, 0.98);
    border-top: 1px solid var(--line);
  }

  body.nav-open .nav-links {
    display: grid;
  }

  .search-wrap {
    width: min(210px, 38vw);
    margin-left: 0;
  }

  .billboard-strip,
  .contact-band {
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .intro-logo {
    font-size: 4.8rem;
  }

  .intro-subtitle {
    font-size: 1rem;
  }

  .profile-gate {
    padding: 24px 18px;
  }

  .gate-mark {
    left: 20px;
  }

  .profiles {
    gap: 18px 12px;
  }

  .profile-avatar {
    min-width: 0;
    width: 38vw;
  }

  .topbar {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding: 14px 16px;
  }

  .brand {
    font-size: 1.45rem;
  }

  .search-wrap {
    order: 3;
    width: 100%;
  }

  .nav-links {
    top: 118px;
  }

  .hero {
    min-height: 88vh;
    padding: 150px 18px 70px;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .hero-kicker {
    font-size: 1.1rem;
  }

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

  .billboard-strip {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .row-controls {
    display: none;
  }

  .card-row {
    grid-auto-columns: minmax(240px, 78vw);
  }

  .poster-title {
    font-size: 1.15rem;
  }

  .poster-kicker {
    font-size: 0.86rem;
  }

  .poster-card:hover,
  .poster-card:focus-visible {
    transform: scale(1.02);
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band h2 {
    font-size: 1.85rem;
  }

  .contact-band p {
    font-size: 1rem;
  }

  .modal {
    padding: 0;
  }

  .modal-panel {
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }
}

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