:root {
  --red: #bd1114;
  --red-bright: #ca1719;
  --red-deep: #5d0709;
  --red-black: #1d0203;
  --ink: #0d0303;
  --paper: #f5efec;
  --line-dark: rgba(13, 3, 3, 0.34);
  --mono: "Space Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --safe-top: max(18px, env(safe-area-inset-top));
  --safe-right: max(18px, env(safe-area-inset-right));
  --safe-bottom: max(18px, env(safe-area-inset-bottom));
  --safe-left: max(18px, env(safe-area-inset-left));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--red);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--red);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
a {
  font: inherit;
}

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

button {
  border: 0;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  isolation: isolate;
  background: var(--red);
}

/* High-resolution desktop background. The dedicated portrait asset is
   selected in the mobile media query below. */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: 0;
  background-color: var(--red);
  background-image: url("assets/background-desktop.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: auto;
  transition: opacity 1.05s var(--ease);
}

.ambient-bg::before,
.ambient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ambient-bg::before {
  background:
    radial-gradient(circle at center, transparent 38%, rgba(15, 0, 0, 0.08) 78%, rgba(9, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,.015), rgba(76,0,0,.045));
}

.ambient-bg::after {
  opacity: .14;
  background: linear-gradient(90deg, rgba(0,0,0,.08), transparent 18%, transparent 82%, rgba(0,0,0,.08));
}

.ambient-bg.is-visible {
  opacity: 1;
}

.hero {
  position: fixed;
  inset: 0;
  z-index: 30;
  overflow: hidden;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity .9s var(--ease), visibility 0s linear .9s;
}

.hero.is-finished {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  background: #000 url("assets/hero-poster.jpg") center / cover no-repeat;
  opacity: 0;
  animation: heroFadeIn .45s ease .04s forwards;
}

.hero-blackout {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 1;
  pointer-events: none;
  animation: blackoutLift .48s ease .04s forwards;
}

@keyframes heroFadeIn { to { opacity: 1; } }
@keyframes blackoutLift { to { opacity: 0; } }

.topbar {
  position: fixed;
  z-index: 20;
  top: var(--safe-top);
  left: var(--safe-left);
  right: var(--safe-right);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.topbar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar-mark {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  opacity: .58;
}

.language-switch {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(13, 3, 3, .25);
  background: rgba(189, 17, 20, .34);
  box-shadow: 0 6px 28px rgba(28, 0, 0, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.language-option {
  min-width: 32px;
  min-height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  opacity: .42;
  transition: opacity .2s ease, transform .2s ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  opacity: 1;
}

.language-option:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

.gate {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  place-items: center;
  padding: clamp(165px, 24vh, 240px) clamp(22px, 6vw, 80px) 110px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease), visibility 0s linear .7s;
}

.gate.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.gate.is-leaving {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

.gate-inner {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}

.riddle-wrap {
  min-height: clamp(96px, 12vw, 132px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.riddle {
  display: inline;
  margin: 0;
  max-width: 820px;
  font-family: var(--mono);
  font-size: clamp(20px, 2.55vw, 36px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.typing-cursor {
  display: inline-block;
  flex: 0 0 auto;
  width: .5em;
  height: 1.02em;
  margin-left: .2em;
  transform: translateY(.16em);
  background: var(--ink);
  animation: cursorBlink .78s steps(1) infinite;
}

.typing-cursor.is-hidden {
  opacity: 0;
  animation: none;
}

@keyframes cursorBlink {
  0%, 46% { opacity: 1; }
  47%, 100% { opacity: 0; }
}

.password-form {
  width: min(440px, 100%);
  margin: clamp(28px, 4vh, 46px) auto 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.password-form.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.password-form.is-shaking {
  animation: fieldShake .38s ease both;
}

@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  22% { transform: translateX(-9px); }
  44% { transform: translateX(8px); }
  66% { transform: translateX(-5px); }
  84% { transform: translateX(3px); }
}

.field-label {
  display: block;
  margin-bottom: 13px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  opacity: .64;
}

.input-line {
  position: relative;
}

.input-line::before,
.input-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
}

.input-line::before { background: rgba(13, 3, 3, .42); }

.input-line::after {
  background: var(--ink);
  transform: scaleX(.12);
  transform-origin: center;
  opacity: .58;
  transition: transform .38s var(--ease), opacity .25s ease, box-shadow .25s ease;
}

.password-form:focus-within .input-line::after,
.input-line.has-value::after {
  transform: scaleX(1);
  opacity: 1;
  box-shadow: 0 0 18px rgba(13, 3, 3, .32);
}

#passwordInput {
  width: 100%;
  height: 56px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  caret-color: var(--ink);
  background: transparent;
  font-family: var(--mono);
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
  appearance: none;
}

.error-message {
  min-height: 20px;
  margin: 11px 0 2px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.enter-button,
.ticket-button,
.waitlist-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, transform .25s var(--ease), box-shadow .25s ease, opacity .25s ease;
}

.enter-button {
  width: 100%;
  margin-top: 8px;
}

.enter-button:hover,
.enter-button:focus-visible,
.ticket-button:hover,
.ticket-button:focus-visible,
.waitlist-button:hover,
.waitlist-button:focus-visible {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(22, 0, 0, .16);
  transform: translateY(-2px);
  outline: none;
}

.enter-button:active,
.ticket-button:active,
.waitlist-button:active {
  transform: translateY(0);
}

button:disabled {
  cursor: wait;
  opacity: .56;
}

.bypass-link {
  margin: 22px auto 0;
  padding: 8px;
  color: var(--ink);
  background: transparent;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  opacity: .55;
}

.bypass-link:hover,
.bypass-link:focus-visible {
  opacity: 1;
  outline: none;
}

.spots {
  position: fixed;
  z-index: 18;
  left: 50%;
  bottom: var(--safe-bottom);
  display: flex;
  align-items: baseline;
  gap: 12px;
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.spots.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.spots-label {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .62;
}

.spots-number {
  min-width: 3ch;
  font-family: var(--mono);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
}

.spots-number.is-ticking,
.reveal-counter-number.is-ticking {
  animation: numberTick .48s var(--ease);
}

@keyframes numberTick {
  0% { transform: translateY(0); opacity: 1; }
  42% { transform: translateY(-10px); opacity: 0; }
  43% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}


/* ---------------------------------------------------------------
   PAYOFF SCREEN
   The gate does not jump straight to tickets. A black glitch cuts the
   question off, the recognition message types over extra_background.png,
   then the ticket page pushes forward into view.
   --------------------------------------------------------------- */
.payoff {
  position: fixed;
  z-index: 70;
  inset: 0;
  overflow: hidden;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateZ(0);
  transition: opacity .12s linear, visibility 0s linear .12s;
}

.payoff.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.payoff::before {
  content: "";
  position: absolute;
  inset: -5%;
  background: #000 url("assets/extra_background.png") center / cover no-repeat;
  filter: blur(18px) brightness(.38) saturate(1.12);
  opacity: 0;
  transform: scale(1.11);
  transition: opacity .48s ease;
}

.payoff.is-image-visible::before {
  opacity: .58;
}

.payoff-image,
.payoff-glitch {
  position: absolute;
  inset: 0;
  background-color: #000;
  background-image: url("assets/extra_background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: auto;
}

.payoff-image {
  opacity: 0;
  transform: scale(1.055);
  filter: contrast(1.04) saturate(1.08) brightness(.82);
  transition: opacity .5s ease, transform 1.15s var(--ease), filter .65s ease;
}

.payoff.is-image-visible .payoff-image {
  opacity: 1;
  transform: scale(1);
  filter: contrast(1.06) saturate(1.1) brightness(.9);
}

.payoff-glitch {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.payoff.is-glitching .payoff-glitch--one {
  animation: payoffGlitchOne .42s steps(2, end) both;
}

.payoff.is-glitching .payoff-glitch--two {
  animation: payoffGlitchTwo .42s steps(2, end) .025s both;
}

@keyframes payoffGlitchOne {
  0%   { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateX(0); }
  12%  { opacity: .92; clip-path: inset(13% 0 72% 0); transform: translateX(-20px); filter: brightness(1.65) saturate(1.8); }
  26%  { opacity: .35; clip-path: inset(62% 0 24% 0); transform: translateX(16px); }
  41%  { opacity: .88; clip-path: inset(37% 0 49% 0); transform: translateX(-9px); }
  58%  { opacity: .28; clip-path: inset(79% 0 9% 0); transform: translateX(22px); }
  76%  { opacity: .72; clip-path: inset(6% 0 82% 0); transform: translateX(-12px); }
  100% { opacity: 0; clip-path: inset(100% 0 0 0); transform: translateX(0); }
}

@keyframes payoffGlitchTwo {
  0%   { opacity: 0; clip-path: inset(100% 0 0 0); transform: translateX(0); }
  18%  { opacity: .45; clip-path: inset(48% 0 34% 0); transform: translateX(18px); filter: hue-rotate(-18deg) brightness(1.45); }
  34%  { opacity: .82; clip-path: inset(22% 0 64% 0); transform: translateX(-15px); }
  52%  { opacity: .3; clip-path: inset(70% 0 17% 0); transform: translateX(8px); }
  70%  { opacity: .68; clip-path: inset(31% 0 55% 0); transform: translateX(-20px); }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateX(0); }
}

.payoff-scanlines {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, .035) 0,
    rgba(255, 255, 255, .035) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}

.payoff.is-image-visible .payoff-scanlines {
  opacity: .34;
  animation: payoffScan .18s steps(2) infinite;
}

@keyframes payoffScan {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

.payoff-inner {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: max(30px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(30px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
}

.payoff-copy-wrap {
  display: flex;
  max-width: min(1060px, 88vw);
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .3s var(--ease);
}

.payoff.is-typing .payoff-copy-wrap {
  opacity: 1;
  transform: translateY(0);
}

.payoff-copy {
  display: inline;
  margin: 0;
  color: #e31a1d;
  font-family: var(--sans);
  font-size: clamp(38px, 6.8vw, 104px);
  line-height: .94;
  font-weight: 800;
  letter-spacing: -.052em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 0 2px rgba(255, 44, 47, .86),
    0 0 24px rgba(195, 0, 5, .34),
    3px 0 0 rgba(25, 0, 0, .8);
}

.payoff-copy::selection {
  background: #e31a1d;
  color: #000;
}

.payoff-cursor {
  display: inline-block;
  flex: 0 0 auto;
  width: .12em;
  height: .84em;
  margin-left: .12em;
  background: #e31a1d;
  box-shadow: 0 0 18px rgba(227, 26, 29, .5);
  transform: translateY(-.07em);
  animation: payoffCursorBlink .58s steps(1) infinite;
}

.payoff-cursor.is-hidden {
  opacity: 0;
  animation: none;
}

@keyframes payoffCursorBlink {
  0%, 44% { opacity: 1; }
  45%, 100% { opacity: 0; }
}

.payoff.is-transitioning {
  /* Once the final page is already rendered underneath, the payoff layer
     becomes transparent instead of ever cutting back to a black frame. */
  background: transparent;
}

.payoff.is-transitioning::before,
.payoff.is-transitioning .payoff-image {
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform 1.05s var(--ease),
    filter .72s ease;
}

.payoff.is-exiting {
  opacity: 0;
  transform: scale(1.035);
  filter: blur(2px);
  transition:
    opacity .68s cubic-bezier(.22, 1, .36, 1),
    transform .92s var(--ease),
    filter .58s ease,
    visibility 0s linear .7s;
}

.payoff.is-transitioning.is-exiting::before,
.payoff.is-transitioning.is-exiting .payoff-image {
  opacity: 0;
  transform: scale(1.045);
}

body.state-payoff {
  overflow: hidden;
  background: #000;
}

.reveal.is-prepared {
  z-index: 7;
  opacity: 1;
  visibility: visible;
  transform: scale(1.075);
  transform-origin: 50% 10vh;
  filter: blur(7px) brightness(.82);
  pointer-events: none;
  will-change: transform, filter;
  transition: none;
}

.reveal.is-prepared.is-zooming-in {
  transform: scale(1);
  filter: blur(0) brightness(1);
  transition:
    transform 1.02s var(--ease),
    filter .72s cubic-bezier(.22, 1, .36, 1);
}

.reveal {
  position: relative;
  z-index: 6;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(195px, 22vh, 255px) clamp(16px, 5vw, 64px) clamp(70px, 10vh, 120px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity .85s var(--ease), transform .85s var(--ease), visibility 0s linear .85s;
}

.reveal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.reveal-panel {
  position: relative;
  width: min(780px, 100%);
  margin-inline: auto;
  padding: clamp(34px, 6vw, 64px);
  color: var(--ink);
  border: 1px solid rgba(214, 29, 33, .32);
  background: rgba(195, 19, 22, .88);
  box-shadow:
    0 36px 100px rgba(18, 0, 0, .28),
    inset 0 1px 0 rgba(255,255,255,.08);
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .reveal-panel {
    background:
      linear-gradient(145deg, rgba(7, 1, 2, .82), rgba(20, 3, 4, .68));
    backdrop-filter: blur(22px) saturate(.95) contrast(1.04);
    -webkit-backdrop-filter: blur(22px) saturate(.95) contrast(1.04);
  }
}

.panel-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.panel-corner--top {
  top: 12px;
  right: 12px;
  border-top: 1px solid rgba(214, 29, 33, .7);
  border-right: 1px solid rgba(214, 29, 33, .7);
}

.panel-corner--bottom {
  bottom: 12px;
  left: 12px;
  border-bottom: 1px solid rgba(214, 29, 33, .6);
  border-left: 1px solid rgba(214, 29, 33, .6);
}

.stars {
  margin-bottom: clamp(30px, 5vw, 46px);
  text-align: center;
  font-size: 10px;
  letter-spacing: .55em;
  color: rgba(214, 29, 33, .88);
  opacity: .82;
}

.event-copy {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(34px, 5vw, 48px);
  text-align: center;
}

.event-copy p {
  margin: 0;
  font-size: clamp(18px, 2.6vw, 25px);
  line-height: 1.42;
  letter-spacing: -.01em;
}

.event-copy-emphasis {
  font-weight: 800;
}

.event-context {
  margin: -12px auto 34px;
  padding: 10px 14px;
  border-top: 1px solid rgba(214, 29, 33, .28);
  border-bottom: 1px solid rgba(214, 29, 33, .28);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .17em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(214, 29, 33, .88);
  opacity: .82;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.meta-item {
  display: grid;
  gap: 9px;
  text-align: center;
}

.meta-label,
.ticket-name,
.waitlist-kicker,
.edition-block,
.curated {
  font-family: var(--mono);
  text-transform: uppercase;
}

.meta-label {
  color: rgba(214, 29, 33, .68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}

.meta-value {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 800;
}

.reveal-counter {
  display: flex;
  width: fit-content;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(214, 29, 33, .32);
  background: rgba(18, 4, 5, .62);
}

.reveal-counter-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
}

.reveal-counter-number {
  min-width: 3ch;
  font-family: var(--mono);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
}

.rule {
  height: 1px;
  margin-bottom: 20px;
  background: rgba(214, 29, 33, .24);
}

.ticket-list {
  display: grid;
  gap: 10px;
}

.ticket-tier {
  display: grid;
  min-height: 82px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 29, 33, .28);
  background: rgba(20, 4, 5, .54);
  transition: background-color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.ticket-tier:hover {
  border-color: rgba(214, 29, 33, .54);
  background: rgba(34, 7, 9, .72);
  transform: translateX(3px);
}

.ticket-details {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.ticket-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.ticket-subtitle {
  color: rgba(214, 29, 33, .78);
  font-size: 13.5px;
  line-height: 1.48;
  font-weight: 500;
}

.ticket-price {
  font-family: var(--mono);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -.05em;
}

.ticket-button {
  width: 100%;
  min-height: 64px;
  margin-top: 22px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.ticket-button:hover,
.ticket-button:focus-visible {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.ticket-button-arrow {
  position: absolute;
  right: 21px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-slogan {
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  margin: clamp(44px, 7vw, 68px) 0 clamp(24px, 4vw, 34px);
}

.brand-slogan p {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(23px, 4.1vw, 36px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.brand-slogan-rule {
  display: block;
  height: 1px;
  background: rgba(13, 3, 3, .46);
}

.waitlist {
  margin-top: 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(214, 29, 33, .28);
  background: rgba(17, 3, 4, .56);
}

.waitlist-intro {
  text-align: center;
}

.waitlist-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  opacity: .66;
}

.waitlist h2 {
  margin: 0;
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.waitlist-intro p {
  width: min(560px, 100%);
  margin: 12px auto 0;
  color: rgba(214, 29, 33, .78);
  font-size: 14px;
  line-height: 1.55;
}

.waitlist-form {
  margin-top: 22px;
}

.waitlist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 56px;
  border: 1px solid var(--ink);
  background: rgba(9, 2, 3, .72);
}

#waitlistEmail {
  min-width: 0;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
}

#waitlistEmail::placeholder {
  color: rgba(214, 29, 33, .46);
}

#waitlistEmail:focus-visible {
  box-shadow: inset 0 0 0 1px var(--ink);
}

.waitlist-button {
  min-width: 205px;
  min-height: 54px;
  padding: 0 20px;
  white-space: nowrap;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 13px;
  color: rgba(214, 29, 33, .72);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.55;
  cursor: pointer;
}

.consent-row input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.waitlist-status {
  min-height: 18px;
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.waitlist-status.is-success {
  color: var(--ink);
}

.waitlist-status.is-error {
  color: #ff6a6d;
}

.waitlist-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.edition-block {
  display: grid;
  gap: 7px;
  margin-top: 32px;
  color: rgba(214, 29, 33, .66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-align: center;
}

.curated {
  margin-top: 28px;
  color: rgba(214, 29, 33, .52);
  font-size: 8px;
  letter-spacing: .19em;
  text-align: center;
}

.grain {
  position: fixed;
  z-index: 100;
  inset: -30%;
  pointer-events: none;
  opacity: .09;
  background-image: url("assets/grain-texture.jpg");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
  animation: grainShift .3s steps(2) infinite;
}

@keyframes grainShift {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(2%, -1%, 0); }
  50% { transform: translate3d(-1%, 2%, 0); }
  75% { transform: translate3d(1%, 1%, 0); }
  100% { transform: translate3d(-2%, -1%, 0); }
}

.noscript {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--red);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

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

body.state-reveal {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
}

body.state-reveal .topbar-mark {
  color: var(--ink);
  opacity: .58;
}

body.state-reveal .language-switch {
  color: var(--ink);
  border-color: rgba(214, 29, 33, .34);
  background: rgba(11, 2, 3, .68);
}

@media (max-width: 700px) {
  .ambient-bg {
    /* Dedicated portrait asset for phones so the background no longer feels
       locked to a landscape 16:9 crop on tall screens. */
    background-image: url("assets/background-mobile.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .ambient-bg::before {
    background:
      linear-gradient(180deg, transparent 0%, transparent 20%, rgba(189, 17, 20, .18) 31%, rgba(189, 17, 20, .84) 43%, var(--red) 53%),
      radial-gradient(circle at 50% 16%, transparent 16%, rgba(20,0,0,.08) 78%, rgba(9,0,0,.16) 100%);
  }

  .ambient-bg::after {
    opacity: .06;
  }

  .topbar-mark {
    display: none;
  }

  .topbar {
    justify-content: flex-start;
  }

  .language-switch {
    min-height: 42px;
    gap: 5px;
    padding: 0 8px;
    font-size: 9px;
    background: rgba(189, 17, 20, .46);
  }

  .language-option {
    min-width: 30px;
    min-height: 40px;
  }

  .gate {
    align-items: start;
    height: 100dvh;
    min-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: clamp(225px, 34dvh, 292px);
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .riddle-wrap {
    min-height: 94px;
  }

  .riddle {
    font-size: clamp(17px, 4.8vw, 23px);
    line-height: 1.34;
    letter-spacing: .012em;
  }

  .password-form {
    margin-top: 18px;
  }

  .field-label {
    margin-bottom: 8px;
  }

  #passwordInput {
    height: 52px;
    font-size: 22px;
  }

  .enter-button {
    min-height: 56px;
  }

  .spots {
    width: calc(100% - 36px);
    justify-content: center;
  }

  .reveal {
    padding-top: max(126px, 16dvh);
    padding-inline: 10px;
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }

  .reveal-panel {
    padding: 34px 18px 32px;
  }

  @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .reveal-panel {
      background: rgba(197, 22, 24, .64);
      backdrop-filter: blur(15px) saturate(.92);
      -webkit-backdrop-filter: blur(15px) saturate(.92);
    }
  }

  .event-copy {
    gap: 10px;
  }

  .event-copy p {
    font-size: 17px;
  }

  .event-context {
    margin-top: -6px;
    margin-bottom: 28px;
    padding-inline: 8px;
    font-size: 8px;
    letter-spacing: .13em;
  }

  .event-meta {
    gap: 8px;
  }

  .meta-label {
    font-size: 9px;
  }

  .meta-value {
    font-size: 13.5px;
  }

  .reveal-counter {
    gap: 11px;
    margin-top: 16px;
    margin-bottom: 0;
    padding: 11px 14px;
  }

  .reveal-counter-label {
    font-size: 8.5px;
  }

  .reveal-counter-number {
    font-size: 25px;
  }

  .ticket-tier {
    min-height: 84px;
    gap: 13px;
    padding: 15px 14px;
  }

  .ticket-name {
    font-size: 11px;
  }

  .ticket-subtitle {
    font-size: 12px;
  }

  .ticket-price {
    font-size: 21px;
  }

  .ticket-button {
    min-height: 62px;
  }

  .brand-slogan {
    grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
    gap: 12px;
    margin: 42px 2px 24px;
  }

  .brand-slogan p {
    max-width: 12ch;
    font-size: clamp(21px, 6.3vw, 27px);
    letter-spacing: .035em;
  }

  .waitlist {
    padding: 24px 16px;
  }

  .waitlist-row {
    grid-template-columns: 1fr;
    border: 0;
    background: transparent;
    gap: 10px;
  }

  #waitlistEmail {
    min-height: 56px;
    border: 1px solid var(--ink);
    background: rgba(9, 2, 3, .72);
  }

  .waitlist-button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .consent-row {
    font-size: 9px;
  }
}


@media (max-width: 700px) {
  .payoff::before {
    inset: -14%;
    opacity: 0;
    filter: blur(22px) brightness(.28) saturate(1.2);
  }

  .payoff.is-image-visible::before {
    opacity: .72;
  }

  .payoff-image,
  .payoff-glitch {
    background-size: contain;
  }

  .payoff-image {
    filter: contrast(1.08) saturate(1.14) brightness(.88);
  }

  .payoff-copy-wrap {
    max-width: 90vw;
  }

  .payoff-copy {
    font-size: clamp(35px, 10.5vw, 58px);
    line-height: .98;
    letter-spacing: -.045em;
  }
}

@media (max-width: 390px) {
  .gate {
    padding-inline: 18px;
    padding-top: clamp(205px, 31dvh, 250px);
  }

  .event-meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .meta-item {
    gap: 4px;
  }

  .ticket-tier {
    align-items: start;
  }

  .ticket-price {
    padding-top: 1px;
  }
}

@media (max-height: 700px) and (max-width: 700px) {
  .gate {
    padding-top: clamp(180px, 29dvh, 215px);
  }

  .riddle-wrap {
    min-height: 82px;
  }

  .password-form {
    margin-top: 10px;
  }
}

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

  .grain {
    animation: none;
  }
}


/* Reveal landing dark-panel inversion */
.reveal .ticket-button,
.reveal .waitlist-button {
  border-color: #d61d21;
  background: rgba(9, 2, 3, .88);
  color: #d61d21;
  box-shadow: inset 0 0 0 1px rgba(214, 29, 33, .06);
}

.reveal .ticket-button:hover,
.reveal .ticket-button:focus-visible,
.reveal .waitlist-button:hover,
.reveal .waitlist-button:focus-visible {
  background: #d61d21;
  color: #120203;
  box-shadow: 0 18px 42px rgba(0,0,0,.26);
}

.reveal #waitlistEmail {
  color: #d61d21;
}

.reveal #waitlistEmail:focus-visible {
  box-shadow: inset 0 0 0 1px #d61d21;
}

.reveal .event-copy p,
.reveal .meta-value,
.reveal .ticket-price,
.reveal .reveal-counter-number,
.reveal .brand-slogan p,
.reveal .waitlist h2 {
  color: #d61d21;
}

.reveal .reveal-counter-label,
.reveal .event-context,
.reveal .meta-label,
.reveal .ticket-name,
.reveal .ticket-subtitle,
.reveal .waitlist-intro p,
.reveal .waitlist-kicker,
.reveal .consent-row,
.reveal .edition-block,
.reveal .curated,
.reveal .waitlist-status {
  color: rgba(214, 29, 33, .78);
}

.reveal .brand-slogan-rule,
.reveal .rule {
  background: rgba(214, 29, 33, .22);
}


/* ================================================================
   V5 — LUXURY CINEMATIC GLITCH
   Permanent grain is removed. Slow optical light leaks replace it.
   ================================================================ */

.grain {
  display: none !important;
}

.ambient-bg {
  transform: scale(1.075);
  filter: blur(1.4px) brightness(.88) saturate(1.02);
  will-change: opacity, transform, filter;
  transition:
    opacity 1.05s var(--ease),
    transform 1.7s var(--ease),
    filter 1.35s var(--ease);
}

.ambient-bg.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) brightness(1) saturate(1.04);
}

.light-leaks {
  position: fixed;
  z-index: 1;
  inset: -24%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(46px) saturate(1.12);
  transform: translate3d(-4%, 1%, 0) scale(1.04) rotate(-2deg);
  transition: opacity 1.8s ease 0.25s;
  will-change: opacity, transform, filter;
}

.light-leaks::before,
.light-leaks::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.light-leaks::before {
  background:
    radial-gradient(ellipse at 8% 38%, rgba(255, 68, 48, .30) 0 4%, rgba(208, 10, 18, .14) 16%, transparent 39%),
    radial-gradient(ellipse at 91% 67%, rgba(255, 97, 65, .25) 0 5%, rgba(196, 6, 14, .11) 18%, transparent 42%),
    linear-gradient(103deg, transparent 27%, rgba(255, 18, 24, .025) 40%, rgba(255, 91, 65, .16) 49%, rgba(154, 0, 8, .04) 57%, transparent 70%);
  animation: parisLightLeakDrift 19s cubic-bezier(.45, 0, .3, 1) infinite alternate;
}

.light-leaks::after {
  inset: 11% 4%;
  background:
    radial-gradient(ellipse at 50% 112%, rgba(255, 35, 30, .22), rgba(155, 0, 10, .07) 25%, transparent 58%),
    radial-gradient(ellipse at 48% -16%, rgba(255, 92, 59, .15), transparent 43%);
  opacity: .58;
  animation: parisLightLeakBreathe 12.5s ease-in-out infinite alternate;
}

.light-leaks.is-visible {
  opacity: .78;
}

@keyframes parisLightLeakDrift {
  0% {
    transform: translate3d(-5%, 1%, 0) scale(1.02) rotate(-1.5deg);
    opacity: .48;
    filter: brightness(.85);
  }
  46% {
    transform: translate3d(1%, -1%, 0) scale(1.08) rotate(.3deg);
    opacity: .78;
    filter: brightness(1.08);
  }
  100% {
    transform: translate3d(6%, 2%, 0) scale(1.03) rotate(1.4deg);
    opacity: .55;
    filter: brightness(.95);
  }
}

@keyframes parisLightLeakBreathe {
  0% { transform: scale(.96) translateY(3%); opacity: .34; }
  100% { transform: scale(1.08) translateY(-2%); opacity: .7; }
}

.riddle-wrap {
  min-height: clamp(110px, 12vw, 150px);
}

.riddle {
  font-size: clamp(28px, 3.75vw, 54px);
  line-height: 1.14;
  letter-spacing: .012em;
}

.reveal-panel {
  overflow: hidden;
  color: #da1d21;
  border-color: rgba(218, 29, 33, .38);
  background: rgba(5, 1, 2, .84);
  box-shadow:
    0 44px 130px rgba(0, 0, 0, .56),
    0 0 65px rgba(93, 0, 5, .10),
    inset 0 1px 0 rgba(255, 255, 255, .035),
    inset 0 0 0 1px rgba(119, 5, 10, .18);
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .reveal-panel {
    background: linear-gradient(145deg, rgba(3, 1, 1, .88), rgba(14, 2, 3, .74));
    backdrop-filter: blur(30px) saturate(.86) contrast(1.06);
    -webkit-backdrop-filter: blur(30px) saturate(.86) contrast(1.06);
  }
}

.reveal-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -38% -70%;
  pointer-events: none;
  opacity: .24;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 27, 31, .04) 45%, rgba(255, 90, 70, .18) 50%, rgba(132, 0, 7, .035) 55%, transparent 62%);
  transform: translateX(-34%) rotate(-4deg);
  animation: panelLightSweep 15s ease-in-out infinite;
}

.reveal-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(218, 29, 33, .075);
  box-shadow: inset 0 0 44px rgba(118, 0, 6, .035);
}

.reveal-panel > * {
  position: relative;
  z-index: 1;
}

.reveal-panel > .panel-corner {
  position: absolute;
}

@keyframes panelLightSweep {
  0%, 34% { transform: translateX(-42%) rotate(-4deg); opacity: .05; }
  52% { opacity: .28; }
  70%, 100% { transform: translateX(44%) rotate(-4deg); opacity: .04; }
}

.ticket-tier {
  border-color: rgba(218, 29, 33, .24);
  background: linear-gradient(110deg, rgba(13, 2, 3, .78), rgba(28, 4, 6, .42));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.018);
}

.ticket-tier:hover {
  border-color: rgba(218, 29, 33, .54);
  background: linear-gradient(110deg, rgba(20, 3, 4, .92), rgba(48, 5, 8, .58));
  box-shadow: 0 9px 30px rgba(95, 0, 5, .12), inset 0 1px 0 rgba(255,255,255,.025);
}

.reveal .ticket-button,
.reveal .waitlist-button {
  border-color: rgba(218, 29, 33, .86);
  background: linear-gradient(180deg, rgba(17, 2, 3, .96), rgba(7, 1, 2, .96));
  color: #e22024;
  box-shadow:
    0 14px 40px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.025);
}

.reveal .ticket-button:hover,
.reveal .ticket-button:focus-visible,
.reveal .waitlist-button:hover,
.reveal .waitlist-button:focus-visible {
  background: #dc1f23;
  color: #0b0102;
  box-shadow: 0 18px 46px rgba(114, 0, 7, .22), 0 0 28px rgba(218, 29, 33, .12);
}

.waitlist,
.reveal-counter {
  background: rgba(9, 1, 2, .62);
  border-color: rgba(218, 29, 33, .25);
}

@media (max-width: 700px) {

  .light-leaks {
    inset: -18% -34%;
    filter: blur(38px) saturate(1.08);
  }

  .light-leaks.is-visible {
    opacity: .66;
  }

  .riddle-wrap {
    min-height: 112px;
  }

  .riddle {
    font-size: clamp(23px, 6.5vw, 32px);
    line-height: 1.16;
  }

  .reveal-panel {
    background: rgba(5, 1, 2, .84);
  }

  @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .reveal-panel {
      background: rgba(5, 1, 2, .72);
      backdrop-filter: blur(25px) saturate(.88);
      -webkit-backdrop-filter: blur(25px) saturate(.88);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .light-leaks::before,
  .light-leaks::after,
  .reveal-panel::before {
    animation: none !important;
  }

}


/* ================================================================
   V6 — QUIET LUXURY LIGHT / PAYOFF EXIT GLITCH
   No interval glitching. The background remains sharp; only independent
   translucent light-leak layers drift above it.
   ================================================================ */

.ambient-bg {
  transform: scale(1.065);
  filter: brightness(.94) saturate(1.02);
  transition:
    opacity 1.05s var(--ease),
    transform 1.7s var(--ease),
    filter 1.2s var(--ease);
}

.ambient-bg.is-visible {
  transform: scale(1);
  filter: brightness(1) saturate(1.035);
}

.light-leaks {
  opacity: 0;
  mix-blend-mode: screen;
  filter: none;
  transition: opacity 2.2s ease .25s;
}

.light-leaks::before,
.light-leaks::after {
  filter: blur(58px);
  transform: translateZ(0);
}

.light-leaks.is-visible {
  opacity: .48;
}

.language-switch,
body.state-reveal .language-switch {
  color: #ed3035;
  border-color: rgba(237, 48, 53, .36);
  background: rgba(8, 1, 2, .68);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(237, 48, 53, .035);
}

.language-switch > span {
  color: rgba(237, 48, 53, .66);
}

.language-option {
  color: inherit;
  opacity: .52;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  color: #ff454a;
  opacity: 1;
}

.riddle {
  font-family: var(--sans);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.052em;
}

.payoff.is-text-out .payoff-copy-wrap {
  opacity: 0;
  transform: translateY(-7px) scale(.985);
  filter: blur(3px);
  transition: opacity .11s linear, transform .18s var(--ease), filter .14s ease;
}

.payoff.is-exit-glitch {
  animation: payoffExitCut .39s steps(2, end) both;
}

.payoff.is-exit-glitch .payoff-image {
  animation: payoffImageExitGlitch .39s steps(2, end) both;
}

.payoff.is-exit-glitch .payoff-glitch--one {
  animation: payoffExitGlitchOne .39s steps(2, end) both;
}

.payoff.is-exit-glitch .payoff-glitch--two {
  animation: payoffExitGlitchTwo .39s steps(2, end) .018s both;
}

.payoff.is-exit-glitch .payoff-scanlines {
  animation-duration: .08s;
  opacity: .52;
}

@keyframes payoffExitCut {
  0%   { opacity: 1; transform: translate3d(0,0,0); }
  16%  { opacity: .96; transform: translate3d(-4px,0,0); }
  27%  { opacity: 1; transform: translate3d(5px,0,0); }
  43%  { opacity: .9; transform: translate3d(-8px,0,0); }
  55%  { opacity: 1; transform: translate3d(3px,0,0); }
  72%  { opacity: .94; transform: translate3d(7px,0,0); }
  100% { opacity: 1; transform: translate3d(0,0,0); }
}

@keyframes payoffImageExitGlitch {
  0%   { transform: scale(1); filter: contrast(1.06) saturate(1.1) brightness(.9); }
  20%  { transform: scale(1.025) translateX(-9px); filter: contrast(1.28) saturate(1.35) brightness(1.08); }
  39%  { transform: scale(1.01) translateX(12px); filter: contrast(1.12) saturate(.95) brightness(.72); }
  58%  { transform: scale(1.035) translateX(-5px); filter: contrast(1.35) saturate(1.45) brightness(1.12); }
  100% { transform: scale(1.055); filter: contrast(1.08) saturate(1.12) brightness(.88); }
}

@keyframes payoffExitGlitchOne {
  0%   { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateX(0); }
  14%  { opacity: .94; clip-path: inset(9% 0 68% 0); transform: translateX(-28px); filter: brightness(1.8) saturate(1.9); }
  31%  { opacity: .38; clip-path: inset(61% 0 18% 0); transform: translateX(22px); }
  49%  { opacity: .86; clip-path: inset(33% 0 44% 0); transform: translateX(-16px); }
  73%  { opacity: .52; clip-path: inset(77% 0 7% 0); transform: translateX(30px); }
  100% { opacity: 0; clip-path: inset(100% 0 0 0); transform: translateX(0); }
}

@keyframes payoffExitGlitchTwo {
  0%   { opacity: 0; clip-path: inset(100% 0 0 0); transform: translateX(0); }
  18%  { opacity: .68; clip-path: inset(46% 0 30% 0); transform: translateX(25px); filter: hue-rotate(-16deg) brightness(1.55); }
  38%  { opacity: .9; clip-path: inset(18% 0 65% 0); transform: translateX(-20px); }
  63%  { opacity: .34; clip-path: inset(68% 0 13% 0); transform: translateX(13px); }
  82%  { opacity: .72; clip-path: inset(27% 0 51% 0); transform: translateX(-24px); }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateX(0); }
}

@media (max-width: 700px) {
  .light-leaks.is-visible {
    opacity: .40;
  }

  .light-leaks::before,
  .light-leaks::after {
    filter: blur(46px);
  }

  .riddle {
    font-size: clamp(25px, 7.4vw, 36px);
    line-height: .98;
  }
}
