:root {
  color-scheme: dark;
  --primary-color: #00f3ff;
  --primary-alt-color: #ff00ff;
  --accent-color: #ff2975;
  --fg-color: #e0e0ff;
  --bg-color: #0b0e1a;
  --panel-color: #141625;
  --muted-color: #8a8fb3;
  --font-body: "Source Sans 3", "Helvetica Neue", sans-serif;
  --font-display: "Space Grotesk", "Source Sans 3", sans-serif;
  --font-tech: "Space Mono", "Courier New", monospace;
  --font-human: "Source Sans 3", "Helvetica Neue", sans-serif;
  --duration: 0.5s;
  --line-width: 4px;
  --glow-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
  --text-shadow: 0 0 6px rgba(0, 243, 255, 0.45);
  --max-width: 1100px;
  --gutter: clamp(1.5rem, 4vw, 4.5rem);
  --nav-gap: 0.6rem;
  --nav-size: 0.7rem;
  --nav-tracking: 0.12em;
  --site-nav-offset: 6rem;
  --title-size: clamp(2.2rem, 6vw, 4rem);
  --title-tracking: 0.12em;
  --tagline-size: clamp(0.9rem, 2vw, 1.15rem);
  --tagline-tracking: 0.08em;
  --heading-tracking: 0.12em;
  --h1-size: clamp(2rem, 5vw, 2.8rem);
  --h2-size: clamp(1.5rem, 3.5vw, 2.1rem);
  --h3-size: clamp(1.15rem, 2.5vw, 1.5rem);
  --countdown-margin-top: 2rem;
  --filters-width: 500px;
  --filters-gap: 0.1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--fg-color);
  font: 400 1.1rem/1.7 var(--font-body);
  letter-spacing: 0.03em;
  background-color: var(--bg-color);
  background-image:
    radial-gradient(circle at 80% 20%, rgba(195, 0, 195, 0.35) 0%, rgba(10, 11, 22, 0) 65%),
    linear-gradient(135deg, rgba(12, 10, 12, 0.97) 0%, #0a0b16 100%);
  overflow-x: hidden;
}

body:not(.edit-site) [id] {
  scroll-margin-top: var(--site-nav-offset);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  text-shadow: 0 0 3px rgba(0, 243, 255, 0.3);
  position: relative;
  transition: color var(--duration) ease;
}

a:hover,
a:focus {
  color: var(--primary-alt-color);
  text-shadow: 0 0 6px rgba(255, 0, 255, 0.5);
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-alt-color));
  transition: width var(--duration) ease;
}

a:hover::after,
a:focus::after {
  width: 100%;
  box-shadow: 0 0 6px rgba(0, 243, 255, 0.5);
}

.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-skip-link {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 20;
  background: var(--panel-color);
  color: var(--fg-color);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--primary-color);
}

.site-skip-link:focus {
  left: var(--gutter);
}

.site-header {
  position: relative;
  padding: 0;
  --header-clip: polygon(0 0, 100vw 0, 100vw calc(100% - 17.7vw), 0 100%);
  overflow: hidden;
}

.site-header__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-header__bg::before,
.site-header__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.site-header__bg::before {
  background:
    url("images/glitch.svg") no-repeat center 20% / cover,
    linear-gradient(135deg, rgba(12, 10, 18, 0.98) 0%, rgba(11, 11, 25, 0.95) 100%),
    repeating-linear-gradient(-12deg, rgba(0, 243, 255, 0.35) 0 2px, transparent 2px 10px),
    repeating-linear-gradient(-12deg, rgba(255, 0, 255, 0.35) 0 3px, transparent 3px 14px),
    repeating-linear-gradient(-12deg, rgba(0, 243, 255, 0.2) 0 1px, transparent 1px 6px);
  clip-path: var(--header-clip);
}

.site-header__bg::after {
  background-image:
    linear-gradient(0deg, rgba(7, 8, 18, 0.6) 0%, rgba(7, 8, 18, 0.9) 100%),
    repeating-linear-gradient(180deg, transparent, transparent 2px, rgba(0, 243, 255, 0.06) 3px, transparent 4px);
  opacity: 0.9;
  clip-path: var(--header-clip);
}

.site-header__nav,
.site-header__content {
  position: relative;
  z-index: 1;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.5rem 0;
  background: rgba(11, 14, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.site-header__nav {
  padding-top: 0;
}

.site-nav__toggle {
  width: 100%;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.25rem;
  border: 0;
  background: transparent;
  color: var(--fg-color);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav__toggle:not([hidden]) {
  display: flex;
}

.site-nav__toggle:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.site-nav__toggle-icon,
.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--primary-color);
  box-shadow: 0 0 0.4rem rgba(44, 230, 230, 0.72);
  transition: transform var(--duration) ease, opacity var(--duration) ease;
}

.site-nav__toggle-icon {
  position: relative;
}

.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-nav__toggle-icon::before {
  top: -0.38rem;
}

.site-nav__toggle-icon::after {
  top: 0.38rem;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-icon {
  background: transparent;
  box-shadow: none;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: var(--nav-gap);
  text-transform: uppercase;
  font-family: var(--font-tech);
  font-size: var(--nav-size);
  letter-spacing: var(--nav-tracking);
}

.site-header__nav-link {
  color: var(--fg-color);
  text-shadow: 0 0 8px rgba(39, 193, 255, 0.7);
}

.site-header__nav-link::after {
  display: none;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus {
  color: var(--primary-color);
}

.site-header__nav-button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.site-header__nav-item--submenu .site-header__nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-header__nav-item--submenu .site-header__nav-button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.9;
  transition: transform var(--duration) ease;
}

.site-header__nav-item--submenu .site-header__nav-button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.site-header__nav-button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

.site-header__nav-item--submenu {
  position: relative;
}

.site-header__submenu {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0.9rem;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 13rem;
  background: rgba(11, 14, 26, 0.96);
  border: 1px solid rgba(0, 243, 255, 0.25);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.45rem;
  z-index: 20;
}

.site-header__submenu[hidden] {
  display: none;
}

.site-header__submenu .site-header__nav-link {
  display: block;
  padding: 0.1rem 0;
}

.site-header__submenu-bar {
  margin-top: 0.6rem;
  padding: 0.6rem 0.75rem;
  background: rgba(11, 14, 26, 0.92);
  border-top: 1px solid rgba(0, 243, 255, 0.2);
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.site-header__submenu-bar[hidden] {
  display: none;
}

.site-header__submenu-bar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--nav-gap);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: var(--nav-size);
  letter-spacing: var(--nav-tracking);
}

@media (max-width: 700px) {
  .site-nav {
    padding-block: 0.25rem;
  }

  .site-header__nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(44, 230, 230, 0.18);
  }

  .site-header__nav-list > li {
    border-bottom: 1px solid rgba(44, 230, 230, 0.12);
  }

  .site-header__nav-list > li:last-child {
    grid-column: 1 / -1;
  }

  .site-header__nav-link {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .site-header__nav-button {
    width: 100%;
  }

  .site-header__submenu-bar {
    margin-top: 0;
  }

  .site-header__submenu-bar-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
  }

  .site-header__submenu {
    display: none;
  }
}

.site-header__content {
  margin-top: clamp(2rem, 6vw, 2rem);
  text-align: center;
}

.site-header__lockup {
  --lockup-rotate: -10deg;
  --lockup-skew-x: -15deg;
  --lockup-translate-x: 0rem;
  --lockup-translate-y: 1rem;
  --lockup-scale: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 3rem;
  white-space: nowrap;
  transform: rotate(var(--lockup-rotate)) skewX(var(--lockup-skew-x)) scale(var(--lockup-scale)) translate(var(--lockup-translate-x), var(--lockup-translate-y));
  transform-origin: center;
}

.site-header__tagline--right {
  align-self: flex-end;
}

.site-header__title {
  margin: 0;
  font-weight: 700;
  font-size: var(--title-size);
  line-height: 1;
  letter-spacing: var(--title-tracking);
  text-transform: uppercase;
  text-shadow: var(--text-shadow);
  font-family: var(--font-display);
  display: inline-block;
  white-space: nowrap;
  padding: 0 1rem;
  border-radius: 1.1rem;
  background: rgba(11, 14, 26, 0.72);
  border: 1px solid rgba(0, 243, 255, 0.25);
}

@media (max-width: 600px) {
  .site-header__lockup {
    --lockup-scale: 0.92;
    --title-size: clamp(1.35rem, 7.5vw, 2.25rem);
    --title-tracking: 0.1em;
    --tagline-tracking: 0.06em;
    --tagline-size: clamp(0.5rem, 2.5vw, 1.15rem);
    margin-bottom: 2.5rem;
  }

  .site-header__title {
    padding: 0 0.85rem;
  }

  .site-header__tagline {
    padding: 0.3rem 0.7rem;
  }
}

.site-header__title-link {
  background: linear-gradient(90deg, var(--primary-alt-color), var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.site-header__title-link::after {
  display: none;
}

.site-header__tagline {
  margin: 0;
  font-family: var(--font-tech);
  font-weight: 700;
  letter-spacing: var(--tagline-tracking);
  text-transform: uppercase;
  font-size: var(--tagline-size);
  text-shadow: var(--text-shadow);
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 1rem;
  background: rgba(11, 14, 26, 0.72);
  border: 1px solid rgba(255, 0, 255, 0.24);
}

.site-header__tagline-text {
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--primary-alt-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: none;
}

.animations-on .glitch::before,
.animations-on .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.animations-on .glitch::before {
  left: 0;
  text-shadow: -1px 0 var(--primary-alt-color);
  clip: rect(20px, 9999px, 60px, 0);
  animation: glitch-anim 6s infinite linear alternate-reverse;
  -webkit-text-fill-color: rgba(255, 0, 255, 0.35);
}

.animations-on .glitch::after {
  left: 0;
  text-shadow: -1px 0 var(--primary-color);
  clip: rect(45px, 9999px, 90px, 0);
  animation: glitch-anim 6s infinite linear alternate-reverse;
  animation-delay: 1s;
  -webkit-text-fill-color: rgba(0, 243, 255, 0.35);
}

@keyframes glitch-anim {
  0% {
    clip: rect(12px, 9999px, 44px, 0);
  }
  20% {
    clip: rect(75px, 9999px, 95px, 0);
  }
  40% {
    clip: rect(45px, 9999px, 65px, 0);
  }
  60% {
    clip: rect(20px, 9999px, 55px, 0);
  }
  80% {
    clip: rect(68px, 9999px, 88px, 0);
  }
  100% {
    clip: rect(30px, 9999px, 70px, 0);
  }
}

.home-sessions-list {
  text-align: center;
}

.home-sessions-list__cta {
  margin: 0;
}

.home-sessions-list__button {
  font-size: clamp(1rem, 3vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: clamp(0.14em, 0.4vw, 0.2em);
  padding: clamp(0.72rem, 1.6vw, 1rem) clamp(1.3rem, 4vw, 2.2rem);
}

.home-hero {
  position: relative;
}

.home-carousel {
  --panel-bg: transparent;
  --panel-border: rgba(0, 243, 255, 0.36);
  --panel-shadow: 0 0 28px rgba(0, 243, 255, 0.16);
  margin: 0 auto;
  width: min(100%, 940px);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-carousel__hero,
.home-carousel__single,
.home-carousel__pair-image {
  cursor: pointer;
}

.home-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent, transparent 3px, rgba(0, 243, 255, 0.05) 4px);
  pointer-events: none;
  z-index: 2;
}

.home-carousel__hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: clamp(1rem, 4vw, 2rem);
  filter: drop-shadow(0 24px 35px rgba(46, 18, 68, 0.6));
}

.home-carousel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 780ms ease, transform 780ms ease;
  will-change: opacity, transform;
}

.home-carousel__single {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-carousel__pair {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.25rem, 1.4vw, 0.65rem);
  padding: clamp(0.25rem, 1.1vw, 0.5rem);
}

.home-carousel__pair-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-carousel__single[hidden],
.home-carousel__pair[hidden] {
  display: none;
}

.home-carousel__overlay.is-visible {
  opacity: 1;
  transform: scale(1);
}

.home-carousel__controls {
  margin-top: clamp(0.7rem, 1.8vw, 1rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 0.85rem);
}

.home-carousel__control {
  min-width: 5.75rem;
}

.home-carousel__control[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.home-carousel__timer {
  margin: 0.4rem auto 0;
  width: min(24rem, 78vw);
  height: 0.32rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(138, 143, 179, 0.25);
  border: 1px solid rgba(0, 243, 255, 0.25);
}

.home-carousel__timer-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 243, 255, 0.85), rgba(255, 0, 255, 0.85));
  transform: scaleX(0);
  transform-origin: left center;
}

@media (max-width: 700px) {
  .home-carousel {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-carousel__overlay {
    transition: none;
    transform: none;
  }
}

.home-countdown {
  position: relative;
  z-index: 4;
  margin: var(--countdown-margin-top) auto 0;
  padding: 1.75rem 1rem 2rem;
  max-width: 860px;
  background: rgba(12, 14, 26, 0.85);
  border: 1px solid rgba(0, 243, 255, 0.35);
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.2), inset 0 0 12px rgba(0, 243, 255, 0.08);
  backdrop-filter: blur(6px);
}

.home-countdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-alt-color), transparent);
  box-shadow: 0 0 12px rgba(0, 243, 255, 0.6);
}

.home-countdown::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent, transparent 3px, rgba(0, 243, 255, 0.05) 4px);
  opacity: 0.4;
  pointer-events: none;
}

.home-countdown__header,
.home-countdown__grid {
  position: relative;
  z-index: 1;
}

.home-countdown__kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-tech);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-color);
  text-shadow: var(--text-shadow);
}

.home-countdown__meta {
  display: grid;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted-color);
}

.home-countdown__grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
}

.home-countdown__item {
  --panel-bg: rgba(8, 10, 18, 0.8);
  --panel-border: rgba(0, 243, 255, 0.2);
  --panel-shadow: inset 0 0 12px rgba(0, 243, 255, 0.1);
  padding: 0.85rem 0.75rem;
}

.home-countdown__number {
  display: block;
  font-family: var(--font-tech);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  color: var(--fg-color);
  text-shadow: var(--text-shadow);
  font-variant-numeric: tabular-nums;
}

.home-countdown__label {
  display: block;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--muted-color);
  font-family: var(--font-tech);
}

.site-main {
  padding: 0;
}

.site-main__content {
  width: 100%;
}

.site-main__content h1,
.site-main__content h2,
.site-main__content h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: var(--heading-tracking);
}

.site-main__content h1 {
  font-size: var(--h1-size);
  line-height: 1.2;
}

.site-main__content h2 {
  font-size: var(--h2-size);
  line-height: 1.25;
}

.site-main__content h3 {
  font-size: var(--h3-size);
  line-height: 1.3;
}

.heading-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.4rem;
  font-size: 0.85em;
  opacity: 0;
  color: var(--muted-color);
  text-shadow: none;
  transition: opacity var(--duration) ease, color var(--duration) ease;
}

.heading-anchor::after {
  display: none;
}

h2:hover .heading-anchor,
h2:focus-within .heading-anchor,
h3:hover .heading-anchor,
h3:focus-within .heading-anchor {
  opacity: 1;
}

.heading-anchor:hover,
.heading-anchor:focus {
  color: var(--primary-alt-color);
  text-shadow: none;
}

.page-shell {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.page-shell--landing {
  grid-template-columns: minmax(0, 1fr);
}

.page-shell--landing .page-shell__main {
  grid-column: 1;
}

.page-shell__filters {
  width: 100%;
}

.page-shell__tracks {
  display: none;
  width: 100%;
}

.page-shell__news {
  display: none;
  width: 100%;
}

.tracks-pane__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.tracks-pane__item a {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 243, 255, 0.14);
  background: rgba(0, 243, 255, 0.04);
  text-shadow: none;
  font-family: var(--font-display);
  font-size: var(--h3-size);
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: none;
}

.tracks-pane__item a:hover,
.tracks-pane__item a:focus {
  border-color: rgba(255, 0, 255, 0.3);
  background: rgba(255, 0, 255, 0.07);
}

.news-pane__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.news-pane__item a {
  display: block;
  padding: 0.35rem 0.45rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 243, 255, 0.14);
  background: rgba(0, 243, 255, 0.04);
  text-shadow: none;
}

.news-pane__item a:hover,
.news-pane__item a:focus {
  border-color: rgba(255, 0, 255, 0.3);
  background: rgba(255, 0, 255, 0.07);
}

.news-pane__empty {
  margin: 0;
  font-family: var(--font-human);
  font-size: 0.95rem;
  color: var(--muted-color);
}

.page-shell__main {
  min-width: 0;
}

.filters-panel {
  padding: 1rem 1.1rem;
  background: rgba(10, 12, 22, 0.6);
  border: 1px solid rgba(0, 243, 255, 0.18);
  border-radius: 18px;
  box-shadow: inset 0 0 12px rgba(0, 243, 255, 0.08);
}

.filters-panel__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
}

.filters-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-color);
}

.filters-help__button {
  flex-shrink: 0;
  margin-left: auto;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 243, 255, 0.22);
  background: rgba(0, 243, 255, 0.08);
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1;
  color: var(--primary-color);
  cursor: pointer;
  transition: border-color var(--duration) ease, color var(--duration) ease, background var(--duration) ease;
}

.filters-help__button:hover,
.filters-help__button:focus-visible {
  border-color: rgba(255, 0, 255, 0.3);
  background: rgba(255, 0, 255, 0.07);
  color: var(--primary-alt-color);
}

.filters-help__button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

.filters-help__panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: min(420px, calc(100vw - (2 * var(--gutter))));
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 243, 255, 0.25);
  background: rgba(11, 14, 26, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  z-index: 40;
}

.filters-help__text {
  margin: 0;
  font-family: var(--font-human);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fg-color);
}

.filters-help__text + .filters-help__text {
  margin-top: 0.6rem;
}

@media (max-width: 700px) {
  .filters-panel__header {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }

  .filters-help__panel {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }
}

.filters-toggle {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.filters-section {
  margin-top: 0.8rem;
}

.filters-section__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.filters-section__toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.filters-section__toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  opacity: 0.9;
  transition: transform var(--duration) ease;
}

.filters-section__toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.filters-section__toggle[aria-expanded="false"] {
  margin-bottom: 0;
}

.filters-section__toggle:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

.filters-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filters-toggles[hidden] {
  display: none;
}

.toggle-button {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 243, 255, 0.25);
  background: rgba(0, 243, 255, 0.08);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-family: var(--font-human);
  color: var(--primary-color);
  cursor: pointer;
  transition: border-color var(--duration) ease, color var(--duration) ease, background var(--duration) ease;
}

.toggle-button[aria-pressed="false"] {
  border-color: rgba(138, 143, 179, 0.3);
  background: rgba(10, 12, 22, 0.2);
  color: var(--muted-color);
}

.toggle-button[data-exclude-tag][aria-pressed="true"] {
  border-color: rgba(255, 59, 48, 0.55);
  background: rgba(255, 59, 48, 0.16);
  color: #ff3b30;
}

.page-schedule .schedule-list {
  display: grid;
  gap: 1.2rem;
}

.page-schedule .schedule-live-callout {
  margin: -0.25rem 0 1.4rem;
}

.page-schedule .schedule-live-callout__link {
  display: inline-flex;
  align-items: center;
  margin-left: 0.35rem;
  max-width: 100%;
  padding: 0.22rem 0.75rem;
  border: 1px solid rgba(0, 243, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 243, 255, 0.08) 0%, rgba(255, 41, 117, 0.12) 100%),
    rgba(10, 12, 22, 0.72);
  box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.06), 0 0 14px rgba(0, 243, 255, 0.08);
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
  white-space: nowrap;
}

.page-schedule .schedule-live-callout__link::after {
  display: none;
}

.page-schedule .schedule-live-callout__link:hover,
.page-schedule .schedule-live-callout__link:focus {
  border-color: rgba(255, 41, 117, 0.45);
  box-shadow: inset 0 0 10px rgba(255, 41, 117, 0.08), 0 0 18px rgba(255, 41, 117, 0.14);
  text-shadow: none;
}

.page-schedule .schedule-list.is-collapsed {
  gap: 0.8rem;
}

.page-schedule .schedule-list.is-collapsed .schedule-item {
  padding: 0.85rem 1.1rem;
}

.page-schedule .schedule-list.is-collapsed .schedule-item__meta,
.page-schedule .schedule-list.is-collapsed .schedule-item__description {
  display: none;
}

.page-schedule .schedule-item {
  padding: 1.1rem 1.2rem;
  background: rgba(10, 12, 22, 0.55);
  border: 1px solid rgba(0, 243, 255, 0.16);
  border-radius: 16px;
  box-shadow: inset 0 0 12px rgba(0, 243, 255, 0.06);
}

.page-schedule .schedule-item__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.page-schedule .schedule-item h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0.02em;
}

.page-schedule .schedule-item__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-family: var(--font-human);
  font-size: 0.9rem;
  color: var(--muted-color);
}

.page-schedule .schedule-item__description {
  margin: 0.6rem 0 0;
  color: var(--fg-color);
}

.page-suggested-sessions .suggested-session-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 1.15rem;
}

.page-suggested-sessions .suggested-session-list__meta {
  margin: 0.9rem 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  color: var(--muted-color);
  font-family: var(--font-human);
}

.page-suggested-sessions .suggested-session-list__sort {
  min-width: 0;
  font-family: var(--font-human);
}

.page-suggested-sessions .suggested-session-item {
  padding: 1.1rem 1.2rem;
  background: rgba(10, 12, 22, 0.55);
  border: 1px solid rgba(0, 243, 255, 0.16);
  border-radius: 16px;
  box-shadow: inset 0 0 12px rgba(0, 243, 255, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  column-gap: 1.15rem;
  align-items: start;
}

.page-suggested-sessions .suggested-session-item[hidden] {
  display: none !important;
}

.page-suggested-sessions .suggested-session-item.is-selected {
  border-color: rgba(0, 243, 255, 0.38);
  box-shadow: inset 0 0 16px rgba(0, 243, 255, 0.12);
}

.page-suggested-sessions .suggested-session-item__main {
  min-width: 0;
}

.page-suggested-sessions .suggested-session-item__main h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0.02em;
}

.page-suggested-sessions .suggested-session-item__chips {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-suggested-sessions .suggested-session-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 243, 255, 0.28);
  background: rgba(0, 243, 255, 0.1);
  color: var(--muted-color);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-suggested-sessions .suggested-session-item__description {
  margin: 0.75rem 0 0;
  color: var(--fg-color);
}

.page-suggested-sessions .suggested-session-item__actions {
  margin-top: 0;
  display: grid;
  gap: 0.65rem;
  justify-items: stretch;
  align-content: start;
  width: max-content;
}

.page-suggested-sessions .suggested-session-item__wouldattend-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.page-suggested-sessions .suggested-session-item__actions .button {
  white-space: nowrap;
  height: 2.8rem;
  width: 100%;
  font-family: var(--font-human);
  letter-spacing: 0.07em;
}

.page-suggested-sessions .suggested-session-item__wouldattend-toggle {
  min-width: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.71rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.page-suggested-sessions .suggested-session-item__wouldattend-count {
  margin: 0;
  min-height: 1em;
  color: var(--fg-color);
  font-family: var(--font-human);
  font-size: 2.13rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  text-shadow: var(--text-shadow);
}

.page-suggested-sessions .suggested-session-item__wouldattend-toggle[aria-pressed="true"] {
  border-color: rgba(0, 243, 255, 0.8);
  box-shadow: 0 0 14px rgba(0, 243, 255, 0.48);
}

.page-suggested-sessions .suggested-session-item__wouldattend-toggle[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.page-suggested-sessions .suggested-session-item__run {
  min-width: 0;
  font-family: var(--font-human);
  font-size: 0.79rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-suggested-sessions .suggested-session-item__run-label,
.page-suggested-sessions .suggested-session-item__wouldattend-label {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  line-height: 1;
}

.page-suggested-sessions .wouldattend-submit-alert {
  position: fixed;
  left: 50%;
  bottom: 0.85rem;
  z-index: 40;
  width: min(92vw, 36rem);
  margin: 0;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 243, 255, 0.46);
  background: rgba(10, 14, 28, 0.96);
  color: var(--fg-color);
  font-size: 0.88rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(100% + 0.85rem));
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.page-suggested-sessions .wouldattend-submit-alert.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.page-suggested-sessions .wouldattend-submit-alert.is-error {
  border-color: rgba(255, 41, 117, 0.64);
}

.page-suggested-sessions .wouldattend-cookie-toast {
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  z-index: 45;
  width: fit-content;
  max-width: min(92vw, 36rem);
  margin: 0;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 243, 255, 0.55);
  background: rgba(10, 14, 28, 0.98);
  color: var(--fg-color);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 0.85rem));
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.page-suggested-sessions .wouldattend-cookie-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.page-suggested-sessions .wouldattend-cookie-toast__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted-color);
  font-family: var(--font-human);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.page-suggested-sessions .wouldattend-cookie-toast__close:hover,
.page-suggested-sessions .wouldattend-cookie-toast__close:focus-visible {
  color: var(--fg-color);
}

.page-suggested-sessions .wouldattend-cookie-toast__message {
  margin: 0 2.4rem 0.85rem 0;
  font-size: 0.9rem;
}

.page-suggested-sessions .wouldattend-cookie-toast__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}

.page-suggested-sessions .wouldattend-cookie-toast__actions .button {
  width: 100%;
  padding-inline: 1rem;
  font-size: 0.72rem;
}

.page-suggested-sessions .wouldattend-cookie-toast__close:focus-visible,
.page-suggested-sessions .wouldattend-cookie-toast__actions .button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.page-suggested-sessions [data-suggested-session-select][aria-pressed="true"] {
  border-color: rgba(0, 243, 255, 0.8);
  box-shadow: 0 0 14px rgba(0, 243, 255, 0.48);
}

.page-suggested-sessions .suggested-session-run {
  margin-top: 1.5rem;
  padding: clamp(1.35rem, 2.8vw, 1.8rem);
}

.page-suggested-sessions .suggested-session-run h2 {
  margin-top: 0;
}

.page-suggested-sessions .suggested-session-form {
  margin-top: 1.1rem;
}

.page-suggested-sessions .suggested-session-run[hidden] {
  display: none;
}

@media (max-width: 820px) {
  .page-suggested-sessions .suggested-session-item {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.95rem;
  }

  .page-suggested-sessions .suggested-session-item__actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .page-suggested-sessions .suggested-session-item__actions .button {
    width: auto;
  }

  .page-suggested-sessions .suggested-session-item__run {
    min-width: 0;
  }
}

@media (min-width: 821px) {
  .page-suggested-sessions .suggested-session-item__run-label,
  .page-suggested-sessions .suggested-session-item__wouldattend-label {
    flex-direction: column;
    gap: 0.03rem;
    line-height: 1.02;
  }

  .page-suggested-sessions .wouldattend-submit-alert {
    left: auto;
    right: 1rem;
    bottom: 1rem;
    width: min(28rem, calc(100vw - 2rem));
    transform: translate(0, calc(100% + 1rem));
  }

  .page-suggested-sessions .wouldattend-submit-alert.is-visible {
    transform: translate(0, 0);
  }

  .page-suggested-sessions .wouldattend-cookie-toast {
    left: auto;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    width: fit-content;
    max-width: min(30rem, calc(100vw - 2rem));
    transform: translate(0, calc(100% + 1rem));
  }

  .page-suggested-sessions .wouldattend-cookie-toast.is-visible {
    transform: translate(0, 0);
  }

  .page-suggested-sessions .wouldattend-cookie-toast__actions {
    flex-direction: row;
    align-items: center;
  }

  .page-suggested-sessions .wouldattend-cookie-toast__actions .button {
    width: auto;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-suggested-sessions .wouldattend-cookie-toast {
    transition: none;
  }
}

.page-badges #sched-iframed {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(900px, 150vh, 2400px);
  border: 1px solid rgba(0, 243, 255, 0.16);
  border-radius: 16px;
}

.page-flyers .flyer-image-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.4rem;
}

.page-flyers .flyer-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.page-flyers .flyer-image-card:hover,
.page-flyers .flyer-image-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.46);
}

.page-flyers .flyer-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(240px, 100%);
  max-height: 220px;
  object-fit: contain;
}

@media (max-width: 700px) {
  .page-flyers .flyer-image {
    max-width: min(200px, 100%);
    max-height: 200px;
  }
}

.page-presenters .presenters-grid {
  display: grid;
  gap: 1.2rem;
}

.page-presenters .presenter-card.panel {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}

.page-presenters .presenter-card__image {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0, 243, 255, 0.18);
  box-shadow: 0 0 14px rgba(0, 243, 255, 0.12);
}

.page-presenters .presenter-card__content {
  min-width: 0;
}

.page-presenters .presenter-card__name {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-transform: none;
}

.page-presenters .presenter-card__description {
  margin-top: 0.65rem;
  font-family: var(--font-human);
  color: var(--fg-color);
}

.page-presenters .presenter-card__description > :first-child {
  margin-top: 0;
}

.page-presenters .presenter-card__description > :last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .page-presenters .presenter-card.panel {
    grid-template-columns: 1fr;
  }

  .page-presenters .presenter-card__image {
    width: min(180px, 100%);
    height: auto;
  }
}

.page-vendors .vendors-grid {
  display: grid;
  gap: 1.2rem;
}

.page-vendors .vendor-card.panel {
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.page-vendors .vendor-card__header {
  display: grid;
  gap: 0.25rem;
}

.page-vendors .vendor-card__name {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-transform: none;
}

.page-vendors .vendor-card__meta {
  margin: 0;
  font-family: var(--font-human);
  color: var(--muted-color);
}

.page-vendors .vendor-card__description {
  font-family: var(--font-human);
  color: var(--fg-color);
}

.page-vendors .vendor-card__description > :first-child {
  margin-top: 0;
}

.page-vendors .vendor-card__description > :last-child {
  margin-bottom: 0;
}

/* Note: CSS custom properties (var(--foo)) are not supported in media queries across browsers.
   This breakpoint is derived from the current design tokens:
   1100px (max content width) + 260px (filters) + 3rem (2 * 1.5rem gap). */
@media (min-width: calc(1100px + 260px + 3rem)) {
  .page-shell--with-filters,
  .page-shell--with-news {
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--max-width)) minmax(260px, 1fr);
    column-gap: var(--filters-gap);
    align-items: start;
  }

  .page-shell--with-filters.page-shell--with-news {
    grid-template-columns: minmax(260px, 1fr) minmax(0, var(--max-width)) minmax(260px, 1fr);
  }

  .page-shell--with-tracks.page-shell--with-news {
    grid-template-columns: minmax(260px, 1fr) minmax(0, var(--max-width)) minmax(260px, 1fr);
  }

  .page-shell__filters {
    grid-column: 1;
    align-self: start;
    justify-self: end;
    width: min(100%, var(--filters-width));
  }

  .page-shell__tracks {
    display: block;
    grid-column: 1;
    align-self: start;
    justify-self: end;
    width: min(100%, var(--filters-width));
  }

  .page-shell__main {
    grid-column: 2;
  }

  .page-shell__news {
    display: block;
    grid-column: 3;
    align-self: start;
    justify-self: start;
    width: min(100%, var(--filters-width));
  }

  .page-shell--with-news .site-main__content.wrapper {
    padding-right: calc(var(--gutter) * 0.5);
  }
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.section--tight {
  padding-block: clamp(1.25rem, 3vw, 2rem);
}

.section--roomy {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.panel {
  background: var(--panel-bg, rgba(12, 14, 26, 0.9));
  border: 1px solid var(--panel-border, rgba(0, 243, 255, 0.22));
  box-shadow: var(--panel-shadow, 0 0 18px rgba(0, 243, 255, 0.12), inset 0 0 16px rgba(0, 243, 255, 0.06));
}

hr,
.site-divider,
.section-divider {
  box-sizing: border-box;
  margin: clamp(2.5rem, 6vw, 3.5rem) auto;
  width: 100%;
  height: var(--line-width);
  background: linear-gradient(90deg, var(--primary-color), var(--primary-alt-color));
  border: 0;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.start-here__title {
  text-align: center;
  margin: 0 0 2rem;
  text-shadow: var(--text-shadow);
}

.start-here__grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.start-here__panel {
  position: relative;
  padding: 3.75rem 1.5rem 2rem;
  display: grid;
  gap: 0.75rem;
}

.start-here__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-alt-color));
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.start-here__number {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  padding-bottom: 0.25rem;
  letter-spacing: 0.1em;
  color: var(--fg-color);
  background: #0a2935;
  border: 1px solid var(--primary-color);
  text-shadow: var(--text-shadow);
}

.start-here__heading {
  margin: 0;
  text-shadow: var(--text-shadow);
}

.start-here__text {
  margin: 0;
  color: var(--muted-color);
}

.button {
  --button-bg: linear-gradient(90deg, rgba(0, 243, 255, 0.25), rgba(255, 0, 255, 0.2));
  --button-border: rgba(0, 243, 255, 0.5);
  --button-shadow: 0 0 12px rgba(0, 243, 255, 0.2);
  --button-border-hover: rgba(255, 0, 255, 0.7);
  --button-shadow-hover: 0 0 16px rgba(255, 0, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-color);
  background: var(--button-bg);
  border: 1px solid var(--button-border);
  box-shadow: var(--button-shadow);
  text-shadow: none;
  cursor: pointer;
  transition: box-shadow var(--duration) ease, border-color var(--duration) ease, color var(--duration) ease;
}

.button::after {
  display: none;
}

.button:hover,
.button:focus-visible {
  color: var(--fg-color);
  border-color: var(--button-border-hover);
  box-shadow: var(--button-shadow-hover);
}

.button--ghost {
  --button-bg: rgba(8, 10, 18, 0.85);
  --button-border: rgba(0, 243, 255, 0.45);
  --button-shadow: 0 0 12px rgba(0, 243, 255, 0.35);
  --button-border-hover: rgba(255, 0, 255, 0.7);
  --button-shadow-hover: 0 0 16px rgba(255, 0, 255, 0.5);
  padding: 0.4rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: none;
  font-family: var(--font-tech);
}

.button--ghost[aria-pressed="false"] {
  --button-border: rgba(138, 143, 179, 0.6);
  --button-shadow: 0 0 10px rgba(138, 143, 179, 0.25);
  --button-border-hover: rgba(138, 143, 179, 0.85);
  --button-shadow-hover: 0 0 14px rgba(138, 143, 179, 0.35);
  color: var(--muted-color);
}

.button--ghost[aria-pressed="true"] {
  --button-border: rgba(0, 243, 255, 0.7);
  --button-shadow: 0 0 14px rgba(0, 243, 255, 0.45);
  --button-border-hover: rgba(0, 243, 255, 0.9);
  --button-shadow-hover: 0 0 18px rgba(0, 243, 255, 0.6);
  color: var(--fg-color);
}

.start-here__link {
  margin-top: 0.4rem;
}

.goh {
  position: relative;
  background: linear-gradient(90deg, rgba(8, 8, 16, 0.95), rgba(36, 4, 52, 0.95), rgba(8, 8, 16, 0.95));
  overflow: hidden;
}

.goh__title {
  margin: 0 0 1.6rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary-color);
  text-shadow: var(--text-shadow);
}

.goh__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr);
}

.goh__card {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0b0e1a;
  border: 2px solid rgba(183, 58, 255, 0.7);
  box-shadow: 0 0 18px rgba(183, 58, 255, 0.35);
}

.goh__card-link {
  display: block;
  color: inherit;
  text-shadow: none;
}

.goh__card-link::after {
  display: none;
}

.goh__card-link:hover,
.goh__card-link:focus {
  color: inherit;
}

.goh__card:focus-within {
  border-color: rgba(0, 243, 255, 0.75);
  box-shadow: 0 0 18px rgba(0, 243, 255, 0.35);
}

.goh__image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.goh__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-color);
  background: linear-gradient(90deg, rgba(8, 8, 16, 0.85), rgba(38, 0, 56, 0.85));
  text-shadow: var(--text-shadow);
}

@media (min-width: 521px) {
  .goh__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 761px) {
  .goh__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact {
  display: grid;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  width: 100%;
}

.contact__hero {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  overflow: hidden;
}

.contact__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 0, 255, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(8, 10, 18, 0.35), rgba(18, 8, 28, 0.55));
  opacity: 0.8;
  pointer-events: none;
}

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

.contact__eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.contact__lead {
  max-width: 55ch;
  margin: 0.5rem 0 0;
}

.contact__meta {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact__meta-panel {
  padding: 1rem 1.1rem;
  background: rgba(8, 10, 18, 0.65);
  border: 1px solid rgba(0, 243, 255, 0.15);
  box-shadow: inset 0 0 12px rgba(0, 243, 255, 0.08);
}

.contact__meta-panel h2 {
  margin-top: 0;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.contact__grid {
  display: grid;
  gap: 1.8rem;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
}

.contact__panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  width: 100%;
  justify-self: stretch;
}

.contact__form {
  display: grid;
  gap: 1rem 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.2rem;
}

.contact__field {
  display: grid;
  gap: 0.45rem;
}

.contact__field label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  background: rgba(8, 10, 18, 0.85);
  border: 1px solid rgba(0, 243, 255, 0.25);
  border-radius: 10px;
  color: var(--fg-color);
  font-family: var(--font-human);
  font-size: 0.95rem;
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
}

.contact__field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
}

.contact__field--full,
.contact__form button,
.contact__note {
  grid-column: 1 / -1;
}

.contact__form button {
  justify-self: start;
  margin-top: 0.5rem;
}

.contact__note {
  margin: 0;
  color: var(--muted-color);
  font-size: 0.95rem;
}

.contact__field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-human);
  font-size: 0.95rem;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
  color: var(--fg-color);
}

.contact__field--checkbox input {
  width: auto;
  margin: 0;
  margin-top: 0.2rem;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  accent-color: var(--primary-color);
}

.contact__field--checkbox input:focus {
  outline: 2px solid rgba(0, 243, 255, 0.45);
  outline-offset: 2px;
  border-color: transparent;
  box-shadow: none;
}

.hotel-confirmation__form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.hotel-confirmation__form button[data-hotel-confirmation-submit] {
  grid-column: auto;
  margin-top: 0;
}

.hotel-confirmation__result {
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  background: rgba(0, 243, 255, 0.08);
  color: var(--fg-color);
}

.hotel-confirmation__result.is-match {
  border-color: rgba(0, 243, 255, 0.45);
  background: rgba(0, 243, 255, 0.15);
}

.hotel-confirmation__result.is-pending {
  border-color: rgba(0, 243, 255, 0.3);
  background: rgba(0, 243, 255, 0.1);
}

.hotel-confirmation__result.is-miss {
  border-color: rgba(224, 224, 255, 0.3);
  background: rgba(224, 224, 255, 0.08);
}

.hotel-confirmation__result.is-error {
  border-color: rgba(255, 41, 117, 0.55);
  background: rgba(255, 41, 117, 0.2);
}

.contact__hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact__aside-text {
  margin-top: 0;
}

.contact__tips h3 {
  margin-top: 1.6rem;
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact__list a {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.contact__aside {
  --panel-border: rgba(255, 41, 117, 0.35);
  --panel-shadow: 0 0 20px rgba(255, 41, 117, 0.25), inset 0 0 16px rgba(255, 41, 117, 0.1);
}

.site-main__content blockquote {
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  border-left: 3px solid var(--primary-color);
  background: rgba(20, 22, 34, 0.6);
  box-shadow: 0 0 12px rgba(0, 243, 255, 0.2);
}

.site-main__content code {
  background: rgba(20, 22, 34, 0.9);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
}

.site-main__content pre {
  background: rgba(20, 22, 34, 0.9);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
}

.news-hero {
  display: grid;
  gap: 0.75rem;
}

.news-hero__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--muted-color);
}

.news-hero__title {
  margin: 0;
}

.news-hero__lede {
  margin: 0;
  max-width: 60ch;
  color: var(--muted-color);
  font-family: var(--font-human);
}

.news-list__header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.news-list__subtitle {
  margin: 0;
  color: var(--muted-color);
  font-family: var(--font-human);
}

.news-list__grid {
  display: grid;
  gap: 1.5rem;
}

.news-feed__title {
  margin: 0 0 1.5rem;
}

.news-feed__list {
  display: grid;
  gap: 2rem;
}

.news-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.news-tag-toggle {
  border: 1px solid rgba(0, 243, 255, 0.45);
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  background: rgba(0, 243, 255, 0.08);
  color: var(--fg-color);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  cursor: pointer;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.news-tag-toggle[aria-pressed="true"] {
  background: rgba(255, 0, 255, 0.18);
  border-color: rgba(255, 0, 255, 0.6);
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.35);
}

.news-tag-toggle:focus-visible {
  outline: 2px solid var(--primary-alt-color);
  outline-offset: 2px;
}

.news-card {
  position: relative;
  padding: 1.5rem;
  display: grid;
  gap: 0.7rem;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-alt-color));
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--muted-color);
}

.news-card__summary {
  margin: 0;
  color: var(--muted-color);
  font-family: var(--font-human);
}

.news-card__tags {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(0, 243, 255, 0.45);
  border-radius: 999px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(0, 243, 255, 0.08);
  color: var(--fg-color);
}

.news-empty {
  padding: 1.5rem;
  font-family: var(--font-human);
  color: var(--muted-color);
}

.news-article {
  display: grid;
  gap: 1.5rem;
}

.news-article[hidden] {
  display: none !important;
}

.news-article.panel {
  padding: 1.75rem;
}

.news-article__header {
  display: grid;
  gap: 0.75rem;
}

.news-article__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--muted-color);
}

.news-article__title {
  margin: 0;
}

.news-article__title-date {
  display: none;
  margin-left: 0.75rem;
  font-family: var(--font-human);
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted-color);
  white-space: nowrap;
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted-color);
}

.news-article__tags-inline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.news-article__meta .news-tag {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-size: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.news-article__meta .news-tag + .news-tag::before {
  content: ", ";
}

.news-article__content {
  font-family: var(--font-human);
}

.news-goh-figure {
  margin: 0 0 1rem;
}

.news-goh-figure__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.news-goh-clear {
  clear: both;
}

@media (min-width: 42rem) {
  .news-goh-figure {
    float: right;
    width: min(240px, 42%);
    margin: 0.15rem 0 1rem 1.25rem;
  }
}

.news-read-more {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.news-article__content > :first-child {
  margin-top: 0;
}

.page-news [data-expand-target].is-collapsed {
  gap: 1.2rem;
}

.page-news [data-expand-target].is-collapsed .news-article.panel {
  padding: 1rem 1.25rem;
}

.page-news [data-expand-target].is-collapsed .news-article__kicker,
.page-news [data-expand-target].is-collapsed .news-article__meta,
.page-news [data-expand-target].is-collapsed .news-article__content {
  display: none;
}

.page-news [data-expand-target].is-collapsed .news-article__title-date {
  display: inline-block;
}

.page-gallery .page-shell {
  margin-top: 0;
  display: block;
}

.page-gallery .page-shell__tracks,
.page-gallery .page-shell__news,
.page-gallery .page-shell__filters {
  display: none !important;
}

.page-gallery .site-main__content.wrapper {
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-gallery .gallery {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0;
}

.page-gallery .gallery__status {
  margin: 0;
  padding: 0.9rem 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted-color);
}

.page-gallery .gallery__rows {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-anchor: none;
}

.page-gallery .gallery__window {
  width: 100%;
  margin: 0;
  padding: 0;
}

.page-gallery .gallery__spacer {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.page-gallery .gallery__sentinel {
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
}

.page-gallery .gallery__row {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
  content-visibility: auto;
  contain: layout paint;
  contain-intrinsic-size: 260px;
}

.page-gallery .gallery__item {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.page-gallery .gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: contain;
  cursor: zoom-in;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.page-gallery .gallery-lightbox {
  --gallery-lightbox-padding: clamp(0.2rem, 0.7vw, 0.55rem);
  position: fixed;
  inset: 0;
  z-index: 100;
  margin: 0;
  padding: var(--gallery-lightbox-padding);
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.page-gallery .gallery-lightbox[hidden] {
  display: none;
}

.page-gallery .gallery-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - (2 * var(--gallery-lightbox-padding)));
  max-height: calc(100vh - (2 * var(--gallery-lightbox-padding)));
  object-fit: contain;
  cursor: default;
}

.site-footer {
  position: relative;
  padding: 5rem 0 3rem;
  background: #101221;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  color: var(--muted-color);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(10, 11, 22, 0.85) 0%, transparent 100%),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 243, 255, 0.04) 50px, transparent 100px);
  opacity: 0.6;
  z-index: 0;
}

.site-footer__content {
  position: relative;
  z-index: 1;
}

@media (min-width: 521px) {
  :root {
    --title-tracking: 0.2em;
    --tagline-tracking: 0.15em;
  }
}

@media (min-width: 761px) {
  :root {
    --nav-gap: 1.6rem;
    --nav-size: 0.8rem;
    --nav-tracking: 0.2em;
    --site-nav-offset: 4rem;
    --countdown-margin-top: 2.5rem;
  }

  .news-list__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
}

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

/* Penguicon 2027: Into The Multiverse */

:root {
  --primary-color: #2ce6e6;
  --primary-alt-color: #ff3fb4;
  --accent-color: #ffbf4a;
  --fg-color: #f4f0ff;
  --bg-color: #070817;
  --panel-color: #111229;
  --muted-color: #aaa7c5;
  --glow-shadow: 0 0 18px rgba(44, 230, 230, 0.5);
  --text-shadow: 0 0 12px rgba(109, 56, 255, 0.55);
  --max-width: 1180px;
}

body {
  background-color: var(--bg-color);
  background-image:
    radial-gradient(circle at 84% 12%, rgba(109, 56, 255, 0.26), transparent 38rem),
    radial-gradient(circle at 10% 46%, rgba(255, 63, 180, 0.12), transparent 32rem),
    linear-gradient(160deg, #070817 0%, #0c0c20 54%, #070817 100%);
}

.site-header {
  --header-clip: none;
  border-bottom: 1px solid rgba(109, 56, 255, 0.34);
}

.site-header__bg::before {
  background:
    radial-gradient(circle at 18% 80%, rgba(44, 230, 230, 0.14), transparent 25rem),
    radial-gradient(circle at 82% 10%, rgba(255, 63, 180, 0.14), transparent 25rem),
    linear-gradient(120deg, rgba(7, 8, 23, 0.98), rgba(17, 10, 43, 0.96));
}

.site-header__bg::after {
  background-image:
    linear-gradient(90deg, transparent 49.9%, rgba(44, 230, 230, 0.08) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 63, 180, 0.06) 50%, transparent 50.1%);
  background-size: 5rem 5rem;
  opacity: 0.5;
}

.site-header__content {
  margin-top: 0;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.site-header__lockup {
  --lockup-rotate: 0deg;
  --lockup-skew-x: 0deg;
  --lockup-translate-y: 0;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.site-header__title {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-header__tagline {
  padding: 0;
  background: transparent;
  border: 0;
}

.multiverse-hero {
  position: relative;
  min-height: clamp(34rem, 72vw, 50rem);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(44, 230, 230, 0.3);
}

.multiverse-scene,
.multiverse-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.multiverse-scene {
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(109, 56, 255, 0.24), transparent 34%),
    radial-gradient(circle at 64% 76%, rgba(255, 63, 180, 0.16), transparent 25%),
    linear-gradient(145deg, #08091b 0%, #0c0a24 48%, #10103a 100%);
}

.multiverse-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(112deg, transparent 0 5.8rem, rgba(44, 230, 230, 0.045) 5.9rem 6rem),
    repeating-linear-gradient(22deg, transparent 0 7.8rem, rgba(255, 63, 180, 0.035) 7.9rem 8rem);
  mask-image: linear-gradient(90deg, transparent 10%, #000 48%);
}

.multiverse-scene__stars {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(44, 230, 230, 0.75) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 191, 74, 0.75) 0 1px, transparent 1.5px);
  background-position: 0 0, 2.8rem 4.1rem, 7.2rem 1.8rem;
  background-size: 8rem 8rem, 11rem 11rem, 13rem 13rem;
  mask-image: linear-gradient(90deg, transparent 15%, #000 50%);
}

.portal {
  --portal-color: 44, 230, 230;
  position: absolute;
  z-index: 1;
  width: clamp(10rem, 20vw, 21rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: clamp(0.25rem, 0.5vw, 0.55rem) solid rgba(var(--portal-color), 0.78);
  border-radius: 50%;
  background:
    conic-gradient(from 30deg, transparent, rgba(var(--portal-color), 0.42), transparent 32%, rgba(var(--portal-color), 0.2), transparent 70%),
    rgba(7, 8, 23, 0.6);
  box-shadow:
    0 0 1rem rgba(var(--portal-color), 0.85),
    0 0 4rem rgba(var(--portal-color), 0.38),
    inset 0 0 1.8rem rgba(var(--portal-color), 0.62);
}

.portal::before,
.portal::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.portal::before {
  inset: -8%;
  border: 1px solid rgba(var(--portal-color), 0.45);
  background:
    repeating-conic-gradient(from 12deg, rgba(var(--portal-color), 0.58) 0 1deg, transparent 1deg 12deg);
  mask-image: radial-gradient(circle, transparent 62%, #000 63% 66%, transparent 67%);
}

.portal::after {
  inset: 8%;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 1.3rem rgba(var(--portal-color), 0.34);
}

.portal__world {
  position: absolute;
  inset: 14%;
  overflow: hidden;
  border-radius: 50%;
  background: var(--portal-world);
}

.portal__world::before,
.portal__world::after {
  content: "";
  position: absolute;
}

.portal--forest {
  --portal-color: 44, 230, 230;
  top: 5%;
  right: 29%;
}

.portal__world.portal-world--forest {
  --portal-world:
    radial-gradient(ellipse at 50% 72%, rgba(228, 255, 235, 0.9) 0 4%, transparent 5%),
    radial-gradient(ellipse at 28% 70%, #36d99b 0 7%, transparent 8%),
    radial-gradient(ellipse at 70% 62%, #18a781 0 9%, transparent 10%),
    linear-gradient(180deg, #091b40, #0a6970 58%, #052e36);
}

.portal__world.portal-world--forest::before {
  left: 46%;
  bottom: -10%;
  width: 8%;
  height: 82%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(190, 255, 245, 0.95), rgba(44, 230, 230, 0));
  box-shadow: 0 0 1rem rgba(44, 230, 230, 0.8);
}

.portal--city {
  --portal-color: 255, 63, 180;
  top: 16%;
  right: 7%;
  width: clamp(14rem, 29vw, 30rem);
}

.portal__world.portal-world--city {
  --portal-world:
    linear-gradient(90deg, transparent 0 10%, rgba(44, 230, 230, 0.35) 10% 13%, transparent 13% 19%, rgba(255, 63, 180, 0.48) 19% 25%, transparent 25% 34%, rgba(92, 72, 255, 0.62) 34% 43%, transparent 43% 51%, rgba(255, 63, 180, 0.5) 51% 57%, transparent 57% 69%, rgba(44, 230, 230, 0.4) 69% 76%, transparent 76%),
    linear-gradient(180deg, #161348 0 34%, #3c125f 72%, #10092d);
}

.portal__world.portal-world--city::before {
  inset: 42% 0 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 9%, rgba(255, 255, 255, 0.55) 9.5% 10%),
    repeating-linear-gradient(0deg, transparent 0 12%, rgba(44, 230, 230, 0.38) 12.5% 13%);
  transform: perspective(12rem) rotateX(58deg);
  transform-origin: bottom;
}

.portal--circuit {
  --portal-color: 44, 230, 230;
  top: -7%;
  right: -5%;
  width: clamp(9rem, 17vw, 18rem);
}

.portal__world.portal-world--circuit {
  --portal-world:
    repeating-linear-gradient(90deg, transparent 0 1.8rem, rgba(44, 230, 230, 0.35) 1.85rem 1.92rem),
    repeating-linear-gradient(0deg, transparent 0 1.8rem, rgba(255, 63, 180, 0.25) 1.85rem 1.92rem),
    radial-gradient(circle at 55% 48%, #8148ff, #0c153c 55%);
}

.portal__world.portal-world--circuit::before {
  inset: 20%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow:
    0 0 1rem rgba(44, 230, 230, 0.8),
    inset 0 0 1rem rgba(255, 63, 180, 0.5);
}

.portal--crystal {
  --portal-color: 109, 56, 255;
  right: -1%;
  bottom: -8%;
  width: clamp(11rem, 22vw, 23rem);
}

.portal__world.portal-world--crystal {
  --portal-world:
    conic-gradient(from 20deg at 50% 75%, #29135d, #2ce6e6, #7444ff, #ff3fb4, #29135d);
}

.portal__world.portal-world--crystal::before {
  left: 27%;
  bottom: -8%;
  width: 18%;
  height: 82%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), #2ce6e6 34%, #6d38ff 70%);
  clip-path: polygon(50% 0, 100% 35%, 78% 100%, 20% 100%, 0 35%);
  box-shadow: 4rem 1rem 0 rgba(255, 63, 180, 0.7), 7rem 2.5rem 0 rgba(44, 230, 230, 0.65);
}

.portal--clockwork {
  --portal-color: 255, 191, 74;
  right: 29%;
  bottom: -10%;
  width: clamp(10rem, 18vw, 19rem);
}

.portal__world.portal-world--clockwork {
  --portal-world:
    repeating-conic-gradient(from 8deg, #ffbf4a 0 3deg, transparent 3deg 18deg),
    radial-gradient(circle, #ffbf4a 0 5%, transparent 6% 30%, rgba(255, 191, 74, 0.5) 31% 33%, transparent 34%),
    linear-gradient(145deg, #3a170c, #160a1e);
}

.portal__world {
  transition: opacity 180ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.multiverse-scene.is-shuffling .portal__world {
  opacity: 0;
  transform: scale(0.82) rotate(-5deg);
}

.multiverse-scene__shuffle {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.multiverse-scene__shuffle:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: -0.5rem;
}

.portal-click-cue {
  position: absolute;
  z-index: 6;
  top: 34%;
  right: 23%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.portal-click-cue__pointer {
  position: absolute;
  top: -0.3rem;
  left: -0.55rem;
  color: #f7f5ff;
  font-family: Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  opacity: 0;
  filter:
    drop-shadow(0 0 1px #080917)
    drop-shadow(0 0 0.45rem rgba(44, 230, 230, 0.9));
  transform: translate(0.8rem, 0.9rem) rotate(-24deg) scale(1);
  transform-origin: 18% 8%;
  animation: portalPointerCue 15s var(--portal-click-cue-delay, 1s) infinite;
}

.portal-click-cue__ripple {
  position: absolute;
  inset: 0;
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid rgba(44, 230, 230, 0.95);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.portal-click-cue__ripple--one {
  animation: portalClickRippleOne 15s var(--portal-click-cue-delay, 1s) infinite;
}

.portal-click-cue__ripple--two {
  animation: portalClickRippleTwo 15s var(--portal-click-cue-delay, 1s) infinite;
}

.portal-click-cue__ripple--three {
  animation: portalClickRippleThree 15s var(--portal-click-cue-delay, 1s) infinite;
}

.portal-click-cue.is-reset {
  --portal-click-cue-delay: 15s;
}

@keyframes portalPointerCue {
  0%,
  18.1%,
  100% {
    opacity: 0;
  }

  2.7%,
  13.3% {
    opacity: 1;
  }

  2.7% {
    transform: translate(0.8rem, 0.9rem) rotate(-24deg) scale(1);
  }

  6.4%,
  9.1% {
    transform: translate(0, 0) rotate(-24deg) scale(0.86);
  }

  11.7% {
    transform: translate(0.15rem, 0.2rem) rotate(-24deg) scale(1);
  }
}

@keyframes portalClickRippleOne {
  0%,
  6.9% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }

  8% {
    opacity: 0.9;
  }

  15.5%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(6);
  }
}

@keyframes portalClickRippleTwo {
  0%,
  8.5% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }

  9.6% {
    opacity: 0.75;
  }

  17.1%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(8);
  }
}

@keyframes portalClickRippleThree {
  0%,
  10.1% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }

  11.2% {
    opacity: 0.6;
  }

  18.7%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(10);
  }
}

.portal__world.portal-world--ocean {
  --portal-world:
    radial-gradient(circle at 68% 26%, #d8f8ff 0 16%, rgba(126, 213, 255, 0.45) 17%, transparent 18%),
    repeating-radial-gradient(ellipse at 42% 108%, transparent 0 11%, rgba(60, 218, 255, 0.72) 12% 13%, transparent 14% 20%),
    linear-gradient(180deg, #07132f 0 45%, #075d83 46%, #041d43 100%);
}

.portal__world.portal-world--ocean::before {
  inset: auto auto 32% 66%;
  width: 5%;
  height: 24%;
  border-radius: 45% 45% 10% 10%;
  background: #edfaff;
  box-shadow: 0 0 1rem rgba(255, 191, 74, 0.9);
  transform: none;
}

.portal__world.portal-world--ocean::after {
  inset: auto auto 24% 58%;
  width: 24%;
  height: 9%;
  border-radius: 50%;
  background: #020818;
  clip-path: none;
  transform: rotate(-4deg);
}

.portal__world.portal-world--desert {
  --portal-world:
    radial-gradient(circle at 28% 25%, #ffd06a 0 8%, transparent 9%),
    radial-gradient(circle at 68% 38%, #fff0a2 0 5%, transparent 6%),
    linear-gradient(180deg, #b62e70 0%, #f66b61 38%, #ffbd54 70%, #58204f 100%);
}

.portal__world.portal-world--desert::before {
  inset: auto auto -18% -12%;
  width: 92%;
  height: 58%;
  border-radius: 50% 60% 0 0;
  background: linear-gradient(160deg, #ffad3d, #a52a62 62%, #401442);
  box-shadow: 5rem -0.8rem 0 #d94b59, 10rem 0.5rem 0 #6f2052;
  transform: rotate(7deg);
}

.portal__world.portal-world--desert::after {
  inset: auto -16% -24% auto;
  width: 92%;
  height: 58%;
  border-radius: 60% 50% 0 0;
  background: linear-gradient(145deg, #f77c45, #6a1f50 70%);
  clip-path: none;
  transform: rotate(-8deg);
}

.portal__world.portal-world--library {
  --portal-world:
    radial-gradient(ellipse at 50% 82%, rgba(255, 226, 147, 0.94) 0 5%, rgba(188, 75, 255, 0.58) 6%, transparent 22%),
    repeating-linear-gradient(90deg, #0b0b31 0 8%, #5b247d 8.5% 9.5%, #151242 10% 18%),
    repeating-linear-gradient(0deg, transparent 0 9%, rgba(255, 191, 74, 0.34) 9.5% 11%, transparent 11.5% 18%),
    linear-gradient(180deg, #12082e, #361458);
}

.portal__world.portal-world--library::before {
  inset: auto auto 12% 45%;
  width: 10%;
  height: 34%;
  border-radius: 50% 50% 0 0;
  background: #fff0b1;
  box-shadow: 0 0 1.4rem #ff3fb4, 0 0 2.8rem #6d38ff;
  transform: none;
}

.portal__world.portal-world--library::after {
  inset: 52% 18% -12%;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 14%, rgba(255, 191, 74, 0.28) 14.5% 15%),
    repeating-linear-gradient(0deg, transparent 0 16%, rgba(44, 230, 230, 0.24) 16.5% 17%);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  transform: none;
}

.portal__world.portal-world--islands {
  --portal-world:
    radial-gradient(ellipse at 18% 24%, #fff 0 7%, transparent 8%),
    radial-gradient(ellipse at 32% 20%, #e9fbff 0 10%, transparent 11%),
    radial-gradient(ellipse at 78% 34%, #fff 0 9%, transparent 10%),
    linear-gradient(180deg, #17cde4, #87f2e7 58%, #d7fff3);
}

.portal__world.portal-world--islands::before {
  inset: 26% auto auto 28%;
  width: 38%;
  height: 34%;
  border-radius: 42% 52% 12% 10%;
  background: linear-gradient(180deg, #8cf04f 0 22%, #103e56 23% 58%, transparent 59%);
  box-shadow: 4.8rem 2.4rem 0 -0.8rem rgba(18, 77, 90, 0.92), -3.6rem 4.5rem 0 -1.2rem rgba(18, 77, 90, 0.88);
  clip-path: polygon(0 18%, 100% 0, 72% 100%, 32% 92%);
  transform: rotate(-3deg);
}

.portal__world.portal-world--islands::after {
  inset: 46% auto auto 46%;
  width: 5%;
  height: 44%;
  border-radius: 50%;
  background: linear-gradient(180deg, #eaffff, rgba(44, 230, 230, 0.15));
  clip-path: none;
  box-shadow: 5.1rem 3.4rem 0 -0.25rem rgba(226, 255, 255, 0.8);
  transform: none;
}

.portal__world.portal-world--cavern {
  --portal-world:
    radial-gradient(ellipse at 50% 105%, rgba(44, 230, 230, 0.9) 0 8%, rgba(44, 230, 230, 0.2) 9% 18%, transparent 19%),
    radial-gradient(ellipse at 50% -5%, #082e48 0 40%, transparent 41%),
    linear-gradient(145deg, #061523, #17235d 48%, #07111f);
}

.portal__world.portal-world--cavern::before {
  inset: 18% 8% 14%;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 18% 32%, #ff77dc 0 7%, transparent 8%),
    linear-gradient(90deg, transparent 16%, #b24df0 16.5% 19%, transparent 19.5%),
    radial-gradient(ellipse at 76% 24%, #b967ff 0 10%, transparent 11%),
    linear-gradient(90deg, transparent 73%, #6d38ff 73.5% 77%, transparent 77.5%),
    radial-gradient(ellipse at 56% 62%, #ff3fb4 0 6%, transparent 7%),
    linear-gradient(90deg, transparent 54%, #2ce6e6 54.5% 57%, transparent 57.5%);
  box-shadow: none;
  transform: none;
}

.portal__world.portal-world--cavern::after {
  inset: auto auto -8% 25%;
  width: 50%;
  height: 74%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(44, 230, 230, 0), #42fff1 46% 54%, rgba(44, 230, 230, 0));
  clip-path: polygon(45% 0, 64% 0, 54% 25%, 72% 48%, 48% 66%, 62% 100%, 26% 100%, 38% 68%, 20% 48%, 48% 24%);
  filter: drop-shadow(0 0 0.6rem #2ce6e6);
  transform: none;
}

.portal__world.portal-world--reef {
  --portal-world:
    radial-gradient(ellipse at 72% 18%, rgba(255, 255, 255, 0.82) 0 5%, transparent 6%),
    repeating-linear-gradient(112deg, transparent 0 12%, rgba(219, 255, 255, 0.2) 13% 15%, transparent 16% 25%),
    linear-gradient(180deg, #54dcf2, #087ba5 58%, #073457);
}

.portal__world.portal-world--reef::before {
  inset: 18% auto auto -12%;
  width: 78%;
  height: 22%;
  border-radius: 50% 48% 42% 10%;
  background:
    radial-gradient(circle at 22% 15%, #ff8bca 0 8%, transparent 9%),
    radial-gradient(circle at 48% 5%, #ffbd4a 0 9%, transparent 10%),
    linear-gradient(155deg, #714dd8, #143e79);
  box-shadow: 5rem 3.8rem 0 -0.6rem #175d85, 8rem 7rem 0 -1rem #432d83;
  transform: rotate(-7deg);
}

.portal__world.portal-world--reef::after {
  inset: 18% 5% 8%;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 18% 72%, #ff5fae 0 4%, transparent 5%),
    radial-gradient(ellipse at 74% 62%, #ffbd4a 0 5%, transparent 6%),
    radial-gradient(ellipse at 52% 86%, #8c6bff 0 6%, transparent 7%);
  clip-path: none;
  filter: drop-shadow(0 0 0.5rem rgba(152, 246, 255, 0.65));
  transform: none;
}

.portal__world.portal-world--aurora {
  --portal-world:
    repeating-radial-gradient(ellipse at 45% -12%, transparent 0 9%, rgba(83, 255, 184, 0.38) 10% 13%, transparent 14% 20%),
    linear-gradient(165deg, #081842, #402173 48%, #78dbc4 100%);
}

.portal__world.portal-world--aurora::before {
  inset: auto auto 16% 33%;
  width: 34%;
  height: 27%;
  border-radius: 50% 50% 8% 8%;
  border: 2px solid rgba(213, 244, 255, 0.85);
  background:
    repeating-linear-gradient(90deg, transparent 0 18%, rgba(129, 214, 255, 0.4) 19% 22%),
    linear-gradient(180deg, #244277, #0a1737);
  box-shadow: 0 1.2rem 0 -0.25rem #101c3c;
  transform: none;
}

.portal__world.portal-world--aurora::after {
  inset: auto -8% -5%;
  width: 116%;
  height: 44%;
  border-radius: 0;
  background: linear-gradient(145deg, #eef7ff, #7195c0 58%, #243b69);
  clip-path: polygon(0 75%, 18% 22%, 34% 70%, 52% 5%, 70% 68%, 84% 30%, 100% 78%, 100% 100%, 0 100%);
  transform: none;
}

.portal__world.portal-world--meadow {
  --portal-world:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.88) 0 3%, rgba(144, 239, 255, 0.5) 4% 6%, transparent 7%),
    radial-gradient(circle at 30% 48%, rgba(255, 255, 255, 0.76) 0 5%, rgba(165, 249, 255, 0.42) 6% 8%, transparent 9%),
    linear-gradient(180deg, #8fe8ff 0 48%, #71bb3f 49%, #183b25 100%);
}

.portal__world.portal-world--meadow::before {
  inset: 10% auto auto 8%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffbd4a 0 18%, transparent 19%),
    repeating-conic-gradient(#f25ba9 0 10deg, #d868eb 11deg 23deg, transparent 24deg 30deg);
  box-shadow: 7rem 2.8rem 0 -1.1rem rgba(255, 210, 75, 0.92);
  transform: rotate(-8deg);
}

.portal__world.portal-world--meadow::after {
  inset: auto 8% -8% 13%;
  width: auto;
  height: 68%;
  border-radius: 0;
  background:
    repeating-linear-gradient(78deg, transparent 0 15%, rgba(37, 104, 43, 0.92) 16% 19%, transparent 20% 28%);
  clip-path: none;
  transform: none;
}

.portal__world.portal-world--temple {
  --portal-world:
    radial-gradient(ellipse at 18% 34%, #fff 0 8%, transparent 9%),
    radial-gradient(ellipse at 80% 18%, #fff7df 0 10%, transparent 11%),
    linear-gradient(180deg, #63c7f2, #e7d5ac 64%, #9e6b49);
}

.portal__world.portal-world--temple::before {
  inset: 12% auto -4% 31%;
  width: 40%;
  height: 88%;
  border-radius: 5% 5% 0 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 13%, rgba(70, 48, 45, 0.3) 14% 16%),
    linear-gradient(90deg, #7a5545, #e5c18b 48%, #7c5746);
  box-shadow: -2.1rem 5.5rem 0 -0.7rem #9c7254, 2.4rem 7rem 0 -0.8rem #8a604d;
  clip-path: polygon(32% 0, 68% 0, 72% 16%, 88% 16%, 82% 34%, 100% 34%, 88% 100%, 12% 100%, 0 34%, 18% 34%, 12% 16%, 28% 16%);
  transform: none;
}

.portal__world.portal-world--temple::after {
  inset: -12% auto auto 47%;
  width: 8%;
  height: 82%;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(221, 255, 255, 0), #eaffff 65%, rgba(255, 255, 255, 0.2));
  clip-path: none;
  filter: drop-shadow(0 0 0.5rem rgba(214, 255, 255, 0.9));
  transform: none;
}

.portal__world.portal-world--greenhouse {
  --portal-world:
    radial-gradient(circle at 72% 23%, #f58cae 0 14%, #844a9d 15% 19%, transparent 20%),
    radial-gradient(circle at 82% 16%, transparent 0 21%, rgba(255, 191, 74, 0.75) 22% 23%, transparent 24%),
    linear-gradient(150deg, #07142f, #2c174d 66%, #140d2c);
}

.portal__world.portal-world--greenhouse::before {
  inset: 8% 10% 0;
  width: auto;
  height: auto;
  border: 3px solid rgba(105, 224, 255, 0.68);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, transparent 0 18%, rgba(255, 191, 74, 0.28) 19% 20%, transparent 21% 30%);
  box-shadow: inset 0 0 1.2rem rgba(255, 63, 180, 0.3);
  transform: none;
}

.portal__world.portal-world--greenhouse::after {
  inset: auto 4% 5%;
  width: auto;
  height: 38%;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 14% 72%, #32c985 0 10%, transparent 11%),
    radial-gradient(ellipse at 45% 42%, #6ee85d 0 12%, transparent 13%),
    radial-gradient(ellipse at 78% 62%, #db55b4 0 13%, transparent 14%),
    linear-gradient(180deg, transparent, #172f2d);
  clip-path: none;
  transform: none;
}

.multiverse-scene__traveler {
  position: absolute;
  z-index: 4;
  right: 21%;
  bottom: 2%;
  width: clamp(5.25rem, 8vw, 8rem);
  height: clamp(9rem, 14vw, 14rem);
  filter:
    drop-shadow(-0.12rem 0 0.15rem rgba(44, 230, 230, 0.75))
    drop-shadow(0.12rem 0 0.18rem rgba(255, 63, 180, 0.58))
    drop-shadow(0 0 1.2rem rgba(44, 230, 230, 0.42));
}

.multiverse-scene__traveler-shadow {
  position: absolute;
}

.multiverse-scene__traveler-figure {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.multiverse-scene__traveler-shadow {
  z-index: 1;
  left: 50%;
  bottom: -28%;
  width: 178%;
  height: 74%;
  background: linear-gradient(180deg, rgba(3, 5, 17, 0.92), rgba(3, 5, 17, 0));
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  opacity: 0.78;
  transform: translateX(-50%);
}

.multiverse-scene__horizon {
  position: absolute;
  z-index: 3;
  left: 31%;
  right: -10%;
  bottom: -32%;
  height: 48%;
  border: 1px solid rgba(109, 56, 255, 0.45);
  border-radius: 50% 50% 0 0;
  background:
    repeating-radial-gradient(ellipse at 50% 0%, transparent 0 2.4rem, rgba(109, 56, 255, 0.25) 2.45rem 2.5rem),
    repeating-linear-gradient(90deg, transparent 0 3rem, rgba(44, 230, 230, 0.18) 3.05rem 3.1rem),
    linear-gradient(180deg, rgba(18, 13, 52, 0.86), #070817);
}

.multiverse-hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 23, 0.98) 0%, rgba(7, 8, 23, 0.88) 29%, rgba(7, 8, 23, 0.26) 63%, rgba(7, 8, 23, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 8, 23, 0.9) 0%, transparent 35%, rgba(7, 8, 23, 0.25) 100%);
}

.multiverse-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  padding-block: clamp(4rem, 9vw, 8rem);
  pointer-events: none;
}

.multiverse-intro__kicker,
.portal-status__signal,
.event-coordinate__label {
  margin: 0 0 0.7rem;
  color: var(--primary-color);
  font-family: var(--font-tech);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.multiverse-hero__lockup {
  width: fit-content;
  max-width: 100%;
  pointer-events: auto;
}

.multiverse-hero__event-name {
  margin: 0;
  color: var(--fg-color);
  font-size: var(--title-size) !important;
  font-weight: 700;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  text-transform: uppercase;
  text-shadow: 0 0 45px rgba(109, 56, 255, 0.58);
}

.multiverse-hero__event-name span {
  color: var(--primary-color);
  text-shadow: 0 0 24px rgba(44, 230, 230, 0.55);
}

.multiverse-hero__theme {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0.75rem;
  margin: 0.35rem 0 0 clamp(1rem, 4vw, 3rem);
  padding-left: clamp(0.75rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(255, 63, 180, 0.72);
  text-transform: uppercase;
}

.multiverse-hero__theme-prefix {
  padding-bottom: 0.25rem;
  color: var(--accent-color);
  font-family: var(--font-tech);
  font-size: clamp(0.62rem, 1.2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.multiverse-hero__theme-name {
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.9;
  -webkit-text-stroke: 1px var(--primary-color);
  text-shadow: 0 0 26px rgba(44, 230, 230, 0.4);
}

.multiverse-hero__lede {
  display: flex;
  align-items: center;
  height: 3em;
  max-width: 34rem;
  margin: 1.75rem 0 1.25rem;
  color: #e1ddf4;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
  pointer-events: auto;
  transition: opacity 180ms ease;
}

.multiverse-hero__lede.is-shuffling {
  opacity: 0;
}

.multiverse-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  color: var(--accent-color);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: auto;
}

.multiverse-hero__facts span + span::before {
  content: "◈";
  margin-right: 1.5rem;
  color: var(--primary-alt-color);
}

.multiverse-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
  pointer-events: auto;
}

.multiverse-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.multiverse-intro__kicker {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.multiverse-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-transform: none;
}

.multiverse-intro__copy {
  color: #c6c3da;
}

.multiverse-intro__copy p:first-child {
  margin-top: 0;
}

.multiverse-intro--copy-only {
  grid-template-columns: minmax(0, 52rem);
  padding-bottom: 0.5rem;
}

.multiverse-intro--copy-only .multiverse-intro__copy {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.homepage-video {
  max-width: none;
  padding-top: 0;
}

.homepage-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(44, 230, 230, 0.42);
  background: #050611;
  box-shadow:
    0 0 2rem rgba(44, 230, 230, 0.14),
    0 0 3.5rem rgba(255, 63, 180, 0.08);
}

.homepage-video__frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 63, 180, 0.18);
  pointer-events: none;
}

.homepage-video__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.universe-card {
  position: relative;
  min-height: 24rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, var(--universe-glow), transparent 42%),
    linear-gradient(155deg, rgba(23, 23, 53, 0.98), rgba(8, 8, 22, 0.98));
  border: 1px solid var(--universe-border);
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.35);
}

.universe-card::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid var(--universe-border);
  border-radius: 50%;
  box-shadow: 0 0 35px var(--universe-glow), inset 0 0 22px var(--universe-glow);
}

.universe-card--cyan {
  --universe-border: rgba(44, 230, 230, 0.58);
  --universe-glow: rgba(44, 230, 230, 0.2);
}

.universe-card--magenta {
  --universe-border: rgba(255, 63, 180, 0.58);
  --universe-glow: rgba(255, 63, 180, 0.2);
}

.universe-card--amber {
  --universe-border: rgba(255, 191, 74, 0.58);
  --universe-glow: rgba(255, 191, 74, 0.2);
}

.universe-card__number {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  margin: 0;
  color: var(--universe-border);
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.universe-card h2 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.universe-card p:last-child {
  position: relative;
  margin: 0;
  color: var(--muted-color);
}

.portal-status {
  position: relative;
  background:
    linear-gradient(90deg, rgba(15, 8, 35, 0.98), rgba(32, 9, 50, 0.96), rgba(7, 23, 35, 0.98));
  border-block: 1px solid rgba(255, 63, 180, 0.3);
}

.portal-status .wrapper {
  max-width: 54rem;
  margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
}

.portal-status h1,
.portal-status h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-transform: none;
}

.portal-status p:not(.portal-status__signal) {
  max-width: 48rem;
  color: #c6c3da;
}

.event-coordinate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  border-top: 1px solid rgba(44, 230, 230, 0.22);
}

.event-coordinate h2,
.event-coordinate__venue {
  margin: 0;
  color: var(--fg-color);
  font-family: var(--font-tech);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.home-countdown--hero {
  width: min(100%, 34rem);
  max-width: 34rem;
  margin: 1.5rem 0 0;
  padding: 0.9rem 0 0;
  border: 0;
  border-top: 1px solid rgba(44, 230, 230, 0.36);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: auto;
}

.home-countdown--hero::before {
  top: -1px;
  right: auto;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-alt-color), transparent);
}

.home-countdown--hero::after {
  display: none;
}

.home-countdown--hero .home-countdown__kicker {
  margin: 0;
  color: var(--primary-color);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.home-countdown--hero .home-countdown__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.home-countdown--hero .home-countdown__item {
  min-width: 0;
  padding: 0.55rem 0.65rem 0.5rem;
  border-color: rgba(44, 230, 230, 0.18);
  background: rgba(7, 8, 23, 0.66);
  box-shadow: inset 0 0 0.8rem rgba(44, 230, 230, 0.06);
  text-align: left;
}

.home-countdown--hero .home-countdown__number {
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1;
}

.home-countdown--hero .home-countdown__label {
  margin-top: 0.25rem;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

@media (max-width: 760px) {
  .multiverse-hero {
    min-height: 48rem;
    align-items: end;
  }

  .multiverse-hero__veil {
    background:
      linear-gradient(0deg, rgba(7, 8, 23, 1) 0%, rgba(7, 8, 23, 0.88) 42%, rgba(7, 8, 23, 0.18) 82%),
      linear-gradient(90deg, rgba(7, 8, 23, 0.65), transparent);
  }

  .portal-click-cue {
    top: 23%;
    right: 25%;
  }

  .portal--forest {
    top: 3%;
    right: 28%;
  }

  .portal--city {
    top: 11%;
    right: -29%;
    width: 19rem;
  }

  .portal--circuit {
    top: -4%;
    right: -14%;
  }

  .portal--clockwork {
    right: 24%;
    bottom: 3%;
  }

  .portal--crystal {
    right: -24%;
    bottom: 0;
  }

  .multiverse-scene__traveler {
    top: 20%;
    right: auto;
    bottom: auto;
    left: 6%;
    width: 4rem;
    height: 7rem;
  }

  .multiverse-hero__content {
    padding-top: 14rem;
    padding-bottom: 2.5rem;
  }

  .multiverse-hero__event-name {
    font-size: clamp(1.75rem, 8.5vw, 2.25rem) !important;
    letter-spacing: 0.06em !important;
  }

  .multiverse-hero__theme {
    gap: 0.5rem;
    margin-left: 0.6rem;
    padding-left: 0.65rem;
  }

  .multiverse-hero__theme-prefix {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .multiverse-hero__theme-name {
    font-size: clamp(1.3rem, 6.6vw, 1.65rem);
  }

  .multiverse-hero__lede {
    height: 4.5em;
  }

  .multiverse-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .multiverse-hero__actions .button {
    width: 100%;
    min-height: 2.75rem;
    justify-content: center;
  }

  .multiverse-hero__actions .button--ghost {
    padding: 0.55rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .home-countdown--hero {
    width: 100%;
    margin-top: 1.25rem;
    padding-top: 0.75rem;
  }

  .home-countdown--hero .home-countdown__grid {
    gap: 0.35rem;
  }

  .home-countdown--hero .home-countdown__item {
    padding: 0.5rem 0.4rem 0.45rem;
    text-align: center;
  }

  .home-countdown--hero .home-countdown__number {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .home-countdown--hero .home-countdown__label {
    font-size: 0.54rem;
  }

  .multiverse-hero__facts {
    display: grid;
  }

  .multiverse-hero__facts span + span::before {
    content: none;
  }

  .multiverse-intro,
  .universe-grid,
  .event-coordinate {
    grid-template-columns: 1fr;
  }

  .universe-card {
    min-height: 18rem;
  }
}

/* Reproducible Open Graph image source at /social-card/. */

.social-card-page {
  width: 1200px;
  height: 630px;
  margin: 0;
  overflow: hidden;
}

.social-card {
  position: relative;
  isolation: isolate;
  width: 1200px;
  height: 630px;
  overflow: hidden;
  background: #070817;
}

.social-card .multiverse-scene {
  z-index: -2;
}

.social-card .portal {
  width: 250px;
}

.social-card .portal--forest {
  top: 4%;
  right: 27%;
}

.social-card .portal--city {
  top: 16%;
  right: 3%;
  width: 350px;
}

.social-card .portal--circuit {
  top: -10%;
  right: -5%;
  width: 205px;
}

.social-card .portal--crystal {
  right: -2%;
  bottom: -21%;
  width: 275px;
}

.social-card .portal--clockwork {
  right: 28%;
  bottom: -17%;
  width: 220px;
}

.social-card .multiverse-scene__traveler {
  right: 19%;
  bottom: 0;
  width: 78px;
  height: 142px;
}

.social-card .multiverse-scene__horizon {
  left: 27%;
  bottom: -39%;
}

.social-card__veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 23, 0.99) 0%, rgba(7, 8, 23, 0.92) 38%, rgba(7, 8, 23, 0.18) 66%, rgba(7, 8, 23, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 8, 23, 0.82), transparent 35%);
}

.social-card__content {
  position: relative;
  z-index: 2;
  width: 660px;
  padding: 92px 0 0 72px;
  text-transform: uppercase;
}

.social-card__content h1 {
  margin: 0;
  color: var(--fg-color);
  font-family: var(--font-display);
  font-size: 104px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.86;
  text-shadow: 0 0 45px rgba(109, 56, 255, 0.58);
}

.social-card__content h1 span {
  display: block;
  margin-top: 16px;
  color: var(--primary-color);
  font-size: 132px;
  text-shadow: 0 0 28px rgba(44, 230, 230, 0.58);
}

.social-card__dates {
  margin: 38px 0 0;
  color: var(--accent-color);
  font-family: var(--font-tech);
  font-size: 43px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.social-card__venue {
  margin: 20px 0 0;
  color: var(--fg-color);
  font-family: var(--font-tech);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
