@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/archivo-black-latin.woff2") format("woff2");
}

:root {
  --night: #08050d;
  --night-soft: #120a1a;
  --ink: #130b17;
  --violet: #5903c3;
  --electric: #8b32ff;
  --cream: #fff7e8;
  --popcorn: #c9a7ff;
  --spotlight: #f3ecff;
  --muted: #cfc2d7;
  --line: rgba(255, 247, 232, .18);
  --display: "Archivo Black", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
  font-family: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  position: relative;
  margin: 0;
  overflow-x: clip;
  color: var(--cream);
  background: var(--night);
}

body::before {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  content: "";
  opacity: .035;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

::selection {
  color: var(--ink);
  background: var(--popcorn);
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  text-wrap: balance;
}

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

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 11vw, 152px);
}

#que-es,
#juego {
  scroll-margin-top: 86px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--popcorn);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--popcorn);
  outline-offset: 5px;
}

.motion-toggle {
  position: static;
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 232, .38);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(8, 5, 13, .9);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  font: 800 .72rem/1 var(--body);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.motion-ready .motion-toggle {
  display: inline-flex;
}

.motion-toggle-dot {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--popcorn);
  box-shadow: 0 0 12px var(--popcorn);
}

.motion-paused .motion-toggle-dot {
  background: #8f8197;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(139, 50, 255, .42);
  background: rgba(8, 5, 13, .9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: clamp(14px, 2vw, 30px);
  min-height: 72px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  letter-spacing: -.035em;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(139, 50, 255, .32);
}

.brand span {
  font-size: 1.06rem;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-content: center;
}

.main-nav a {
  color: #dfd4e7;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--popcorn);
}

.main-nav small {
  display: block;
  color: var(--popcorn);
  font-size: .52rem;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 2px solid var(--spotlight);
  color: var(--ink);
  background: var(--spotlight);
  font-size: .84rem;
  font-weight: 950;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.header-cta:hover {
  color: var(--popcorn);
  background: transparent;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  isolation: isolate;
  overflow: hidden;
  background: #07040a;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 5, 13, .98) 0%, rgba(8, 5, 13, .9) 28%, rgba(8, 5, 13, .4) 56%, rgba(8, 5, 13, .08) 100%),
    linear-gradient(0deg, rgba(8, 5, 13, .62) 0%, transparent 30%, rgba(8, 5, 13, .12) 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .06) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, .035) 50%, transparent 50.2%);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.hero-inner {
  display: flex;
  min-height: calc(100svh - 72px);
  align-items: center;
  padding-block: clamp(84px, 10vw, 132px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 64%);
}

.hero-kicker,
.section-label,
.game-status,
.last-call > p {
  color: var(--popcorn);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-label::before,
.game-status::before {
  display: inline-block;
  width: 30px;
  height: 6px;
  margin-right: 10px;
  content: "";
  background: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 9px);
  vertical-align: 2px;
}

h1 {
  margin-top: 24px;
  font-size: clamp(3.8rem, 7.4vw, 7.25rem);
  letter-spacing: -.075em;
  line-height: .87;
  text-shadow: 0 12px 44px rgba(0, 0, 0, .54);
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  color: var(--popcorn);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-top: 30px;
  color: #e5dce9;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, .8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 2px solid transparent;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button-primary {
  border-color: var(--electric);
  background: var(--violet);
  box-shadow: 6px 6px 0 var(--popcorn);
}

.button-primary:hover {
  color: var(--ink);
  border-color: var(--spotlight);
  background: var(--spotlight);
  box-shadow: 3px 3px 0 var(--electric);
  transform: translate(3px, 3px);
}

.button-quiet {
  border-color: rgba(255, 247, 232, .5);
  background: rgba(8, 5, 13, .56);
}

.button-quiet:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-note {
  margin-top: 26px;
  color: #a99caf;
  font-size: .82rem;
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #d6cadb;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 50%;
  font-style: normal;
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: var(--ink);
  background: var(--spotlight);
  transform: rotate(-.45deg) scale(1.01);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding-block: 13px;
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticker-track span {
  flex: none;
  padding-right: 1.8rem;
}

.ticker-track i {
  margin-inline: 1.1rem;
  color: var(--violet);
  font-style: normal;
}

.section-index {
  color: #8f8197;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.hall::before {
  position: absolute;
  top: 44%;
  left: -7vw;
  z-index: -1;
  color: transparent;
  content: "P";
  font-family: var(--display);
  font-size: min(52vw, 650px);
  line-height: .7;
  -webkit-text-stroke: 1px rgba(139, 50, 255, .12);
  transform: translateY(-50%);
}

.hall > .section-index {
  grid-column: 1 / 4;
}

.hall-heading {
  grid-column: 1 / 8;
  padding-top: 34px;
}

.hall-heading h2,
.billboard-heading h2,
.game-copy h2,
.last-call h2 {
  margin-top: 20px;
  font-size: clamp(3rem, 6.2vw, 6rem);
  letter-spacing: -.065em;
  line-height: .91;
}

.hall-copy {
  grid-column: 8 / 13;
  align-self: end;
  padding-bottom: 8px;
}

.hall-copy > p {
  color: var(--cream);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.52;
}

.hall-copy strong {
  display: block;
  margin-top: 30px;
  padding-left: 20px;
  border-left: 4px solid var(--popcorn);
  color: var(--popcorn);
  font-size: 1rem;
  line-height: 1.55;
}

.conversation-stack {
  display: grid;
  grid-column: 1 / 13;
  gap: 0;
  margin-top: 72px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.conversation-stack li {
  padding: 19px 0 17px;
  border-top: 1px solid var(--line);
  color: #ede5f1;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.8vw, 3.6rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.conversation-stack li:nth-child(2) {
  color: var(--electric);
  text-align: center;
}

.conversation-stack li:nth-child(3) {
  color: var(--popcorn);
  text-align: right;
}

.billboard {
  padding-top: 28px;
}

.billboard-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 58px;
}

.billboard-heading h2 {
  margin-top: 0;
}

.billboard-heading .section-label {
  margin-top: 18px;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(280px, auto));
  gap: 18px;
}

.show-poster {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 3px solid currentColor;
  border-radius: 3px;
  text-decoration: none;
  isolation: isolate;
  transition: transform .22s cubic-bezier(.16, 1, .3, 1), box-shadow .22s ease;
}

a.show-poster:hover,
a.show-poster:focus-visible {
  transform: translate(-6px, -6px);
}

.show-poster-forum {
  grid-row: 1 / 3;
  grid-column: 1 / 8;
  min-height: 600px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 13px 13px 0 var(--violet);
}

.show-poster-forum:hover,
.show-poster-forum:focus-visible {
  box-shadow: 19px 19px 0 var(--violet);
}

.show-poster-rankings {
  grid-row: 1;
  grid-column: 8 / 13;
  color: #fff;
  background: var(--violet);
  box-shadow: 10px 10px 0 var(--popcorn);
}

.show-poster-game {
  grid-row: 2;
  grid-column: 8 / 13;
  color: var(--cream);
  background: #13091b;
  box-shadow: 10px 10px 0 var(--electric);
}

.show-poster-game:hover,
.show-poster-game:focus-visible {
  box-shadow: 16px 16px 0 var(--electric);
}

.poster-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.poster-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.poster-copy > p {
  margin-bottom: 12px;
  color: currentColor;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.poster-copy h3 {
  max-width: 620px;
  font-size: clamp(2rem, 4.3vw, 4.25rem);
  letter-spacing: -.06em;
  line-height: .91;
}

.poster-copy > span {
  display: block;
  max-width: 560px;
  margin-top: 16px;
  font-size: .98rem;
  font-weight: 650;
  line-height: 1.55;
}

.show-poster > strong {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor;
  font-size: .82rem;
}

.poster-word {
  position: absolute;
  top: 10%;
  right: -6%;
  z-index: -1;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(7rem, 16vw, 13rem);
  letter-spacing: -.1em;
  line-height: .8;
  -webkit-text-stroke: 2px rgba(89, 3, 195, .18);
  transform: rotate(-90deg) translateX(-15%);
}

.ranking-star {
  position: absolute;
  top: 30px;
  right: 22px;
  color: var(--popcorn);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: .6;
  opacity: .9;
  transform: rotate(11deg);
}

.show-poster-rankings .poster-copy h3,
.show-poster-game .poster-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.game-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image:
    linear-gradient(var(--electric) 1px, transparent 1px),
    linear-gradient(90deg, var(--electric) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(135deg, transparent 5%, #000 100%);
}

.game-teaser {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  border-block: 1px solid rgba(139, 50, 255, .34);
  background:
    radial-gradient(circle at 78% 48%, rgba(89, 3, 195, .46), transparent 27rem),
    linear-gradient(120deg, #060308, #12051e 70%, #09040d);
}

.game-teaser::before {
  position: absolute;
  bottom: -7vw;
  left: -2vw;
  color: transparent;
  content: "PLAY";
  font-family: var(--display);
  font-size: 28vw;
  line-height: .8;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(139, 50, 255, .11);
}

.game-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(50px, 9vw, 120px);
  min-height: 76svh;
  align-items: center;
  padding-block: 90px;
}

.game-copy h2 {
  max-width: 760px;
}

.game-copy > p:not(.game-status) {
  max-width: 610px;
  margin-top: 26px;
  color: #ddd1e3;
  font-size: 1.12rem;
}

.game-copy > strong {
  display: block;
  margin-top: 26px;
  color: var(--popcorn);
}

.game-status {
  margin-top: 20px;
}

.game-signal {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
}

.signal-orbit {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.signal-orbit::before,
.signal-orbit::after {
  position: absolute;
  width: 13px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--popcorn);
  box-shadow: 0 0 22px var(--popcorn);
  content: "";
}

.signal-orbit::before {
  top: 12%;
  left: 11%;
}

.signal-orbit::after {
  right: 8%;
  bottom: 16%;
  background: var(--electric);
  box-shadow: 0 0 24px var(--electric);
}

.signal-orbit-two {
  inset: 23%;
  border-style: dashed;
  transform: rotate(42deg);
}

.production-mark {
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  border: 3px solid var(--cream);
  color: var(--cream);
  background: rgba(8, 5, 13, .42);
  box-shadow: 12px 12px 0 var(--violet);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -.035em;
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-6deg);
}

.game-signal > span {
  position: absolute;
  bottom: 12%;
  padding: 8px 11px;
  border: 1px solid rgba(201, 167, 255, .64);
  color: var(--popcorn);
  font-size: .64rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.last-call {
  display: grid;
  justify-items: center;
  width: min(1200px, calc(100% - 48px));
  margin-block: clamp(88px, 11vw, 144px);
  padding: 24px clamp(24px, 8vw, 100px) 58px;
  border: 8px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  background: var(--spotlight);
  box-shadow: 15px 15px 0 var(--violet);
  text-align: center;
}

.last-call > p {
  margin-top: 36px;
  color: var(--violet);
}

.last-call h2 {
  max-width: 900px;
  margin-top: 14px;
}

.last-call > span {
  margin-top: 20px;
  color: #51445b;
  font-size: 1.05rem;
}

.button-dark {
  margin-top: 30px;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--violet);
}

.button-dark:hover {
  border-color: var(--violet);
  background: var(--violet);
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(3px, 3px);
}

.last-call a:focus-visible {
  outline-color: var(--violet);
}

.last-call-rule {
  width: 100%;
  height: 12px;
  background: radial-gradient(circle, var(--ink) 0 4px, transparent 5px) 0 50% / 28px 12px repeat-x;
}

.last-call-rule:last-child {
  margin-top: 38px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040206;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  min-height: 124px;
  align-items: center;
}

.footer-inner p {
  font-size: .86rem;
}

.footer-inner > a:last-child {
  justify-self: end;
  color: var(--popcorn);
  font-size: .88rem;
  font-weight: 950;
  text-decoration: none;
}

.hero-copy {
  animation: hero-copy-in .85s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-media img {
  animation: hero-art-in 1.15s cubic-bezier(.16, 1, .3, 1) both;
}

[data-scene] {
  position: relative;
}

[data-scene]::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 2px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, var(--popcorn) 20%, var(--electric) 80%, transparent);
  box-shadow: 0 0 18px rgba(139, 50, 255, .8);
}

.motion-ready [data-scene]::after {
  scale: 0 1;
  transform-origin: left;
  transition: scale 1.1s cubic-bezier(.16, 1, .3, 1);
}

.motion-ready [data-scene].scene-visible::after {
  scale: 1 1;
}

.motion-ready [data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 48px;
  --reveal-scale: 1;
  --reveal-rotate: 0deg;
  opacity: 0;
  clip-path: inset(0);
  translate: var(--reveal-x) var(--reveal-y);
  scale: var(--reveal-scale);
  rotate: var(--reveal-rotate);
  transition:
    opacity .62s ease-out,
    translate .92s cubic-bezier(.16, 1, .3, 1),
    scale .92s cubic-bezier(.16, 1, .3, 1),
    rotate .92s cubic-bezier(.16, 1, .3, 1),
    clip-path .92s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale, rotate, clip-path;
}

.motion-ready [data-reveal="title"] {
  --reveal-y: 72px;
  clip-path: inset(0 0 88% 0);
}

.motion-ready [data-reveal="line"] {
  --reveal-x: -28px;
  --reveal-y: 0px;
  clip-path: inset(0 92% 0 0);
}

.motion-ready [data-reveal="left"] {
  --reveal-x: -58px;
  --reveal-y: 0px;
}

.motion-ready [data-reveal="right"] {
  --reveal-x: 58px;
  --reveal-y: 0px;
}

.motion-ready [data-reveal="poster"] {
  --reveal-y: 96px;
  --reveal-scale: .92;
  clip-path: inset(0 0 92% 0);
}

.motion-ready .show-poster-forum[data-reveal] {
  --reveal-rotate: -1.5deg;
}

.motion-ready .show-poster-rankings[data-reveal] {
  --reveal-rotate: 2deg;
  --reveal-delay: 110ms;
}

.motion-ready .show-poster-game[data-reveal] {
  --reveal-rotate: -1deg;
  --reveal-delay: 210ms;
}

.motion-ready [data-reveal="signal"] {
  --reveal-y: 32px;
  --reveal-scale: .72;
  --reveal-rotate: -12deg;
}

.motion-ready [data-reveal="pop"] {
  --reveal-y: 72px;
  --reveal-scale: .9;
  --reveal-rotate: -1deg;
}

.motion-ready .conversation-stack li:nth-child(2) {
  --reveal-delay: 100ms;
}

.motion-ready .conversation-stack li:nth-child(3) {
  --reveal-delay: 180ms;
}

.motion-ready [data-reveal].is-visible,
.motion-paused [data-reveal] {
  opacity: 1;
  clip-path: inset(0);
  translate: 0 0;
  scale: 1;
  rotate: 0deg;
  will-change: auto;
}

.motion-ready .hall::before {
  opacity: 0;
  transform: translate(-70px, -50%);
  transition: opacity 1s ease, transform 1.4s cubic-bezier(.16, 1, .3, 1);
}

.motion-ready .hall.scene-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.motion-ready .game-teaser::before {
  opacity: 0;
  transform: translateX(-90px);
  transition: opacity 1.2s ease, transform 1.5s cubic-bezier(.16, 1, .3, 1);
}

.motion-ready .game-teaser.scene-visible::before {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: view()) {
  .ticker-track {
    animation: ticker-roll 1ms linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 35%;
  }

  .signal-orbit-one {
    animation: orbit-spin 1ms linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .signal-orbit-two {
    animation: orbit-spin-reverse 1ms linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-art-in {
  from { opacity: .35; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ticker-roll {
  to { transform: translateX(-50%); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  from { transform: rotate(42deg); }
  to { transform: rotate(-318deg); }
}

.motion-paused {
  scroll-behavior: auto;
}

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
  transition-duration: .01ms !important;
}

.motion-paused .hero-copy,
.motion-paused .hero-media img {
  opacity: 1;
  animation: none !important;
  transform: none;
}

.motion-paused [data-scene]::after {
  scale: 1 1;
}

@media (max-width: 1020px) {
  .main-nav a:first-child,
  .main-nav a:nth-child(2) {
    display: none;
  }

  .hero-copy {
    width: min(700px, 72%);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 5, 13, .98), rgba(8, 5, 13, .82) 42%, rgba(8, 5, 13, .22) 76%),
      linear-gradient(0deg, rgba(8, 5, 13, .66), transparent 40%);
  }

  .poster-grid {
    grid-template-rows: repeat(2, minmax(300px, auto));
  }

  .show-poster-forum {
    grid-column: 1 / 7;
  }

  .show-poster-rankings,
  .show-poster-game {
    grid-column: 7 / 13;
  }

  .game-stage {
    grid-template-columns: 1.2fr .8fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .shell,
  .last-call {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    background: rgba(8, 5, 13, .97);
    backdrop-filter: none;
  }

  .motion-toggle {
    position: static;
    grid-row: 2;
    grid-column: 2;
    width: 44px;
    padding: 0;
    justify-self: end;
    backdrop-filter: none;
  }

  .motion-toggle [data-motion-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .motion-toggle::after {
    color: var(--popcorn);
    content: "Ⅱ";
    font-size: .9rem;
    font-weight: 950;
  }

  .motion-paused .motion-toggle::after {
    content: "▶";
  }

  .motion-toggle-dot {
    display: none;
  }

  .motion-ready [data-reveal="left"],
  .motion-ready [data-reveal="right"] {
    --reveal-x: 0px;
    --reveal-y: 38px;
  }

  .motion-ready [data-reveal="poster"] {
    --reveal-y: 58px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    column-gap: 14px;
    row-gap: 8px;
    min-height: auto;
    padding-block: 10px 12px;
  }

  .main-nav {
    display: flex;
    grid-column: 1;
    grid-row: 2;
    justify-content: space-between;
    gap: 14px;
  }

  .main-nav a {
    font-size: .76rem;
  }

  .main-nav a:first-child,
  .main-nav a:nth-child(2) {
    display: inline;
  }

  .main-nav small {
    display: none;
  }

  .hero {
    min-height: max(720px, calc(100svh - 68px));
  }

  .hero-inner {
    min-height: max(720px, calc(100svh - 68px));
    align-items: flex-start;
    padding-block: 84px 150px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 5, 13, .96) 0%, rgba(8, 5, 13, .72) 48%, rgba(8, 5, 13, .18) 78%, rgba(8, 5, 13, .54) 100%),
      linear-gradient(90deg, rgba(8, 5, 13, .86), rgba(8, 5, 13, .1));
  }

  .hero::after {
    opacity: .38;
    mask-image: none;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(3.25rem, 14.5vw, 5rem);
    line-height: .89;
  }

  .hero-lead {
    max-width: 540px;
    font-size: 1.04rem;
  }

  .scroll-cue {
    display: none;
  }

  .ticker-track {
    padding-block: 11px;
    font-size: .72rem;
  }

  .hall,
  .billboard-heading,
  .game-stage {
    grid-template-columns: 1fr;
  }

  .hall > .section-index,
  .hall-heading,
  .hall-copy,
  .conversation-stack {
    grid-column: auto;
  }

  .hall-heading {
    padding-top: 8px;
  }

  .hall-copy {
    padding-top: 18px;
  }

  .conversation-stack {
    margin-top: 44px;
  }

  .conversation-stack li {
    font-size: clamp(1.45rem, 7vw, 2.4rem);
  }

  .billboard-heading {
    gap: 30px;
  }

  .poster-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .show-poster-forum,
  .show-poster-rankings,
  .show-poster-game {
    grid-column: auto;
    grid-row: auto;
  }

  .show-poster-forum {
    min-height: 510px;
  }

  .show-poster-rankings,
  .show-poster-game {
    min-height: 350px;
  }

  .poster-copy h3,
  .show-poster-rankings .poster-copy h3,
  .show-poster-game .poster-copy h3 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .game-teaser,
  .game-stage {
    min-height: auto;
  }

  .game-stage {
    gap: 40px;
    padding-block: 88px;
  }

  .game-signal {
    width: min(100%, 360px);
    justify-self: center;
  }

  .last-call {
    padding-inline: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 32px;
  }

  .footer-inner > a:last-child {
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .header-inner {
    column-gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand span {
    font-size: .82rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 10px;
    font-size: .73rem;
  }

  .hero-inner {
    padding-top: 52px;
  }

  h1 {
    margin-top: 16px;
    font-size: clamp(2.9rem, 15vw, 4rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-kicker {
    font-size: .64rem;
    letter-spacing: .13em;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .show-poster {
    padding: 24px;
  }

  .show-poster-forum {
    min-height: 460px;
    box-shadow: 8px 8px 0 var(--violet);
  }

  .show-poster-rankings,
  .show-poster-game {
    min-height: 330px;
    box-shadow: 7px 7px 0 var(--popcorn);
  }

  .show-poster-game {
    box-shadow: 7px 7px 0 var(--electric);
  }

  .production-mark {
    width: 130px;
    height: 130px;
    font-size: 1rem;
  }

  .last-call {
    border-width: 5px;
    box-shadow: 9px 9px 0 var(--violet);
  }

  .last-call h2 {
    font-size: 2.75rem;
  }
}

@media print {
  .motion-toggle {
    display: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    clip-path: none !important;
    translate: none !important;
    scale: 1 !important;
    rotate: none !important;
  }
}
