:root {
  --bg: #04050c;
  --bg-deep: #02030a;
  --panel: #090a18;
  --panel-soft: #0e0d23;
  --ink: #f7f7ff;
  --muted: #aaa9c2;
  --cyan: #58efff;
  --blue: #5d83ff;
  --violet: #8d45ff;
  --pink: #f431e8;
  --green: #5cff82;
  --gold: #ffbd48;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --tech: "Chakra Petch", system-ui, sans-serif;
  --header-height: 106px;
  --page: min(94.5vw, 1830px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--bg-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 25%, rgba(73, 24, 154, .12), transparent 30rem),
    var(--bg);
  font-family: var(--tech);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #05050d;
  background: var(--cyan);
}

img,
svg {
  display: block;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #05050d;
  background: var(--cyan);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.cursor-glow {
  position: fixed;
  z-index: 100;
  width: 26rem;
  height: 26rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 229, 255, .07), rgba(118, 48, 255, .025) 42%, transparent 70%);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .3s ease;
  mix-blend-mode: screen;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 14px 38px;
  transition: height .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-fixed {
  position: fixed;
  height: 78px;
  border-bottom: 1px solid rgba(106, 230, 255, .12);
  background: rgba(3, 4, 12, .82);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  justify-self: start;
  width: 58px;
  filter: drop-shadow(0 0 10px rgba(89, 219, 255, .25));
  transition: transform .25s ease, filter .25s ease;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand:hover,
.brand:focus-visible {
  filter: drop-shadow(0 0 14px rgba(244, 49, 232, .55));
  transform: scale(1.06);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(42px, 6.3vw, 108px);
  height: 100%;
  transform: translateX(-57px);
}

.primary-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: #f0eef6;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #04040a;
  transition: color .2s ease;
}

.primary-nav a::after {
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.site-header.is-fixed .primary-nav a::after {
  bottom: 0;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--cyan);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  width: 112px;
}

.club-status {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 11px;
  min-width: 208px;
  padding: 9px 16px;
  border: 1px solid rgba(189, 255, 187, .58);
  border-radius: 10px;
  color: var(--green);
  background: rgba(4, 8, 11, .72);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(90, 255, 130, .035);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.status-count {
  min-width: 1.5ch;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-align: right;
  text-shadow: 0 0 9px rgba(255, 255, 255, .28);
}

.club-status:hover,
.club-status:focus-visible {
  background: rgba(32, 104, 50, .16);
  box-shadow: 0 0 22px rgba(90, 255, 130, .13);
  transform: translateY(-2px);
}

.status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(92, 255, 130, .8);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.status-short {
  display: none;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 860px;
  height: min(100svh, 1080px);
  overflow: hidden;
  isolation: isolate;
  background: #03040c;
}

.hero-scene {
  position: absolute;
  z-index: -4;
  inset: -3%;
  background-image:
    linear-gradient(90deg, rgba(2, 3, 11, .98) 0%, rgba(2, 3, 11, .82) 17%, rgba(2, 3, 11, .22) 42%, rgba(2, 3, 11, 0) 64%),
    linear-gradient(0deg, rgba(2, 3, 9, .9) 0%, transparent 19%, transparent 80%, rgba(2, 3, 9, .24) 100%),
    url("assets/hero-club-agartha.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  animation: scene-breathe 16s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 72% 38%, rgba(255, 222, 92, .24) 0%, rgba(255, 149, 28, .08) 9%, transparent 19%);
  animation: sun-pulse 4.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 67% 38%, rgba(255, 186, 53, .08), transparent 15%),
    radial-gradient(circle at 84% 53%, rgba(42, 181, 255, .13), transparent 28%),
    linear-gradient(90deg, #03040c 0, rgba(3, 4, 12, .62) 23%, transparent 49%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, #03040b 0%, rgba(3, 4, 11, .66) 26%, transparent 100%);
}

.hero-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("assets/grain-overlay.svg");
  background-size: 260px 260px;
  animation: grain-shift .8s steps(2, end) infinite;
  mix-blend-mode: screen;
}

.hero-particles {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles i {
  position: absolute;
  bottom: 15%;
  left: 54%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px 2px rgba(88, 239, 255, .72);
  opacity: 0;
  animation: particle-drift 8s ease-in infinite;
}

.hero-particles i:nth-child(2) { left: 60%; animation-delay: -2.4s; animation-duration: 10s; }
.hero-particles i:nth-child(3) { left: 66%; animation-delay: -5.1s; animation-duration: 7s; background: var(--pink); }
.hero-particles i:nth-child(4) { left: 72%; animation-delay: -1.2s; animation-duration: 9s; }
.hero-particles i:nth-child(5) { left: 79%; animation-delay: -6.4s; animation-duration: 11s; background: var(--pink); }
.hero-particles i:nth-child(6) { left: 84%; animation-delay: -3.3s; animation-duration: 7.5s; }
.hero-particles i:nth-child(7) { left: 90%; animation-delay: -7.2s; animation-duration: 12s; }
.hero-particles i:nth-child(8) { left: 47%; animation-delay: -4.2s; animation-duration: 8.5s; background: var(--pink); }
.hero-particles i:nth-child(9) { left: 69%; animation-delay: -8.1s; animation-duration: 13s; }
.hero-particles i:nth-child(10) { left: 95%; animation-delay: -2.8s; animation-duration: 9.5s; background: var(--pink); }

.hero-laser {
  position: absolute;
  z-index: -1;
  top: 16%;
  left: 55%;
  width: 1px;
  height: 54%;
  pointer-events: none;
  opacity: .3;
  background: linear-gradient(180deg, transparent, var(--pink), transparent);
  box-shadow: 0 0 13px var(--pink);
  transform: rotate(27deg);
  transform-origin: top;
  animation: laser-drift 8s ease-in-out infinite alternate;
}

.hero-laser-two {
  top: 12%;
  left: 82%;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 13px var(--cyan);
  transform: rotate(-23deg);
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 100%;
  min-height: 860px;
  padding-top: 132px;
  padding-bottom: 120px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(48vw, 770px);
  margin-left: 2.2%;
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px 3px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(88, 239, 255, .35);
}

.hero-overline i {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero h1 {
  margin: 0;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(110px, 8.1vw, 152px);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.045em;
  text-transform: uppercase;
  filter: drop-shadow(0 7px 5px rgba(0, 0, 0, .82));
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: none;
  transform: scaleX(.88);
  transform-origin: left center;
}

.title-club {
  position: relative;
  color: #f7f7f8;
  text-shadow: 0 0 1px #fff, 0 4px 0 rgba(164, 171, 187, .45), 0 0 32px rgba(255, 255, 255, .14);
}

.title-agartha {
  padding-right: .16em;
  padding-bottom: .12em;
  color: transparent;
  background: linear-gradient(105deg, #74efff 1%, #63c7ff 27%, #8b6cff 55%, #d633f2 84%, #f12ed9 100%);
  background-size: 180% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradient-flow 7s ease-in-out infinite alternate;
  filter: saturate(1.18);
}

.hero-tagline {
  margin: 16px 0 40px 2px;
  color: #fff;
  font-size: clamp(17px, 1.24vw, 23px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .29em;
  text-transform: uppercase;
  text-shadow: 0 3px 15px #000;
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 23px 0 0 5px;
  color: rgba(223, 225, 241, .58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-footnote i {
  width: 4px;
  height: 4px;
  border: 1px solid var(--pink);
  transform: rotate(45deg);
  box-shadow: 0 0 6px var(--pink);
}

.portal-button {
  position: relative;
  display: inline-block;
  width: min(100%, 440px);
  height: 98px;
  padding: 2px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(105deg, var(--pink), #713bff 45%, var(--cyan));
  clip-path: polygon(4% 0, 96% 0, 100% 22%, 100% 78%, 96% 100%, 4% 100%, 0 78%, 0 22%);
  filter: drop-shadow(-4px 0 12px rgba(244, 49, 232, .55)) drop-shadow(5px 0 12px rgba(88, 239, 255, .4));
  transition: filter .25s ease, transform .25s ease;
}

.hero .portal-button {
  width: min(100%, 402px);
}

.portal-button::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .85) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform .65s ease;
  mix-blend-mode: overlay;
}

.portal-button:hover,
.portal-button:focus-visible {
  outline: none;
  filter: drop-shadow(-4px 0 19px rgba(244, 49, 232, .82)) drop-shadow(5px 0 19px rgba(88, 239, 255, .68));
  transform: translateY(-3px);
}

.portal-button:hover::after,
.portal-button:focus-visible::after {
  transform: translateX(120%) skewX(-18deg);
}

.portal-button-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 31px 0 57px;
  color: #fff;
  background: linear-gradient(90deg, rgba(7, 5, 23, .98), rgba(6, 10, 25, .94));
  clip-path: polygon(4% 0, 96% 0, 100% 22%, 100% 78%, 96% 100%, 4% 100%, 0 78%, 0 22%);
  font-size: clamp(17px, 1.28vw, 22px);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.portal-button-inner svg {
  width: 43px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 6px var(--cyan));
  transition: transform .25s ease;
}

.portal-button:hover svg,
.portal-button:focus-visible svg {
  transform: translateX(6px);
}

.scroll-signal {
  position: absolute;
  right: 33px;
  bottom: 128px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-signal i {
  position: relative;
  width: 74px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.scroll-signal i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--cyan);
  transform: translateX(-100%);
  animation: scroll-line 2.5s ease-in-out infinite;
}

/* Shared section language */
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(128, 224, 255, .2);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.section-kicker span:last-child {
  color: #77778e;
}

.section-label {
  margin: 0;
  color: var(--cyan) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
  margin-top: 55px;
}

.section-heading-row h2,
.event-intro h2,
.archive-heading h2,
.lore-copy h2,
.shop-heading h2,
.social-callout h2,
.final-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 7.4vw, 142px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

h2 em {
  color: transparent;
  background: linear-gradient(105deg, var(--cyan), #8b70ff 52%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

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

.reveal.is-visible {
  animation: reveal-in .8s cubic-bezier(.16, .7, .24, 1) both;
}

/* Event cards */
.event-deck {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-block: 125px 165px;
}

.event-deck::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  border-block: 1px solid rgba(88, 231, 255, .1);
  background:
    linear-gradient(rgba(88, 231, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 231, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(92, 39, 184, .11), transparent 36rem),
    #04050d;
  background-size: 72px 72px, 72px 72px, auto, auto;
  transform: translateX(-50%);
}

.event-kicker {
  display: flex;
}

.event-intro {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: clamp(60px, 9vw, 170px);
  align-items: end;
  margin-top: 60px;
}

.event-intro h2 {
  font-size: clamp(72px, 7vw, 132px);
}

.event-intro > div {
  max-width: 540px;
  padding-bottom: 7px;
}

.event-intro p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 17px;
}

.event-intro span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 78px;
}

.event-card {
  position: relative;
  min-width: 0;
}

.event-card a {
  position: relative;
  display: block;
  height: auto;
  aspect-ratio: 1.68 / 1;
  overflow: hidden;
  border: 1px solid rgba(78, 229, 255, .85);
  border-radius: 14px 14px 4px 4px;
  background: #0a071c;
  box-shadow: 0 13px 38px rgba(0, 0, 0, .34), inset 0 0 22px rgba(86, 223, 255, .08);
  isolation: isolate;
}

.event-card a::before {
  position: absolute;
  z-index: 4;
  top: -55%;
  bottom: -55%;
  left: -35%;
  width: 18%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(143, 246, 255, .16), transparent);
  opacity: .55;
  transform: skewX(-18deg);
  animation: card-scan 9s ease-in-out infinite;
}

.event-card:nth-child(2) a::before { animation-delay: -3s; }
.event-card:nth-child(3) a::before { animation-delay: -6s; }

.event-card a::after {
  position: absolute;
  z-index: 5;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(110deg, var(--pink), transparent 38%, var(--cyan)) border-box;
  opacity: 0;
  transition: opacity .3s ease;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.01;
  animation: card-breathe 12s ease-in-out infinite alternate;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .65s ease;
}

.event-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 12, .94) 0%, rgba(5, 4, 16, .2) 45%, transparent 70%);
  transition: background .35s ease;
}

.event-icon {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  color: #e972ff;
  filter: drop-shadow(0 0 8px rgba(231, 114, 255, .5));
}

.event-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.event-card h3 {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 27px;
  left: 24px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(26px, 2.15vw, 41px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 3px 11px #000;
}

.event-meta {
  position: absolute;
  z-index: 2;
  left: 25px;
  top: 25px;
  bottom: auto;
  padding: 5px 9px;
  border-left: 1px solid var(--cyan);
  background: rgba(4, 5, 16, .58);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 1;
  transform: none;
  transition: opacity .25s ease, transform .25s ease;
}

.event-card a:hover img,
.event-card a:focus-visible img {
  filter: saturate(1.2) brightness(1.08);
  transform: scale(1.045);
}

.event-card a:hover::after,
.event-card a:focus-visible::after,
.event-card a:hover .event-meta,
.event-card a:focus-visible .event-meta {
  opacity: 1;
}

.event-card a:hover .event-meta,
.event-card a:focus-visible .event-meta {
  transform: translateY(0);
}

/* Lore */
.lore-section {
  position: relative;
  margin-top: 0;
  padding: 170px 0 115px;
  overflow: hidden;
  background:
    radial-gradient(circle at 27% 45%, rgba(58, 54, 234, .18), transparent 31rem),
    radial-gradient(circle at 78% 50%, rgba(151, 35, 186, .08), transparent 30rem),
    linear-gradient(180deg, transparent, rgba(8, 7, 25, .75) 20%, rgba(5, 5, 16, .96));
}

.lore-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(97, 229, 255, .35), transparent);
}

.lore-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(60px, 9vw, 180px);
  align-items: center;
}

.lore-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 670px;
  perspective: 1200px;
}

.portal-disc {
  --orb-glow-x: 50%;
  --orb-glow-y: 50%;
  --orb-tilt-x: 0deg;
  --orb-tilt-y: 0deg;
  position: relative;
  display: grid;
  place-items: center;
  width: min(37vw, 610px);
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(85, 236, 255, .24);
  border-radius: 50%;
  color: inherit;
  background:
    radial-gradient(circle at var(--orb-glow-x) var(--orb-glow-y), rgba(117, 246, 255, .13), transparent 18%),
    repeating-radial-gradient(circle, transparent 0 48px, rgba(94, 100, 255, .08) 49px 50px),
    radial-gradient(circle, rgba(104, 242, 255, .26) 0%, rgba(85, 52, 219, .23) 18%, rgba(29, 12, 75, .53) 45%, rgba(5, 5, 17, .85) 67%, transparent 70%);
  box-shadow: 0 0 100px rgba(92, 73, 255, .14), inset 0 0 70px rgba(79, 229, 255, .09);
  cursor: crosshair;
  transform: rotateX(var(--orb-tilt-x)) rotateY(var(--orb-tilt-y));
  transform-style: preserve-3d;
  transition: transform .16s ease-out, border-color .3s ease, box-shadow .3s ease;
}

.portal-disc:hover {
  border-color: rgba(100, 241, 255, .52);
  box-shadow: 0 0 115px rgba(92, 73, 255, .22), inset 0 0 85px rgba(79, 229, 255, .14);
}

.portal-disc:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 8px;
}

.portal-disc::before,
.portal-disc::after {
  position: absolute;
  width: 78%;
  height: 78%;
  border: 1px dashed rgba(97, 234, 255, .3);
  border-radius: 50%;
  content: "";
  animation: orbit-spin 35s linear infinite;
}

.portal-disc::after {
  width: 53%;
  height: 53%;
  border-color: rgba(235, 60, 241, .38);
  animation-duration: 22s;
  animation-direction: reverse;
}

.portal-disc img {
  position: relative;
  z-index: 4;
  width: 20%;
  filter: drop-shadow(0 0 18px rgba(86, 233, 255, .7));
  animation: emblem-float 4s ease-in-out infinite;
  transform: translateZ(34px);
}

.disc-core {
  position: absolute;
  width: 39%;
  height: 39%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 1%, #6df3ff 2% 7%, #6d49ff 20%, rgba(96, 40, 196, .56) 43%, transparent 68%);
  filter: blur(.3px) drop-shadow(0 0 25px rgba(84, 232, 255, .7));
  animation: core-breathe 3.6s ease-in-out infinite;
  transform: translateZ(20px);
}

.disc-ring {
  position: absolute;
  width: 90%;
  height: 31%;
  border: 2px solid rgba(101, 231, 255, .35);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(72, 207, 255, .12);
  animation: disc-orbit-one 12s linear infinite;
  transform-style: preserve-3d;
}

.disc-ring-two {
  width: 84%;
  height: 26%;
  border-color: rgba(237, 56, 229, .32);
  animation-name: disc-orbit-two;
  animation-duration: 16s;
  animation-direction: reverse;
}

.orb-status {
  position: absolute;
  bottom: 12%;
  left: 50%;
  padding: 5px 8px;
  border: 1px solid rgba(92, 232, 255, .16);
  color: #777b94;
  background: rgba(3, 5, 15, .55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%) translateZ(18px);
  transition: color .25s ease, border-color .25s ease, text-shadow .25s ease;
  white-space: nowrap;
}

.portal-disc.is-scanning {
  border-color: var(--cyan);
  animation: orb-lock .8s ease-in-out infinite alternate;
}

.portal-disc.is-scanning::before {
  animation-duration: 3s;
}

.portal-disc.is-scanning::after {
  animation-duration: 1.8s;
}

.portal-disc.is-scanning .disc-ring {
  animation-duration: 1.9s;
}

.portal-disc.is-scanning .disc-ring-two {
  animation-duration: 1.2s;
}

.portal-disc.is-scanning .disc-core {
  animation: core-scan .55s ease-in-out infinite alternate;
}

.portal-disc.is-scanning .orb-status {
  border-color: rgba(92, 255, 130, .48);
  color: var(--green);
  text-shadow: 0 0 9px rgba(92, 255, 130, .65);
}

.coordinate {
  position: absolute;
  padding: 6px 11px;
  border-left: 1px solid var(--cyan);
  color: #777f9a;
  background: rgba(3, 5, 16, .65);
  font-size: 9px;
  letter-spacing: .17em;
}

.coordinate-top {
  top: 10%;
  left: 1%;
}

.coordinate-bottom {
  right: 2%;
  bottom: 12%;
}

.lore-copy .section-kicker {
  margin-bottom: 58px;
}

.lore-copy h2 {
  font-size: clamp(76px, 7.2vw, 138px);
}

.lore-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 19px);
}

.lore-copy .lore-lead {
  max-width: 600px;
  margin: 43px 0 17px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(83, 235, 255, .5);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.text-link svg,
.transmission svg,
.social-link svg {
  width: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .25s ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(6px);
}

.lore-orbit {
  position: absolute;
  top: 18%;
  left: -12vw;
  width: 50vw;
  height: 50vw;
  pointer-events: none;
  opacity: .32;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(78, 220, 255, .13);
  border-radius: 50%;
}

.orbit-two {
  inset: 12%;
  border-style: dashed;
}

.orbit-three {
  inset: 24%;
  border-color: rgba(226, 57, 255, .16);
}

.lore-ticker {
  width: 100%;
  margin-top: 100px;
  overflow: hidden;
  border-block: 1px solid rgba(91, 224, 255, .12);
  background: rgba(5, 6, 17, .75);
}

.lore-ticker > div {
  display: flex;
  align-items: center;
  width: max-content;
  height: 68px;
  animation: marquee 25s linear infinite;
}

.lore-ticker span {
  padding-inline: 42px;
  color: #dedcef;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lore-ticker i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--pink);
  transform: rotate(45deg);
  box-shadow: 0 0 7px var(--pink);
}

/* Interactive field archive */
.archive-section {
  position: relative;
  padding: 160px 0 180px;
  overflow: hidden;
  border-bottom: 1px solid rgba(91, 224, 255, .12);
  background:
    radial-gradient(circle at 82% 48%, rgba(151, 37, 212, .12), transparent 31rem),
    linear-gradient(145deg, #050613, #03040c 58%);
}

.archive-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .2;
  background-image:
    linear-gradient(rgba(83, 220, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 220, 255, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.archive-glow {
  position: absolute;
  top: 27%;
  right: -18rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 218, 255, .11), rgba(111, 43, 213, .08) 37%, transparent 68%);
  animation: archive-glow 6s ease-in-out infinite;
}

.archive-section .page-width {
  position: relative;
  z-index: 2;
}

.archive-heading {
  display: grid;
  grid-template-columns: 1.12fr .62fr;
  gap: clamp(60px, 10vw, 190px);
  align-items: end;
  margin-top: 64px;
}

.archive-heading .section-label {
  margin-bottom: 25px;
}

.archive-heading h2 {
  font-size: clamp(74px, 7.3vw, 138px);
}

.archive-heading > p {
  max-width: 510px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 17px;
}

.archive-console {
  display: grid;
  grid-template-columns: minmax(285px, .55fr) minmax(0, 1.45fr);
  min-height: 620px;
  margin-top: 90px;
  overflow: hidden;
  border: 1px solid rgba(91, 226, 255, .25);
  background: rgba(5, 6, 18, .83);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36), inset 0 0 60px rgba(81, 72, 220, .035);
  backdrop-filter: blur(12px);
}

.archive-tabs {
  border-right: 1px solid rgba(91, 226, 255, .16);
  background: rgba(3, 4, 13, .65);
}

.archive-tab {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 15px;
  align-items: center;
  width: 100%;
  min-height: 155px;
  padding: 27px 27px;
  border: 0;
  border-bottom: 1px solid rgba(91, 226, 255, .12);
  color: #77798e;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, padding .25s ease;
}

.archive-tab::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(var(--cyan), var(--pink));
  opacity: 0;
  box-shadow: 0 0 12px var(--cyan);
  transition: opacity .25s ease;
}

.archive-tab:hover,
.archive-tab:focus-visible,
.archive-tab.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(79, 220, 255, .08), rgba(130, 45, 214, .04));
  outline: none;
}

.archive-tab:hover,
.archive-tab:focus-visible {
  padding-left: 34px;
}

.archive-tab.is-active::before {
  opacity: 1;
}

.archive-tab > span {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: .14em;
}

.archive-tab strong {
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 35px);
  line-height: 1;
  text-transform: uppercase;
}

.archive-tab small {
  color: #686a80;
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.archive-panels {
  position: relative;
  display: grid;
  align-items: center;
  min-width: 0;
  padding: clamp(48px, 6vw, 108px);
  overflow: hidden;
  isolation: isolate;
}

.archive-panels::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: archive-scan 5s ease-in-out infinite;
}

.archive-panel {
  position: relative;
  z-index: 2;
  display: none;
  max-width: 760px;
}

.archive-panel.is-active {
  display: block;
  animation: archive-entry .55s cubic-bezier(.18, .7, .24, 1) both;
}

.archive-code {
  margin: 0 0 27px;
  color: var(--pink) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.archive-panel h3 {
  max-width: 720px;
  margin: 0 0 31px;
  color: #f6f6ff;
  font-family: var(--display);
  font-size: clamp(58px, 5.2vw, 94px);
  font-weight: 800;
  line-height: .86;
  text-transform: uppercase;
}

.archive-panel > p:not(.archive-code) {
  max-width: 700px;
  margin: 0;
  color: #b6b5ca;
  font-size: clamp(15px, 1.1vw, 18px);
}

.archive-panel blockquote {
  max-width: 650px;
  margin: 32px 0;
  padding: 15px 0 15px 23px;
  border-left: 1px solid var(--cyan);
  color: #eefcff;
  font-family: var(--display);
  font-size: clamp(21px, 1.8vw, 30px);
  font-style: italic;
  line-height: 1.15;
  text-shadow: 0 0 16px rgba(88, 239, 255, .11);
}

.archive-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-facts span {
  padding: 7px 10px;
  border: 1px solid rgba(93, 228, 255, .18);
  color: #777a91;
  background: rgba(4, 5, 15, .55);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.archive-visual {
  position: absolute;
  z-index: 0;
  right: -10%;
  bottom: -32%;
  display: grid;
  place-items: center;
  width: min(37vw, 500px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: .16;
}

.archive-visual span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  animation: orbit-spin 28s linear infinite;
}

.archive-visual span:nth-child(2) {
  inset: 16%;
  border-style: dashed;
  border-color: var(--pink);
  animation-direction: reverse;
  animation-duration: 19s;
}

.archive-visual span:nth-child(3) {
  inset: 31%;
  border-radius: 8px;
  transform: rotate(45deg);
  animation-duration: 14s;
}

.archive-visual img {
  width: 17%;
  filter: drop-shadow(0 0 15px var(--cyan));
}

/* Transmission rows */
.event-details {
  padding-block: 150px 180px;
}

.section-heading-row > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}

.transmission-list {
  margin-top: 85px;
  border-top: 1px solid rgba(98, 224, 255, .2);
}

.transmission {
  display: grid;
  grid-template-columns: 90px 1fr auto 50px;
  gap: 24px;
  align-items: center;
  min-height: 148px;
  border-bottom: 1px solid rgba(98, 224, 255, .14);
  transition: color .25s ease, background .25s ease, padding .25s ease;
}

.transmission:hover {
  padding-inline: 18px;
  color: var(--cyan);
  background: linear-gradient(90deg, rgba(74, 230, 255, .045), transparent);
}

.transmission-number {
  color: #6f7186;
  font-size: 12px;
  letter-spacing: .16em;
}

.transmission p {
  margin: 0 0 2px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.transmission h3 {
  margin: 0;
  color: #f7f6ff;
  font-family: var(--display);
  font-size: clamp(33px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.transmission-state {
  padding: 7px 12px;
  border: 1px solid rgba(99, 233, 255, .24);
  color: #8f91a7;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.transmission svg {
  color: var(--cyan);
}

.transmission:hover svg {
  transform: translateX(7px);
}

/* Merch */
.shop-section {
  position: relative;
  padding-block: 120px 160px;
  overflow: hidden;
  border-block: 1px solid rgba(97, 226, 255, .12);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, .72) 0 1px, transparent 1.5px) 0 0 / 59px 59px,
    radial-gradient(circle at 71% 19%, rgba(180, 132, 255, .6) 0 1px, transparent 1.5px) 0 0 / 83px 83px,
    radial-gradient(ellipse at 50% 3%, rgba(117, 35, 188, .35), transparent 47rem),
    linear-gradient(120deg, rgba(11, 8, 34, .98), rgba(4, 5, 15, .98)),
    var(--bg);
}

.shop-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(118deg, transparent 0 46%, rgba(95, 230, 255, .1) 46.2% 46.35%, transparent 46.6%),
    linear-gradient(62deg, transparent 0 53%, rgba(245, 62, 234, .08) 53.2% 53.35%, transparent 53.6%);
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.shop-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 23%;
  content: "";
  pointer-events: none;
  opacity: .32;
  background:
    linear-gradient(90deg, transparent, rgba(79, 225, 255, .18), transparent) top / 100% 1px no-repeat,
    repeating-linear-gradient(115deg, transparent 0 78px, rgba(192, 139, 255, .09) 79px 80px),
    linear-gradient(180deg, rgba(29, 22, 54, .2), rgba(147, 117, 184, .18));
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}

.shop-glow {
  position: absolute;
  top: 10%;
  right: -15rem;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 42, 238, .16), transparent 66%);
}

.shop-section .page-width {
  position: relative;
  z-index: 2;
}

.shop-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
  margin-top: 50px;
}

.shop-heading h2 {
  font-size: clamp(70px, 6.5vw, 124px);
}

.shop-heading p {
  max-width: 500px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 18px;
}

.gear-storefront {
  position: relative;
  width: calc(100% - 12px);
  height: 720px;
  margin: 90px auto 0;
  isolation: isolate;
  filter: drop-shadow(0 30px 65px rgba(0, 0, 0, .58));
}

.gear-storefront::before,
.gear-storefront::after {
  position: absolute;
  z-index: 8;
  top: 98px;
  bottom: 16px;
  width: 9px;
  border-block: 1px solid rgba(89, 229, 255, .4);
  background: linear-gradient(180deg, var(--cyan), #1d3a79 28%, #391b5b 72%, var(--pink));
  box-shadow: 0 0 18px rgba(87, 230, 255, .3), inset 0 0 5px #fff;
  content: "";
}

.gear-storefront::before { left: 0; }
.gear-storefront::after { right: 0; }

.gear-store-sign {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 90%;
  height: 126px;
  border: 1px solid rgba(100, 233, 255, .4);
  background:
    linear-gradient(110deg, transparent 12%, rgba(106, 229, 255, .1) 50%, transparent 88%),
    linear-gradient(180deg, rgba(13, 20, 48, .98), rgba(3, 5, 15, .98));
  box-shadow: 0 0 0 6px rgba(3, 6, 18, .94), 0 0 0 7px rgba(239, 50, 249, .25), 0 0 45px rgba(48, 211, 255, .2), inset 0 -12px 35px rgba(77, 38, 175, .18);
  clip-path: polygon(3% 0, 97% 0, 100% 50%, 97% 100%, 3% 100%, 0 50%);
}

.gear-store-sign::before,
.gear-store-sign::after {
  position: absolute;
  top: 50%;
  width: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 12px var(--cyan);
  content: "";
}

.gear-store-sign::before { left: 5%; }

.gear-store-sign::after {
  right: 5%;
  background: linear-gradient(90deg, var(--pink), transparent);
  box-shadow: 0 0 12px var(--pink);
}

.gear-store-sign > div {
  display: grid;
  gap: 5px;
  text-align: center;
}

.gear-store-sign strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(56px, 5.6vw, 88px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .72;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(77, 229, 255, .36), 0 0 44px rgba(232, 49, 241, .2);
}

.gear-store-sign small {
  color: rgba(197, 221, 239, .72);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.gear-sign-mark {
  width: 49px;
  flex: 0 0 49px;
  fill: transparent;
  stroke: var(--cyan);
  stroke-width: 1.6;
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(80, 229, 255, .7));
  animation: gear-star 6s ease-in-out infinite;
}

.gear-store-interior {
  position: absolute;
  z-index: 1;
  inset: 91px 8px 0;
  overflow: hidden;
  border: 1px solid rgba(100, 223, 255, .18);
  background:
    radial-gradient(circle at 50% 37%, rgba(102, 75, 255, .17), transparent 35%),
    radial-gradient(circle at 8% 42%, rgba(68, 220, 255, .1), transparent 30%),
    radial-gradient(circle at 92% 48%, rgba(235, 50, 246, .11), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 15.8%, rgba(112, 217, 255, .04) 16%, transparent 16.2%),
    linear-gradient(180deg, #080b1d 0%, #050716 66%, #02030b 100%);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .78), inset 0 1px rgba(255, 255, 255, .08);
}

.gear-store-interior::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .74) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(89, 229, 255, .52) 0 1px, transparent 1.5px);
  background-position: 0 0, 34px 27px;
  background-size: 70px 70px, 93px 93px;
  content: "";
  opacity: .2;
  mask-image: linear-gradient(to bottom, #000, transparent 65%);
}

.gear-store-interior::after {
  position: absolute;
  z-index: 7;
  inset: 0;
  border: 19px solid rgba(2, 4, 13, .86);
  border-top-width: 35px;
  box-shadow: inset 0 0 0 1px rgba(97, 224, 255, .14), inset 0 0 40px rgba(0, 0, 0, .78);
  content: "";
  pointer-events: none;
}

.gear-shelf-wall {
  position: absolute;
  z-index: 1;
  top: 105px;
  right: 8%;
  left: 8%;
  display: grid;
  height: 315px;
  border-inline: 1px solid rgba(107, 227, 255, .14);
  background: linear-gradient(90deg, rgba(4, 8, 21, .9), rgba(18, 12, 40, .72) 50%, rgba(6, 8, 22, .9));
  box-shadow: inset 0 0 40px rgba(0, 0, 0, .7);
}

.gear-hat-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: clamp(18px, 3.2vw, 55px);
  height: 132px;
  padding: 12px 5.5% 21px;
}

.gear-hat-row-two {
  align-items: center;
  padding-top: 23px;
}

.gear-hat-row i {
  position: relative;
  display: block;
  width: clamp(42px, 5.2vw, 74px);
  height: clamp(25px, 3.1vw, 44px);
  margin-inline: auto;
  border: 1px solid rgba(147, 170, 210, .18);
  border-radius: 52% 52% 15% 15%;
  background: linear-gradient(145deg, #232a3d, #080b14 64%);
  box-shadow: inset 5px 4px 9px rgba(255, 255, 255, .06), 0 8px 15px rgba(0, 0, 0, .62);
}

.gear-hat-row i:nth-child(3n + 2) { background: linear-gradient(145deg, #282143, #0b0917 64%); }
.gear-hat-row i:nth-child(3n) { background: linear-gradient(145deg, #17303d, #080d14 64%); }

.gear-hat-row i::before {
  position: absolute;
  right: -18%;
  bottom: -3px;
  width: 62%;
  height: 27%;
  border-radius: 50%;
  background: #090b13;
  box-shadow: 0 0 7px rgba(85, 230, 255, .18);
  content: "";
  transform: rotate(-6deg);
}

.gear-hat-row i::after {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan);
  clip-path: polygon(50% 0, 61% 38%, 100% 38%, 69% 59%, 81% 100%, 50% 74%, 19% 100%, 31% 59%, 0 38%, 39% 38%);
  content: "";
  transform: translateX(-50%);
}

.gear-hat-row-two i::after {
  background: var(--pink);
  box-shadow: 0 0 9px var(--pink);
}

.gear-shelf-light {
  position: absolute;
  top: 137px;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyan) 8%, #fff 50%, var(--cyan) 92%, transparent);
  box-shadow: 0 -8px 20px rgba(83, 226, 255, .28), 0 8px 25px rgba(83, 226, 255, .2);
}

.gear-shelf-light-two {
  top: auto;
  bottom: 0;
  background: linear-gradient(90deg, transparent, var(--pink) 8%, #fff 50%, var(--pink) 92%, transparent);
  box-shadow: 0 -8px 20px rgba(232, 49, 241, .26), 0 8px 25px rgba(232, 49, 241, .16);
}

.gear-side-shirt {
  position: absolute;
  z-index: 2;
  top: 170px;
  display: grid;
  place-items: center;
  width: 13%;
  height: 245px;
  border: 1px solid rgba(97, 225, 255, .15);
  background: rgba(3, 5, 15, .74);
  box-shadow: inset 0 0 25px rgba(73, 215, 255, .07), 0 0 24px rgba(0, 0, 0, .55);
}

.gear-side-shirt-left { left: 2.5%; }
.gear-side-shirt-right { right: 2.5%; }

.gear-side-shirt i {
  position: relative;
  width: 56%;
  height: 96px;
  background: linear-gradient(145deg, #1c2634, #05070d 70%);
  box-shadow: 0 12px 22px rgba(0, 0, 0, .6);
  clip-path: polygon(24% 0, 40% 8%, 50% 18%, 60% 8%, 76% 0, 100% 20%, 87% 42%, 78% 34%, 78% 100%, 22% 100%, 22% 34%, 13% 42%, 0 20%);
}

.gear-side-shirt i::after {
  position: absolute;
  top: 40%;
  left: 50%;
  color: var(--cyan);
  content: "A";
  font-family: var(--display);
  font-size: 21px;
  text-shadow: 0 0 9px var(--cyan);
  transform: translate(-50%, -50%);
}

.gear-side-shirt-right i::after {
  color: var(--pink);
  text-shadow: 0 0 9px var(--pink);
}

.gear-shopkeeper {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -4px;
  left: 0;
  width: min(78%, 900px);
  margin: auto;
}

.gear-shopkeeper img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(65, 221, 255, .18)) drop-shadow(0 18px 20px rgba(0, 0, 0, .62));
}

.gear-shopkeeper figcaption {
  position: absolute;
  z-index: 6;
  top: 24%;
  right: -3%;
  display: grid;
  width: 174px;
  gap: 2px;
  padding: 12px 14px 11px 18px;
  border-left: 1px solid var(--pink);
  background: linear-gradient(90deg, rgba(11, 9, 28, .92), rgba(11, 9, 28, .24));
  box-shadow: -8px 0 22px rgba(232, 49, 241, .1);
  white-space: nowrap;
}

.gear-shopkeeper figcaption::before {
  position: absolute;
  top: 24px;
  right: 100%;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink));
  content: "";
}

.gear-shopkeeper figcaption span,
.gear-shopkeeper figcaption small {
  color: rgba(199, 220, 238, .6);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.gear-shopkeeper figcaption strong {
  color: #fff;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: calc(100% - 3vw);
  margin: 22px auto 0;
  padding: 28px;
  border-inline: 1px solid rgba(131, 87, 195, .26);
  border-bottom: 1px solid rgba(91, 228, 255, .23);
  background: linear-gradient(180deg, rgba(11, 8, 27, .88), rgba(15, 12, 28, .5));
  box-shadow: 0 24px 55px rgba(0, 0, 0, .3);
}

.product-card {
  min-width: 0;
  border: 1px solid rgba(97, 223, 255, .3);
  background: rgba(10, 8, 25, .9);
  box-shadow: inset 0 0 25px rgba(94, 77, 214, .06);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
  border-color: rgba(91, 234, 255, .62);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .3), inset 0 0 35px rgba(80, 226, 255, .035);
  transform: translateY(-7px);
}

.product-featured {
  border-color: rgba(236, 57, 236, .34);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / .87;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(103, 79, 237, .34), transparent 33%),
    radial-gradient(circle at 18% 17%, rgba(255, 255, 255, .5) 0 1px, transparent 1.5px) 0 0 / 42px 42px,
    linear-gradient(150deg, #171136, #070712 67%);
  isolation: isolate;
}

.product-visual::before {
  position: absolute;
  z-index: -1;
  width: 66%;
  height: 66%;
  border: 1px solid rgba(78, 229, 255, .27);
  content: "";
  transform: rotate(45deg);
}

.product-visual::after {
  position: absolute;
  right: 7%;
  bottom: 6%;
  left: 7%;
  height: 9px;
  content: "";
  border: 1px solid rgba(110, 226, 255, .26);
  background: linear-gradient(90deg, #191229, #654077 48%, #171225);
  box-shadow: 0 0 13px rgba(222, 60, 242, .38);
  transform: perspective(80px) rotateX(25deg);
}

.product-orbit {
  position: absolute;
  z-index: -1;
  width: 92%;
  height: 27%;
  border: 1px solid rgba(91, 230, 255, .25);
  border-radius: 50%;
  transform: rotate(-13deg);
  box-shadow: 0 0 17px rgba(76, 218, 255, .08);
  animation: product-orbit 9s ease-in-out infinite alternate;
}

.shirt {
  position: relative;
  width: 37%;
  height: 58%;
  background: linear-gradient(110deg, #253255, #070b18 48%, #241744);
  clip-path: polygon(19% 0, 36% 8%, 64% 8%, 81% 0, 100% 18%, 85% 36%, 78% 29%, 78% 100%, 22% 100%, 22% 29%, 15% 36%, 0 18%);
  filter: drop-shadow(0 24px 17px rgba(0, 0, 0, .6));
}

.product-tee .shirt {
  background: linear-gradient(110deg, #2187f0, #0d3c92 48%, #192a72);
}

.shirt::before {
  position: absolute;
  top: 0;
  left: 36%;
  width: 28%;
  height: 14%;
  border: 4px solid #080811;
  border-top: 0;
  border-radius: 0 0 50% 50%;
  content: "";
}

.shirt-mark {
  position: absolute;
  top: 27%;
  left: 39%;
  width: 22%;
}

.shirt-mark img {
  width: 100%;
}

.hoodie {
  position: relative;
  width: 40%;
  height: 60%;
  background: linear-gradient(120deg, #6735b8, #210c45 48%, #3d176e);
  clip-path: polygon(20% 10%, 35% 3%, 65% 3%, 80% 10%, 100% 31%, 84% 45%, 77% 36%, 78% 100%, 22% 100%, 23% 36%, 16% 45%, 0 31%);
  filter: drop-shadow(0 24px 17px rgba(0, 0, 0, .62));
}

.hood {
  position: absolute;
  top: -2%;
  left: 30%;
  width: 40%;
  height: 28%;
  border: 6px solid #080512;
  border-top-color: #35185a;
  border-radius: 45% 45% 55% 55%;
}

.hoodie-mark {
  position: absolute;
  top: 40%;
  left: 50%;
  color: var(--cyan);
  font-family: var(--display);
  font-size: clamp(10px, 1.1vw, 19px);
  font-weight: 800;
  letter-spacing: .1em;
  text-shadow: 0 0 8px var(--cyan);
  transform: translateX(-50%);
}

.cap {
  position: relative;
  width: 42%;
  height: 29%;
  border-radius: 55% 55% 8% 8% / 92% 92% 8% 8%;
  background: linear-gradient(115deg, #26233e, #080810 57%, #34184e);
  box-shadow: 0 27px 18px rgba(0, 0, 0, .5);
  transform: translateY(-5%);
}

.cap::before {
  position: absolute;
  right: -32%;
  bottom: -22%;
  width: 66%;
  height: 32%;
  border-radius: 10% 100% 45% 25%;
  content: "";
  background: #090916;
  transform: rotate(6deg);
}

.cap span {
  position: absolute;
  top: 32%;
  left: 43%;
  width: 20%;
  aspect-ratio: 1;
  border: 2px solid var(--pink);
  transform: rotate(45deg);
  box-shadow: 0 0 9px rgba(244, 49, 232, .6);
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 24px 25px;
  border-top: 1px solid rgba(237, 69, 240, .18);
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, .025) 47%, transparent 48%),
    #090815;
}

.product-info p {
  margin: 0 0 3px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.product-info > span {
  color: #89899f;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-button {
  display: block;
  width: 360px;
  height: 78px;
  margin: 58px auto 0;
  animation: none;
}

.shop-button .portal-button-inner {
  padding-left: 34px;
  font-size: 14px;
}

/* Social */
.social-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(70px, 10vw, 180px);
  align-items: center;
  padding-block: 170px;
}

.social-callout {
  position: relative;
  padding-left: 8%;
}

.social-callout > img {
  width: 62px;
  margin-bottom: 35px;
  filter: drop-shadow(0 0 15px rgba(94, 223, 255, .4));
}

.social-callout h2 {
  margin: 22px 0 32px;
  font-size: clamp(65px, 6.5vw, 120px);
}

.social-callout > p:last-child {
  max-width: 510px;
  color: var(--muted);
  font-size: 17px;
}

.social-links {
  border-top: 1px solid rgba(100, 227, 255, .18);
}

.social-link {
  display: grid;
  grid-template-columns: 48px 1fr auto 44px;
  gap: 20px;
  align-items: center;
  min-height: 126px;
  padding-inline: 4px 18px;
  border-bottom: 1px solid rgba(100, 227, 255, .16);
  transition: padding .25s ease, background .25s ease, color .25s ease;
}

.social-link:hover,
.social-link:focus-visible {
  padding-left: 20px;
  color: var(--cyan);
  background: linear-gradient(90deg, rgba(75, 230, 255, .05), transparent);
  outline: none;
}

.social-link > span {
  color: #6f7186;
  font-size: 10px;
}

.social-link strong {
  color: #f7f6ff;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}

.social-link small {
  color: #898a9e;
  font-size: 11px;
}

.social-link:hover svg,
.social-link:focus-visible svg {
  transform: translateX(7px);
}

/* Final launch */
.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(91, 229, 255, .15);
}

.final-scene {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 3, 10, .92), rgba(2, 3, 10, .34) 50%, rgba(2, 3, 10, .88)),
    linear-gradient(0deg, #03040b, transparent 40%, #03040b),
    url("assets/hero-club-agartha.webp");
  background-position: 64% 52%;
  background-size: cover;
  filter: saturate(.9) brightness(.65);
  transform: scale(1.04);
  animation: final-breathe 15s ease-in-out infinite alternate;
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(91, 232, 255, .16);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(86, 216, 255, .11), rgba(111, 38, 209, .08) 30%, transparent 67%);
  box-shadow: inset 0 0 100px rgba(102, 58, 219, .12);
}

.final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-content > p {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.final-content h2 {
  font-size: clamp(100px, 10vw, 190px);
  text-shadow: 0 8px 30px rgba(0, 0, 0, .85);
}

.final-content .portal-button {
  margin-top: 46px;
  animation: none;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding-block: 53px 35px;
  color: #74768c;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #eaeaf2;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .06em;
}

.footer-brand img {
  width: 35px;
}

.site-footer > p {
  text-align: center;
}

.site-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(102, 223, 255, .1);
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 390px;
  padding: 16px 20px;
  border: 1px solid rgba(92, 234, 255, .42);
  color: #dcdceb;
  background: rgba(6, 7, 19, .94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5), 0 0 25px rgba(78, 222, 255, .08);
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  backdrop-filter: blur(15px);
}

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

.toast p {
  margin: 0;
  font-size: 12px;
}

.toast strong {
  color: #fff;
}

/* Animation */
@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.8); }
}

@keyframes scene-breathe {
  from { transform: scale(1.035); }
  to { transform: scale(1.065); }
}

@keyframes sun-pulse {
  0%, 100% { opacity: .5; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes grain-shift {
  0% { background-position: 0 0; }
  25% { background-position: 23px -17px; }
  50% { background-position: -13px 29px; }
  75% { background-position: 31px 11px; }
  100% { background-position: -19px -23px; }
}

@keyframes particle-drift {
  0% { opacity: 0; transform: translate3d(0, 35px, 0) scale(.5); }
  18% { opacity: .75; }
  76% { opacity: .28; }
  100% { opacity: 0; transform: translate3d(50px, -510px, 0) scale(1.4); }
}

@keyframes gradient-flow {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes card-scan {
  0%, 62% { left: -35%; opacity: 0; }
  68% { opacity: .55; }
  86% { opacity: .22; }
  92%, 100% { left: 118%; opacity: 0; }
}

@keyframes card-breathe {
  from { scale: 1.01; }
  to { scale: 1.04; }
}

@keyframes reveal-in {
  from { opacity: 1; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes product-orbit {
  from { transform: rotate(-13deg) scale(.98); opacity: .55; }
  to { transform: rotate(9deg) scale(1.04); opacity: 1; }
}

@keyframes final-breathe {
  from { transform: scale(1.04) translate3d(-.4%, 0, 0); }
  to { transform: scale(1.085) translate3d(.4%, -1%, 0); }
}

@keyframes archive-entry {
  from { opacity: 1; transform: translateY(18px); filter: blur(0); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes archive-scan {
  0%, 100% { transform: translateX(-65%); opacity: 0; }
  35%, 65% { opacity: .7; }
  50% { transform: translateX(65%); }
}

@keyframes archive-glow {
  0%, 100% { opacity: .55; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes disc-orbit-one {
  from { transform: rotate(22deg) rotateZ(0deg); }
  to { transform: rotate(382deg) rotateZ(360deg); }
}

@keyframes disc-orbit-two {
  from { transform: rotate(-29deg) rotateZ(0deg); }
  to { transform: rotate(331deg) rotateZ(360deg); }
}

@keyframes core-breathe {
  0%, 100% { opacity: .7; scale: .92; }
  50% { opacity: 1; scale: 1.08; }
}

@keyframes core-scan {
  from { opacity: .72; scale: .88; filter: blur(.3px) drop-shadow(0 0 20px var(--cyan)); }
  to { opacity: 1; scale: 1.24; filter: blur(.1px) drop-shadow(0 0 46px var(--pink)); }
}

@keyframes emblem-float {
  0%, 100% { translate: 0 -4px; rotate: -2deg; }
  50% { translate: 0 6px; rotate: 2deg; }
}

@keyframes orb-lock {
  from { box-shadow: 0 0 80px rgba(85, 236, 255, .18), inset 0 0 55px rgba(85, 236, 255, .1); }
  to { box-shadow: 0 0 145px rgba(232, 49, 241, .3), inset 0 0 105px rgba(95, 75, 255, .22); }
}

@keyframes gear-star {
  0%, 100% { stroke: var(--cyan); transform: rotate(0) scale(.94); }
  50% { stroke: var(--pink); transform: rotate(45deg) scale(1.06); }
}

@keyframes title-enter {
  from { opacity: 0; transform: translate3d(-45px, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes laser-drift {
  from { opacity: .16; transform: rotate(22deg); }
  to { opacity: .38; transform: rotate(31deg); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  45%, 55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

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

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

@media (max-width: 1180px) {
  :root {
    --page: calc(100vw - 56px);
  }

  .site-header {
    padding-inline: 28px;
  }

  .primary-nav {
    gap: 42px;
    transform: none;
  }

  .primary-nav a {
    font-size: 16px;
  }

  .club-status {
    min-width: auto;
    font-size: 14px;
  }

  .hero-copy {
    width: 55vw;
    margin-left: 1%;
  }

  .hero h1 {
    font-size: clamp(100px, 10vw, 138px);
  }

  .portal-button {
    width: 390px;
  }

  .event-card h3 {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .lore-layout {
    gap: 50px;
  }

  .social-section {
    gap: 60px;
  }
}

@media (max-height: 800px) and (min-width: 901px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 112px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(104px, 7.2vw, 132px);
  }

  .hero-tagline {
    margin-block: 12px 28px;
  }

  .hero .portal-button {
    height: 88px;
  }

  .hero-footnote {
    margin-top: 16px;
  }

  .shop-section {
    padding-block: 85px 115px;
  }

  .shop-heading {
    margin-top: 34px;
  }

  .shop-heading h2 {
    font-size: clamp(66px, 5.5vw, 104px);
  }

  .gear-storefront {
    height: 620px;
    margin-top: 55px;
  }

  .gear-store-sign {
    height: 108px;
  }

  .gear-store-interior {
    inset-block-start: 78px;
  }

  .gear-shopkeeper {
    width: min(72%, 780px);
  }

  .product-grid {
    margin-top: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 80px;
    --page: calc(100vw - 40px);
  }

  .site-header,
  .site-header.is-fixed {
    position: fixed;
    display: flex;
    height: 76px;
    padding-inline: 20px;
    border-bottom: 1px solid rgba(106, 230, 255, .1);
    background: rgba(3, 4, 12, .76);
    backdrop-filter: blur(18px) saturate(130%);
  }

  .brand {
    width: 42px;
  }

  .menu-toggle {
    position: absolute;
    z-index: 4;
    top: 17px;
    right: 20px;
    display: grid;
    gap: 7px;
    justify-self: end;
    order: 4;
    width: 42px;
    height: 42px;
    margin-left: 11px;
    padding: 13px 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100dvh;
    padding: 105px 20px 35px;
    visibility: hidden;
    background:
      radial-gradient(circle at 72% 22%, rgba(110, 47, 220, .24), transparent 19rem),
      rgba(3, 4, 12, .97);
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }

  .primary-nav::after {
    position: absolute;
    right: -10%;
    bottom: -7%;
    width: 65vw;
    height: 65vw;
    border: 1px solid rgba(88, 232, 255, .13);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 100px rgba(104, 42, 221, .12) inset;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    height: auto;
    padding: 6px 0;
    font-family: var(--display);
    font-size: clamp(48px, 13vw, 80px);
    line-height: 1;
  }

  .primary-nav a::after {
    display: none;
  }

  .club-status {
    position: absolute;
    z-index: 4;
    top: 19px;
    right: 73px;
    justify-self: end;
    order: 3;
    margin-left: auto;
    padding: 7px 11px;
    font-size: 12px;
  }

  .hero {
    min-height: 770px;
    height: 94svh;
    max-height: 920px;
  }

  .hero-scene {
    inset: -2%;
    background-image:
      linear-gradient(90deg, rgba(2, 3, 11, .98) 0%, rgba(2, 3, 11, .72) 42%, rgba(2, 3, 11, .18) 79%),
      linear-gradient(0deg, rgba(2, 3, 9, .95), transparent 39%),
      url("assets/hero-club-agartha.webp");
    background-position: 62% center;
  }

  .hero-content {
    min-height: 770px;
    padding-top: 92px;
    padding-bottom: 110px;
  }

  .hero-copy {
    width: 72vw;
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(96px, 16vw, 132px);
  }

  .hero-tagline {
    font-size: 15px;
    letter-spacing: .23em;
  }

  .scroll-signal {
    display: none;
  }

  .event-deck {
    width: 100%;
    margin-top: 0;
    padding-block: 105px 125px;
  }

  .event-kicker,
  .event-intro {
    width: var(--page);
    margin-inline: auto;
  }

  .event-intro {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 45px;
  }

  .event-grid {
    display: flex;
    gap: 15px;
    padding: 0 20px 17px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-top: 60px;
  }

  .event-grid::-webkit-scrollbar,
  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .event-card {
    width: 68vw;
    flex: 0 0 68vw;
    scroll-snap-align: start;
  }

  .event-card a {
    height: auto;
    aspect-ratio: 1.77 / 1;
  }

  .event-card h3 {
    font-size: clamp(25px, 5vw, 36px);
  }

  .lore-section {
    margin-top: 0;
    padding-top: 105px;
  }

  .lore-layout {
    grid-template-columns: 1fr;
  }

  .lore-art {
    min-height: 570px;
  }

  .portal-disc {
    width: min(76vw, 570px);
  }

  .lore-copy {
    width: min(100%, 670px);
  }

  .archive-section {
    padding-block: 115px 135px;
  }

  .archive-heading {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 48px;
  }

  .archive-console {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .archive-tabs {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(91, 226, 255, .16);
    scrollbar-width: none;
  }

  .archive-tabs::-webkit-scrollbar {
    display: none;
  }

  .archive-tab {
    min-width: 240px;
    min-height: 120px;
    flex: 0 0 240px;
    grid-template-columns: 32px 1fr;
    border-right: 1px solid rgba(91, 226, 255, .12);
    border-bottom: 0;
  }

  .archive-tab small {
    display: none;
  }

  .archive-panels {
    min-height: 600px;
  }

  .section-heading-row,
  .shop-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading-row > p,
  .shop-heading p {
    margin: 0;
  }

  .event-details {
    padding-block: 115px 130px;
  }

  .transmission {
    grid-template-columns: 55px 1fr 40px;
  }

  .transmission-state {
    display: none;
  }

  .product-grid {
    display: flex;
    gap: 15px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    padding-left: 20px;
    border-inline: 0;
  }

  .product-card {
    width: 58vw;
    flex: 0 0 58vw;
    scroll-snap-align: start;
  }

  .gear-storefront {
    width: 100%;
    height: 650px;
    margin-top: 80px;
  }

  .gear-store-sign {
    left: 3%;
    width: 94%;
  }

  .gear-store-sign::before,
  .gear-store-sign::after {
    width: 11%;
  }

  .gear-shopkeeper {
    width: min(91%, 820px);
  }

  .gear-shopkeeper figcaption {
    right: 0;
  }

  .social-section {
    grid-template-columns: 1fr;
    gap: 85px;
  }

  .social-callout {
    padding-left: 0;
  }

  .final-cta {
    min-height: 660px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100vw - 34px);
  }

  .club-status {
    min-width: 96px;
  }

  .status-full {
    display: none;
  }

  .status-short {
    display: inline;
  }

  .hero {
    min-height: 730px;
    height: 92svh;
  }

  .hero::before {
    background:
      radial-gradient(circle at 69% 34%, rgba(255, 186, 53, .08), transparent 17%),
      linear-gradient(90deg, #03040c 0, rgba(3, 4, 12, .58) 58%, transparent 100%);
  }

  .hero-scene {
    background-position: 64% center;
  }

  .hero-content {
    min-height: 730px;
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .hero-copy {
    width: 92%;
  }

  .hero-overline {
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(68px, 17.5vw, 88px);
    line-height: .9;
    letter-spacing: -.05em;
  }

  .hero-tagline {
    max-width: 310px;
    margin: 25px 0 30px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .2em;
  }

  .portal-button {
    width: min(100%, 354px);
    height: 78px;
  }

  .hero .portal-button {
    width: min(100%, 354px);
  }

  .portal-button-inner {
    padding: 0 23px 0 33px;
    font-size: 14px;
  }

  .portal-button-inner svg {
    width: 37px;
  }

  .event-card {
    width: 82vw;
    flex-basis: 82vw;
  }

  .event-intro h2,
  .archive-heading h2 {
    font-size: clamp(62px, 18vw, 84px);
  }

  .event-intro p,
  .archive-heading > p {
    font-size: 15px;
  }

  .event-icon {
    top: 15px;
    right: 15px;
  }

  .event-icon svg {
    width: 25px;
  }

  .event-card h3 {
    font-size: 27px;
  }

  .section-kicker {
    font-size: 9px;
  }

  .lore-section {
    margin-top: 0;
    padding: 85px 0 75px;
  }

  .lore-art {
    min-height: 390px;
  }

  .portal-disc {
    width: 86vw;
  }

  .coordinate {
    font-size: 7px;
  }

  .lore-copy .section-kicker {
    margin-bottom: 42px;
  }

  .lore-copy h2,
  .section-heading-row h2,
  .shop-heading h2,
  .social-callout h2 {
    font-size: clamp(64px, 19vw, 88px);
  }

  .lore-copy .lore-lead {
    margin-top: 33px;
    font-size: 27px;
  }

  .lore-copy > p,
  .section-heading-row > p,
  .shop-heading p,
  .social-callout > p:last-child {
    font-size: 15px;
  }

  .lore-ticker {
    margin-top: 75px;
  }

  .lore-ticker > div {
    height: 56px;
  }

  .lore-ticker span {
    padding-inline: 28px;
    font-size: 16px;
  }

  .archive-section {
    padding-block: 88px 105px;
  }

  .archive-heading {
    margin-top: 42px;
  }

  .archive-console {
    margin-top: 52px;
  }

  .archive-tab {
    min-width: 205px;
    min-height: 100px;
    flex-basis: 205px;
    padding: 21px 18px;
  }

  .archive-tab strong {
    font-size: 26px;
  }

  .archive-panels {
    min-height: 650px;
    padding: 35px 25px;
  }

  .archive-panel h3 {
    font-size: 50px;
  }

  .archive-panel blockquote {
    font-size: 22px;
  }

  .archive-facts {
    flex-direction: column;
    align-items: flex-start;
  }

  .archive-visual {
    right: -36%;
    bottom: -8%;
    width: 100vw;
  }

  .event-details {
    padding-block: 90px 110px;
  }

  .section-heading-row {
    margin-top: 42px;
  }

  .transmission-list {
    margin-top: 62px;
  }

  .transmission {
    grid-template-columns: 35px 1fr 30px;
    gap: 12px;
    min-height: 112px;
  }

  .transmission h3 {
    font-size: 31px;
  }

  .transmission svg {
    width: 29px;
  }

  .shop-section {
    padding-block: 90px 110px;
  }

  .shop-heading {
    margin-top: 42px;
  }

  .gear-storefront {
    height: 530px;
    margin-top: 70px;
  }

  .gear-storefront::before,
  .gear-storefront::after {
    top: 76px;
    width: 5px;
  }

  .gear-store-sign {
    left: 2%;
    gap: 10px;
    width: 96%;
    height: 95px;
  }

  .gear-store-sign::before,
  .gear-store-sign::after {
    display: none;
  }

  .gear-store-sign strong {
    font-size: clamp(38px, 11vw, 54px);
  }

  .gear-store-sign small {
    font-size: 7px;
    letter-spacing: .3em;
  }

  .gear-sign-mark {
    width: 30px;
    flex-basis: 30px;
  }

  .gear-store-interior {
    inset: 70px 4px 0;
  }

  .gear-store-interior::after {
    border-width: 10px;
    border-top-width: 25px;
  }

  .gear-shelf-wall {
    top: 77px;
    right: 3%;
    left: 3%;
    height: 250px;
  }

  .gear-hat-row {
    gap: 9px;
    height: 105px;
    padding-inline: 3%;
  }

  .gear-hat-row i {
    width: clamp(32px, 10vw, 45px);
    height: clamp(20px, 6vw, 29px);
  }

  .gear-shelf-light {
    top: 108px;
  }

  .gear-shelf-light-two {
    top: auto;
  }

  .gear-side-shirt {
    display: none;
  }

  .gear-shopkeeper {
    right: auto;
    left: 50%;
    width: 150%;
    transform: translateX(-50%);
  }

  .gear-shopkeeper figcaption {
    top: 7%;
    right: auto;
    left: 17%;
    width: 142px;
    padding: 9px 10px 8px 13px;
  }

  .gear-shopkeeper figcaption::before {
    width: 22px;
  }

  .gear-shopkeeper figcaption strong {
    font-size: 20px;
  }

  .gear-shopkeeper figcaption small {
    display: none;
  }

  .product-grid {
    margin-top: 24px;
  }

  .product-card {
    width: 81vw;
    flex-basis: 81vw;
  }

  .shop-button {
    width: 100%;
    margin-top: 45px;
  }

  .social-section {
    gap: 63px;
    padding-block: 105px;
  }

  .social-callout > img {
    width: 48px;
  }

  .social-link {
    grid-template-columns: 30px 1fr 30px;
    gap: 10px;
    min-height: 98px;
    padding-right: 3px;
  }

  .social-link small {
    display: none;
  }

  .social-link strong {
    font-size: 34px;
  }

  .social-link svg {
    width: 29px;
  }

  .final-cta {
    min-height: 610px;
  }

  .final-cta::before {
    width: 125vw;
    height: 125vw;
  }

  .final-content h2 {
    font-size: clamp(86px, 27vw, 120px);
  }

  .final-content .portal-button {
    margin-top: 35px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 40px;
    text-align: center;
  }

  .footer-brand,
  .site-footer > div {
    justify-content: center;
  }

  .toast {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }
}

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

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

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

  .cursor-glow {
    display: none;
  }
}
