:root {
  --black: #050505;
  --black-soft: #11110f;
  --black-raised: #171715;
  --paper: #f0ede6;
  --white: #fffdf7;
  --red: #e51d2a;
  --red-dark: #9d0610;
  --acid: #c8f20b;
  --muted: #a8a59e;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(5, 5, 5, 0.18);
  --display: "Anton", sans-serif;
  --body: "Instrument Sans", sans-serif;
  --shell: min(1240px, calc(100% - 64px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--acid);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.concept-bar {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concept-bar span {
  color: var(--black);
}

.concept-bar p {
  margin: 0;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 28px;
  left: 0;
  display: grid;
  width: 100%;
  min-height: var(--header-height);
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  min-height: 68px;
  background: rgba(5, 5, 5, 0.9);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand img,
.footer-top img {
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 25px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.desktop-nav a::before {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::before,
.desktop-nav a:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.city-button,
.header-ticket {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.2);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.city-button svg,
.header-ticket svg {
  width: 15px;
}

.header-ticket {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-ticket:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.menu-button {
  position: relative;
  z-index: 2;
  display: none;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.3);
  color: var(--white);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.menu-open .menu-button span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.menu-open .menu-button span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.hero-media,
.hero-image,
.hero-scrim,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -1;
  overflow: hidden;
}

.hero-image {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: translate3d(calc(var(--pointer-x) * -0.15), calc(var(--pointer-y) * -0.1), 0) scale(1.09);
  transition: opacity 700ms ease, transform 7s ease-out;
}

.hero-image.is-active {
  opacity: 1;
  transform: translate3d(calc(var(--pointer-x) * -0.15), calc(var(--pointer-y) * -0.1), 0) scale(1.02);
}

.hero-image-flow {
  background-position: 58% center;
}

.hero-image-daniel {
  background-position: 58% center;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.83) 32%, rgba(5, 5, 5, 0.08) 72%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.05) 45%, rgba(5, 5, 5, 0.3) 100%);
}

.hero-grain,
.manifesto::after,
.producer-section::after {
  z-index: 2;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.2;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  width: 510px;
  height: 510px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 62%);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: 56px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 76%);
}

.hero-orbit::after {
  top: 40%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
}

.hero-orbit-a {
  top: 120px;
  right: 8vw;
  animation: orbit 18s linear infinite;
}

.hero-orbit-b {
  right: -180px;
  bottom: -230px;
  transform: scale(1.4);
  animation: orbit-reverse 24s linear infinite;
}

.hero-vertical-word {
  position: absolute;
  z-index: 2;
  top: 128px;
  right: -0.12em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(150px, 21vw, 340px);
  line-height: 0.8;
  opacity: 0.19;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.54);
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 4;
  display: grid;
  width: var(--shell);
  min-height: 850px;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 70px;
  margin: 0 auto;
  padding: 190px 0 165px;
}

.hero-copy {
  max-width: 820px;
  transition: opacity 240ms ease, transform 240ms ease;
}

.hero-copy.is-switching {
  opacity: 0;
  transform: translateY(14px);
}

.hero-kicker {
  display: flex;
  max-width: 580px;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker i {
  flex: 1;
  height: 1px;
  background: color-mix(in srgb, var(--accent), transparent 35%);
}

.hero-kicker small {
  color: rgba(255, 255, 255, 0.58);
  font-size: inherit;
}

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent), transparent 35%);
  animation: pulse 1.8s infinite;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(88px, 10.7vw, 166px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero-info {
  display: grid;
  max-width: 790px;
  grid-template-columns: 1.1fr 1fr 1fr;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-info > div {
  min-height: 94px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-info > div:first-child {
  padding-left: 0;
}

.hero-info > div:last-child {
  border-right: 0;
}

.hero-info span,
.hero-info small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-info strong {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
}

.hero-date {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-date > strong {
  margin: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  line-height: 0.8;
}

.hero-date b {
  color: var(--white);
  font-size: 15px;
}

.hero-date small {
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 17px;
}

.button-accent {
  min-width: 190px;
  background: var(--accent);
  color: var(--black);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.hero-rail {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(5, 5, 5, 0.54);
  backdrop-filter: blur(18px);
}

.hero-rail-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-tab {
  display: grid;
  width: 100%;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  transition: color 180ms ease;
}

.hero-tab > span {
  color: inherit;
  font-family: var(--display);
  font-size: 22px;
}

.hero-tab b,
.hero-tab small {
  display: block;
}

.hero-tab b {
  color: inherit;
  font-size: 10px;
  text-transform: uppercase;
}

.hero-tab small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.hero-tab.is-active,
.hero-tab:hover {
  color: var(--accent);
}

.hero-timer {
  width: 100%;
  height: 2px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.hero-timer span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-timer span.is-running {
  animation: hero-timer 7s linear forwards;
}

.hero-alien {
  position: absolute;
  z-index: 8;
  top: 118px;
  right: 284px;
  width: 174px;
  opacity: 0;
  transform: translate(150px, -130px) rotate(18deg) scale(0.35);
  animation: alien-arrival 1.1s 1.15s cubic-bezier(0.16, 0.8, 0.2, 1.15) forwards;
}

.alien-avatar {
  position: relative;
  display: block;
  width: 146px;
  height: 146px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.alien-avatar:focus-visible {
  border-radius: 50%;
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.alien-avatar::before {
  position: absolute;
  z-index: -1;
  inset: 22px 3px 0;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent), transparent 72%), transparent 67%);
  content: "";
  filter: blur(8px);
  opacity: 0.86;
}

.alien-avatar img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.52));
  animation: alien-float 3.4s 2.3s ease-in-out infinite;
}

.alien-arrival-ring {
  position: absolute;
  z-index: 1;
  top: 63%;
  left: 50%;
  width: 118px;
  height: 30px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent), transparent 45%);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  animation: alien-ring 2.7s 2.15s ease-out infinite;
}

.alien-badge {
  position: absolute;
  z-index: 4;
  right: -6px;
  bottom: 0;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.74);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.alien-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px var(--accent);
}

.alien-message {
  position: absolute;
  top: 118px;
  right: 112px;
  width: 230px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(5, 5, 5, 0.9);
  color: var(--white);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transform-origin: right top;
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms ease;
  backdrop-filter: blur(18px);
}

.hero-alien.is-open .alien-message {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-alien.is-scanning .alien-arrival-ring {
  border-width: 2px;
  opacity: 1;
  animation-duration: 620ms;
}

.hero-alien.is-scanning .alien-avatar img {
  filter:
    drop-shadow(0 0 12px color-mix(in srgb, var(--accent), transparent 20%))
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.52));
}

.alien-message small,
.alien-message strong {
  display: block;
}

.alien-message small {
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.alien-message strong {
  margin: 9px 0 4px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.alien-message p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.alien-message a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.alien-message a span {
  color: var(--accent);
  font-size: 14px;
}

.discovery-dock {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  width: var(--shell);
  margin: 0 auto;
  transform: translateY(50%);
}

.discovery-form {
  display: grid;
  min-height: 112px;
  grid-template-columns: minmax(320px, 1.35fr) 0.62fr 0.75fr 126px;
  background: var(--paper);
  color: var(--black);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.42);
}

.discovery-form label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid var(--line-light);
}

.discovery-form label > span {
  margin-bottom: 10px;
  color: #77736c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.discovery-main div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discovery-main svg {
  width: 23px;
  flex: 0 0 auto;
}

.discovery-form input,
.discovery-form select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
}

.discovery-form input::placeholder {
  color: #2b2a27;
  opacity: 1;
}

.discovery-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.discovery-form button:hover {
  background: var(--red-dark);
}

.discovery-form button svg {
  width: 17px;
}

.night-ticker {
  overflow: hidden;
  padding-top: 55px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black);
}

.night-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 30px 0 22px;
  animation: ticker 26s linear infinite;
}

.night-ticker span {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.night-ticker span:nth-of-type(3n + 2) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.65);
}

.night-ticker span:nth-of-type(3n + 3) {
  color: var(--red);
}

.night-ticker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.events-section {
  padding: 150px 0 135px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 80px;
}

.section-code {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.manifesto-copy h2,
.producer-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.85;
  text-transform: uppercase;
}

.section-heading h2 em,
.manifesto-copy h2 em,
.producer-copy h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke-width: 1.5px;
}

.section-heading h2 em,
.producer-copy h2 em {
  -webkit-text-stroke-color: var(--white);
}

.manifesto-copy h2 em {
  -webkit-text-stroke-color: var(--black);
}

.section-aside {
  padding-bottom: 8px;
}

.section-aside p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.section-aside a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-aside a span {
  color: var(--red);
  font-size: 18px;
}

.event-filters {
  display: flex;
  gap: 8px;
  margin: 62px 0 26px;
  overflow-x: auto;
  scrollbar-width: none;
}

.event-filters::-webkit-scrollbar {
  display: none;
}

.event-filters button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.event-filters button sup {
  margin-left: 4px;
  font-size: 7px;
}

.event-filters button:hover,
.event-filters button.is-active {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.event-list {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 46px 26px;
}

.event-poster {
  min-width: 0;
}

.event-poster-secondary {
  margin-top: 120px;
}

.event-poster-image {
  position: relative;
  display: block;
  min-height: 400px;
  overflow: hidden;
  background: var(--black-raised);
}

.event-poster-main .event-poster-image {
  min-height: 530px;
}

.event-poster-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 42%);
  content: "";
  pointer-events: none;
}

.event-poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.01);
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.event-poster:hover .event-poster-image img {
  filter: saturate(1.16) contrast(1.04);
  transform: scale(1.06);
}

.event-poster-no {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.24);
  font-family: var(--display);
  font-size: 16px;
  backdrop-filter: blur(9px);
}

.event-availability {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.event-availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.event-open {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  transform: scale(0.8) rotate(-20deg);
  opacity: 0;
  transition: opacity 180ms ease, transform 240ms ease;
}

.event-poster:hover .event-open {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.event-poster-copy {
  padding-top: 20px;
}

.event-poster-copy > p {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-poster-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.84;
  text-transform: uppercase;
}

.event-poster-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.event-poster-meta span {
  padding: 14px 0;
}

.event-poster-meta span + span {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.event-poster-meta small,
.event-poster-meta strong {
  display: block;
}

.event-poster-meta small {
  margin-bottom: 5px;
  color: #7b7973;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-poster-meta strong {
  font-size: 10px;
  text-transform: uppercase;
}

.event-signal {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  grid-column: 1 / -1;
  padding: 42px;
  border: 1px solid var(--line-dark);
  background: var(--black-soft);
}

.signal-grid,
.producer-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.signal-code {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--acid);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.event-signal > div:last-child {
  position: relative;
  z-index: 2;
}

.event-signal small {
  color: var(--acid);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-signal h3 {
  margin: 14px 0 30px;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 98px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.84;
  text-transform: uppercase;
}

.event-signal a {
  display: inline-flex;
  gap: 60px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--white);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.signal-radar {
  position: absolute;
  top: 50%;
  right: 12%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(200, 242, 11, 0.45);
  border-radius: 50%;
  transform: translateY(-50%);
}

.signal-radar::before,
.signal-radar::after {
  position: absolute;
  content: "";
}

.signal-radar::before {
  inset: 54px;
  border: 1px solid rgba(200, 242, 11, 0.3);
  border-radius: 50%;
}

.signal-radar::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(200, 242, 11, 0.36);
}

.signal-radar i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  border-top: 1px solid var(--acid);
  background: linear-gradient(30deg, rgba(200, 242, 11, 0.18), transparent 65%);
  transform-origin: left top;
  animation: radar 4s linear infinite;
}

.signal-radar b {
  position: absolute;
  top: 29%;
  right: 20%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 20px var(--acid);
}

.signal-alien {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 13px 20px rgba(0, 0, 0, 0.55));
  transform: translate(-50%, -50%);
  animation: signal-alien-float 3.4s ease-in-out infinite;
}

.empty-state {
  margin-top: 40px;
  padding: 80px 30px;
  border: 1px solid var(--line-dark);
  text-align: center;
}

.empty-state img {
  width: 118px;
  height: 118px;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
}

.empty-state span,
.empty-state strong {
  display: block;
}

.empty-state span {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.empty-state strong {
  margin: 10px 0;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  background: var(--red);
  color: var(--black);
}

.manifesto-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(5, 5, 5, 0.36);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    var(--black);
  background-size: 48px 48px;
}

.manifesto-visual::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 48%, rgba(200, 242, 11, 0.16), transparent 45%);
  content: "";
}

.mascot-stage {
  position: relative;
  display: grid;
  width: min(82%, 590px);
  aspect-ratio: 1;
  place-items: center;
}

.mascot-stage::before,
.mascot-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.mascot-stage::before {
  inset: 10%;
  border: 1px dashed rgba(200, 242, 11, 0.54);
  animation: orbit 18s linear infinite;
}

.mascot-stage::after {
  inset: 24%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.mascot-stage > img {
  position: relative;
  z-index: 3;
  width: 70%;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.72))
    drop-shadow(0 26px 28px rgba(0, 0, 0, 0.7));
  animation: alien-float 3.8s ease-in-out infinite;
}

.mascot-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(200, 242, 11, 0.42);
  border-radius: 50%;
}

.mascot-orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 20px var(--acid);
  content: "";
}

.mascot-orbit-one {
  inset: 1%;
  animation: orbit 14s linear infinite;
}

.mascot-orbit-two {
  inset: 17%;
  transform: rotate(55deg);
  animation: orbit-reverse-flat 11s linear infinite;
}

.manifesto-beam {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 76px;
  background: var(--acid);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) rotate(-24deg);
  opacity: 0.72;
  animation: beam 7s ease-in-out infinite alternate;
}

.transmission-tag {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.transmission-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.manifesto-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 90px clamp(40px, 6vw, 100px);
}

.manifesto-copy .section-code {
  color: var(--black);
}

.manifesto-copy h2 {
  font-size: clamp(68px, 7vw, 104px);
}

.manifesto-copy > p:not(.section-code) {
  max-width: 540px;
  margin: 38px 0;
  font-size: 14px;
  line-height: 1.8;
}

.manifesto-colors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(5, 5, 5, 0.38);
}

.manifesto-colors span {
  display: flex;
  min-height: 72px;
  align-items: flex-end;
  padding: 10px;
  border-right: 1px solid rgba(5, 5, 5, 0.38);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-colors span:last-child {
  border-right: 0;
}

.color-black {
  background: var(--black);
  color: var(--white);
}

.color-red {
  background: var(--red-dark);
  color: var(--white);
}

.color-white {
  background: var(--white);
}

.color-event {
  background: var(--acid);
}

.producer-section {
  position: relative;
  display: grid;
  min-height: 730px;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 100px max(32px, calc((100vw - 1240px) / 2));
  background: var(--red);
  color: var(--white);
}

.producer-section::before {
  position: absolute;
  right: -12vw;
  bottom: -48%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.04),
    0 0 0 120px rgba(255, 255, 255, 0.035),
    0 0 0 180px rgba(255, 255, 255, 0.03);
  content: "";
}

.producer-grid {
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.producer-copy,
.producer-stamp {
  position: relative;
  z-index: 3;
}

.producer-copy .section-code {
  color: var(--black);
}

.producer-copy h2 {
  font-size: clamp(82px, 10vw, 150px);
}

.producer-copy > p:not(.section-code) {
  max-width: 480px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 13px;
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.producer-stamp {
  display: flex;
  width: 330px;
  height: 330px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.producer-stamp::before,
.producer-stamp::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.producer-stamp::before {
  inset: 22px;
}

.producer-stamp::after {
  inset: 60px;
}

.producer-stamp div {
  position: relative;
  z-index: 2;
}

.producer-stamp span,
.producer-stamp small,
.producer-stamp b {
  display: block;
}

.producer-stamp span {
  font-family: var(--display);
  font-size: 74px;
  line-height: 1;
}

.producer-stamp small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.producer-stamp b {
  position: absolute;
  right: 28px;
  bottom: 82px;
  padding: 5px 10px;
  background: var(--black);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  transform: rotate(-12deg);
}

.alerts {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1.05fr 0.95fr;
  align-items: end;
  gap: 52px;
  padding: 110px max(32px, calc((100vw - 1240px) / 2));
  background: var(--paper);
  color: var(--black);
}

.alerts-alien {
  position: relative;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  align-self: center;
}

.alerts-alien::before,
.alerts-alien::after,
.alerts-alien span {
  position: absolute;
  border: 1px solid rgba(5, 5, 5, 0.28);
  border-radius: 50%;
  content: "";
}

.alerts-alien::before {
  inset: 0;
  animation: orbit 12s linear infinite;
}

.alerts-alien::after {
  inset: 20px;
}

.alerts-alien span {
  inset: 39px;
  background: var(--red);
  border-color: var(--red);
}

.alerts-alien img {
  position: relative;
  z-index: 2;
  width: 110px;
  filter: drop-shadow(0 12px 12px rgba(5, 5, 5, 0.22));
  animation: alien-float 3.4s ease-in-out infinite;
}

.alerts h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.alerts-form {
  align-self: end;
}

.alerts-form label {
  display: block;
  border-bottom: 2px solid var(--black);
}

.alerts-form input {
  width: 100%;
  padding: 16px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--display);
  font-size: 38px;
  text-transform: uppercase;
}

.alerts-form input::placeholder {
  color: #97938b;
}

.alerts-form button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 15px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.alerts-form p {
  margin: 12px 0 0;
  color: #77736c;
  font-size: 9px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 90px max(32px, calc((100vw - 1240px) / 2)) 34px;
  background: var(--black);
}

.footer-flyby {
  position: relative;
  height: 190px;
  margin-bottom: 90px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.footer-flyby::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 0;
  color: var(--red);
  content: "RUTA ORBITAL / VIVE-01";
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer-flyby span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-flyby i {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 3px, transparent 3px 11px);
}

.footer-flyby i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  content: "";
}

.footer-flyby img {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: -190px;
  width: 170px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.72));
  will-change: transform, opacity;
  animation: alien-flyby 13s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 80px;
}

.footer-top img {
  width: 220px;
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 100px);
  line-height: 0.82;
  text-align: right;
  text-transform: uppercase;
}

.footer-top p span {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  color: #73716b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom > div {
  display: flex;
  gap: 28px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-dock {
  display: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

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

@keyframes orbit-reverse {
  from { transform: scale(1.4) rotate(360deg); }
  to { transform: scale(1.4) rotate(0deg); }
}

@keyframes orbit-reverse-flat {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes hero-timer {
  to { transform: scaleX(1); }
}

@keyframes alien-arrival {
  0% {
    opacity: 0;
    transform: translate(150px, -130px) rotate(18deg) scale(0.35);
  }
  66% {
    opacity: 1;
    transform: translate(-9px, 8px) rotate(-3deg) scale(1.06);
  }
  100% {
    opacity: 1;
    transform: translate(0) rotate(0) scale(1);
  }
}

@keyframes alien-float {
  50% { transform: translateY(-8px) rotate(1.5deg); }
}

@keyframes signal-alien-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-5deg); }
  50% { transform: translate(-50%, calc(-50% - 10px)) rotate(2deg); }
}

@keyframes alien-flyby {
  0% {
    opacity: 0;
    transform: translate3d(0, 32px, 0) rotate(-11deg) scale(0.82);
  }
  8% { opacity: 1; }
  48% {
    opacity: 1;
    transform: translate3d(calc(50vw - 10px), -4px, 0) rotate(1deg) scale(1);
  }
  84% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(calc(100vw + 260px), -38px, 0) rotate(9deg) scale(0.88);
  }
}

@keyframes alien-ring {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  20% { opacity: 0.8; }
  75%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.45); }
}

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

@keyframes radar {
  to { transform: rotate(360deg); }
}

@keyframes beam {
  from { transform: translate(-58%, -50%) rotate(-24deg); }
  to { transform: translate(-42%, -50%) rotate(-24deg); }
}

@keyframes float {
  50% { transform: translateY(-12px) rotate(2deg); }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .site-header {
    grid-template-columns: 200px 1fr auto;
    padding-inline: 20px;
  }

  .brand img {
    width: 165px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .city-button {
    display: none;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 35px;
  }

  .hero-alien {
    right: 228px;
    transform-origin: right top;
  }

  .discovery-form {
    grid-template-columns: minmax(280px, 1.2fr) 0.65fr 0.75fr 110px;
  }

  .manifesto-copy {
    padding-inline: 40px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 68px;
  }

  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-bottom: 68px;
  }

  .concept-bar {
    min-height: 25px;
    padding: 0 12px;
    justify-content: space-between;
    font-size: 7px;
  }

  .concept-bar p {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header,
  .site-header.is-scrolled {
    top: 25px;
    display: flex;
    min-height: 66px;
    justify-content: space-between;
    padding: 0 16px;
    background: rgba(5, 5, 5, 0.74);
    backdrop-filter: blur(13px);
  }

  .site-header.is-scrolled {
    position: fixed;
    top: 0;
  }

  .brand img {
    width: 148px;
  }

  .desktop-nav,
  .header-ticket,
  .city-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 120px 22px 100px;
    background: var(--red);
    color: var(--white);
    clip-path: circle(0 at calc(100% - 37px) 58px);
    pointer-events: none;
    transition: clip-path 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  body.menu-open .mobile-menu {
    clip-path: circle(150% at calc(100% - 37px) 58px);
    pointer-events: auto;
  }

  .mobile-menu-label {
    margin-bottom: 30px;
    color: var(--black);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-menu a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-family: var(--display);
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
  }

  .mobile-menu a b {
    font-family: var(--body);
    font-size: 8px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-image-flow,
  .hero-image-daniel {
    background-position: 64% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 1) 2%, rgba(5, 5, 5, 0.76) 42%, rgba(5, 5, 5, 0.18) 75%, rgba(5, 5, 5, 0.55) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.72), transparent 68%);
  }

  .hero-orbit {
    width: 310px;
    height: 310px;
  }

  .hero-orbit-a {
    top: 170px;
    right: -90px;
  }

  .hero-orbit-b {
    display: none;
  }

  .hero-vertical-word {
    display: none;
  }

  .hero-shell {
    display: block;
    min-height: 840px;
    padding: 250px 0 146px;
  }

  .hero-kicker {
    max-width: none;
    margin-bottom: 18px;
  }

  .hero-kicker i,
  .hero-kicker small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(70px, 23vw, 105px);
    line-height: 0.82;
  }

  .hero h1 span:last-child {
    -webkit-text-stroke-width: 1px;
  }

  .hero-info {
    grid-template-columns: 0.85fr 1.15fr;
    margin-top: 28px;
  }

  .hero-info > div {
    min-height: 84px;
    padding: 14px;
  }

  .hero-info > div:first-child {
    padding-left: 0;
  }

  .hero-artist {
    display: none;
  }

  .hero-date > strong {
    font-size: 47px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-top: 20px;
  }

  .button {
    min-height: 49px;
    padding: 0 18px;
  }

  .button-accent {
    min-width: 0;
  }

  .button-ghost {
    min-width: 49px;
    width: 49px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .button-ghost::before {
    color: var(--white);
    content: "↘";
    font-size: 18px;
  }

  .hero-rail {
    position: absolute;
    right: 0;
    bottom: 102px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-alien {
    top: 105px;
    right: 2px;
    width: 112px;
  }

  .alien-avatar {
    width: 102px;
    height: 102px;
  }

  .alien-arrival-ring {
    width: 82px;
    height: 22px;
  }

  .alien-badge {
    right: 0;
    bottom: -3px;
    padding: 5px 7px;
    font-size: 6px;
  }

  .alien-message {
    top: -4px;
    right: 92px;
    width: 214px;
  }

  .hero-rail-label,
  .hero-timer,
  .hero-tab div {
    display: none;
  }

  .hero-tab {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
  }

  .hero-tab > span {
    font-family: var(--body);
    font-size: 8px;
  }

  .hero-tab.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--black);
  }

  .discovery-dock {
    bottom: 0;
    width: 100%;
    transform: none;
  }

  .discovery-form {
    min-height: 78px;
    grid-template-columns: 1fr 78px;
    background: var(--paper);
  }

  .discovery-form label {
    display: none;
  }

  .discovery-form .discovery-main {
    display: flex;
    padding: 15px 18px;
  }

  .discovery-main div {
    width: 100%;
  }

  .discovery-form button {
    color: transparent;
    gap: 0;
  }

  .discovery-form button svg {
    width: 23px;
    color: var(--white);
  }

  .night-ticker {
    padding-top: 0;
  }

  .night-ticker > div {
    padding: 20px 0 16px;
  }

  .night-ticker span {
    font-size: 26px;
  }

  .events-section {
    padding: 95px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .manifesto-copy h2,
  .producer-copy h2 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .section-aside {
    margin-top: 26px;
  }

  .section-aside p {
    max-width: 340px;
    font-size: 12px;
  }

  .event-filters {
    margin-top: 42px;
  }

  .event-list {
    display: block;
  }

  .event-poster,
  .event-poster-secondary {
    margin: 0 0 65px;
  }

  .event-poster-image,
  .event-poster-main .event-poster-image {
    min-height: min(116vw, 520px);
  }

  .event-poster-copy h3 {
    font-size: clamp(55px, 16vw, 76px);
  }

  .event-open {
    opacity: 1;
    transform: none;
  }

  .event-signal {
    min-height: 430px;
    padding: 28px 22px;
  }

  .event-signal h3 {
    font-size: 58px;
  }

  .signal-radar {
    top: auto;
    right: -60px;
    bottom: -40px;
    width: 230px;
    height: 230px;
    transform: none;
  }

  .signal-alien {
    width: 112px;
    height: 112px;
  }

  .manifesto {
    display: block;
  }

  .manifesto-visual {
    min-height: 470px;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.36);
  }

  .mascot-stage {
    width: min(100% - 24px, 430px);
  }

  .manifesto-copy {
    padding: 80px 16px;
  }

  .manifesto-copy > p:not(.section-code) {
    font-size: 12px;
  }

  .manifesto-colors {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-colors span:nth-child(2) {
    border-right: 0;
  }

  .manifesto-colors span {
    border-bottom: 1px solid rgba(5, 5, 5, 0.38);
  }

  .producer-section {
    display: block;
    min-height: 850px;
    padding: 90px 16px;
  }

  .producer-copy h2 {
    font-size: clamp(70px, 21vw, 100px);
  }

  .producer-stamp {
    width: 230px;
    height: 230px;
    margin: 80px 0 0 auto;
  }

  .producer-stamp span {
    font-size: 56px;
  }

  .producer-stamp b {
    right: 14px;
    bottom: 50px;
  }

  .alerts {
    display: block;
    padding: 80px 16px;
  }

  .alerts-alien {
    width: 116px;
    height: 116px;
    margin: 0 0 42px auto;
  }

  .alerts-alien img {
    width: 88px;
  }

  .alerts h2 {
    font-size: 54px;
  }

  .alerts-form {
    margin-top: 55px;
  }

  .alerts-form input {
    font-size: 31px;
  }

  .site-footer {
    padding: 75px 16px 35px;
  }

  .footer-flyby {
    height: 136px;
    margin-bottom: 66px;
  }

  .footer-flyby::before {
    top: 12px;
  }

  .footer-flyby span {
    right: auto;
    bottom: 12px;
    left: 0;
    max-width: 220px;
    line-height: 1.45;
  }

  .footer-flyby img {
    top: 10px;
    left: -128px;
    width: 112px;
  }

  .footer-top {
    display: block;
    padding-bottom: 60px;
  }

  .footer-top img {
    width: 180px;
    margin-bottom: 55px;
  }

  .footer-top p {
    font-size: 17vw;
    text-align: left;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom > div {
    display: grid;
    gap: 15px;
    margin-bottom: 35px;
  }

  .mobile-dock {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 68px;
    grid-template-columns: 1fr 78px 1fr;
    align-items: center;
    padding: 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(18px);
  }

  .mobile-dock > a:not(.mobile-dock-main) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-dock > a b {
    color: var(--red);
  }

  .mobile-dock-main {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    justify-self: center;
    border-radius: 50%;
    background: var(--red);
  }

  .mobile-dock-main svg {
    width: 21px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 68px;
  }

  .hero-place strong {
    font-size: 10px;
  }

  .hero-date > strong {
    font-size: 42px;
  }

  .mobile-dock > a:not(.mobile-dock-main) {
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
