* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --space: #010611;
  --star: #f8fbff;
  --blue: #72d6ff;
  --cyan: #b9f2ff;
  --violet: #8d5cff;
  --gold: #ffe7aa;
}

html,
body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 231, 170, 0.16), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(114, 214, 255, 0.12), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(141, 92, 255, 0.12), transparent 26%),
    var(--space);
  color: white;
  font-family: "Orbitron", sans-serif;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  button,
  a {
    cursor: none;
  }
}

button {
  font: inherit;
}

#starfield,
#constellationScene,
#constellationCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.starnova-cursor,
.cursor-trails {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .starnova-cursor {
    position: fixed;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50px, -50px, 0);
    transition: opacity 220ms ease;
    z-index: 50;
  }

  .starnova-cursor span {
    display: block;
    color: rgba(185, 242, 255, 0.95);
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 1;
    text-shadow:
      0 0 8px rgba(114, 214, 255, 0.8),
      0 0 18px rgba(141, 92, 255, 0.45);
    transform: rotate(-12deg);
    transition:
      color 180ms ease,
      text-shadow 180ms ease,
      transform 180ms ease;
  }

  body.cursor-ready .starnova-cursor {
    opacity: 1;
  }

  body.cursor-node .starnova-cursor span {
    color: white;
    text-shadow:
      0 0 8px rgba(255, 231, 170, 0.95),
      0 0 18px rgba(114, 214, 255, 0.7),
      0 0 30px rgba(141, 92, 255, 0.5);
    transform: rotate(-12deg) scale(1.18);
  }

  body.cursor-music .starnova-cursor span {
    color: var(--gold);
    text-shadow:
      0 0 8px rgba(255, 231, 170, 0.9),
      0 0 20px rgba(114, 214, 255, 0.75),
      0 0 36px rgba(255, 255, 255, 0.42);
  }

  body.cursor-stewardship .starnova-cursor span {
    color: #dff8ff;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.95),
      0 0 20px rgba(114, 214, 255, 0.8),
      0 0 34px rgba(141, 92, 255, 0.58);
    transform: rotate(0deg) scale(1.12);
  }

  .cursor-trails {
    position: fixed;
    inset: 0;
    display: block;
    pointer-events: none;
    overflow: hidden;
    z-index: 49;
  }

  .cursor-trail {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--trail-size, 8px);
    height: var(--trail-size, 8px);
    border: 0;
    border-radius: 50%;
    pointer-events: none;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 10%, rgba(255, 231, 170, 0.86) 11% 24%, rgba(114, 214, 255, 0.42) 36%, transparent 72%);
    transform: translate3d(-50px, -50px, 0) scale(1);
    animation: cursorTrail 900ms ease-out forwards;
    filter:
      drop-shadow(0 0 7px rgba(255, 231, 170, 0.6))
      drop-shadow(0 0 14px rgba(114, 214, 255, 0.4));
  }

  .cursor-trail::after {
    content: "";
    position: absolute;
    width: calc(var(--trail-size, 8px) * 3.8);
    height: calc(var(--trail-size, 8px) * 0.68);
    right: 42%;
    top: 50%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(114, 214, 255, 0.28), rgba(255, 231, 170, 0.44), transparent);
    transform: translateY(-50%) rotate(var(--trail-angle, -12deg));
    filter: blur(1px);
    opacity: 0.76;
  }

  body.cursor-music .cursor-trail {
    background:
      radial-gradient(circle, rgba(255, 255, 255, 1) 0 10%, rgba(255, 231, 170, 0.96) 11% 28%, rgba(185, 242, 255, 0.46) 40%, transparent 76%);
    filter:
      drop-shadow(0 0 8px rgba(255, 231, 170, 0.7))
      drop-shadow(0 0 18px rgba(114, 214, 255, 0.44));
  }

  body.cursor-stewardship .cursor-trail {
    border-radius: 2px;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(185, 242, 255, 0.65) 34%, transparent 72%);
  }
}

#starfield {
  z-index: -10;
}

#constellationScene {
  opacity: 0;
  transform: scale(1.02);
  filter: saturate(1.08) blur(0.18px);
  transition:
    opacity 1.2s ease,
    transform 1.4s ease;
  z-index: -6;
}

#constellationCanvas {
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: -4;
}

body.entered #constellationScene,
body.entered #constellationCanvas {
  opacity: 1;
}

body.destination-active #constellationScene {
  opacity: 0;
}

.source-light {
  position: fixed;
  top: -650px;
  left: 50%;
  width: 1800px;
  height: 1800px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(
      circle,
      rgba(255, 240, 200, 0.25) 0%,
      rgba(255, 220, 150, 0.08) 30%,
      rgba(255, 255, 255, 0.02) 60%,
      transparent 75%
    );
  filter: blur(120px);
  animation: pulse 10s ease-in-out infinite;
  z-index: -2;
}

.experience {
  min-height: 100vh;
  position: relative;
}

.gateway,
.constellation,
.destination {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  overscroll-behavior: contain;
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.18, 0.84, 0.22, 1),
    filter 900ms ease;
}

.gateway {
  z-index: 2;
}

.gateway::before {
  content: "";
  position: absolute;
  width: min(96vw, 980px);
  height: min(54vh, 520px);
  top: 42%;
  left: 50%;
  background:
    radial-gradient(circle at 24% 52%, rgba(0, 217, 255, 0.22), transparent 26%),
    radial-gradient(circle at 58% 44%, rgba(179, 83, 255, 0.22), transparent 31%),
    radial-gradient(circle at 76% 56%, rgba(255, 231, 170, 0.18), transparent 24%);
  filter: blur(54px);
  opacity: 0.72;
  transform: translate(-50%, -50%);
  animation: nebulaBreathe 13s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

body.entered .gateway {
  opacity: 0;
  transform: scale(1.35) translateY(-8vh);
  filter: blur(10px);
  pointer-events: none;
}

.aleph,
.aleph-fallback {
  width: 340px;
  max-width: 80vw;
  margin-bottom: 30px;
  filter:
    drop-shadow(0 0 20px var(--blue))
    drop-shadow(0 0 50px var(--violet))
    drop-shadow(0 0 90px rgba(114, 214, 255, 0.4));
  animation: float 8s ease-in-out infinite;
}

.aleph {
  display: block;
}

.aleph-fallback {
  display: none;
  font-size: clamp(8rem, 28vw, 18rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.92);
}

body.no-aleph-image .aleph {
  display: none;
}

body.no-aleph-image .aleph-fallback {
  display: block;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.1rem, 0.9vw, 0.72rem);
  color: white;
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 16px;
  text-shadow:
    0 0 24px rgba(114, 214, 255, 0.26),
    0 0 60px rgba(141, 92, 255, 0.22);
}

h1 span {
  display: inline-block;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #b9f2ff 20%,
      #62dfff 42%,
      #d89cff 64%,
      #ffe7aa 84%,
      #ffffff 100%
    );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 0 10px rgba(114, 214, 255, 0.42))
    drop-shadow(0 0 24px rgba(141, 92, 255, 0.28));
  transform: translateY(0);
  animation:
    letterFloat 5.8s ease-in-out infinite,
    nebulaLetters 8s ease-in-out infinite;
  animation-delay:
    calc(var(--i) * -0.34s),
    calc(var(--i) * -0.22s);
}

h1 span:nth-child(2n) {
  filter:
    drop-shadow(0 0 10px rgba(255, 231, 170, 0.34))
    drop-shadow(0 0 26px rgba(114, 214, 255, 0.25));
}

h1 span:nth-child(3n) {
  filter:
    drop-shadow(0 0 12px rgba(216, 156, 255, 0.42))
    drop-shadow(0 0 28px rgba(0, 217, 255, 0.24));
}

.tagline {
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  max-width: 900px;
  margin-bottom: 28px;
  opacity: 0.95;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#enterBtn {
  position: relative;
  padding: 18px 45px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 60px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
  background:
    linear-gradient(90deg, rgba(114, 214, 255, 0.95), rgba(141, 92, 255, 0.95));
  box-shadow:
    0 0 30px rgba(114, 214, 255, 0.4),
    inset 0 0 18px rgba(255, 255, 255, 0.15);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

#enterBtn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 44px rgba(114, 214, 255, 0.55),
    0 0 74px rgba(141, 92, 255, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.18);
}

.verse {
  margin-top: 22px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.65;
  max-width: 700px;
  padding-bottom: 12px;
  opacity: 0.85;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.constellation {
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
  z-index: 1;
}

body.entered:not(.destination-active):not(.destination-transition) .constellation {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

body.destination-transition .constellation {
  opacity: 1;
  transform: scale(1.16) translateY(-1.5vh);
  filter: blur(4px) saturate(1.08);
  pointer-events: none;
}

body.destination-transition[data-transition-destination="aleigha"] .constellation {
  transform: scale(1.14) translateY(-2.2vh);
  filter: blur(4.5px) saturate(1.1) brightness(1.05);
}

body.destination-transition[data-transition-destination="music"] .constellation {
  transform: scale(1.19) translateY(-1.1vh);
  filter: blur(5px) saturate(1.18) brightness(1.04);
}

body.destination-transition[data-transition-destination="travelers"] .constellation {
  transform: scale(1.13) translateY(-0.7vh);
  filter: blur(3px) saturate(1.08) brightness(1.07);
}

body.destination-transition[data-transition-destination="stewardship"] .constellation {
  transform: scale(1.2) translateY(-1.8vh);
  filter: blur(4.5px) saturate(1.12) brightness(1.09);
}

body.destination-active .constellation {
  opacity: 0;
  transform: scale(1.65);
  filter: blur(12px);
}

.constellation-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.constellation h2 {
  position: absolute;
  bottom: 7vh;
  z-index: 2;
  color: white;
  font-size: clamp(0.9rem, 2vw, 1.45rem);
  letter-spacing: 0.38em;
  margin-bottom: 0;
  opacity: 0.46;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(185, 242, 255, 0.36),
    0 0 60px rgba(141, 92, 255, 0.22);
}

.crystal-world {
  position: absolute;
  width: min(68vw, 720px);
  opacity: 0.24;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, black 0 55%, rgba(0, 0, 0, 0.72) 64%, transparent 78%);
  filter:
    saturate(1.2)
    drop-shadow(0 0 50px rgba(255, 231, 170, 0.2))
    drop-shadow(0 0 80px rgba(114, 214, 255, 0.14));
  animation: worldBreathe 12s ease-in-out infinite;
  z-index: 0;
}

.constellation-orbit {
  position: absolute;
  width: min(78vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 242, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 60px rgba(114, 214, 255, 0.08),
    0 0 90px rgba(141, 92, 255, 0.08);
  animation: turn 42s linear infinite;
}

.constellation-orbit::before,
.constellation-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 231, 170, 0.1);
  border-radius: 50%;
}

.constellation-orbit::after {
  inset: 24%;
  border-color: rgba(114, 214, 255, 0.11);
}

.node {
  --x: 50%;
  --y: 50%;
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: clamp(110px, 14vw, 168px);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 242, 255, 0.44);
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(114, 214, 255, 0.06) 48%, rgba(1, 6, 17, 0.12) 72%);
  box-shadow:
    0 0 24px rgba(114, 214, 255, 0.32),
    inset 0 0 30px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  animation: nodeDrift 8s ease-in-out infinite;
  cursor: pointer;
  overflow: visible;
  padding: 0;
  z-index: 4;
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    filter 300ms ease;
}

.node::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 231, 170, 0.16);
}

.node::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 120deg,
      transparent,
      rgba(255, 231, 170, 0.34),
      transparent 26%,
      rgba(114, 214, 255, 0.24),
      transparent 62%
    );
  filter: blur(12px);
  opacity: 0.42;
  animation: turn 20s linear infinite;
  z-index: -1;
}

.node:hover,
.node:focus-visible {
  border-color: rgba(255, 231, 170, 0.76);
  filter: brightness(1.12);
  box-shadow:
    0 0 34px rgba(255, 231, 170, 0.34),
    0 0 64px rgba(114, 214, 255, 0.24),
    inset 0 0 30px rgba(255, 255, 255, 0.12);
  outline: none;
}

.node img {
  position: absolute;
  width: 112%;
  height: 112%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(114, 214, 255, 0.38))
    drop-shadow(0 0 34px rgba(141, 92, 255, 0.25));
  z-index: 0;
}

.node span {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  font-size: clamp(0.7rem, 1.5vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-shadow:
    0 0 10px rgba(1, 6, 17, 0.9),
    0 0 18px rgba(1, 6, 17, 0.75);
}

.aleigha-node {
  width: clamp(138px, 17vw, 220px);
  background:
    radial-gradient(circle, rgba(255, 231, 170, 0.18), rgba(114, 214, 255, 0.07) 48%, rgba(1, 6, 17, 0.15) 72%);
}

.aleigha-node img {
  width: 88%;
  height: 142%;
  object-position: center 44%;
  opacity: 0.88;
  mask-image: radial-gradient(ellipse at center, black 0 56%, transparent 76%);
}

.aleigha-node span {
  transform: translateY(64px);
}

.travelers {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(114, 214, 255, 0.05) 48%, rgba(1, 6, 17, 0.09) 72%);
}

.travelers img {
  width: 136%;
  height: 136%;
  object-fit: cover;
  object-position: 52% 46%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, black 0 47%, rgba(0, 0, 0, 0.82) 61%, transparent 79%);
  filter:
    brightness(1.04)
    contrast(1)
    saturate(1.08)
    drop-shadow(0 0 16px rgba(255, 196, 232, 0.2))
    drop-shadow(0 0 30px rgba(171, 74, 255, 0.14));
}

.travelers span {
  transform: translateY(68px);
}

.stewardship {
  background:
    radial-gradient(circle, rgba(255, 231, 170, 0.16), rgba(141, 92, 255, 0.1) 48%, rgba(1, 6, 17, 0.16) 72%);
}

.music {
  background:
    radial-gradient(circle, rgba(255, 231, 170, 0.12), rgba(114, 214, 255, 0.07) 48%, rgba(1, 6, 17, 0.09) 72%);
}

.music::before {
  border-color: rgba(255, 231, 170, 0.24);
  box-shadow:
    0 0 0 12px rgba(114, 214, 255, 0.04),
    0 0 0 26px rgba(255, 231, 170, 0.035);
}

.music span {
  transform: translateY(68px);
}

.music img {
  width: 142%;
  height: 142%;
  object-fit: cover;
  object-position: 50% 52%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, black 0 46%, rgba(0, 0, 0, 0.82) 60%, transparent 78%);
  filter:
    brightness(1.05)
    contrast(1)
    saturate(1.1)
    drop-shadow(0 0 16px rgba(114, 214, 255, 0.22))
    drop-shadow(0 0 30px rgba(159, 223, 255, 0.14));
}

.stewardship img {
  width: 104%;
  height: 104%;
  opacity: 0.95;
}

.stewardship span {
  transform: translateY(68px);
}

.travelers {
  animation-delay: -2.5s;
}

.stewardship {
  animation-delay: -5s;
}

.destination {
  opacity: 0;
  transform: scale(0.86);
  pointer-events: none;
  z-index: 4;
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.18, 0.84, 0.22, 1),
    filter 900ms ease;
}

body.destination-aleigha .aleigha-destination {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

body.destination-transition[data-transition-destination="aleigha"] .aleigha-destination {
  opacity: 0.74;
  transform: scale(1.045) translateY(1.8vh);
  filter: blur(5px) saturate(1.06);
  pointer-events: none;
}

.aleigha-destination {
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scroll-padding-top: 108px;
  padding: 108px clamp(28px, 5vw, 72px) 56px;
}

body.destination-music .music-destination {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

body.destination-transition[data-transition-destination="music"] .music-destination {
  opacity: 0.76;
  transform: scale(1.05) translateY(1vh) translateX(1.6vw);
  filter: blur(5px) saturate(1.12);
  pointer-events: none;
}

.music-destination {
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scroll-padding-top: 112px;
  padding: 112px clamp(28px, 5vw, 72px) 64px;
}

body.destination-travelers .travelers-destination {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

body.destination-transition[data-transition-destination="travelers"] .travelers-destination {
  opacity: 0.76;
  transform: scale(1.035) translateY(1.6vh);
  filter: blur(4px) saturate(1.08);
  pointer-events: none;
}

body.destination-stewardship .stewardship-destination {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

body.destination-transition[data-transition-destination="stewardship"] .stewardship-destination {
  opacity: 0.78;
  transform: scale(1.055) translateY(0.8vh);
  filter: blur(4.5px) saturate(1.12) brightness(1.06);
  pointer-events: none;
}

body.destination-admin .admin-destination {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

body.destination-transition[data-transition-destination="admin"] .admin-destination {
  opacity: 0.72;
  transform: scale(1.045) translateY(1vh);
  filter: blur(7px);
  pointer-events: none;
}

.destination-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 42%, rgba(114, 214, 255, 0.17), transparent 27%),
    radial-gradient(circle at 22% 58%, rgba(255, 231, 170, 0.12), transparent 31%),
    rgba(1, 6, 17, 0.48);
  z-index: -1;
}

.music-veil {
  background:
    radial-gradient(circle at 28% 46%, rgba(255, 231, 170, 0.16), transparent 26%),
    radial-gradient(circle at 72% 34%, rgba(114, 214, 255, 0.15), transparent 28%),
    radial-gradient(circle at 48% 72%, rgba(141, 92, 255, 0.18), transparent 30%),
    rgba(1, 6, 17, 0.58);
}

.travelers-veil {
  background:
    radial-gradient(circle at 70% 46%, rgba(216, 156, 255, 0.2), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(114, 214, 255, 0.16), transparent 24%),
    radial-gradient(circle at 28% 54%, rgba(255, 231, 170, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(16, 4, 42, 0.34), rgba(1, 6, 17, 0.74));
}

.stewardship-veil {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 231, 170, 0.18), transparent 24%),
    radial-gradient(circle at 28% 62%, rgba(114, 214, 255, 0.14), transparent 30%),
    radial-gradient(circle at 62% 78%, rgba(216, 156, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(12, 10, 30, 0.5), rgba(1, 6, 17, 0.82));
}

.admin-veil {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 231, 170, 0.12), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(114, 214, 255, 0.14), transparent 26%),
    radial-gradient(circle at 62% 72%, rgba(216, 156, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(8, 14, 35, 0.82), rgba(1, 6, 17, 0.92));
}

.travelers-planet {
  position: absolute;
  right: clamp(-170px, -9vw, -68px);
  top: 50%;
  width: min(70vw, 880px);
  aspect-ratio: 1.28;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: translateY(-50%);
  opacity: 0.88;
  pointer-events: none;
  animation: travelersFloat 13s ease-in-out infinite;
  z-index: 1;
}


.travelers-planet::before {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 34%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle, rgba(216, 156, 255, 0.22), transparent 62%);
  filter: blur(22px);
  opacity: 0.7;
  animation: auroraPulse 9s ease-in-out infinite;
  z-index: -1;
}

.travelers-planet::after {
  content: "";
  position: absolute;
  inset: 12% 17% 10%;
  border-radius: 50%;
  border: 1px solid rgba(255, 231, 170, 0.22);
  box-shadow:
    0 0 60px rgba(216, 156, 255, 0.18),
    inset 0 0 54px rgba(114, 214, 255, 0.1);
  transform: rotate(-13deg);
  animation: turn 38s linear infinite;
}

.travelers-planet img {
  width: 108%;
  height: 108%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: screen;
  -webkit-mask-image:
    radial-gradient(ellipse at 50% 50%, #000 0 45%, rgba(0, 0, 0, 0.88) 57%, rgba(0, 0, 0, 0.48) 70%, rgba(0, 0, 0, 0.12) 82%, transparent 94%),
    linear-gradient(90deg, transparent 0 2%, #000 14% 86%, transparent 98%),
    linear-gradient(180deg, transparent 0 4%, #000 13% 87%, transparent 96%);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-in, source-in;
  mask-image:
    radial-gradient(ellipse at 50% 50%, #000 0 45%, rgba(0, 0, 0, 0.88) 57%, rgba(0, 0, 0, 0.48) 70%, rgba(0, 0, 0, 0.12) 82%, transparent 94%),
    linear-gradient(90deg, transparent 0 2%, #000 14% 86%, transparent 98%),
    linear-gradient(180deg, transparent 0 4%, #000 13% 87%, transparent 96%);
  mask-size: 100% 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-composite: intersect;
  filter:
    brightness(1.08)
    contrast(1.02)
    saturate(1.12)
    drop-shadow(0 0 26px rgba(216, 156, 255, 0.32))
    drop-shadow(0 0 52px rgba(114, 214, 255, 0.2))
    drop-shadow(0 0 72px rgba(255, 231, 170, 0.1));
}

.travelers-copy {
  position: relative;
  width: min(48vw, 650px);
  margin-left: clamp(42px, 7vw, 118px);
  text-align: left;
  z-index: 2;
}

.stewardship-destination {
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scroll-padding-top: 120px;
  padding: 132px clamp(28px, 5vw, 72px) 58px;
}

body.destination-stewardship .return-map,
body.destination-admin .return-map,
body.destination-travelers .return-map {
  top: 18px;
  left: 18px;
  min-width: 124px;
  height: 40px;
  padding: 0 14px 0 12px;
  font-size: 0.64rem;
  z-index: 6;
  opacity: 0.88;
}

body.destination-stewardship .return-map strong,
body.destination-admin .return-map strong,
body.destination-travelers .return-map strong {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.stewardship-copy {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto 0 clamp(112px, 11vw, 168px);
  text-align: left;
  z-index: 2;
}

body.destination-stewardship .return-map {
  left: max(18px, calc(50% - 760px));
}

.stewardship-copy h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-shadow:
    0 0 24px rgba(255, 231, 170, 0.22),
    0 0 48px rgba(114, 214, 255, 0.14);
}

.stewardship-copy p:not(.destination-kicker):not(.favorite-note) {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.78;
}

.stewardship-shell {
  width: min(100%, 860px);
  margin-top: 28px;
  border: 1px solid rgba(185, 242, 255, 0.18);
  border-radius: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 170, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(1, 6, 17, 0.52);
  box-shadow:
    0 0 40px rgba(114, 214, 255, 0.14),
    inset 0 0 22px rgba(255, 255, 255, 0.03);
}

.stewardship-status {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.7;
}

.stewardship-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.stewardship-card {
  border: 1px solid rgba(185, 242, 255, 0.16);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(1, 6, 17, 0.44);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.02);
}

.stewardship-card strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: clamp(1.35rem, 2.8vw, 2.6rem);
  line-height: 1.02;
}

.stewardship-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.stewardship-member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.stewardship-member-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(114, 214, 255, 0.1), transparent 45%),
    rgba(3, 9, 21, 0.48);
}

.stewardship-member-card strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: clamp(1rem, 2vw, 1.42rem);
  line-height: 1.18;
}

.stewardship-member-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
}

.stewardship-entry {
  margin-top: 20px;
}

.stewardship-entry-head {
  margin-bottom: 14px;
}

.stewardship-entry-head h3 {
  margin: 4px 0 0;
  color: white;
  font-size: clamp(1.08rem, 2.4vw, 1.72rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: none;
}

.stewardship-entry .auth-actions {
  margin-top: 0;
}

.stewardship-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stewardship-actions .request-access,
.stewardship-actions .ghost-orbit-btn {
  position: relative;
  flex: 1 1 280px;
  min-height: 64px;
  margin-top: 4px;
  padding: 0 24px;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  justify-content: center;
  overflow: hidden;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    filter 240ms ease,
    background 240ms ease;
}

.stewardship-actions .request-access::before,
.stewardship-actions .ghost-orbit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, 0.14) 32%, transparent 52%),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.12), transparent 34%);
  opacity: 0.8;
  pointer-events: none;
}

.stewardship-actions .request-access {
  border-color: rgba(255, 231, 170, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 231, 170, 0.22), rgba(114, 214, 255, 0.14)),
    rgba(255, 231, 170, 0.1);
  box-shadow:
    0 0 26px rgba(255, 231, 170, 0.18),
    0 0 44px rgba(114, 214, 255, 0.14),
    inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.stewardship-actions .ghost-orbit-btn {
  border-color: rgba(232, 170, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 180, 224, 0.18), rgba(141, 92, 255, 0.16)),
    rgba(114, 214, 255, 0.06);
  box-shadow:
    0 0 24px rgba(216, 156, 255, 0.16),
    0 0 42px rgba(255, 176, 220, 0.12),
    inset 0 0 18px rgba(255, 255, 255, 0.06);
}

.stewardship-actions .request-access:hover,
.stewardship-actions .request-access:focus-visible,
.stewardship-actions .ghost-orbit-btn:hover,
.stewardship-actions .ghost-orbit-btn:focus-visible {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.08);
  outline: none;
}

.stewardship-actions .request-access:hover,
.stewardship-actions .request-access:focus-visible {
  box-shadow:
    0 0 32px rgba(255, 231, 170, 0.24),
    0 0 56px rgba(114, 214, 255, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.stewardship-actions .ghost-orbit-btn:hover,
.stewardship-actions .ghost-orbit-btn:focus-visible {
  box-shadow:
    0 0 30px rgba(216, 156, 255, 0.22),
    0 0 52px rgba(255, 176, 220, 0.16),
    inset 0 0 20px rgba(255, 255, 255, 0.08);
}

.stewardship-token-path {
  margin-top: 16px;
  border: 1px solid rgba(255, 231, 170, 0.12);
  border-radius: 20px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 170, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(4, 10, 22, 0.4);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.02),
    0 0 28px rgba(255, 231, 170, 0.06);
}

.stewardship-token-path-head h4 {
  margin: 4px 0 8px;
  color: white;
  font-size: clamp(1rem, 2vw, 1.34rem);
  line-height: 1.2;
}

.stewardship-token-path-head .favorite-note {
  max-width: 58ch;
  margin: 0;
}

.stewardship-token-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.stewardship-token-card {
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid rgba(185, 242, 255, 0.1);
  border-radius: 16px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(3, 9, 21, 0.34);
}

.stewardship-token-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 231, 170, 0.26);
  color: rgba(255, 231, 170, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.stewardship-token-card strong {
  color: white;
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stewardship-token-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.stewardship-card-shell {
  margin-top: 16px;
  border: 1px solid rgba(185, 242, 255, 0.14);
  border-radius: 20px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 170, 0.08), transparent 34%),
    rgba(4, 10, 22, 0.46);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.02),
    0 0 28px rgba(114, 214, 255, 0.08);
}

.stewardship-return-panel {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 231, 170, 0.18);
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at top center, rgba(255, 231, 170, 0.14), transparent 32%),
    radial-gradient(circle at 20% 22%, rgba(114, 214, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 22, 0.54);
  box-shadow:
    0 0 34px rgba(255, 231, 170, 0.12),
    0 0 64px rgba(114, 214, 255, 0.08),
    inset 0 0 24px rgba(255, 255, 255, 0.03);
  animation: stewardshipReturnRise 900ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.stewardship-return-glow {
  position: absolute;
  inset: -10% auto auto 50%;
  width: 56%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 231, 170, 0.28), rgba(114, 214, 255, 0.12) 42%, transparent 72%);
  filter: blur(24px);
  opacity: 0.8;
  pointer-events: none;
}

.stewardship-return-head,
.stewardship-return-grid,
.stewardship-return-selection {
  position: relative;
  z-index: 1;
}

.stewardship-return-head h4 {
  margin: 4px 0 8px;
  color: white;
  font-size: clamp(1.08rem, 2.2vw, 1.58rem);
  line-height: 1.16;
}

.stewardship-return-head .favorite-note {
  max-width: 58ch;
  margin: 0;
}

.stewardship-return-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.stewardship-return-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(3, 9, 21, 0.38);
}

.stewardship-return-label {
  display: inline-block;
  color: rgba(255, 231, 170, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stewardship-return-card strong {
  display: block;
  margin: 10px 0 8px;
  color: white;
  font-size: clamp(1.04rem, 2vw, 1.54rem);
  line-height: 1.14;
}

.stewardship-return-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.stewardship-return-selection {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.stewardship-return-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.stewardship-return-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 231, 170, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(1, 6, 17, 0.38);
  box-shadow:
    0 0 18px rgba(255, 231, 170, 0.08),
    inset 0 0 12px rgba(255, 255, 255, 0.02);
}

.stewardship-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.stewardship-card-head h4 {
  margin: 4px 0 0;
  color: white;
  font-size: clamp(1rem, 2vw, 1.34rem);
  line-height: 1.2;
}

.stewardship-card-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.stewardship-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.stewardship-choice input {
  margin-top: 3px;
  accent-color: #b9f2ff;
}

.stewardship-choice strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stewardship-choice em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.55;
}

.stewardship-card-form label:not(.stewardship-choice) {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stewardship-track-picker {
  border: 1px solid rgba(185, 242, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  margin: 0;
  min-inline-size: 0;
}

.stewardship-track-picker legend {
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stewardship-track-picker > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.stewardship-track-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.stewardship-track-option input {
  margin-top: 2px;
  accent-color: #b9f2ff;
}

.stewardship-track-option strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 0.92rem;
  line-height: 1.2;
}

.stewardship-track-option em {
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.45;
}

.stewardship-purchase-summary {
  border: 1px solid rgba(255, 231, 170, 0.14);
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(1, 6, 17, 0.42);
}

.stewardship-purchase-summary strong {
  display: block;
  margin: 6px 0;
  color: white;
  font-size: clamp(1.28rem, 2.8vw, 2.2rem);
  line-height: 1.04;
}

.stewardship-purchase-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.stewardship-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.stewardship-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(3, 9, 21, 0.36);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.stewardship-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 231, 170, 0.28);
  color: rgba(255, 231, 170, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.stewardship-step strong {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-size: 0.98rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stewardship-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.55;
}

.stewardship-step.is-active {
  border-color: rgba(255, 231, 170, 0.26);
  box-shadow:
    0 0 24px rgba(255, 231, 170, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

.stewardship-step.is-active span {
  border-color: rgba(114, 214, 255, 0.42);
  color: rgba(185, 242, 255, 0.96);
  box-shadow: 0 0 16px rgba(114, 214, 255, 0.18);
}

.stewardship-catalog-shell {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}

.stewardship-catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.stewardship-catalog-head h3 {
  margin: 4px 0 0;
  color: white;
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stewardship-catalog-head .favorite-note {
  max-width: 42ch;
  margin: 0;
}

.stewardship-catalog {
  display: grid;
  gap: 14px;
}

.stewardship-track-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(185, 242, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(3, 8, 18, 0.5);
}

.stewardship-track-card h4 {
  margin: 0 0 8px;
  color: white;
  font-size: clamp(1.04rem, 2vw, 1.45rem);
  line-height: 1.12;
}

.stewardship-track-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.stewardship-track-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.stewardship-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(185, 242, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.stewardship-track-card strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 1.18rem;
  line-height: 1.1;
}

.stewardship-track-card .favorite-note {
  margin-top: 6px;
}

.stewardship-empty {
  border: 1px dashed rgba(185, 242, 255, 0.18);
  border-radius: 16px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.6;
  background: rgba(3, 8, 18, 0.4);
}

.travelers-copy h2 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 26px rgba(114, 214, 255, 0.28),
    0 0 58px rgba(216, 156, 255, 0.16);
}

.travelers-copy p:not(.destination-kicker) {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.24rem);
  line-height: 1.8;
}

.travelers-portal {
  width: min(100%, 560px);
  margin-top: 26px;
  border: 1px solid rgba(185, 242, 255, 0.16);
  border-radius: 16px;
  padding: 18px 18px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 170, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(1, 6, 17, 0.44);
  box-shadow:
    0 0 34px rgba(114, 214, 255, 0.14),
    inset 0 0 18px rgba(255, 255, 255, 0.03);
}

.travelers-status {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.7;
}

.admin-shell {
  position: relative;
  width: min(100% - 56px, 1240px);
  max-height: min(86vh, 980px);
  overflow: auto;
  border: 1px solid rgba(185, 242, 255, 0.18);
  border-radius: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 170, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(1, 6, 17, 0.72);
  box-shadow:
    0 0 48px rgba(114, 214, 255, 0.16),
    0 0 96px rgba(141, 92, 255, 0.12),
    inset 0 0 24px rgba(255, 255, 255, 0.03);
  text-align: left;
}

.admin-header,
.admin-panel-head,
.admin-actions,
.admin-row,
.admin-meta {
  display: flex;
  gap: 14px;
}

.admin-header,
.admin-panel-head {
  justify-content: space-between;
  align-items: flex-start;
}

.admin-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-actions-private {
  display: none;
}

.admin-shell.authorized .admin-actions-public {
  display: none;
}

.admin-shell.authorized .admin-actions-private {
  display: flex;
}

.admin-lead {
  max-width: 58ch;
}

.admin-status {
  margin-top: 20px;
  border: 1px solid rgba(185, 242, 255, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(114, 214, 255, 0.06);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.7;
}

.admin-summary-grid,
.admin-grid {
  display: grid;
  gap: 16px;
}

.admin-lock-panel {
  margin-top: 22px;
  border: 1px solid rgba(185, 242, 255, 0.16);
  border-radius: 20px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 170, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(1, 6, 17, 0.48);
  box-shadow:
    0 0 34px rgba(114, 214, 255, 0.14),
    inset 0 0 18px rgba(255, 255, 255, 0.03);
}

.admin-auth-fallback {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(185, 242, 255, 0.12);
}

.admin-dev-fallback {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(185, 242, 255, 0.12);
}

.admin-auth-link {
  display: inline-flex;
  margin-top: 8px;
  text-decoration: none;
}

.admin-data-shell {
  display: none;
}

.admin-shell.authorized .admin-lock-panel {
  display: none;
}

.admin-shell.authorized .admin-data-shell {
  display: block;
}

.admin-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.admin-grid {
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  margin-top: 18px;
  align-items: start;
}

.admin-card,
.admin-panel,
.admin-item {
  border: 1px solid rgba(185, 242, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(1, 6, 17, 0.44);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.02);
}

.admin-card {
  padding: 18px;
}

.admin-card-label {
  margin-bottom: 8px;
  color: rgba(185, 242, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-card-value {
  display: block;
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.admin-card-note {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.admin-panel {
  padding: 18px;
}

.admin-panel h3 {
  margin-bottom: 0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.admin-item {
  padding: 14px 14px 16px;
}

.admin-row {
  justify-content: space-between;
  align-items: baseline;
}

.admin-item strong {
  color: white;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.admin-meta {
  flex-wrap: wrap;
  margin-top: 10px;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 231, 170, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 231, 170, 0.06);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-empty {
  border: 1px dashed rgba(185, 242, 255, 0.2);
  border-radius: 16px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.admin-footnote {
  margin-top: 18px;
}

.aleigha-portrait-shell {
  position: absolute;
  right: clamp(4px, 1.8vw, 28px);
  bottom: 0;
  width: min(34vw, 430px);
  height: min(66vh, 620px);
  display: grid;
  place-items: end center;
  opacity: 0.92;
  overflow: visible;
  isolation: isolate;
  filter:
    drop-shadow(0 0 26px rgba(114, 214, 255, 0.28))
    drop-shadow(0 0 56px rgba(216, 156, 255, 0.22))
    drop-shadow(0 0 96px rgba(255, 231, 170, 0.12));
}

.aleigha-portrait-shell::before {
  content: "";
  position: absolute;
  inset: -8% -18% -16% -20%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 24%, rgba(114, 214, 255, 0.28), transparent 24%),
    radial-gradient(circle at 72% 34%, rgba(216, 156, 255, 0.26), transparent 26%),
    radial-gradient(circle at 58% 72%, rgba(255, 231, 170, 0.18), transparent 28%),
    radial-gradient(ellipse at 54% 88%, rgba(141, 92, 255, 0.14), transparent 40%);
  filter: blur(86px);
  opacity: 0.6;
  animation: auroraPulse 8s ease-in-out infinite;
  z-index: -1;
}

.aleigha-portrait-shell::after {
  content: "";
  position: absolute;
  inset: -4% -18% -20% -14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.16), rgba(185, 242, 255, 0.12) 20%, rgba(216, 156, 255, 0.11) 38%, rgba(141, 92, 255, 0.05) 54%, transparent 74%);
  filter: blur(124px);
  opacity: 0.42;
  animation: nebulaBreathe 12s ease-in-out infinite;
  z-index: -2;
}

.aleigha-portrait-shell img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(0);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0 3%, rgba(0, 0, 0, 0.34) 10%, #000 20%, #000 93%, rgba(0, 0, 0, 0.62) 97%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0 1%, #000 8%, #000 88%, rgba(0, 0, 0, 0.7) 95%, rgba(0, 0, 0, 0.18) 99%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0 3%, rgba(0, 0, 0, 0.34) 10%, #000 20%, #000 93%, rgba(0, 0, 0, 0.62) 97%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0 1%, #000 8%, #000 88%, rgba(0, 0, 0, 0.7) 95%, rgba(0, 0, 0, 0.18) 99%, transparent 100%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-composite: intersect;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.08))
    drop-shadow(0 0 20px rgba(114, 214, 255, 0.18))
    drop-shadow(0 0 42px rgba(216, 156, 255, 0.16))
    drop-shadow(0 0 80px rgba(255, 231, 170, 0.08));
}

@media (max-width: 1440px) {
  .music-chamber {
    width: min(100% - 44px, 1120px);
    padding-right: clamp(0px, 8vw, 112px);
  }

  .music-copy {
    max-width: 620px;
  }

  .music-copy h2 {
    max-width: 10ch;
    font-size: clamp(1.7rem, 3.4vw, 3.1rem);
  }

  .music-copy p:not(.destination-kicker) {
    max-width: 48ch;
    font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  }

  .transmission-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .transmission-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .transmission-card img,
  .cover-orb {
    width: 104px;
    height: 104px;
  }

  .locked-transmission h3,
  .open-transmission h3 {
    font-size: clamp(1.05rem, 2vw, 1.5rem);
  }

  .epk-orb {
    top: 96px;
    right: 18px;
    width: min(18vw, 190px);
    opacity: 0.62;
  }

  .aleph,
  .aleph-fallback {
    width: min(280px, 58vw);
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(2.2rem, 6.4vw, 5.6rem);
    margin-bottom: 12px;
  }

  .tagline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: 20px;
  }

  #enterBtn {
    padding: 16px 34px;
    font-size: 0.92rem;
  }

  .verse {
    font-size: clamp(0.94rem, 1.5vw, 1.08rem);
    line-height: 1.55;
    margin-top: 16px;
    max-width: 34ch;
  }
}

@media (max-width: 1180px) {
  .gateway {
    padding: 28px 24px 34px;
  }

  .aleph,
  .aleph-fallback {
    width: min(230px, 54vw);
    margin-bottom: 14px;
  }

  h1 {
    font-size: clamp(1.9rem, 5.5vw, 4.4rem);
    line-height: 0.92;
    margin-bottom: 10px;
  }

  .tagline {
    font-size: clamp(0.94rem, 1.8vw, 1.2rem);
    margin-bottom: 16px;
  }

  #enterBtn {
    padding: 14px 28px;
    font-size: 0.84rem;
  }

  .verse {
    font-size: clamp(0.88rem, 1.35vw, 1rem);
    line-height: 1.48;
    margin-top: 14px;
    max-width: 30ch;
  }

  .music-chamber {
    width: min(100% - 32px, 920px);
    padding-right: 0;
  }

  .music-copy {
    max-width: 560px;
  }

  .music-copy h2 {
    max-width: 9ch;
    font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  }

  .music-copy p:not(.destination-kicker) {
    max-width: 44ch;
    font-size: clamp(0.94rem, 1.35vw, 1.02rem);
  }

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

  .transmission-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .transmission-card img,
  .cover-orb {
    width: 104px;
    height: 104px;
  }

  .ep-tracklist li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding-right: 22px;
  }

  .track-signal-meta {
    justify-items: start;
  }

  .ep-tracklist em {
    display: none;
  }

  .favorite-note {
    display: none;
  }

  .epk-orb {
    top: 88px;
    right: 14px;
    width: min(16vw, 156px);
    opacity: 0.54;
  }
}

@media (max-width: 900px) {
  .music-destination {
    padding-inline: clamp(18px, 5vw, 34px);
  }

  .music-chamber {
    width: min(100%, 680px);
  }

  .transmission-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .transmission-card img,
  .cover-orb {
    width: min(142px, 48vw);
    height: min(142px, 48vw);
  }

  .locked-transmission .cover-orb {
    justify-self: start;
  }

  .ep-tracklist li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding-right: 24px;
  }

  .track-signal-meta {
    justify-items: start;
  }

  .ep-tracklist em,
  .favorite-note {
    display: none;
  }
}

@media (max-height: 860px) and (min-width: 721px) {
  .gateway {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .aleph,
  .aleph-fallback {
    width: min(210px, 46vw);
    margin-bottom: 10px;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    margin-bottom: 8px;
  }

  .tagline {
    font-size: clamp(0.92rem, 1.6vw, 1.12rem);
    margin-bottom: 14px;
  }

  #enterBtn {
    padding: 12px 24px;
  }

  .verse {
    margin-top: 12px;
    font-size: clamp(0.84rem, 1.2vw, 0.96rem);
    max-width: 28ch;
  }
}

.portrait-orbit {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  top: 18%;
  border-radius: 50%;
  border: 1px solid rgba(255, 231, 170, 0.22);
  box-shadow:
    0 0 70px rgba(255, 231, 170, 0.14),
    inset 0 0 70px rgba(114, 214, 255, 0.08);
  animation: turn 34s linear infinite;
}

.destination-copy {
  position: relative;
  width: min(54vw, 700px);
  max-width: 700px;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: min(29vw, 320px);
  text-align: left;
  z-index: 2;
}

.aleigha-name {
  width: min(100%, 460px);
  margin-bottom: 12px;
  filter:
    drop-shadow(0 0 24px rgba(255, 231, 170, 0.24))
    drop-shadow(0 0 46px rgba(114, 214, 255, 0.18));
}

.destination-kicker {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.destination-copy h2 {
  max-width: 10ch;
  font-size: clamp(1.8rem, 3.8vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-shadow: 0 0 34px rgba(114, 214, 255, 0.2);
}

.moving-word {
  display: inline-block;
  background:
    linear-gradient(120deg, #ffffff, #b9f2ff, #d89cff, #ffe7aa, #ffffff);
  background-size: 240% 240%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    wordDrift 4.8s ease-in-out infinite,
    nebulaLetters 7s ease-in-out infinite;
  filter:
    drop-shadow(0 0 12px rgba(114, 214, 255, 0.36))
    drop-shadow(0 0 26px rgba(216, 156, 255, 0.22));
}

.destination-copy p:not(.destination-kicker) {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, serif;
  font-size: clamp(0.98rem, 2vw, 1.14rem);
  line-height: 1.68;
}

.return-motion {
  position: fixed;
  top: 28px;
  left: 50%;
  width: 92px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 8;
}

.return-map {
  top: 32px;
  left: 32px;
  width: auto;
  min-width: 148px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 231, 170, 0.34);
  border-radius: 999px;
  padding: 0 18px 0 14px;
  background: rgba(1, 6, 17, 0.52);
  color: white;
  transform: none;
  box-shadow:
    0 0 24px rgba(114, 214, 255, 0.16),
    inset 0 0 18px rgba(255, 255, 255, 0.05);
}

.return-map strong {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.return-aleph {
  top: 50%;
  left: 30px;
  transform: translateY(-50%) rotate(-90deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

body.entered:not(.destination-active) .return-aleph {
  opacity: 0.75;
  pointer-events: auto;
  transform: translateY(-50%) rotate(-90deg) translateY(-4px);
}

.return-aleph:hover,
.return-aleph:focus-visible {
  opacity: 1;
}

.return-motion span,
.return-motion::before,
.return-motion::after {
  position: absolute;
  inset: 9px 18px;
  content: "";
  border-top: 1px solid rgba(255, 231, 170, 0.65);
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(255, 231, 170, 0.45));
}

.return-map span {
  position: relative;
  inset: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(255, 231, 170, 0.86);
  border-left: 2px solid rgba(255, 231, 170, 0.86);
  border-radius: 1px;
  transform: rotate(-45deg);
}

.return-map::before,
.return-map::after {
  display: none;
}

.return-motion::before {
  transform: translateY(8px) scaleX(0.74);
  opacity: 0.58;
}

.return-motion::after {
  transform: translateY(16px) scaleX(0.48);
  opacity: 0.34;
}

.return-motion:hover span,
.return-motion:focus-visible span {
  border-top-color: white;
}

.music-world-shell {
  position: absolute;
  right: -8vw;
  top: 50%;
  width: min(64vw, 760px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.34;
  mix-blend-mode: screen;
  filter:
    saturate(1.2)
    drop-shadow(0 0 58px rgba(114, 214, 255, 0.28))
    drop-shadow(0 0 82px rgba(255, 231, 170, 0.12));
  pointer-events: none;
  animation: worldBreathe 11s ease-in-out infinite;
  mask-image: radial-gradient(circle, black 0 54%, rgba(0, 0, 0, 0.76) 66%, transparent 82%);
}

.music-world-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.epk-orb {
  position: absolute;
  top: 108px;
  right: clamp(20px, 3vw, 48px);
  width: min(19vw, 240px);
  border: 1px solid rgba(185, 242, 255, 0.18);
  border-radius: 8px;
  padding: 7px;
  background: rgba(1, 6, 17, 0.28);
  box-shadow:
    0 0 34px rgba(114, 214, 255, 0.18),
    0 0 66px rgba(141, 92, 255, 0.12),
    inset 0 0 22px rgba(255, 255, 255, 0.04);
  transform: rotate(2deg);
  animation: epkFloat 9s ease-in-out infinite;
  cursor: pointer;
  z-index: 3;
  transition:
    top 700ms cubic-bezier(0.18, 0.84, 0.22, 1),
    right 700ms cubic-bezier(0.18, 0.84, 0.22, 1),
    width 700ms cubic-bezier(0.18, 0.84, 0.22, 1),
    padding 700ms cubic-bezier(0.18, 0.84, 0.22, 1),
    background 500ms ease,
    box-shadow 500ms ease,
    transform 700ms cubic-bezier(0.18, 0.84, 0.22, 1);
}

.epk-orb::before {
  content: "EPK";
  position: absolute;
  left: 14px;
  top: 14px;
  color: rgba(255, 231, 170, 0.86);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-shadow: 0 0 10px rgba(255, 231, 170, 0.42);
  z-index: 2;
}

.epk-orb::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -34px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(185, 242, 255, 0.22), transparent 62%),
    radial-gradient(ellipse at 35% 50%, rgba(141, 92, 255, 0.18), transparent 54%),
    radial-gradient(ellipse at 65% 58%, rgba(255, 231, 170, 0.12), transparent 58%);
  filter: blur(16px);
  opacity: 0.86;
  animation: smokeBreathe 7s ease-in-out infinite;
  z-index: -1;
}

.epk-orb span {
  position: absolute;
  left: 50%;
  bottom: 16px;
  min-width: max-content;
  border: 1px solid rgba(255, 231, 170, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: white;
  background: rgba(1, 6, 17, 0.68);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0;
  text-transform: uppercase;
  transform: translate(-50%, 8px);
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: 3;
}

.epk-orb img {
  display: block;
  width: 100%;
  border-radius: 6px;
  opacity: 0.9;
  filter:
    saturate(1.08)
    drop-shadow(0 0 16px rgba(114, 214, 255, 0.18));
}

.epk-orb:hover,
.epk-orb:focus-visible {
  background: rgba(1, 6, 17, 0.48);
  box-shadow:
    0 0 40px rgba(255, 231, 170, 0.22),
    0 0 76px rgba(114, 214, 255, 0.28),
    0 0 116px rgba(141, 92, 255, 0.2),
    inset 0 0 26px rgba(255, 255, 255, 0.07);
  outline: none;
  transform: translateY(-6px) rotate(0deg) scale(1.035);
}

.epk-orb:hover::after,
.epk-orb:focus-visible::after {
  opacity: 1;
  filter: blur(20px);
}

.epk-orb:hover img,
.epk-orb:focus-visible img {
  opacity: 1;
  filter:
    brightness(1.12)
    saturate(1.12)
    drop-shadow(0 0 20px rgba(255, 231, 170, 0.28))
    drop-shadow(0 0 34px rgba(114, 214, 255, 0.24));
}

.epk-orb:hover span,
.epk-orb:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.epk-close {
  position: fixed;
  top: 84px;
  right: clamp(28px, 5vw, 76px);
  min-height: 38px;
  border: 1px solid rgba(255, 231, 170, 0.36);
  border-radius: 999px;
  padding: 0 18px;
  color: white;
  background: rgba(1, 6, 17, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transition: opacity 300ms ease;
  z-index: 8;
}

body.epk-expanded .music-chamber {
  opacity: 0.18;
  filter: blur(3px);
  pointer-events: none;
  transition: opacity 450ms ease, filter 450ms ease;
}

body.epk-expanded .music-world-shell {
  opacity: 0.16;
}

body.epk-expanded .epk-orb {
  position: fixed;
  top: 50%;
  right: 50%;
  width: min(96vw, 1320px);
  max-height: 94vh;
  padding: 14px;
  background: rgba(1, 6, 17, 0.74);
  box-shadow:
    0 0 58px rgba(114, 214, 255, 0.28),
    0 0 110px rgba(141, 92, 255, 0.2),
    inset 0 0 34px rgba(255, 255, 255, 0.06);
  transform: translate(50%, -50%) rotate(0deg);
  animation: none;
  z-index: 7;
}

body.epk-expanded .epk-orb img {
  opacity: 1;
  max-height: calc(94vh - 28px);
  object-fit: contain;
}

body.epk-expanded .epk-orb span {
  opacity: 0;
  transform: translate(-50%, 8px);
  transition-duration: 120ms;
}

body.epk-expanded .epk-close {
  opacity: 1;
  pointer-events: auto;
}

.music-chamber {
  position: relative;
  width: min(100% - 56px, 1240px);
  padding-right: clamp(0px, 12vw, 170px);
  margin-top: 18px;
  z-index: 2;
}

.music-copy {
  max-width: 760px;
  margin-bottom: 26px;
  text-align: left;
}

.music-copy h2 {
  max-width: 11ch;
  font-size: clamp(1.75rem, 3.7vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.music-copy p:not(.destination-kicker) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.transmission-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(390px, 1.08fr);
  gap: 22px;
  align-items: start;
}

.transmission-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 0;
  min-width: 0;
  border: 1px solid rgba(185, 242, 255, 0.2);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(1, 6, 17, 0.42);
  box-shadow:
    0 0 38px rgba(114, 214, 255, 0.1),
    inset 0 0 24px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.transmission-card > div {
  min-width: 0;
}

.transmission-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow:
    0 0 22px rgba(114, 214, 255, 0.22),
    0 0 36px rgba(141, 92, 255, 0.14);
}

.cover-orb {
  display: block;
  width: 132px;
  height: 132px;
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.cover-orb img {
  transition: transform 260ms ease, filter 260ms ease;
}

.cover-orb:hover img,
.cover-orb:focus-visible img {
  transform: scale(1.04);
  filter:
    brightness(1.08)
    drop-shadow(0 0 22px rgba(255, 231, 170, 0.3));
}

.transmission-card h3 {
  margin-bottom: 8px;
  color: white;
  font-size: clamp(1.18rem, 2.4vw, 1.7rem);
  letter-spacing: 0.04em;
}

.transmission-card p {
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, serif;
  line-height: 1.55;
}

.transmission-status {
  color: var(--gold) !important;
  font-family: "Orbitron", sans-serif !important;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.transmission-card audio {
  width: 100%;
  height: 34px;
  margin-top: 12px;
  filter: drop-shadow(0 0 10px rgba(114, 214, 255, 0.22));
}

.download-transmission {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 10px;
  border: 1px solid rgba(185, 242, 255, 0.32);
  border-radius: 999px;
  padding: 0 14px;
  color: white;
  background: rgba(114, 214, 255, 0.08);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.locked-transmission {
  position: relative;
  overflow: hidden;
}

.locked-transmission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent, rgba(255, 231, 170, 0.08), transparent),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.025) 19px 20px);
  pointer-events: none;
}

.request-access {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(255, 231, 170, 0.42);
  border-radius: 999px;
  padding: 0 18px;
  color: white;
  background: rgba(255, 231, 170, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.ep-tracklist {
  position: relative;
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.ep-tracklist li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(185, 242, 255, 0.1);
  padding-top: 8px;
  position: relative;
  padding-right: 28px;
}

.ep-tracklist li::before {
  content: "✦";
  position: absolute;
  right: 0;
  top: 9px;
  color: rgba(255, 231, 170, 0.28);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.ep-tracklist li.track-leading::before {
  opacity: 1;
  color: rgba(255, 231, 170, 0.98);
  transform: scale(1.04);
  text-shadow:
    0 0 10px rgba(255, 231, 170, 0.8),
    0 0 24px rgba(114, 214, 255, 0.4);
}

.ep-tracklist li.track-selected span {
  color: rgba(255, 255, 255, 1);
}

.ep-tracklist span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
}

.ep-tracklist em {
  color: rgba(255, 231, 170, 0.62);
  font-family: "Orbitron", sans-serif;
  font-size: 0.54rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.track-signal-meta {
  display: grid;
  justify-items: end;
}

.favorite-note {
  margin-top: 12px;
  color: rgba(185, 242, 255, 0.76);
  font-family: Georgia, serif;
  font-size: 0.94rem;
  line-height: 1.6;
}

.locked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.locked-actions .request-access,
.locked-actions .ghost-orbit-btn {
  flex: 1 1 220px;
  min-width: min(100%, 220px);
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.access-panel {
  position: fixed;
  left: 50%;
  top: max(20px, env(safe-area-inset-top, 0px) + 12px);
  width: min(100% - 42px, 520px);
  max-height: calc(100vh - max(40px, env(safe-area-inset-top, 0px) + 24px));
  border: 1px solid rgba(255, 231, 170, 0.34);
  border-radius: 8px;
  padding: 30px 30px 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 231, 170, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(1, 6, 17, 0.9);
  box-shadow:
    0 0 54px rgba(114, 214, 255, 0.22),
    0 0 100px rgba(141, 92, 255, 0.16),
    inset 0 0 28px rgba(255, 255, 255, 0.04);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translate(-50%, -12px) scale(0.94);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.18, 0.84, 0.22, 1);
  z-index: 10;
  scrollbar-gutter: stable;
}

body.access-open .access-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

body.access-open .music-chamber,
body.access-open .epk-orb,
body.access-open .music-world-shell {
  opacity: 0.22;
  filter: blur(2px);
  pointer-events: none;
}

.access-panel h3 {
  margin-bottom: 14px;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.access-panel p:not(.destination-kicker) {
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, serif;
  line-height: 1.7;
}

.traveler-auth-panel {
  margin-top: 10px;
  border-top: 1px solid rgba(185, 242, 255, 0.12);
  border-bottom: 1px solid rgba(185, 242, 255, 0.12);
  padding: 14px 0 18px;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.access-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 12px;
  border: 1px solid rgba(255, 231, 170, 0.5);
  border-radius: 999px;
  padding: 0 20px;
  color: white;
  background: rgba(255, 231, 170, 0.1);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ghost-orbit-btn {
  min-height: 42px;
  border: 1px solid rgba(185, 242, 255, 0.24);
  border-radius: 999px;
  padding: 0 18px;
  color: white;
  background: rgba(114, 214, 255, 0.05);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.access-note {
  margin-top: 14px !important;
  color: rgba(185, 242, 255, 0.78) !important;
  font-size: 0.92rem !important;
}

.access-request-form,
.traveler-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.access-request-form label,
.traveler-form label {
  display: grid;
  gap: 7px;
  text-align: left;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-request-form input,
.access-request-form select,
.access-request-form textarea,
.traveler-form input,
.traveler-form textarea {
  width: 100%;
  border: 1px solid rgba(185, 242, 255, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  color: white;
  background: rgba(1, 6, 17, 0.72);
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.access-request-form textarea,
.traveler-form textarea {
  resize: vertical;
  min-height: 112px;
}

.access-close {
  position: sticky;
  display: inline-flex;
  right: 16px;
  top: 0;
  margin-left: auto;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: white;
  background: rgba(1, 6, 17, 0.82);
  backdrop-filter: blur(8px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}

.cover-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(92vw, 860px);
  max-height: 92vh;
  border: 1px solid rgba(255, 231, 170, 0.3);
  border-radius: 10px;
  padding: 14px;
  background: rgba(1, 6, 17, 0.82);
  box-shadow:
    0 0 58px rgba(114, 214, 255, 0.26),
    0 0 110px rgba(141, 92, 255, 0.18),
    inset 0 0 34px rgba(255, 255, 255, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.94);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.18, 0.84, 0.22, 1);
  z-index: 10;
}

.cover-panel img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 28px);
  object-fit: contain;
  border-radius: 7px;
}

body.cover-expanded .cover-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

body.cover-expanded .music-chamber,
body.cover-expanded .epk-orb,
body.cover-expanded .music-world-shell {
  opacity: 0.2;
  filter: blur(2px);
  pointer-events: none;
}

.cover-close {
  position: absolute;
  right: 18px;
  top: 18px;
  min-height: 38px;
  border: 1px solid rgba(255, 231, 170, 0.36);
  border-radius: 999px;
  padding: 0 16px;
  color: white;
  background: rgba(1, 6, 17, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes mobileAlephFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

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

@keyframes nodeDrift {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -18px;
  }
}

@keyframes orbitSigil {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-88px) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-88px) rotate(-360deg);
  }
}

@keyframes letterFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  35% {
    transform: translateY(-10px) rotate(-1.2deg);
  }

  70% {
    transform: translateY(7px) rotate(1deg);
  }
}

@keyframes nebulaLetters {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes nebulaBreathe {
  0%,
  100% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes cursorTrail {
  0% {
    opacity: 0.95;
    transform:
      translate3d(var(--trail-x, -50px), var(--trail-y, -50px), 0)
      scale(1);
  }

  55% {
    opacity: 0.62;
  }

  100% {
    opacity: 0;
    transform:
      translate3d(
        calc(var(--trail-x, -50px) + var(--trail-drift-x, 0px)),
        calc(var(--trail-y, -50px) + var(--trail-drift-y, -16px)),
        0
      )
      scale(0.18);
  }
}

@keyframes worldBreathe {
  0%,
  100% {
    opacity: 0.14;
    transform: scale(0.98) rotate(0deg);
  }

  50% {
    opacity: 0.24;
    transform: scale(1.03) rotate(1.5deg);
  }
}

@keyframes epkFloat {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes smokeBreathe {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleX(0.86);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1.08);
  }
}

@keyframes auroraPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.96) translateY(8px);
  }

  50% {
    opacity: 0.94;
    transform: scale(1.04) translateY(-4px);
  }
}

@keyframes wordDrift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  45% {
    transform: translateX(8px) translateY(-3px);
  }

  72% {
    transform: translateX(-4px) translateY(2px);
  }
}

@keyframes travelersFloat {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(-50%) translateX(0) rotate(-1deg) scale(0.98);
  }

  50% {
    opacity: 0.94;
    transform: translateY(-52%) translateX(-14px) rotate(1.4deg) scale(1.02);
  }
}

@keyframes stewardshipReturnRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(6px);
  }

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

@media (max-width: 720px) {
  .gateway,
  .constellation {
    padding: max(28px, env(safe-area-inset-top) + 18px) 18px max(28px, env(safe-area-inset-bottom) + 18px);
  }

  .gateway {
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: max(214px, env(safe-area-inset-top) + 192px);
    gap: 0;
  }

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

  .gateway::before {
    width: min(110vw, 620px);
    height: min(56vh, 360px);
    top: 30%;
    opacity: 0.6;
    filter: blur(42px);
  }

  .gateway::after {
    content: "";
    position: absolute;
    top: max(34px, env(safe-area-inset-top) + 16px);
    left: 50%;
    width: min(186px, 46vw);
    aspect-ratio: 1;
    background: url("aleph.png") center / contain no-repeat;
    filter:
      drop-shadow(0 0 18px rgba(114, 214, 255, 0.68))
      drop-shadow(0 0 38px rgba(141, 92, 255, 0.42))
      drop-shadow(0 0 62px rgba(114, 214, 255, 0.24));
    transform: translateX(-50%);
    animation: mobileAlephFloat 8s ease-in-out infinite;
    pointer-events: none;
  }

  .constellation {
    justify-content: flex-start;
    padding-top: max(112px, env(safe-area-inset-top) + 92px);
  }

  .constellation-kicker {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-shadow: 0 0 12px rgba(1, 6, 17, 0.9);
  }

  .aleph,
  .aleph-fallback {
    display: none;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 4.4rem);
    letter-spacing: 0.08em;
    line-height: 0.9;
    margin-top: 18px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .tagline {
    max-width: 18ch;
    font-size: clamp(0.92rem, 4.2vw, 1.18rem);
    margin-bottom: 18px;
  }

  #enterBtn {
    width: min(100%, 360px);
    min-height: 56px;
    padding-inline: 22px;
    font-size: 0.82rem;
  }

  .verse {
    margin-top: 16px;
    max-width: 18ch;
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    line-height: 1.5;
    padding-bottom: 0;
  }

  .node {
    width: clamp(92px, 28vw, 122px);
  }

  .aleigha-node {
    width: clamp(118px, 34vw, 150px);
  }

  .node span {
    font-size: 0.64rem;
  }

  .aleigha-node span,
  .music span,
  .travelers span,
  .stewardship span {
    transform: translateY(52px);
  }

  .crystal-world {
    width: 118vw;
  }

  .aleigha-portrait-shell {
    right: -12vw;
    bottom: 0;
    width: 78vw;
    height: 54vh;
    opacity: 0.38;
  }

  .destination-copy {
    width: min(100% - 28px, 520px);
    margin: 0;
  }

  .aleigha-name {
    width: min(100%, 360px);
  }

  .destination-copy h2 {
    max-width: 8ch;
    font-size: clamp(1.65rem, 11vw, 3.2rem);
  }

  .travelers-destination {
    justify-content: flex-end;
    padding-bottom: 12vh;
  }

  .stewardship-destination {
    padding: 94px 18px 36px;
  }

  .stewardship-copy {
    margin: 0;
  }

  .stewardship-copy h2 {
    max-width: 10ch;
    font-size: clamp(1.85rem, 10vw, 3.3rem);
  }

  .stewardship-pricing,
  .stewardship-member-grid {
    grid-template-columns: 1fr;
  }

  .stewardship-flow {
    grid-template-columns: 1fr;
  }

  .stewardship-token-grid {
    grid-template-columns: 1fr;
  }

  .stewardship-actions .request-access,
  .stewardship-actions .ghost-orbit-btn {
    flex-basis: 100%;
    min-height: 58px;
    font-size: 0.82rem;
  }

  .stewardship-return-grid {
    grid-template-columns: 1fr;
  }

  .stewardship-card-head {
    flex-direction: column;
  }

  .stewardship-track-picker > div {
    grid-template-columns: 1fr;
  }

  .stewardship-catalog-head,
  .stewardship-track-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .admin-shell {
    width: min(100% - 28px, 920px);
    max-height: 88vh;
    padding: 20px;
  }

  .admin-summary-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-header,
  .admin-panel-head,
  .admin-actions,
  .admin-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .travelers-planet {
    top: 38%;
    right: -34vw;
    width: 128vw;
    opacity: 0.46;
  }

  .travelers-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(100% - 28px, 520px);
    margin: 0;
    transform: none;
  }

  .travelers-copy h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 12vw, 4.4rem);
  }

  .music-world-shell {
    right: -32vw;
    width: 118vw;
    opacity: 0.22;
  }

  .epk-orb {
    top: 76px;
    right: 14px;
    width: min(30vw, 132px);
    opacity: 0.56;
  }

  .music-chamber {
    width: min(100%, 560px);
    padding-right: 0;
    padding-top: 32px;
    margin-top: 0;
  }

  .music-copy h2 {
    max-width: 9ch;
    font-size: clamp(1.6rem, 10vw, 3rem);
  }

  .transmission-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .transmission-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px;
  }

  .transmission-card img,
  .cover-orb {
    width: min(118px, 42vw);
    height: min(118px, 42vw);
  }

  .transmission-card audio {
    max-width: 100%;
  }

  .return-map {
    top: 18px;
    left: 18px;
    min-width: 126px;
    height: 40px;
    padding-right: 14px;
  }

  .return-map strong {
    font-size: 0.64rem;
  }

  .return-aleph {
    top: max(18px, env(safe-area-inset-top) + 8px);
    left: 18px;
    transform: none;
    min-width: 126px;
    height: 40px;
    padding-right: 14px;
  }

  body.entered:not(.destination-active) .return-aleph {
    transform: translateY(-4px);
  }

  .access-panel {
    width: min(100% - 24px, 520px);
    max-height: calc(100vh - 24px);
    padding: 18px 18px 20px;
  }

  .access-panel h3 {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }
}

@media (max-width: 720px) and (max-height: 760px) {
  .gateway {
    padding-top: max(168px, env(safe-area-inset-top) + 146px);
  }

  .constellation {
    padding-top: max(102px, env(safe-area-inset-top) + 82px);
  }

  .gateway::after {
    top: max(24px, env(safe-area-inset-top) + 10px);
    width: min(154px, 38vw);
  }

  h1 {
    font-size: clamp(2.15rem, 10.4vw, 3.8rem);
    margin-top: 14px;
    margin-bottom: 8px;
  }

  .tagline {
    margin-bottom: 14px;
    font-size: clamp(0.86rem, 3.5vw, 1.02rem);
  }

  #enterBtn {
    min-height: 52px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .verse {
    margin-top: 12px;
    font-size: clamp(0.82rem, 3.3vw, 0.94rem);
  }
}
.travelers-destination {
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scroll-padding-top: 112px;
  padding: 112px clamp(28px, 5vw, 72px) 64px;
}
