:root {
  --void: #000000;
  --code: #00ff41;
  --code-mist: #c8ffd4;
  --font-mono: "Share Tech Mono", "Courier New", monospace;
  --pill-red: #d41632;
  --pill-blue: #1d4ed8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: var(--void);
}

body {
  color: var(--code-mist);
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: color-mix(in srgb, var(--code) 40%, transparent);
  color: var(--void);
}

.matrix {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  transition: opacity 700ms cubic-bezier(0.45, 0, 0.55, 1);
}

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

.logo {
  position: fixed;
  left: 50%;
  top: 38%;
  z-index: 5;
  display: block;
  width: min(92vw, 58vh, 640px);
  height: auto;
  margin: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 6px #00ff41)
    drop-shadow(0 0 22px rgba(0, 255, 65, 0.45));
  pointer-events: none;
  user-select: none;
}

html.js-intro .logo {
  opacity: 0;
}

html.js-intro.is-mark-in .logo {
  opacity: 1;
}

.logo.is-glitching {
  filter:
    drop-shadow(0 0 6px #00ff41)
    drop-shadow(0 0 22px rgba(0, 255, 65, 0.45))
    contrast(1.55)
    saturate(1.45);
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 42%,
    transparent 18%,
    rgba(0, 0, 0, 0.32) 58%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.stage {
  position: relative;
  z-index: 3;
  min-height: 100dvh;
  width: 100%;
  pointer-events: none;
}

.content {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.25rem 9vh;
  text-align: center;
}

.logo-slot {
  flex: 1 1 auto;
  width: min(92vw, 58vh, 640px);
  max-height: 58vh;
}

.copy {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.copy-fall {
  display: flex;
  flex-direction: column;
  align-items: center;
}

html.js-intro .glyph:not(.glyph-space) {
  transform: translate3d(0, var(--from, -110vh), 0);
  will-change: transform;
}

html.js-intro.is-copy-in .glyph:not(.glyph-space) {
  animation: copy-fall var(--dur, 700ms) cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s)
    both;
}

html.is-copy-out .glyph:not(.glyph-space) {
  will-change: transform;
  animation: copy-rise var(--dur, 700ms) cubic-bezier(0.7, 0, 0.84, 0) var(--d, 0s)
    both;
}

@keyframes copy-fall {
  from {
    transform: translate3d(0, var(--from, -110vh), 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes copy-rise {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, var(--from, -110vh), 0);
  }
}

.headline {
  margin: 0;
  max-width: 36rem;
  color: var(--code);
  font-size: clamp(1.05rem, 2.8vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 255, 65, 0.45);
}

.glyph {
  display: inline-block;
}

.support {
  margin: 0.7rem 0 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--code-mist) 72%, transparent);
}

.event-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
  transition: opacity 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.event-meta li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--code);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 255, 65, 0.28);
}

.event-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.cta {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--code);
  background: color-mix(in srgb, var(--code) 10%, transparent);
  color: var(--code);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

html.js-intro .cta {
  opacity: 0;
  pointer-events: none;
}

html.js-intro .event-meta {
  opacity: 0;
}

html.js-intro.is-mark-in .cta {
  opacity: 1;
  pointer-events: auto;
  animation: cta-glitch 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-intro.is-mark-in .event-meta {
  opacity: 1;
}

html.is-exiting .cta {
  pointer-events: none;
  animation: cta-glitch 480ms cubic-bezier(0.7, 0, 0.84, 0) reverse forwards;
}

html.is-copy-out .logo,
html.is-copy-out .cta,
html.is-copy-out .event-meta {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

html.is-choice .logo,
html.is-choice .copy,
html.is-choice .vignette,
html.is-choice .cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes cta-glitch {
  0% {
    transform: translate(-14px, 5px) skewX(-8deg);
    clip-path: inset(18% 0 48% 0);
  }

  28% {
    transform: translate(16px, -7px) skewX(7deg);
    clip-path: inset(0 18% 52% 0);
  }

  52% {
    transform: translate(-7px, 3px) skewX(-3deg);
    clip-path: inset(42% 0 0 12%);
  }

  78% {
    transform: translate(3px, 0);
    clip-path: inset(0);
  }

  100% {
    transform: none;
    clip-path: inset(0);
  }
}

.cta:hover {
  transform: translateY(-1px);
  background: var(--code);
  color: var(--void);
  box-shadow: 0 0 28px rgba(0, 255, 65, 0.4);
}

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

.choice {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  perspective: 900px;
  perspective-origin: 50% 48%;
}

html.is-pills-in .choice {
  opacity: 1;
}

html.is-pills-in:not(.is-pills-live) .matrix {
  z-index: 4;
}

html.is-pills-live .choice {
  z-index: 6;
  pointer-events: auto;
}

html.is-pills-live .matrix {
  opacity: 0;
}

.offer {
  --palm-left: 40%;
  --palm-right: 60%;
  --palm-y: 54%;
  --offer-w: min(100vw, 1180px);
  position: relative;
  width: var(--offer-w);
  transform-origin: 50% 48%;
  transform-style: preserve-3d;
}

.offer-hands-wrap {
  display: block;
}

.offer-hands {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

html.is-pills-in .offer {
  animation: offer-approach 2.4s cubic-bezier(0.45, 0, 0.2, 1) both;
}

html.is-pills-live .offer {
  animation: none;
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes offer-approach {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, -900px) scale(0.78);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.choice-status {
  margin: 0 0 0.25rem;
  min-height: 1.35em;
  max-width: 28rem;
  color: var(--code);
  font-size: clamp(1.05rem, 2.8vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 18px rgba(0, 255, 65, 0.45);
  opacity: 0;
}

html.is-pills-in .choice-status {
  animation: choice-in 700ms cubic-bezier(0.16, 1, 0.3, 1) 1.45s both;
}

html.is-pills-live .choice-status {
  opacity: 1;
}

@keyframes choice-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.choice-row {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 500ms cubic-bezier(0.7, 0, 0.84, 0);
}

.pill {
  position: absolute;
  top: var(--palm-y);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--offer-w) * 0.089);
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  pointer-events: auto;
  transform: translateX(-50%);
  transition: opacity 500ms cubic-bezier(0.7, 0, 0.84, 0);
}

.pill-red {
  left: var(--palm-left);
}

.pill-blue {
  left: var(--palm-right);
}

.subscribe-slot {
  position: absolute;
  top: var(--palm-y);
  left: var(--palm-right);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%) scaleX(1);
  transform-origin: 50% calc(var(--offer-w) * 0.0116);
  overflow: hidden;
  pointer-events: auto;
}

.subscribe-slot .pill-blue {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

.pill-cap {
  display: block;
  width: calc(var(--offer-w) * 0.057);
  height: calc(var(--offer-w) * 0.0231);
  border-radius: 999px;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
  box-shadow:
    0 10px 16px rgba(0, 0, 0, 0.65),
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 0 16px rgba(0, 255, 65, 0.22);
}

.pill-red .pill-cap {
  background: radial-gradient(
    circle at 28% 28%,
    #ff7a88,
    var(--pill-red) 52%,
    #6e0c1c
  );
}

.pill-blue .pill-cap {
  background: radial-gradient(
    circle at 28% 28%,
    #8ec0ff,
    var(--pill-blue) 52%,
    #0c226e
  );
}

.pill-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--code);
  white-space: nowrap;
}

.pill:hover .pill-cap {
  transform: translateY(-2px);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.6),
    0 0 22px rgba(0, 255, 65, 0.35);
}

.pill:focus-visible {
  outline: none;
}

.pill:focus-visible .pill-cap {
  outline: 2px solid var(--code);
  outline-offset: 6px;
}

html.is-chose-red .subscribe-slot {
  opacity: 0;
  pointer-events: none;
}

html.is-subscribe .pill-red,
html.is-subscribe .offer-hands-wrap {
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.7, 0, 0.84, 0);
}

html.is-subscribe .pill-blue {
  gap: 0;
}

html.is-subscribe .pill-blue .pill-label {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

html.is-subscribe .subscribe-slot {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scaleX(1);
  transition:
    left 450ms cubic-bezier(0.45, 0, 0.2, 1),
    top 450ms cubic-bezier(0.45, 0, 0.2, 1),
    transform 450ms cubic-bezier(0.45, 0, 0.2, 1);
}

html.is-subscribe-line .subscribe-slot {
  transform: translate(-50%, -50%) scaleX(0.02);
  transition: transform 300ms cubic-bezier(0.7, 0, 0.84, 0);
}

html.is-subscribe-open .subscribe-slot {
  width: min(26rem, 92vw);
  transform: translate(-50%, -50%) scaleX(1);
  overflow: visible;
  transition:
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1),
    width 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.is-subscribe-open .pill-blue {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.subscribe {
  display: none;
  width: 100%;
  margin: 0;
  padding: 1.25rem 1.15rem 1.35rem;
  border: 1px solid var(--code);
  background: var(--void);
  color: var(--code-mist);
  font-family: inherit;
  box-shadow: 0 0 22px rgba(0, 255, 65, 0.22);
}

html.is-subscribe-open .subscribe {
  display: block;
}

html.is-subscribe-open .choice-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.subscribe-heading {
  margin: 0 0 0.45rem;
  color: var(--code);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subscribe-total {
  margin: 0 0 0.75rem;
  color: var(--code);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subscribe-support {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.45;
  opacity: 0.75;
}

.subscribe-fields {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.subscribe-legend {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subscribe-field input[type="text"],
.subscribe-field input[type="email"],
.subscribe-field input[type="tel"],
.subscribe-field input[type="number"] {
  width: 100%;
  padding: 0.5rem 0.55rem;
  border: 1px solid var(--code);
  background: transparent;
  color: var(--code-mist);
  font-family: inherit;
  font-size: 0.9rem;
}

.subscribe-field-phone input {
  border-color: var(--pill-blue);
}

.subscribe-field input:focus-visible,
.subscribe-check input:focus-visible,
.subscribe-submit:focus-visible {
  outline: 2px solid var(--code);
  outline-offset: 3px;
}

.subscribe-error {
  display: block;
  min-height: 1em;
  margin-top: 0.2rem;
  color: var(--code);
  font-size: 0.7rem;
}

.subscribe-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.75rem;
}

.subscribe-submit {
  margin-top: 0.35rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--code);
  background: transparent;
  color: var(--code);
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.subscribe-submit:disabled {
  cursor: default;
  opacity: 0.55;
}

.subscribe-fail {
  min-height: 1em;
  margin: 0.25rem 0 0;
  color: var(--code);
  font-size: 0.7rem;
}

html.is-gallery-in .offer,
html.is-gallery .offer {
  animation: none;
  opacity: 0;
  filter: none;
  transform: none;
  pointer-events: none;
  transition: opacity 700ms cubic-bezier(0.7, 0, 0.84, 0);
}

html.is-gallery-in .choice-status,
html.is-gallery .choice-status {
  animation: none;
  opacity: 0;
}

html.is-gallery-out .offer {
  animation: none;
  opacity: 1;
  filter: none;
  transform: none;
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery {
  position: fixed;
  inset: 0;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  perspective: 1100px;
  perspective-origin: 50% 42%;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.is-gallery-in .gallery,
html.is-gallery .gallery {
  opacity: 1;
  pointer-events: auto;
}

html.is-gallery-out .gallery {
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms cubic-bezier(0.7, 0, 0.84, 0);
}

.coverflow {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}

.coverflow-stage {
  position: relative;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transform: translate3d(var(--ox, 0vw), var(--oy, 0vh), 0)
    scale(var(--pop, 1)) rotateY(var(--spin, 0deg));
  transform-origin: 50% 50%;
}

.tape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 11.25rem;
  margin: -8.4rem 0 0 -5.625rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  transform: translateX(var(--tx, 0)) translateZ(var(--tz, 0)) rotateY(var(--ry, 0deg))
    scale(var(--sc, 1));
  transform-style: preserve-3d;
  transition:
    transform 480ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 480ms cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
}

html.is-gallery-in .tape {
  transition: none;
}

.tape-plate {
  position: relative;
  display: block;
  width: 11.25rem;
  height: 16.5rem;
  border: 1px solid color-mix(in srgb, var(--code) 38%, transparent);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 255, 65, 0.07), transparent 42%),
    #070a07;
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.62),
    0 0 22px rgba(0, 255, 65, 0.12);
  overflow: hidden;
}

.tape.is-front .tape-plate {
  border-color: color-mix(in srgb, var(--code) 82%, transparent);
  box-shadow:
    0 22px 36px rgba(0, 0, 0, 0.7),
    0 0 28px rgba(0, 255, 65, 0.32);
}

.tape-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 3px,
    rgba(0, 255, 65, 0.045) 3px 4px
  );
  pointer-events: none;
}

.tape-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 2.1rem;
  height: 2.1rem;
  transform: translate(-42%, -50%);
  fill: var(--code-mist);
  filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.55));
}

.tape-title {
  max-width: 11rem;
  color: var(--code);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 255, 65, 0.35);
}

.tape:focus-visible {
  outline: none;
}

.tape:focus-visible .tape-plate {
  outline: 2px solid var(--code);
  outline-offset: 6px;
}

.gallery-nav {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  padding: 0 1.25rem 7vh;
  opacity: 0.28;
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.is-gallery .gallery-nav {
  opacity: 1;
}

html.is-player .gallery-nav {
  opacity: 1;
}

.gallery-btn {
  display: flex;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--code);
  border-radius: 999px;
  background: color-mix(in srgb, var(--code) 8%, transparent);
  color: var(--code);
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.gallery-btn-down {
  width: 3.15rem;
  height: 3.15rem;
  background: color-mix(in srgb, var(--code) 14%, transparent);
}

.gallery-btn.subscribe-close {
  display: none;
  flex-shrink: 0;
  margin-top: 1.15rem;
}

html.is-subscribe-open .gallery-btn.subscribe-close {
  display: flex;
}

.gallery-icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.gallery-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--code);
  color: var(--void);
  box-shadow: 0 0 22px rgba(0, 255, 65, 0.4);
}

.gallery-btn:focus-visible {
  outline: 2px solid var(--code);
  outline-offset: 4px;
}

.gallery-btn:disabled {
  cursor: default;
  opacity: 0.45;
}

.player {
  position: fixed;
  inset: 0 0 18% 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.is-player .player {
  opacity: 1;
  pointer-events: auto;
}

.player-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  cursor: default;
}

.player-plate {
  position: relative;
  display: block;
  width: min(72vw, 28rem);
  height: min(48vh, 18.5rem);
  border: 1px solid var(--code);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(0, 255, 65, 0.08), transparent 40%),
    #050805;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.72),
    0 0 36px rgba(0, 255, 65, 0.28);
}

.player-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 3px,
    rgba(0, 255, 65, 0.05) 3px 4px
  );
  pointer-events: none;
}

.player-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 3.4rem;
  height: 3.4rem;
  transform: translate(-38%, -50%);
  fill: var(--code-mist);
  filter: drop-shadow(0 0 14px rgba(0, 255, 65, 0.55));
}

.player-title {
  margin: 0;
  color: var(--code);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0, 255, 65, 0.4);
}

@media (max-width: 640px) {
  .logo {
    top: 36%;
    width: min(96vw, 52vh, 640px);
  }

  .logo-slot {
    width: min(96vw, 52vh, 640px);
    max-height: 52vh;
  }

  .content {
    padding-bottom: 7vh;
  }

  .support {
    font-size: 0.84rem;
  }

  .choice {
    padding: 0.75rem 0;
  }

  .offer {
    --offer-w: 168vw;
    width: var(--offer-w);
    max-width: none;
  }

  .tape {
    width: 8.2rem;
    margin: -6.4rem 0 0 -4.1rem;
  }

  .tape-plate {
    width: 8.2rem;
    height: 12.2rem;
  }

  .tape-title {
    font-size: 0.62rem;
  }

  .gallery-nav {
    gap: 1rem;
    padding-bottom: 5.5vh;
  }

  .player-plate {
    width: min(86vw, 22rem);
    height: min(36vh, 14rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .headline,
  .support,
  .event-meta,
  .glyph,
  .logo,
  .cta,
  .choice,
  .offer,
  .choice-status,
  .pill,
  .subscribe-slot {
    animation: none;
    transform: none;
    filter: none;
  }

  .logo.is-glitching {
    filter:
      drop-shadow(0 0 6px #00ff41)
      drop-shadow(0 0 22px rgba(0, 255, 65, 0.45));
  }

  html.is-copy-out .glyph:not(.glyph-space),
  html.is-exiting .cta,
  html.is-pills-in .choice,
  html.is-pills-in .offer,
  html.is-pills-in .choice-status {
    animation: none;
  }

  html.is-pills-in .choice-status {
    opacity: 1;
  }

  html.is-choice .logo,
  html.is-choice .copy,
  html.is-choice .cta,
  html.is-choice .vignette {
    opacity: 0;
    visibility: hidden;
  }

  html.is-pills-in .choice {
    opacity: 1;
  }

  html.is-gallery-in .offer,
  html.is-gallery .offer {
    opacity: 0;
  }

  html.is-gallery-in .gallery,
  html.is-gallery .gallery,
  html.is-player .player {
    opacity: 1;
    transition: none;
  }

  .tape,
  .gallery-nav,
  .player {
    transition: none;
  }

  html.is-subscribe .pill-red,
  html.is-subscribe .offer-hands-wrap,
  html.is-subscribe .subscribe-slot,
  html.is-subscribe-line .subscribe-slot,
  html.is-subscribe-open .subscribe-slot {
    transition: none;
    animation: none;
  }

  html.is-subscribe .subscribe-slot,
  html.is-subscribe-open .subscribe-slot {
    left: 50%;
    top: 50%;
    width: min(26rem, 92vw);
    transform: translate(-50%, -50%) scaleX(1);
  }
}
