:root {
  color-scheme: dark;
  --black: #050506;
  --ink: #0b0d14;
  --steel: #9aa6b7;
  --white: #f8f4ea;
  --gold: #d7b46a;
  --amber: #c55d2c;
  --cyan: #67d7e5;
  --wine: #67223b;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(9, 12, 19, 0.7);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 12%, rgba(103, 215, 229, 0.16), transparent 30%),
    radial-gradient(circle at 80% 28%, rgba(199, 93, 44, 0.18), transparent 28%),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

button,
a {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.welcome-gate {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  align-items: end;
  min-height: 100vh;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 6vw, 84px) clamp(42px, 7vw, 88px);
  overflow: hidden;
  background: #020308;
  transition: opacity 520ms ease, visibility 520ms ease, transform 720ms ease;
}

.welcome-gate.is-entered {
  visibility: hidden;
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}

.welcome-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 3, 8, 0.78), rgba(2, 3, 8, 0.18) 46%, rgba(2, 3, 8, 0.58)),
    url("assets/crashouts-tower-welcome.png");
  background-position: center;
  background-size: cover;
  animation: towerDrift 18s ease-in-out infinite alternate;
}

.welcome-backdrop::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(147, 112, 219, 0.2), transparent 28%),
    radial-gradient(circle at 74% 18%, rgba(215, 180, 106, 0.18), transparent 22%),
    linear-gradient(0deg, rgba(2, 3, 8, 0.92), transparent 40%);
  content: "";
}

.meteor-line {
  position: absolute;
  top: 10%;
  left: -24%;
  width: 34vw;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), rgba(215, 180, 106, 0.96));
  box-shadow: 0 0 18px rgba(215, 180, 106, 0.86), 0 0 38px rgba(103, 215, 229, 0.48);
  transform: rotate(-18deg);
  animation: meteorLaunch 3.8s ease-in-out infinite;
}

.welcome-panel {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.welcome-panel p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(248, 244, 234, 0.86);
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  line-height: 1.55;
}

.launch-button {
  margin-top: 22px;
  padding: 0 22px;
}

@keyframes towerDrift {
  0% {
    transform: scale(1.02) translate3d(-8px, -4px, 0);
  }
  100% {
    transform: scale(1.08) translate3d(12px, 6px, 0);
  }
}

@keyframes meteorLaunch {
  0% {
    transform: translate3d(0, 0, 0) rotate(-18deg);
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translate3d(148vw, 38vh, 0) rotate(-18deg);
    opacity: 0;
  }
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(3, 4, 8, 0.72), rgba(3, 4, 8, 0.14));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(215, 180, 106, 0.7);
  border-radius: 50%;
  background: rgba(215, 180, 106, 0.11);
  color: var(--gold);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--steel);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hover-menu {
  position: relative;
  display: grid;
  justify-items: end;
}

.menu-trigger {
  min-height: 42px;
  border: 1px solid rgba(215, 180, 106, 0.36);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.nav-links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  min-width: 220px;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(215, 180, 106, 0.28);
  border-radius: 8px;
  padding: 10px;
  background: rgba(5, 6, 9, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
  color: rgba(248, 244, 234, 0.78);
  font-size: 0.92rem;
}

.nav-links a {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 12px;
}

.hover-menu:hover .nav-links,
.hover-menu:focus-within .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: rgba(215, 180, 106, 0.4);
  background: rgba(215, 180, 106, 0.09);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  align-items: center;
  padding: 150px clamp(18px, 5vw, 72px) 96px;
  scroll-margin-top: 94px;
}

.hero-media,
.hero-shade,
.starfield {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image:
    linear-gradient(90deg, rgba(3, 4, 9, 0.62), rgba(3, 4, 9, 0.24)),
    url("assets/orbital-lobby-office.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: lobbyDrift 24s ease-in-out infinite alternate;
}

@keyframes lobbyDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.06) translate3d(-10px, 6px, 0);
  }
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 5, 8, 0.82) 0%, rgba(4, 5, 8, 0.5) 38%, rgba(4, 5, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.98) 0%, transparent 35%);
}

.starfield {
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.78;
}

.starfield::before,
.starfield::after {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 68%, rgba(215, 180, 106, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 26%, rgba(103, 215, 229, 0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 14%, rgba(255, 255, 255, 0.86) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 58%, rgba(215, 180, 106, 0.78) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 82%, rgba(103, 215, 229, 0.75) 0 1px, transparent 2px);
  background-size: 360px 260px;
  content: "";
  animation: starDrift 18s linear infinite;
}

.starfield::after {
  filter: blur(1px);
  opacity: 0.66;
  transform: scale(1.4);
  animation-duration: 32s;
  animation-direction: reverse;
}

@keyframes starDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-180px, 90px, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  padding-top: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: min(13ch, 100%);
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: clamp(3rem, 7.4vw, 7.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.moon-title {
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 244, 234, 0.78);
  background:
    radial-gradient(circle at 18% 28%, rgba(5, 5, 6, 0.65) 0 7%, transparent 8%),
    radial-gradient(circle at 62% 38%, rgba(5, 5, 6, 0.55) 0 5%, transparent 6%),
    radial-gradient(circle at 42% 72%, rgba(5, 5, 6, 0.42) 0 6%, transparent 7%),
    linear-gradient(135deg, #fff7df 0%, #d7b46a 38%, #f7efe1 62%, #8f7b55 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.44), 0 16px 34px rgba(0, 0, 0, 0.45);
}

h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(248, 244, 234, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.lobby-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action,
.text-command {
  min-height: 48px;
  border: 1px solid var(--line);
  color: var(--white);
  cursor: pointer;
  text-align: center;
}

.primary-action {
  min-width: 152px;
  border-color: rgba(215, 180, 106, 0.78);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.96), rgba(197, 93, 44, 0.86));
  color: #16100a;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(215, 180, 106, 0.18);
}

.secondary-action {
  display: inline-grid;
  min-width: 136px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.secondary-action.gold {
  border-color: rgba(215, 180, 106, 0.42);
  color: var(--gold);
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: 44px;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border-left: 1px solid rgba(215, 180, 106, 0.7);
  padding-left: 18px;
  color: rgba(248, 244, 234, 0.72);
}

.scroll-hint strong {
  color: var(--white);
}

.experience-band {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #050506, #0b0d14);
  scroll-margin-top: 96px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-note {
  max-width: 430px;
  margin: 0;
  color: rgba(248, 244, 234, 0.68);
  line-height: 1.55;
}

.elevator-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
}

.elevator-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(215, 180, 106, 0.44);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(20, 23, 30, 0.96), rgba(7, 9, 14, 0.96));
  box-shadow: var(--shadow);
}

.panel-display {
  min-height: 94px;
  border: 1px solid rgba(103, 215, 229, 0.32);
  border-radius: 6px;
  padding: 16px;
  background: #05090d;
}

.panel-display span,
.panel-display strong {
  display: block;
}

.panel-display span {
  color: var(--steel);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.panel-display strong {
  margin-top: 8px;
  color: var(--cyan);
  font-size: 1.2rem;
}

.floor-button {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28px 50%, rgba(215, 180, 106, 0.26), transparent 28px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.floor-button span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(215, 180, 106, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.18rem;
}

.floor-button small {
  color: rgba(248, 244, 234, 0.78);
  font-size: 0.9rem;
  line-height: 1.2;
}

.floor-button:hover,
.floor-button:focus-visible,
.floor-button.is-active {
  border-color: var(--gold);
  color: var(--gold);
}

.floor-preview {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(470px, 65vh, 680px);
  border: 1px solid rgba(215, 180, 106, 0.34);
  border-radius: 8px;
  padding: clamp(22px, 3.5vw, 46px);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 28%, rgba(215, 180, 106, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 78%, rgba(103, 215, 229, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 0%, rgba(103, 215, 229, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.09)),
    linear-gradient(315deg, rgba(103, 215, 229, 0.08), rgba(103, 215, 229, 0.02)),
    var(--glass);
  background-size: auto, 260px 190px, 340px 240px, auto, auto, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.floor-preview::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(215, 180, 106, 0.45) 48% 52%, transparent 52% 100%),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.18), rgba(5, 7, 11, 0.72));
  content: "";
  pointer-events: none;
}

.elevator-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 650px;
}

.elevator-reveal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 0.84fr) minmax(0, 0.9fr);
  gap: clamp(16px, 3vw, 30px);
  align-items: center;
}

.elevator-show-image {
  display: grid;
  min-width: 0;
  min-height: clamp(280px, 48vh, 520px);
  margin: 0;
  border: 1px solid rgba(215, 180, 106, 0.3);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.18), transparent 22%),
    #050506;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.elevator-show-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 48vh, 520px);
  object-fit: contain;
  background: #050506;
}

.floor-preview p {
  max-width: 680px;
  color: rgba(248, 244, 234, 0.76);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.6;
}

.floor-preview::after,
.floor-preview .door-right {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(21, 24, 32, 0.93)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  content: "";
  transition: transform 520ms ease;
}

.floor-preview::after {
  left: 0;
  transform: translateX(-104%);
}

.floor-preview .door-right {
  right: 0;
  transform: translateX(104%);
}

.elevator-stage.is-traveling .floor-preview::after,
.elevator-stage.is-traveling .floor-preview .door-right {
  transform: translateX(0);
}

.elevator-stage.is-arrived .floor-preview::after {
  transform: translateX(-104%);
}

.elevator-stage.is-arrived .floor-preview .door-right {
  transform: translateX(104%);
}

.elevator-status {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.preview-action {
  width: fit-content;
  max-width: 100%;
  margin-top: 6px;
  padding-inline: 14px;
  white-space: normal;
}

.fast-access {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.fast-access span,
.fast-access a {
  border-radius: 999px;
  padding: 9px 12px;
}

.fast-access span {
  color: var(--steel);
  font-weight: 900;
  text-transform: uppercase;
}

.fast-access a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 244, 234, 0.78);
}

.fast-access a:hover,
.fast-access a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.show-floor {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.86fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  min-height: 88vh;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.show-floor.barber-gods {
  background:
    linear-gradient(120deg, rgba(103, 215, 229, 0.14), transparent 48%),
    linear-gradient(180deg, #080a0f, #141018);
}

.show-floor.above {
  background:
    linear-gradient(120deg, rgba(197, 93, 44, 0.18), transparent 50%),
    linear-gradient(180deg, #090908, #15100d);
}

.show-floor.ink {
  background:
    linear-gradient(120deg, rgba(103, 215, 229, 0.16), transparent 46%),
    linear-gradient(180deg, #06080b, #0d1116);
}

.floor-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(248, 244, 234, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.floor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.floor-tags span {
  border: 1px solid rgba(215, 180, 106, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(248, 244, 234, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-command {
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
}

.show-visual {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.abstract-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.22), transparent),
    linear-gradient(315deg, rgba(103, 215, 229, 0.18), rgba(103, 215, 229, 0.04)),
    #111318;
}

.abstract-visual span {
  border: 1px solid rgba(215, 180, 106, 0.55);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  background:
    linear-gradient(120deg, rgba(103, 215, 229, 0.12), transparent),
    #08090d;
}

.split-band p:not(.eyebrow) {
  color: rgba(248, 244, 234, 0.78);
  font-size: 1.16rem;
  line-height: 1.7;
}

.vip-band {
  background:
    linear-gradient(120deg, rgba(103, 215, 229, 0.1), transparent 42%),
    linear-gradient(240deg, rgba(215, 180, 106, 0.15), transparent 45%),
    #090a0e;
}

.vip-intro {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.vip-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(248, 244, 234, 0.78);
  font-size: 1.12rem;
  line-height: 1.7;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.vip-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.vip-grid span {
  display: block;
  margin-bottom: 40px;
  color: var(--gold);
  font-weight: 900;
}

.vip-grid p {
  color: rgba(248, 244, 234, 0.72);
  line-height: 1.6;
}

.vip-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid rgba(103, 215, 229, 0.28);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(103, 215, 229, 0.12), rgba(215, 180, 106, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.vip-meta div {
  display: grid;
  gap: 6px;
}

.vip-meta strong {
  color: var(--gold);
  text-transform: uppercase;
}

.vip-meta span {
  color: rgba(248, 244, 234, 0.76);
  line-height: 1.55;
}

.elevator-modal {
  width: min(620px, calc(100% - 32px));
  border: 1px solid rgba(215, 180, 106, 0.34);
  border-radius: 8px;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(103, 215, 229, 0.12), transparent),
    rgba(8, 10, 15, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
}

.elevator-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.modal-elevator {
  padding: 34px;
}

.modal-buttons {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.modal-buttons button {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.modal-buttons strong {
  display: grid;
  place-items: center;
  height: 100%;
  border-right: 1px solid var(--line);
  color: var(--gold);
}

.modal-buttons span {
  padding-inline: 18px;
  font-weight: 800;
}

.show-page {
  min-height: 100vh;
  padding: 34px clamp(18px, 5vw, 72px) clamp(54px, 8vw, 96px);
  background:
    radial-gradient(circle at 18% 12%, rgba(103, 215, 229, 0.14), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(215, 180, 106, 0.12), transparent 30%),
    #050506;
}

.back-link {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(248, 244, 234, 0.82);
  font-weight: 800;
}

.show-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 110px);
}

.show-page-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(248, 244, 234, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.show-page-visual {
  min-height: min(70vh, 620px);
  border: 1px solid rgba(215, 180, 106, 0.28);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.show-page-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(70vh, 620px);
  object-fit: cover;
}

.subscription-lock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(215, 180, 106, 0.32);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(110deg, rgba(215, 180, 106, 0.14), rgba(103, 215, 229, 0.07)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.subscription-lock h2 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
}

.subscription-lock p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(248, 244, 234, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.65;
}

.barber-gods-page {
  background:
    linear-gradient(120deg, rgba(103, 215, 229, 0.13), transparent 46%),
    linear-gradient(180deg, #050506, #121018);
}

.above-page {
  background:
    linear-gradient(120deg, rgba(215, 180, 106, 0.14), transparent 46%),
    linear-gradient(180deg, #050506, #101319);
}

.ink-page {
  background:
    linear-gradient(120deg, rgba(197, 93, 44, 0.16), transparent 46%),
    linear-gradient(180deg, #050506, #120909);
}

@media (max-width: 820px) {
  .topbar {
    align-items: center;
  }

  .nav-links {
    right: 0;
  }

  .hero {
    min-height: 92vh;
    align-items: end;
    padding-top: 150px;
  }

  .scroll-hint {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 42px;
  }

  .elevator-stage,
  .show-floor,
  .split-band,
  .vip-grid,
  .show-page-hero {
    grid-template-columns: 1fr;
  }

  .elevator-stage {
    gap: 16px;
  }

  .elevator-reveal {
    grid-template-columns: 1fr;
  }

  .vip-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .subscription-lock {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-display {
    width: 100%;
  }

  .show-floor {
    min-height: auto;
  }

  .show-visual,
  .image-visual img {
    min-height: 300px;
  }
}

@media (max-width: 1080px) {
  .elevator-stage {
    grid-template-columns: 1fr;
  }

  .elevator-panel {
    order: -1;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.5rem, 14vw, 3.3rem);
    line-height: 1.02;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .lobby-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    min-width: 0;
  }

  .elevator-panel {
    order: -1;
    gap: 10px;
    padding: 14px;
  }

  .floor-button {
    grid-template-columns: 48px 1fr;
  }

  .floor-preview {
    min-height: auto;
    padding: 22px;
  }

  .welcome-gate {
    align-items: end;
  }
}
