:root {
  --bg: #08040f;
  --panel: rgba(12, 6, 18, 0.65);
  --panel-strong: rgba(12, 6, 18, 0.8);
  --accent: #d688ff;
  --accent-2: #7a47ff;
  --accent-secondary: #44f1ff;
  --text: #f6f2ff;
  --muted: #bcb5c8;
  --border: rgba(214, 136, 255, 0.45);
  --shadow: 0 10px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(214, 136, 255, 0.08), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(122, 71, 255, 0.08), transparent 28%),
  #08040f;
  overflow-x: hidden;
}

body.gate-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

.wraith-fog {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -3;
  opacity: 0.72;
  filter: brightness(0.35) contrast(1.15) saturate(1.05);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 18%, #000 36%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 18%, #000 36%, #000 82%, transparent 100%);
}

.fog-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 60% at 20% 30%, rgba(214, 136, 255, 0.12), transparent 50%),
    radial-gradient(50% 50% at 80% 20%, rgba(122, 71, 255, 0.12), transparent 45%),
    linear-gradient(135deg, rgba(10, 6, 16, 0.7), rgba(5, 2, 8, 0.8));
  pointer-events: none;
}

.entry-haze {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(6, 2, 12, 0.35), transparent 65%),
    linear-gradient(180deg, rgba(8, 4, 15, 0.7) 0%, rgba(8, 4, 15, 0.1) 50%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hazeDrift 12s ease-in-out infinite;
}

.spotlight {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(60% 60% at 50% 35%, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.floor-reflection {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, transparent 65%, rgba(122, 71, 255, 0.12) 82%, rgba(8, 4, 15, 0.9) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.home-fog {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -0.5;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.45;
}

.home-fog-back {
  background-image:
    radial-gradient(40% 30% at 20% 60%, rgba(68, 241, 255, 0.12), transparent 60%),
    radial-gradient(35% 25% at 70% 50%, rgba(214, 136, 255, 0.12), transparent 60%),
    radial-gradient(25% 20% at 40% 30%, rgba(122, 71, 255, 0.14), transparent 70%);
  animation: fogDriftSlow 24s ease-in-out infinite;
}

.home-fog-front {
  background-image:
    radial-gradient(32% 26% at 30% 70%, rgba(68, 241, 255, 0.2), transparent 60%),
    radial-gradient(30% 24% at 75% 35%, rgba(214, 136, 255, 0.18), transparent 65%),
    radial-gradient(22% 18% at 50% 45%, rgba(255, 255, 255, 0.12), transparent 65%);
  animation: fogDriftFast 16s ease-in-out infinite;
  filter: blur(8px);
  opacity: 0.5;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(6, 2, 12, 0.6), rgba(6, 2, 12, 0.9));
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  z-index: 12;
  padding: 24px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-panel {
  max-width: 460px;
  width: min(460px, 100%);
  text-align: center;
  padding: 30px 26px;
}

.age-gate-panel h2 {
  margin: 12px 0 10px;
  letter-spacing: 0.08em;
  font-family: "Cinzel", "Space Grotesk", serif;
}

.age-gate-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.age-gate-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  background: rgba(6, 2, 12, 0.7);
  border-bottom: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.site-header.header-minimal {
  border-bottom: none;
  padding: 10px 18px;
}

.site-header .brand-lockup {
  display: none;
}


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

.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  padding: 6px;
  background: radial-gradient(circle at 30% 30%, rgba(68, 241, 255, 0.18), transparent 65%), rgba(12, 6, 18, 0.8);
  border: 1px solid rgba(214, 136, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(214, 136, 255, 0.24),
    0 0 18px rgba(214, 136, 255, 0.25),
    0 0 30px rgba(68, 241, 255, 0.16);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 0 8px rgba(214, 136, 255, 0.35));
}

#scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  box-shadow: 0 0 12px rgba(214, 136, 255, 0.6);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-mark {
  font-family: "Cinzel", "Space Grotesk", serif;
  letter-spacing: 0.16em;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.12em;
  font-variant: small-caps;
  text-transform: lowercase;
}

.nav a:hover {
  border-color: var(--border);
  color: var(--text);
  transform: translateY(-1px);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.03em;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.3s ease;
}

.pill-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(214, 136, 255, 0.3), 0 0 20px rgba(68, 241, 255, 0.3);
  border-color: var(--accent-secondary);
}

.pill-button.primary {
  background: linear-gradient(135deg, #d688ff, #7a47ff);
  color: #0c0614;
  box-shadow: 0 8px 40px rgba(214, 136, 255, 0.35), 0 0 20px rgba(68, 241, 255, 0.3);
}

.pill-button.primary:hover {
  border-color: #fff;
  box-shadow: 0 12px 48px rgba(214, 136, 255, 0.5), 0 0 24px rgba(68, 241, 255, 0.35);
  background: linear-gradient(145deg, #7a47ff, #d688ff 55%, #44f1ff);
}

.pill-button.ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(214, 136, 255, 0.35);
}

.hero {
  position: relative;
  min-height: 80vh;
  padding: 120px 24px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 36px;
}

.hero.full-bleed {
  min-height: 92vh;
  padding-top: 140px;
  overflow: hidden;
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-mask {
  background: linear-gradient(180deg, rgba(8, 4, 15, 0.75) 0%, rgba(8, 4, 15, 0.45) 40%, rgba(8, 4, 15, 0.85) 100%);
  mix-blend-mode: screen;
  z-index: 1;
}

.hero-halo {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 136, 255, 0.28), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(68, 241, 255, 0.12), transparent 65%);
  filter: blur(2px);
  opacity: 0.55;
}

.hero-haze {
  z-index: 2;
  background:
    radial-gradient(70% 70% at 45% 50%, rgba(12, 6, 18, 0.45), transparent 65%),
    linear-gradient(120deg, rgba(214, 136, 255, 0.12), transparent 35%),
    linear-gradient(250deg, rgba(68, 241, 255, 0.08), transparent 30%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(68, 241, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 136, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  mix-blend-mode: screen;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 32px;
  max-width: 720px;
}

.hero-copy {
  padding: 32px;
  max-width: 680px;
}

.hero h1 {
  margin: 16px 0 12px;
  font-family: "Cinzel", "Space Grotesk", serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(214, 136, 255, 0.4);
}

.hero .lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 136, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-ambient {
  position: relative;
  min-height: 280px;
}

.ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(214, 136, 255, 0.24);
  border-radius: 50%;
  filter: drop-shadow(0 0 40px rgba(214, 136, 255, 0.35));
  animation: pulse 7s ease-in-out infinite;
}

.ring-2 {
  inset: 0;
  border-color: rgba(122, 71, 255, 0.2);
  animation-delay: 1.4s;
}

.glass {
  background: var(--panel);
  border: 1px solid rgba(214, 136, 255, 0.2);
  border-radius: 16px;
  box-shadow: var(--shadow), inset 0 0 20px rgba(214, 136, 255, 0.12);
  backdrop-filter: blur(12px);
}

.panel {
  margin: 40px auto;
  padding: 40px 24px;
  max-width: 1160px;
}

.story.glass {
  position: relative;
  background:
    radial-gradient(140% 120% at 20% 20%, rgba(214, 136, 255, 0.16), transparent 55%),
    radial-gradient(120% 110% at 80% 10%, rgba(122, 71, 255, 0.14), transparent 50%),
    linear-gradient(160deg, rgba(24, 14, 34, 0.9), rgba(16, 10, 24, 0.82));
  border: 1px solid rgba(214, 136, 255, 0.35);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 0 32px rgba(214, 136, 255, 0.14);
  overflow: hidden;
}

.story.glass::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(214, 136, 255, 0.14),
    0 0 32px rgba(214, 136, 255, 0.16),
    0 0 26px rgba(68, 241, 255, 0.14);
  pointer-events: none;
}

.story.glass::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(
    from 120deg,
    rgba(214, 136, 255, 0.16),
    rgba(68, 241, 255, 0.12),
    rgba(214, 136, 255, 0.16),
    rgba(68, 241, 255, 0.12)
  );
  filter: blur(26px);
  opacity: 0.28;
  animation: panelAura 18s linear infinite;
  pointer-events: none;
}

.nav-highlight {
  margin: 20px auto 0;
  max-width: 960px;
  padding: 18px 24px;
  text-align: center;
  border: 1px solid rgba(214, 136, 255, 0.25);
  box-shadow: var(--shadow), inset 0 0 16px rgba(214, 136, 255, 0.12), 0 0 22px rgba(68, 241, 255, 0.1);
  background: radial-gradient(120% 120% at 50% 50%, rgba(68, 241, 255, 0.06), transparent 65%);
}

.nav-pills {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(23, 16, 32, 0.8), rgba(20, 28, 38, 0.9));
  border: 1px solid rgba(214, 136, 255, 0.4);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(214, 136, 255, 0.28),
    0 0 26px rgba(68, 241, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-pill:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--accent-secondary);
  background: linear-gradient(145deg, rgba(68, 241, 255, 0.18), rgba(214, 136, 255, 0.28), rgba(122, 71, 255, 0.22));
  box-shadow:
    0 12px 40px rgba(214, 136, 255, 0.38),
    0 0 34px rgba(68, 241, 255, 0.32);
}

.nav-pill::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(214, 136, 255, 0.16), rgba(68, 241, 255, 0.14), transparent 60%);
  filter: blur(16px);
  opacity: 0.65;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.nav-pill:hover::after {
  opacity: 1;
}

.nav-pill span {
  position: relative;
  z-index: 1;
}

.neon-banner {
  padding: 40px 20px 0;
}

.banner-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 28px 26px;
  overflow: hidden;
}

.banner-inner::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(214, 136, 255, 0.12), rgba(68, 241, 255, 0.08), transparent 65%);
  filter: blur(22px);
  z-index: 0;
}

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

.neon-heading {
  margin: 6px 0 10px;
  font-family: "Cinzel", "Space Grotesk", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #fff, #d688ff 45%, #44f1ff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 18px rgba(214, 136, 255, 0.45),
    0 0 36px rgba(68, 241, 255, 0.35);
}

.banner-line {
  width: 180px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, rgba(214, 136, 255, 0.6), rgba(68, 241, 255, 0.6), transparent);
  box-shadow: 0 0 18px rgba(214, 136, 255, 0.35);
  border-radius: 999px;
}

.panel.watermark {
  position: relative;
  overflow: hidden;
}

.panel.watermark::after {
  content: "";
  position: absolute;
  inset: 10% 5%;
  background:
    radial-gradient(75% 60% at 30% 30%, rgba(214, 136, 255, 0.12), transparent 60%),
    radial-gradient(70% 60% at 70% 60%, rgba(68, 241, 255, 0.12), transparent 60%),
    radial-gradient(50% 40% at 50% 50%, rgba(255, 255, 255, 0.06), transparent 70%);
  opacity: 0.75;
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

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

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head.staff-hero {
  position: relative;
  padding: 16px 0 24px;
}

.section-head.staff-hero::before {
  content: "";
  position: absolute;
  inset: -12% 18% 0;
  background:
    radial-gradient(80% 60% at 50% 25%, rgba(214, 136, 255, 0.14), transparent 60%),
    radial-gradient(60% 50% at 50% 70%, rgba(68, 241, 255, 0.14), transparent 65%);
  filter: blur(14px);
  opacity: 0.9;
  z-index: -1;
}

.section-head.staff-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6px;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214, 136, 255, 0.7), rgba(68, 241, 255, 0.7), transparent);
  box-shadow: 0 0 18px rgba(214, 136, 255, 0.35);
}

.section-head.staff-hero h2 {
  text-shadow:
    0 0 20px rgba(214, 136, 255, 0.4),
    0 0 28px rgba(68, 241, 255, 0.28);
  letter-spacing: 0.12em;
}

.section-head.staff-hero .eyebrow {
  color: var(--accent);
  letter-spacing: 0.18em;
}

.section-head.staff-hero .section-lede {
  color: #d8d2e5;
  text-shadow: 0 0 14px rgba(68, 241, 255, 0.25);
}

.section-head.menu-hero {
  position: relative;
  padding: 14px 0 22px;
  isolation: isolate;
}

.section-head.menu-hero::before {
  content: "";
  position: absolute;
  inset: -10% 20% 0;
  background:
    radial-gradient(80% 60% at 50% 20%, rgba(214, 136, 255, 0.12), transparent 60%),
    radial-gradient(60% 50% at 50% 70%, rgba(68, 241, 255, 0.12), transparent 65%);
  filter: blur(12px);
  opacity: 0.9;
  z-index: -1;
}

.section-head.menu-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214, 136, 255, 0.7), rgba(68, 241, 255, 0.7), transparent);
  box-shadow: 0 0 18px rgba(214, 136, 255, 0.35);
}

.section-head.menu-hero h2 {
  text-shadow:
    0 0 20px rgba(214, 136, 255, 0.4),
    0 0 28px rgba(68, 241, 255, 0.28);
  letter-spacing: 0.12em;
}

.section-head.menu-hero .eyebrow {
  color: var(--accent);
  letter-spacing: 0.2em;
}

.section-head.menu-hero .section-lede {
  color: #d8d2e5;
  text-shadow: 0 0 14px rgba(68, 241, 255, 0.25);
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.85rem;
}

.section-head h2 {
  margin: 10px 0 12px;
  font-family: "Cinzel", "Space Grotesk", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.08em;
}

.section-lede {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.story .grid.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.copy {
  color: #e8e1f0;
  line-height: 1.8;
  font-size: 1.03rem;
}

.lore-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lore-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(12, 6, 18, 0.4);
  border: 1px solid rgba(214, 136, 255, 0.2);
  box-shadow: inset 0 0 16px rgba(214, 136, 255, 0.08);
}

.lore-row {
  padding: 10px 12px;
  border-radius: 12px;
  background:
    radial-gradient(70% 60% at 20% 30%, rgba(214, 136, 255, 0.08), transparent 60%),
    radial-gradient(70% 60% at 80% 60%, rgba(68, 241, 255, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 136, 255, 0.12);
}

.lore-row .eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  letter-spacing: 0.16em;
}

.lore-row p {
  margin: 0 0 8px;
}

.lore-bullets {
  margin: 0;
  padding: 0 0 0 18px;
  color: #d8d2e5;
  line-height: 1.6;
}

.lore-bullets li {
  margin-bottom: 6px;
}

.lore-block {
  padding: 14px 16px 12px;
  border-radius: 12px;
  border: 1px solid rgba(214, 136, 255, 0.18);
  background:
    radial-gradient(80% 80% at 20% 20%, rgba(214, 136, 255, 0.08), transparent 60%),
    radial-gradient(70% 70% at 80% 70%, rgba(68, 241, 255, 0.08), transparent 65%),
    rgba(12, 6, 18, 0.4);
  box-shadow: inset 0 0 16px rgba(214, 136, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lore-block .eyebrow {
  margin-bottom: 6px;
  color: var(--accent);
  letter-spacing: 0.16em;
}

.lore-block p {
  margin: 0 0 8px;
}

.copy .neon {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(214, 136, 255, 0.35);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.info-card {
  padding: 16px;
  border: 1px solid rgba(214, 136, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 16px rgba(214, 136, 255, 0.08);
}

.info-card .label {
  margin: 0 0 6px;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.info-card .value {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.info-card .meta {
  margin: 6px 0 0;
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  text-decoration: none;
}

.classic-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(18, 10, 24, 0.95), rgba(10, 6, 16, 0.9));
  border: 1px solid rgba(214, 136, 255, 0.32);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.42), inset 0 0 22px rgba(214, 136, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
  position: relative;
  isolation: isolate;
}

.card.menu-card {
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(18, 10, 24, 0.95), rgba(10, 6, 16, 0.85));
  border: 1px solid rgba(214, 136, 255, 0.4);
  box-shadow:
    0 14px 46px rgba(0, 0, 0, 0.5),
    inset 0 0 26px rgba(214, 136, 255, 0.16),
    0 0 24px rgba(68, 241, 255, 0.18);
}

.card::before {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(circle at 40% 30%, rgba(214, 136, 255, 0.24), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(68, 241, 255, 0.18), transparent 62%);
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.card:hover {
  transform: translateY(-4px) rotateX(1deg) rotateY(-1deg);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(214, 136, 255, 0.24), 0 0 20px rgba(68, 241, 255, 0.16);
}

.card-img {
  height: 280px;
  background-size: cover;
  background-position: center 68%;
  position: relative;
}

.card-img::before {
  display: none;
}

.card.menu-card .card-img {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card-img::after {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: 18px;
  background:
    radial-gradient(65% 45% at 25% 30%, rgba(214, 136, 255, 0.24), transparent 60%),
    radial-gradient(55% 40% at 75% 70%, rgba(68, 241, 255, 0.24), transparent 65%),
    radial-gradient(40% 35% at 50% 50%, rgba(255, 255, 255, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.8;
  animation: menuFog 10s ease-in-out infinite;
  z-index: 1;
}

.card-body {
  padding: 18px;
  position: relative;
  z-index: 1;
}

.card-body h3 {
  margin: 0;
  letter-spacing: 0.08em;
  font-family: "Cinzel", "Space Grotesk", serif;
  font-size: 1.2rem;
}

.card-body.compact {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 4, 15, 0.9) 55%);
  border-top: 1px solid rgba(214, 136, 255, 0.22);
}

.card-mood {
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-size: 0.93rem;
  text-transform: uppercase;
}

.price {
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.blurb {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.card.gamba {
  border-color: rgba(68, 241, 255, 0.4);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(68, 241, 255, 0.24),
    inset 0 0 24px rgba(68, 241, 255, 0.12);
}

.menu-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 2, 12, 0.7);
  backdrop-filter: blur(14px);
  z-index: 24;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.menu-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-modal-backdrop {
  position: absolute;
  inset: 0;
}

.menu-modal-panel {
  position: relative;
  width: min(640px, 90vw);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5), 0 0 26px rgba(214, 136, 255, 0.26);
}

.menu-modal-media {
  height: 360px;
  background: #0a0712;
  position: relative;
  border-bottom: 1px solid rgba(214, 136, 255, 0.25);
  overflow: hidden;
}

.menu-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.menu-modal-media::after {
  content: "";
  position: absolute;
  inset: -6%;
  background:
    radial-gradient(55% 40% at 22% 30%, rgba(214, 136, 255, 0.24), transparent 60%),
    radial-gradient(55% 40% at 78% 70%, rgba(68, 241, 255, 0.24), transparent 65%),
    radial-gradient(40% 35% at 50% 50%, rgba(255, 255, 255, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.75;
  animation: menuFog 10s ease-in-out infinite;
  z-index: 0;
}

.menu-modal-content {
  padding: 20px;
  background: linear-gradient(160deg, rgba(12, 6, 18, 0.92), rgba(10, 6, 16, 0.86));
  border-top: 1px solid rgba(214, 136, 255, 0.25);
}

.menu-modal-panel {
  overflow: hidden;
}

.menu-modal-panel::before {
  content: "";
  position: absolute;
  inset: -20% -20% 40%;
  background: conic-gradient(
    from 0deg,
    rgba(214, 136, 255, 0.18),
    rgba(68, 241, 255, 0.14),
    rgba(214, 136, 255, 0.18),
    rgba(68, 241, 255, 0.14)
  );
  filter: blur(32px);
  opacity: 0.8;
  z-index: 0;
}

.menu-modal-panel > * {
  position: relative;
  z-index: 1;
}

@keyframes menuFog {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(6px, -8px, 0) scale(1.03);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
}


.menu-modal-content h3 {
  margin: 0 0 10px;
  font-family: "Cinzel", "Space Grotesk", serif;
  letter-spacing: 0.08em;
}

.menu-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(214, 136, 255, 0.35);
  background: rgba(12, 6, 18, 0.65);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.menu-modal-close:hover {
  border-color: var(--accent-secondary);
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .classic-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .card-img {
    height: 240px;
  }

  .card-body.compact {
    padding: 12px 14px;
  }

  .menu-modal-media {
    height: 280px;
  }
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.vip-tab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  position: relative;
  isolation: isolate;
}

.vip-panel {
  position: relative;
  overflow: hidden;
  padding: 38px 24px;
}

.vip-panel.blur {
  filter: blur(5px);
  pointer-events: none;
}

.vip-panel::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(90% 90% at 50% 35%, rgba(214, 136, 255, 0.14), transparent 60%),
    radial-gradient(70% 70% at 50% 65%, rgba(68, 241, 255, 0.12), transparent 60%),
    linear-gradient(120deg, rgba(214, 136, 255, 0.1), transparent 40%),
    linear-gradient(260deg, rgba(68, 241, 255, 0.08), transparent 40%);
  opacity: 0.65;
  pointer-events: none;
}

.vip-panel::after {
  content: "";
  position: absolute;
  inset: 14px 16px auto 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(68, 241, 255, 0.35), rgba(214, 136, 255, 0.4), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.vip-hero {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.vip-hero::before {
  content: "";
  position: absolute;
  inset: 24px 10% auto 10%;
  height: 60px;
  background: radial-gradient(120% 120% at 50% 50%, rgba(214, 136, 255, 0.2), rgba(68, 241, 255, 0.08), transparent 70%);
  filter: blur(6px);
  opacity: 0.65;
  z-index: 0;
}

.vip-hero-vignette {
  position: absolute;
  inset: 6px 4% auto 4%;
  height: 120px;
  background:
    radial-gradient(80% 120% at 50% 40%, rgba(0, 0, 0, 0.35), transparent 70%),
    linear-gradient(180deg, rgba(8, 4, 15, 0.2), transparent 60%);
  filter: blur(8px);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 136, 255, 0.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(68, 241, 255, 0.18), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(214, 136, 255, 0.2), transparent 65%),
    rgba(12, 6, 18, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(214, 136, 255, 0.35),
    0 0 18px rgba(214, 136, 255, 0.35),
    0 0 30px rgba(68, 241, 255, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(68, 241, 255, 0.4);
}

.vip-badge::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 50% 50%, rgba(68, 241, 255, 0.35), transparent 60%);
  filter: blur(12px);
  opacity: 0.6;
  animation: pulseBadge 6s ease-in-out infinite;
  z-index: 0;
}

.vip-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 60%);
  opacity: 0.12;
  transform: translateX(-60%) skewX(-10deg);
  animation: sheenSlide 2.8s ease-in-out infinite;
}

.vip-divider {
  position: absolute;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(68, 241, 255, 0.5), rgba(214, 136, 255, 0.6), transparent);
  box-shadow: 0 0 18px rgba(68, 241, 255, 0.24), 0 0 14px rgba(214, 136, 255, 0.22);
  opacity: 0.7;
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 0;
}

.vip-divider-top {
  top: 10px;
}

.vip-divider-bottom {
  bottom: 10px;
}

.vip-heading {
  margin: 12px 0 6px;
  font-family: "Cinzel", "Space Grotesk", serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: 0.14em;
}

.vip-subtitle {
  margin: 0;
  color: var(--muted);
}

.vip-card {
  --tier: var(--accent);
  --tier-2: var(--accent-secondary);
  --tier-glow: rgba(214, 136, 255, 0.22);
  position: relative;
  padding: 22px 18px 18px;
  width: 100%;
  border-radius: 18px;
  background:
    radial-gradient(140% 120% at 10% 0%, var(--tier-glow), transparent 50%),
    linear-gradient(150deg, rgba(12, 6, 18, 0.92), rgba(16, 12, 22, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 28px var(--tier-glow),
    0 14px 40px rgba(0, 0, 0, 0.45),
    0 0 24px var(--tier-glow);
  overflow: hidden;
  isolation: isolate;
  transform: translateY(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease, filter 0.35s ease;
  cursor: pointer;
}

.vip-halo,
.vip-outline,
.vip-sheen {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
}

.vip-halo {
  inset: -16px;
  background: conic-gradient(
    from 120deg,
    var(--tier),
    var(--tier-2),
    var(--tier),
    var(--tier-2)
  );
  filter: blur(22px);
  opacity: 0.25;
  animation: haloSpin 16s linear infinite;
}

.vip-outline {
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent 10%,
    var(--tier) 40%,
    var(--tier-2) 60%,
    transparent 90%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(0.985);
}

.vip-sheen {
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 80%);
  transform: translateX(-140%) skewX(-8deg);
  opacity: 0;
}

.vip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 20% 0%, var(--tier-glow), transparent 60%),
    linear-gradient(140deg, rgba(68, 241, 255, 0.08), transparent 40%);
  opacity: 0.8;
  pointer-events: none;
}

.vip-card::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto;
  height: 70%;
  background: radial-gradient(50% 50% at 50% 50%, var(--tier-glow), transparent 65%);
  filter: blur(12px);
  opacity: 0.8;
  transform: rotate(-4deg);
  pointer-events: none;
}

.vip-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--tier);
  box-shadow:
    inset 0 0 18px var(--tier-glow),
    0 10px 26px rgba(0, 0, 0, 0.45),
    0 0 14px var(--tier);
  filter: drop-shadow(0 0 8px rgba(68, 241, 255, 0.18));
}

.vip-card:hover .vip-outline {
  opacity: 1;
  animation: outlineSweep 1.9s linear infinite;
}

.vip-card:hover .vip-sheen {
  opacity: 0.25;
  animation: sheenSlide 1.1s ease;
}

.vip-card[data-tier="nightly"] {
  --tier: #7cf0ff;
  --tier-2: #53b9ff;
  --tier-glow: rgba(124, 240, 255, 0.24);
  background:
    radial-gradient(140% 120% at 10% 0%, rgba(124, 240, 255, 0.18), transparent 52%),
    linear-gradient(150deg, rgba(12, 6, 18, 0.92), rgba(12, 16, 22, 0.84));
}

.vip-card[data-tier="monthly"] {
  --tier: #d688ff;
  --tier-2: #9f73ff;
  --tier-glow: rgba(214, 136, 255, 0.24);
  background:
    radial-gradient(120% 90% at 20% 20%, rgba(214, 136, 255, 0.3), transparent 55%),
    radial-gradient(110% 90% at 80% 70%, rgba(68, 241, 255, 0.25), transparent 60%),
    linear-gradient(150deg, rgba(44, 18, 62, 0.92), rgba(26, 12, 36, 0.9));
  border: 1px solid rgba(214, 136, 255, 0.35);
  box-shadow:
    inset 0 0 30px rgba(214, 136, 255, 0.18),
    0 16px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.vip-card[data-tier="lifetime"] {
  --tier: #ffc86b;
  --tier-2: #ff9f6e;
  --tier-glow: rgba(255, 200, 107, 0.26);
  background:
    radial-gradient(140% 120% at 10% 0%, rgba(255, 200, 107, 0.22), transparent 52%),
    linear-gradient(150deg, rgba(12, 6, 18, 0.92), rgba(18, 12, 16, 0.86));
}

.vip-card-top {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vip-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(214, 136, 255, 0.4);
  background: rgba(214, 136, 255, 0.12);
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--tier);
}

.vip-card[data-tier="monthly"] .vip-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(214, 136, 255, 0.4);
  color: #f8f2ff;
}

.vip-label.elite {
  border-color: rgba(255, 200, 107, 0.6);
  background: rgba(255, 200, 107, 0.16);
  color: #ffd58a;
}

.vip-card h3 {
  margin: 10px 0 4px;
  font-family: "Cinzel", "Space Grotesk", serif;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.vip-chip {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 18px rgba(214, 136, 255, 0.12);
  color: #fff;
}

.vip-card[data-tier="monthly"] .vip-chip {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(214, 136, 255, 0.3);
  box-shadow: inset 0 0 16px rgba(214, 136, 255, 0.18);
  color: #f8f2ff;
}

.vip-chip-label {
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
}

.vip-chip-meta {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vip-chip-elite {
  border-color: rgba(255, 200, 107, 0.6);
  background: linear-gradient(135deg, rgba(255, 200, 107, 0.24), rgba(214, 136, 255, 0.16));
  box-shadow: inset 0 0 22px rgba(255, 200, 107, 0.18);
}

.vip-hook {
  margin: 6px 0 14px;
  color: #e8e1f0;
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.vip-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  color: #e6def2;
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.vip-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.vip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tier), var(--tier-2));
  box-shadow: 0 0 8px rgba(68, 241, 255, 0.5);
}

.vip-card[data-tier="monthly"] .vip-halo,
.vip-card[data-tier="monthly"] .vip-outline,
.vip-card[data-tier="monthly"] .vip-sheen {
  opacity: 0;
}

.vip-card[data-tier="monthly"] .vip-list li::before {
  background: radial-gradient(circle, #d688ff, #44f1ff);
  box-shadow: 0 0 10px rgba(214, 136, 255, 0.6);
}

.vip-card.featured {
  background: linear-gradient(150deg, var(--tier-glow), rgba(214, 136, 255, 0.18), rgba(16, 10, 24, 0.9));
  border: 1px solid var(--tier);
  box-shadow:
    inset 0 0 26px var(--tier-glow),
    0 16px 38px var(--tier-glow),
    0 0 28px rgba(214, 136, 255, 0.32);
}

.vip-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 2, 12, 0.65);
  backdrop-filter: blur(14px);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.vip-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vip-modal-backdrop {
  position: absolute;
  inset: 0;
}

.vip-modal-panel {
  position: relative;
  max-width: 620px;
  width: calc(100% - 32px);
  padding: 22px 22px 18px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 26px rgba(214, 136, 255, 0.25);
  padding-top: 42px;
}

.vip-modal-content .vip-card {
  cursor: default;
  transform: none;
  opacity: 1;
}

.vip-modal-content .vip-card:hover {
  transform: none;
  box-shadow:
    inset 0 0 26px rgba(68, 241, 255, 0.18),
    0 12px 32px rgba(214, 136, 255, 0.24),
    0 0 26px rgba(68, 241, 255, 0.2);
}

.cta-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.staff-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(214, 136, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
}

.staff-card:hover {
  transform: translateY(-3px) rotateX(1deg) rotateY(-1deg);
  border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(214, 136, 255, 0.24), 0 0 18px rgba(68, 241, 255, 0.18);
}

.staff-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.placeholder-img {
  background: linear-gradient(135deg, rgba(214, 136, 255, 0.25), rgba(122, 71, 255, 0.2));
  display: grid;
  place-items: center;
}

.staff-img::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(68, 241, 255, 0.25);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.staff-card:hover .staff-img::after {
  opacity: 1;
}

.staff-meta {
  padding: 12px 14px 8px;
}

.staff-meta h3 {
  margin: 0 0 4px;
  font-family: "Cinzel", "Space Grotesk", serif;
  letter-spacing: 0.05em;
}

.staff-meta p {
  margin: 0;
  color: var(--muted);
}

.staff-bio {
  margin: 0;
  padding: 0 14px 14px;
  color: #e6def2;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.staff-card.open .staff-bio {
  max-height: 200px;
}

.placeholder .staff-meta h3 {
  color: var(--muted);
}

.staff-carousel {
  position: relative;
  margin: 20px auto 0;
  max-width: 1100px;
  padding: 30px 70px 40px;
  overflow: hidden;
  isolation: isolate;
}

.staff-carousel::before,
.staff-carousel::after {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background:
    radial-gradient(80% 60% at 20% 40%, rgba(214, 136, 255, 0.12), transparent 60%),
    radial-gradient(70% 60% at 80% 60%, rgba(68, 241, 255, 0.12), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.8;
  filter: blur(18px);
  z-index: 0;
  animation: staffFog 14s ease-in-out infinite;
}

.staff-carousel::after {
  inset: -20% -14%;
  opacity: 0.6;
  filter: blur(24px);
  animation-duration: 18s;
}

.staff-track {
  position: relative;
  height: 440px;
  z-index: 1;
}

.staff-slide {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 320px;
  height: 440px;
  border-radius: 18px;
  background: rgba(12, 6, 18, 0.9);
  border: 1px solid rgba(214, 136, 255, 0.32);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(214, 136, 255, 0.12);
  overflow: hidden;
  transition: transform 0.45s ease, opacity 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  display: grid;
  grid-template-rows: 1fr auto;
}

.staff-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 50% 30%, rgba(214, 136, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.staff-slide-img {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
  background-color: #0a0712;
  filter: saturate(1.08);
}

.staff-slide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 4, 15, 0.78));
}

.staff-slide-meta {
  position: relative;
  z-index: 1;
  padding: 14px 16px;
  background: linear-gradient(160deg, rgba(12, 6, 18, 0.9), rgba(10, 6, 16, 0.82));
  border-top: 1px solid rgba(214, 136, 255, 0.22);
}

.staff-slide-meta h3 {
  margin: 0;
  letter-spacing: 0.08em;
  font-family: "Cinzel", "Space Grotesk", serif;
}

.staff-slide-meta .role {
  margin: 0 0 6px;
  color: var(--accent-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.staff-slide.active {
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.55),
    0 0 26px rgba(214, 136, 255, 0.26);
}

.staff-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(214, 136, 255, 0.4);
  background: rgba(12, 6, 18, 0.7);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 2;
}

.staff-nav:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: var(--accent-secondary);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(214, 136, 255, 0.28);
}

.staff-nav.prev { left: 14px; }
.staff-nav.next { right: 14px; }

.staff-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.staff-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(214, 136, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(214, 136, 255, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.staff-dot.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(214, 136, 255, 0.4), 0 0 20px rgba(68, 241, 255, 0.35);
}

@keyframes staffFog {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(12px, -10px, 0) scale(1.04);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
}

.staff-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 2, 12, 0.7);
  backdrop-filter: blur(14px);
  z-index: 28;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.staff-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.staff-modal-backdrop {
  position: absolute;
  inset: 0;
}

.staff-modal-panel {
  position: relative;
  width: min(640px, 90vw);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5), 0 0 26px rgba(214, 136, 255, 0.26);
}

.staff-modal-img {
  background: #0a0712;
  border-bottom: 1px solid rgba(214, 136, 255, 0.25);
  overflow: hidden;
}

.staff-modal-img img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
}

.staff-modal-body {
  padding: 18px 20px 20px;
  background: linear-gradient(160deg, rgba(12, 6, 18, 0.92), rgba(10, 6, 16, 0.86));
}

.staff-modal-body h3 {
  margin: 0 0 6px;
  font-family: "Cinzel", "Space Grotesk", serif;
  letter-spacing: 0.08em;
}

.staff-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(214, 136, 255, 0.35);
  background: rgba(12, 6, 18, 0.65);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.staff-modal-close:hover {
  border-color: var(--accent-secondary);
  transform: scale(1.05);
}

.floating-logo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(68, 241, 255, 0.16), transparent 60%), rgba(12, 6, 18, 0.82);
  border: 1px solid rgba(214, 136, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(214, 136, 255, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(68, 241, 255, 0.25);
  display: grid;
  place-items: center;
  padding: 8px;
  z-index: 30;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.floating-logo:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: var(--accent-secondary);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(214, 136, 255, 0.3),
    0 0 24px rgba(68, 241, 255, 0.26);
}

@media (max-width: 960px) {
  .staff-carousel {
    padding: 24px 40px 36px;
  }
}

@media (max-width: 720px) {
  .staff-track {
    height: 380px;
  }

  .staff-slide {
    width: 260px;
    height: 360px;
  }

  .staff-modal-img img {
    height: 300px;
  }
}

.site-footer {
  margin: 40px 0 30px;
  padding: 18px 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer .footer-copy {
  color: var(--text);
  text-shadow: 0 0 10px rgba(214, 136, 255, 0.35), 0 0 14px rgba(68, 241, 255, 0.25);
  letter-spacing: 0.04em;
}

.site-footer .footer-copy span:first-child {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(214, 136, 255, 0.5), 0 0 18px rgba(68, 241, 255, 0.35);
}

.site-footer .text-link {
  color: var(--accent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.94);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.94);
    opacity: 0.7;
  }
}

@keyframes hazeDrift {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 80px;
  }

  .nav {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .nav {
    justify-content: space-between;
  }

  .pill-button {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}

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

  .ring,
  .wraith-fog {
    animation: none;
  }

  .staff-bio {
    transition: none;
  }
}

@keyframes haloSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes outlineSweep {
  0% {
    background-position: 0% 50%;
    opacity: 0.5;
  }
  50% {
    background-position: 120% 50%;
    opacity: 1;
  }
  100% {
    background-position: 220% 50%;
    opacity: 0.4;
  }
}

@keyframes sheenSlide {
  0% {
    transform: translateX(-140%) skewX(-8deg);
    opacity: 0;
  }
  35% {
    opacity: 0.35;
  }
  100% {
    transform: translateX(200%) skewX(-8deg);
    opacity: 0;
  }
}

@keyframes pulseBadge {
  0% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.04);
  }
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
}

@keyframes fogDriftSlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -18px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes fogDriftFast {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-16px, -24px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes panelAura {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
