:root {
  color-scheme: dark;
  --bg: #040507;
  --surface: #0c1016;
  --surface-2: #121821;
  --surface-3: #19212d;
  --text: #fffaf0;
  --muted: #aeb8c7;
  --soft: #778396;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .2);
  --gold: #ffd84d;
  --green: #1ed760;
  --teal: #21d4d9;
  --orange: #ff7a2f;
  --red: #ff4965;
  --shadow: 0 28px 80px rgba(0, 0, 0, .48);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(33, 212, 217, .22), transparent 26rem),
    radial-gradient(circle at 92% 3%, rgba(30, 215, 96, .16), transparent 24rem),
    radial-gradient(circle at 48% 44%, rgba(255, 216, 77, .07), transparent 32rem),
    linear-gradient(180deg, #050608 0%, #080a0e 48%, #040507 100%);
}

body.vault-opening {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

a { color: inherit; }
button, input, select { font: inherit; }

.vault-entrance {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(30, 215, 96, .18), transparent 24rem),
    radial-gradient(circle at 50% 18%, rgba(255, 216, 77, .16), transparent 22rem),
    linear-gradient(135deg, #010203 0%, #08100d 45%, #020304 100%);
  border-bottom: 1px solid rgba(255, 216, 77, .22);
  perspective: 1600px;
}

.vault-entrance::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: gridDrift 12s linear infinite;
}

.vault-entrance::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0, 0, 0, .42) 72%, rgba(0, 0, 0, .82) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: .24;
}

.vault-ambient span {
  position: absolute;
  width: 52vw;
  height: 1px;
  left: 50%;
  top: 50%;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(30, 215, 96, .44), transparent);
  opacity: .5;
}

.beam-one { transform: rotate(-31deg); }
.beam-two { transform: rotate(18deg); }
.beam-three { transform: rotate(48deg); }

.vault-stage {
  position: relative;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(420px, 680px) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
}

.vault-door-assembly {
  position: relative;
  min-height: clamp(500px, 58vw, 720px);
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.show-logo-hero {
  position: relative;
  z-index: 8;
  width: min(96vw, 660px);
  display: grid;
  place-items: center;
  animation: logoFloat 4.6s ease-in-out infinite;
}

.show-logo-hero::before,
.show-logo-hero::after {
  content: "";
  position: absolute;
  inset: 8% 0 4%;
  border-radius: 38px;
  pointer-events: none;
}

.show-logo-hero::before {
  background: radial-gradient(circle at 50% 44%, rgba(33, 212, 217, .34), transparent 58%);
  filter: blur(24px);
  opacity: .92;
}

.show-logo-hero::after {
  border: 1px solid rgba(255, 216, 77, .22);
  box-shadow: 0 0 55px rgba(30, 215, 96, .16), inset 0 0 35px rgba(33, 212, 217, .08);
  opacity: .65;
}

.show-logo-hero img {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 32px rgba(0, 0, 0, .8))
    drop-shadow(0 0 18px rgba(33, 212, 217, .44))
    drop-shadow(0 0 14px rgba(255, 216, 77, .2));
}

.vault-shadow {
  position: absolute;
  width: min(92%, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 215, 96, .18), transparent 64%);
  filter: blur(42px);
  transform: translateY(10%) scaleX(1.1);
}

.vault-door-cinematic {
  position: relative;
  position: absolute;
  width: min(96vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, #2d3642 0 16%, #111821 17% 34%, #0a0e15 35% 53%, #171e27 54% 67%, #05070b 68% 100%);
  border: clamp(10px, 2vw, 22px) solid #242d37;
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, .08),
    inset 0 -34px 80px rgba(0, 0, 0, .62),
    0 46px 120px rgba(0, 0, 0, .7),
    0 0 86px rgba(30, 215, 96, .2);
  transform-style: preserve-3d;
  opacity: .72;
  transform: translateX(-3%) scale(1.04);
  animation: vaultBreathe 4.8s ease-in-out infinite;
}

.vault-rim {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 2px solid rgba(255, 216, 77, .34);
  box-shadow: inset 0 0 22px rgba(255, 216, 77, .08), 0 0 30px rgba(255, 216, 77, .12);
}

.vault-logo-plate {
  position: absolute;
  inset: 21%;
  z-index: 4;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(33, 212, 217, .24), transparent 62%),
    linear-gradient(145deg, rgba(255, 216, 77, .08), rgba(30, 215, 96, .08));
  border: 1px solid rgba(255, 255, 255, .12);
}

.vault-logo-plate span {
  color: rgba(255, 216, 77, .64);
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 1000;
  letter-spacing: .16em;
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 216, 77, .32);
}

.vault-wheel {
  position: absolute;
  inset: 37%;
  z-index: 2;
  border-radius: 50%;
  border: 10px solid #10151d;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .08), 0 0 26px rgba(30, 215, 96, .18);
  animation: wheelIdle 9s linear infinite;
}

.vault-wheel span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 48%;
  border-radius: 999px;
  background: linear-gradient(#ffd84d, #21d4d9);
  transform-origin: center top;
}

.vault-wheel span:nth-child(1) { transform: rotate(0deg) translate(-50%, -5%); }
.vault-wheel span:nth-child(2) { transform: rotate(90deg) translate(-50%, -5%); }
.vault-wheel span:nth-child(3) { transform: rotate(180deg) translate(-50%, -5%); }
.vault-wheel span:nth-child(4) { transform: rotate(270deg) translate(-50%, -5%); }

.vault-core {
  position: absolute;
  inset: 45%;
  z-index: 3;
  opacity: .72;
  border-radius: 50%;
  background: radial-gradient(circle, #fff2a5, #ffd84d 34%, #1ed760 72%, #062013);
  box-shadow: 0 0 26px rgba(255, 216, 77, .64);
}

.vault-bolt {
  position: absolute;
  background: linear-gradient(90deg, #05070a, #303b48, #05070a);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 22px rgba(0, 0, 0, .58);
}

.bolt-top,
.bolt-bottom {
  left: 29%;
  width: 42%;
  height: 7%;
}

.bolt-top { top: 4%; border-radius: 0 0 18px 18px; }
.bolt-bottom { bottom: 4%; border-radius: 18px 18px 0 0; }

.bolt-left,
.bolt-right {
  top: 29%;
  width: 7%;
  height: 42%;
}

.bolt-left { left: 4%; border-radius: 0 18px 18px 0; }
.bolt-right { right: 4%; border-radius: 18px 0 0 18px; }

.vault-entry-copy {
  position: relative;
  z-index: 2;
}

.vault-entry-copy h1 {
  max-width: 720px;
  font-size: clamp(54px, 7vw, 106px);
  text-shadow: 0 0 34px rgba(30, 215, 96, .18);
}

.vault-entry-copy p:not(.kicker) {
  max-width: 570px;
  color: #dce4ee;
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.35;
  font-weight: 760;
}

.enter-vault-button,
.sound-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 14px;
  border: 1px solid rgba(255, 216, 77, .54);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 216, 77, .22), rgba(30, 215, 96, .2)), rgba(255, 255, 255, .06);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 18px 54px rgba(30, 215, 96, .16);
  cursor: pointer;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease;
}

.enter-vault-button { padding: 0 26px; }

.sound-toggle {
  min-height: 42px;
  margin-left: 10px;
  padding: 0 16px;
  border-color: rgba(33, 212, 217, .32);
  background: rgba(33, 212, 217, .08);
  color: #dffcff;
  font-size: 12px;
  letter-spacing: .08em;
}

.enter-vault-button:hover,
.sound-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(30, 215, 96, .24);
}

.vault-entrance.is-opening .vault-door-cinematic { animation: vaultOpen 1.65s cubic-bezier(.2, .8, .15, 1) forwards; }
.vault-entrance.is-opening .show-logo-hero { animation: logoPunch 1.4s cubic-bezier(.2, .8, .15, 1) forwards; }
.vault-entrance.is-opening .vault-wheel { animation: wheelOpen 1.05s cubic-bezier(.2, .8, .15, 1) forwards; }
.vault-entrance.is-opening .bolt-top { animation: boltTop .62s ease forwards; }
.vault-entrance.is-opening .bolt-bottom { animation: boltBottom .62s ease forwards; }
.vault-entrance.is-opening .bolt-left { animation: boltLeft .62s ease forwards; }
.vault-entrance.is-opening .bolt-right { animation: boltRight .62s ease forwards; }

.vault-entrance.is-open {
  min-height: auto;
  height: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
  transition: height .4s ease, padding .4s ease, visibility 0s linear .4s;
}

.archive-app {
  position: relative;
}

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

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.site-header {
  padding-top: 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 1000;
}

.brand img,
.site-footer img {
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(33, 212, 217, .22));
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.button,
.open,
.copy,
#clearBtn,
#shareSearchBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover,
.open:hover,
.copy:hover,
#clearBtn:hover,
#shareSearchBtn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 77, .55);
  background: rgba(255, 216, 77, .12);
}

.button-spotify,
.open {
  border-color: rgba(30, 215, 96, .4);
  background: rgba(30, 215, 96, .14);
}

.button-ghost {
  border-color: rgba(33, 212, 217, .28);
  background: rgba(33, 212, 217, .08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: stretch;
  min-height: 440px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(100deg, rgba(30, 215, 96, .1), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(10, 14, 20, .86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "VAULT ONLINE";
  position: absolute;
  right: 28px;
  top: 22px;
  color: rgba(30, 215, 96, .5);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .2em;
}

.hero-art {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 216, 77, .2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 22%, rgba(33, 212, 217, .18), transparent 44%),
    rgba(255, 255, 255, .045);
}

.hero-art img {
  width: min(235px, 68vw);
  height: auto;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(8px, 3vw, 34px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7.3vw, 94px);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subtitle {
  max-width: 650px;
  margin: 20px 0 0;
  color: #dce4ee;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.32;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.stats div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
}

.stats dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.stats dd {
  margin: 7px 0 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 1000;
}

.search-panel {
  margin-top: 18px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(5, 7, 11, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-intro {
  text-align: center;
}

.search-intro p {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-intro h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4.6vw, 52px);
  letter-spacing: 0;
}

.search-shell {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.search-shell::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold), var(--orange));
  opacity: .54;
  filter: blur(13px);
  transition: opacity .22s ease, transform .22s ease;
}

.search-shell:focus-within::before {
  opacity: .92;
  transform: scaleX(1.01);
}

input,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #080b10;
  color: var(--text);
  outline: none;
}

input {
  position: relative;
  min-height: 74px;
  padding: 0 24px;
  border-radius: 21px;
  font-size: clamp(18px, 2.6vw, 25px);
  font-weight: 760;
}

input::placeholder {
  color: #748093;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 216, 77, .18);
}

.filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
  gap: 12px;
  max-width: 900px;
  margin: 16px auto 0;
}

.filters label {
  display: grid;
  gap: 7px;
}

.filters span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .09em;
  text-transform: uppercase;
}

select {
  min-height: 50px;
  padding: 0 14px;
  border-radius: 16px;
}

#clearBtn {
  align-self: end;
  min-width: 98px;
}

#shareSearchBtn {
  align-self: end;
  min-width: 132px;
}

.discovery {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    rgba(8, 11, 16, .82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

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

.section-heading p {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.05;
}

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

.browse-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
}

.browse-panel h3 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: 0;
}

.browse-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.browse-chip,
.browse-action button {
  border: 1px solid rgba(33, 212, 217, .24);
  border-radius: 999px;
  background: rgba(33, 212, 217, .08);
  color: #dffcff;
  cursor: pointer;
  font-weight: 900;
}

.browse-chip {
  min-height: 34px;
  padding: 0 11px;
  font-size: 12px;
}

.browse-list {
  display: grid;
  gap: 8px;
}

.browse-list a,
.related-list a {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  text-decoration: none;
}

.browse-list a:hover,
.related-list a:hover {
  border-color: rgba(255, 216, 77, .4);
  background: rgba(255, 216, 77, .08);
}

.browse-list span,
.related-list span,
.related-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.browse-action button {
  width: 100%;
  min-height: 100%;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 18px 14px;
  border-radius: 18px;
  text-align: center;
}

.browse-action strong {
  color: var(--text);
  font-size: 18px;
}

.browse-action span {
  color: var(--muted);
  font-size: 13px;
}

.meta {
  margin: 18px auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.results {
  display: grid;
  gap: 14px;
}

.result-card {
  display: grid;
  grid-template-columns: 7px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    var(--surface-2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.result-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 215, 96, .34);
  background:
    linear-gradient(135deg, rgba(30, 215, 96, .08), rgba(255, 255, 255, .025)),
    var(--surface-3);
}

.result-accent {
  background: linear-gradient(180deg, var(--green), var(--teal), var(--gold));
}

.result-body {
  min-width: 0;
  padding: clamp(18px, 3vw, 28px);
}

.result-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.date {
  color: var(--gold);
}

.status {
  padding: 4px 10px;
  border: 1px solid rgba(30, 215, 96, .28);
  border-radius: 999px;
  background: rgba(30, 215, 96, .1);
  color: #c8f9d9;
}

.result-card h2 {
  margin: 10px 0 9px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: 0;
}

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

.title:hover {
  color: var(--gold);
}

.description,
.snippet {
  max-width: 930px;
  margin: 9px 0;
  color: var(--muted);
  line-height: 1.6;
}

.description:empty {
  display: none;
}

.snippet {
  color: #edf2f8;
}

mark {
  border-radius: 7px;
  background: rgba(255, 216, 77, .25);
  color: #ffe99b;
  box-shadow: 0 0 0 2px rgba(255, 216, 77, .08);
  padding: 0 3px;
}

.tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  max-width: 100%;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #e9edf5;
  font-size: 12px;
  font-weight: 1000;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  white-space: normal;
}

.tag[data-tone="gold"] {
  border-color: rgba(255, 216, 77, .34);
  background: rgba(255, 216, 77, .13);
  color: #ffe79d;
}

.tag[data-tone="green"] {
  border-color: rgba(30, 215, 96, .32);
  background: rgba(30, 215, 96, .12);
  color: #c3fbd7;
}

.tag[data-tone="blue"] {
  border-color: rgba(33, 212, 217, .32);
  background: rgba(33, 212, 217, .11);
  color: #c9fbff;
}

.tag[data-tone="rose"] {
  border-color: rgba(255, 73, 101, .3);
  background: rgba(255, 73, 101, .1);
  color: #ffd1d8;
}

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

.copy {
  padding: 0 16px;
}

.empty {
  padding: 36px 22px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  text-align: center;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 40px 0 52px;
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  color: var(--text);
  font-size: 17px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    justify-content: start;
    padding: 18px;
  }

  .hero-art img {
    width: min(180px, 52vw);
  }
}

@media (max-width: 700px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

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

  .brand span {
    max-width: 190px;
    line-height: 1.35;
  }

  .nav-actions,
  .button {
    width: 100%;
  }

  .hero {
    padding: 18px;
    border-radius: 28px;
  }

  .hero-art {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero-art img {
    width: min(142px, 46vw);
    border-radius: 20px;
  }

  .hero-copy {
    padding: 0;
  }

  .kicker {
    margin-top: 2px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .subtitle {
    margin-top: 14px;
    font-size: 18px;
  }

  .stats,
  .filters {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 8px;
    margin-top: 20px;
  }

  .stats div {
    padding: 14px;
  }

  .search-panel {
    border-radius: 28px;
  }

  input {
    min-height: 62px;
  }

  #clearBtn,
  #shareSearchBtn,
  .actions a,
  .actions button {
    width: 100%;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .browse-grid,
  .episode-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
    order: 2;
  }

  .transcript-panel {
    order: 1;
  }
}

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

/* Final V3 priority layer: Daily Dose Show logo dominates the vault. */
.vault-stage {
  grid-template-columns: minmax(420px, 720px) minmax(280px, 1fr) !important;
}

.vault-door-assembly {
  min-height: clamp(520px, 58vw, 740px) !important;
}

.show-logo-hero {
  position: relative !important;
  z-index: 30 !important;
  width: min(98vw, 720px) !important;
  opacity: 1 !important;
}

.show-logo-hero::before {
  opacity: .78 !important;
}

.show-logo-hero::after {
  border-color: rgba(255, 216, 77, .34) !important;
}

.show-logo-hero img {
  width: min(100%, 720px) !important;
  opacity: 1 !important;
  filter:
    brightness(1.24)
    contrast(1.12)
    saturate(1.18)
    drop-shadow(0 26px 34px rgba(0, 0, 0, .92))
    drop-shadow(0 0 26px rgba(33, 212, 217, .52))
    drop-shadow(0 0 16px rgba(255, 216, 77, .26)) !important;
}

.vault-door-cinematic {
  z-index: 1 !important;
  width: min(102vw, 730px) !important;
  opacity: .42 !important;
}

.vault-entry-copy {
  z-index: 35 !important;
}

.vault-entry-copy .kicker {
  color: #1eff72 !important;
}

.vault-entry-copy h1 {
  font-size: clamp(54px, 7vw, 108px) !important;
}

.vault-entry-copy p:not(.kicker) {
  max-width: 620px !important;
}

@media (max-width: 900px) {
  .vault-stage {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .vault-door-assembly {
    min-height: min(106vw, 660px) !important;
  }

  .show-logo-hero,
  .show-logo-hero img {
    width: min(108vw, 640px) !important;
  }

  .vault-door-cinematic {
    width: min(122vw, 680px) !important;
    opacity: .38 !important;
    transform: translateX(0) scale(1.02) !important;
  }
}

@media (max-width: 560px) {
  .vault-door-assembly {
    min-height: 420px !important;
  }

  .show-logo-hero,
  .show-logo-hero img {
    width: min(96vw, 390px) !important;
  }

  .vault-door-cinematic {
    width: min(128vw, 510px) !important;
    opacity: .34 !important;
  }

  .vault-entry-copy h1 {
    max-width: 100% !important;
    font-size: clamp(36px, 12.4vw, 56px) !important;
    line-height: .9 !important;
  }

  .vault-entry-copy {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .vault-entry-copy p:not(.kicker) {
    max-width: 100% !important;
    padding-inline: 4px !important;
  }
}

/* V3 logo-first badass pass */
.vault-entrance {
  background:
    radial-gradient(circle at 29% 44%, rgba(33, 212, 217, .2), transparent 26rem),
    radial-gradient(circle at 70% 43%, rgba(255, 216, 77, .14), transparent 26rem),
    linear-gradient(135deg, #020403 0%, #07130d 38%, #040506 100%);
}

.vault-entrance .kicker {
  color: #1eff72;
}

.vault-stage {
  grid-template-columns: minmax(420px, 700px) minmax(280px, 1fr);
}

.show-logo-hero {
  width: min(98vw, 700px);
}

.show-logo-hero img {
  width: min(100%, 700px);
}

.vault-door-cinematic {
  width: min(102vw, 720px);
  opacity: .58;
}

.vault-entry-copy h1 {
  font-size: clamp(54px, 7vw, 108px);
}

.vault-entry-copy p:not(.kicker) {
  max-width: 620px;
}

@media (max-width: 900px) {
  .vault-stage {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vault-door-assembly {
    min-height: min(104vw, 650px);
  }

  .show-logo-hero {
    width: min(106vw, 620px);
  }

  .show-logo-hero img {
    width: min(106vw, 620px);
  }

  .vault-door-cinematic {
    width: min(120vw, 650px);
    transform: translateX(0) scale(1.02);
  }
}

@media (max-width: 560px) {
  .vault-entrance {
    padding: 14px;
  }

  .vault-door-assembly {
    min-height: 445px;
  }

  .show-logo-hero {
    width: min(108vw, 430px);
  }

  .show-logo-hero img {
    width: min(108vw, 430px);
  }

  .vault-door-cinematic {
    width: min(124vw, 500px);
    opacity: .5;
  }

  .vault-entry-copy h1 {
    font-size: clamp(40px, 14vw, 68px);
  }

  .vault-entry-copy p:not(.kicker) {
    font-size: 17px;
  }

  .enter-vault-button,
  .sound-toggle {
    width: 100%;
    margin-left: 0;
  }
}

/* V3 entrance and archive-shell overrides */
.brand img,
.site-footer img,
.hero-art img {
  background: transparent !important;
}

.hero-art img {
  padding: 0;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, .48)) drop-shadow(0 0 20px rgba(33, 212, 217, .2));
}

.archive-app .site-header {
  animation: archiveRise .7s ease both;
}

.archive-app main {
  animation: archiveRise .9s ease both;
}

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

@media (max-width: 900px) {
  .vault-stage {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .vault-door-assembly {
    order: 1;
    min-height: min(82vw, 460px);
  }

  .vault-entry-copy {
    order: 2;
  }

  .vault-entry-copy p:not(.kicker) {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .vault-entrance {
    padding: 14px;
    align-content: center;
  }

  .vault-stage {
    gap: 0;
  }

  .vault-door-cinematic {
    width: min(92vw, 390px);
  }

  .vault-door-assembly {
    min-height: 390px;
  }

  .vault-entry-copy h1 {
    font-size: clamp(42px, 15vw, 70px);
  }

  .vault-entry-copy p:not(.kicker) {
    font-size: 17px;
  }

  .enter-vault-button,
  .sound-toggle {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vault-entrance::before,
  .vault-door-cinematic,
  .vault-wheel,
  .archive-app .site-header,
  .archive-app main {
    animation: none !important;
  }

  .vault-entrance.is-opening .vault-door-cinematic,
  .vault-entrance.is-opening .vault-wheel,
  .vault-entrance.is-opening .vault-bolt {
    animation: none !important;
  }
}

/* Cinematic V2 vault layer */
body {
  background:
    radial-gradient(circle at 16% 8%, rgba(33, 212, 217, .24), transparent 30rem),
    radial-gradient(circle at 86% 0%, rgba(255, 216, 77, .12), transparent 28rem),
    linear-gradient(115deg, rgba(30, 215, 96, .08), transparent 36%),
    linear-gradient(180deg, #020304 0%, #07090d 48%, #030405 100%);
}

.site-header {
  padding-top: 14px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 4;
  padding: 12px 0 20px;
  backdrop-filter: blur(18px);
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 216, 77, .24), 0 20px 54px rgba(33, 212, 217, .22);
}

.brand span {
  color: #fff9e7;
  text-shadow: 0 0 24px rgba(255, 216, 77, .16);
}

.button {
  gap: 8px;
}

.button-icon {
  font-size: 18px;
  line-height: 1;
}

.spotify-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(30, 215, 96, .26));
}

.button:active,
.open:active,
.copy:active,
#clearBtn:active {
  transform: translateY(1px) scale(.99);
}

.hero {
  position: relative;
  grid-template-columns: minmax(360px, 42%) minmax(0, 1fr);
  min-height: 560px;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025)),
    linear-gradient(110deg, rgba(11, 17, 24, .98), rgba(7, 9, 13, .92));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 216, 77, .08) 1px, transparent 1px),
    linear-gradient(rgba(33, 212, 217, .08) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .26;
  mask-image: radial-gradient(circle at 26% 48%, black, transparent 72%);
}

.vault-door {
  position: absolute;
  left: clamp(18px, 5vw, 58px);
  top: 50%;
  z-index: -1;
  width: min(480px, 42vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: .62;
  pointer-events: none;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, .5));
}

.vault-ring,
.vault-hub,
.vault-pin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.vault-ring-one {
  border: 2px solid rgba(255, 216, 77, .32);
  background:
    repeating-conic-gradient(from 0deg, rgba(255, 216, 77, .3) 0 2deg, transparent 2deg 8deg),
    radial-gradient(circle, transparent 54%, rgba(33, 212, 217, .12) 55%, transparent 66%);
  animation: vaultUnlock 1.35s cubic-bezier(.2, .8, .2, 1) both;
}

.vault-ring-two {
  inset: 10%;
  border: 1px solid rgba(33, 212, 217, .35);
  background: repeating-conic-gradient(from 12deg, rgba(33, 212, 217, .18) 0 1deg, transparent 1deg 14deg);
  animation: vaultUnlockReverse 1.35s cubic-bezier(.2, .8, .2, 1) both;
}

.vault-ring-three {
  inset: 25%;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: inset 0 0 35px rgba(33, 212, 217, .13);
}

.vault-hub {
  inset: 39%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 216, 77, .75), rgba(255, 216, 77, .12) 34%, transparent 35%),
    linear-gradient(145deg, rgba(33, 212, 217, .28), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 216, 77, .35);
  box-shadow: 0 0 48px rgba(33, 212, 217, .18);
}

.vault-pin {
  inset: 48% auto auto 50%;
  width: 34%;
  height: 6px;
  border-radius: 999px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(255, 216, 77, .5), transparent);
  animation: pinRetract 1.1s .18s cubic-bezier(.2, .8, .2, 1) both;
}

.vault-pin-a { transform: rotate(0deg); }
.vault-pin-b { transform: rotate(120deg); }
.vault-pin-c { transform: rotate(240deg); }

@keyframes vaultUnlock {
  from { transform: rotate(-18deg) scale(.97); opacity: .35; }
  to { transform: rotate(4deg) scale(1); opacity: 1; }
}

@keyframes vaultUnlockReverse {
  from { transform: rotate(20deg); opacity: .28; }
  to { transform: rotate(-6deg); opacity: 1; }
}

@keyframes pinRetract {
  from { width: 43%; opacity: .75; }
  to { width: 27%; opacity: .48; }
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 470px;
  border-color: rgba(255, 216, 77, .32);
  background:
    radial-gradient(circle at 50% 42%, rgba(33, 212, 217, .26), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  box-shadow: inset 0 0 50px rgba(33, 212, 217, .08), 0 28px 80px rgba(0, 0, 0, .34);
  animation: heroReveal .9s .12s ease both;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 216, 77, .22);
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 216, 77, .12) 47% 53%, transparent 54%),
    linear-gradient(transparent 0 46%, rgba(33, 212, 217, .12) 47% 53%, transparent 54%);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(390px, 72vw);
  padding: 18px;
  border-radius: 30px;
  box-shadow:
    0 0 0 1px rgba(255, 216, 77, .22),
    0 0 42px rgba(33, 212, 217, .28),
    0 36px 90px rgba(0, 0, 0, .4);
}

.hero-copy {
  animation: heroReveal .8s .28s ease both;
}

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

.kicker {
  color: var(--green);
  text-shadow: 0 0 28px rgba(30, 215, 96, .26);
}

.subtitle {
  max-width: 760px;
}

.stats div {
  box-shadow: inset 0 0 26px rgba(255, 255, 255, .025);
}

.search-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(33, 212, 217, .2);
}

.search-panel::before {
  content: "";
  position: absolute;
  inset: auto 8% -120px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(33, 212, 217, .18), transparent 70%);
  pointer-events: none;
}

.quote-indicator {
  position: absolute;
  right: 16px;
  top: -34px;
  z-index: 1;
  transform: translateY(5px);
  opacity: 0;
  padding: 5px 9px;
  border: 1px solid rgba(255, 216, 77, .36);
  border-radius: 999px;
  background: rgba(255, 216, 77, .12);
  color: #ffeaa1;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: opacity .18s ease, transform .18s ease;
}

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

.search-helper {
  max-width: 900px;
  margin: 11px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.meta-pulse {
  animation: countPulse .36s ease;
}

@keyframes countPulse {
  50% { color: #fff5c0; transform: translateY(-1px); }
}

.result-card {
  animation: cardReveal .34s ease both;
}

.result-card:nth-child(2) { animation-delay: .035s; }
.result-card:nth-child(3) { animation-delay: .07s; }
.result-card:nth-child(4) { animation-delay: .105s; }
.result-card:nth-child(n+5) { animation-delay: .14s; }

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

.status[data-match="exact"] {
  border-color: rgba(255, 216, 77, .38);
  background: rgba(255, 216, 77, .13);
  color: #ffeaa1;
}

.status[data-match="related"] {
  border-color: rgba(33, 212, 217, .26);
  background: rgba(33, 212, 217, .09);
  color: #c9fbff;
}

/* Vault 2.1 command-center homepage */
.button-spotify,
.open,
.footer-spotify {
  gap: 9px;
}

.hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  min-height: 690px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -30%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 34%, rgba(33, 212, 217, .16) 45%, rgba(255, 216, 77, .08) 50%, transparent 62%);
  transform: translateX(-40%);
  animation: heroScanner 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy {
  justify-content: center;
  padding: clamp(8px, 2.8vw, 28px);
}

.hero-copy h1 {
  max-width: 820px;
}

.vault-search-form {
  position: relative;
  margin-top: 28px;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgba(33, 212, 217, .22);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(33, 212, 217, .08), rgba(255, 255, 255, .025)),
    rgba(4, 7, 11, .8);
  box-shadow: inset 0 0 34px rgba(33, 212, 217, .05), 0 24px 70px rgba(0, 0, 0, .28);
}

.vault-search-form::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 216, 77, .08);
  border-radius: 20px;
  pointer-events: none;
}

.vault-search-form .search-intro {
  position: relative;
  z-index: 1;
  text-align: left;
}

.vault-search-form .search-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 34px);
}

.vault-search-form .search-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: none;
  margin: 0;
}

.vault-search-form input {
  min-height: 66px;
}

.vault-search-button {
  position: relative;
  z-index: 1;
  min-height: 66px;
  padding: 0 22px;
  border: 1px solid rgba(255, 216, 77, .42);
  border-radius: 21px;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, .96), rgba(30, 215, 96, .76));
  color: #06100a;
  cursor: pointer;
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(30, 215, 96, .18);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.vault-search-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(30, 215, 96, .24);
}

.vault-search-form .filters {
  max-width: none;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.capability-grid span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 15px;
  background: rgba(255, 255, 255, .045);
  color: #dffcff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-art {
  min-height: 600px;
  align-self: stretch;
  overflow: hidden;
}

.vault-system {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 26px;
}

.hero-art .vault-door {
  position: relative;
  inset: auto;
  left: auto;
  top: auto;
  z-index: 1;
  width: clamp(270px, 30vw, 390px);
  transform: none;
  opacity: 1;
}

.vault-system::before,
.vault-system::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 30px;
  pointer-events: none;
}

.vault-system::before {
  border: 1px solid rgba(33, 212, 217, .2);
  background:
    linear-gradient(90deg, rgba(33, 212, 217, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 216, 77, .07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, transparent 22%, black 62%, transparent 92%);
}

.vault-system::after {
  background: radial-gradient(circle at 50% 50%, rgba(30, 215, 96, .18), transparent 44%);
  animation: statusPulse 2.8s ease-in-out infinite;
}

.vault-ring-one {
  animation: vaultIdle 24s linear infinite;
}

.vault-ring-two {
  animation: vaultIdleReverse 18s linear infinite;
}

.vault-ring-three {
  background:
    radial-gradient(circle, rgba(255, 255, 255, .04), transparent 58%),
    repeating-conic-gradient(from 8deg, rgba(255, 255, 255, .13) 0 3deg, transparent 3deg 18deg);
}

.vault-spoke {
  position: absolute;
  inset: 49% auto auto 50%;
  width: 38%;
  height: 8px;
  border-radius: 999px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(212, 226, 232, .72), rgba(33, 212, 217, .18), transparent);
  box-shadow: 0 0 20px rgba(33, 212, 217, .18);
}

.vault-spoke-a { transform: rotate(28deg); }
.vault-spoke-b { transform: rotate(148deg); }
.vault-spoke-c { transform: rotate(268deg); }

.vault-readout {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(30, 215, 96, .26);
  border-radius: 16px;
  background: rgba(3, 8, 10, .72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}

.vault-readout-secondary {
  left: auto;
  right: 24px;
  top: 24px;
  bottom: auto;
  border-color: rgba(255, 216, 77, .24);
}

.vault-readout span {
  color: var(--soft);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vault-readout strong {
  color: #c7ffd9;
  font-size: 18px;
  letter-spacing: .08em;
}

.hero.is-scanning .vault-ring-one {
  animation: vaultScan .9s cubic-bezier(.2, .8, .2, 1) both;
}

.hero.is-scanning .vault-ring-two {
  animation: vaultScanReverse .9s cubic-bezier(.2, .8, .2, 1) both;
}

.hero.is-scanning .vault-system::after {
  animation: statusPulse .35s ease-in-out 3;
}

.footer-spotify {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

@keyframes heroScanner {
  0%, 32% { transform: translateX(-42%); opacity: 0; }
  48% { opacity: .8; }
  70%, 100% { transform: translateX(42%); opacity: 0; }
}

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

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

@keyframes vaultScan {
  from { transform: rotate(0deg) scale(1); }
  55% { transform: rotate(42deg) scale(1.025); }
  to { transform: rotate(18deg) scale(1); }
}

@keyframes vaultScanReverse {
  from { transform: rotate(0deg); }
  55% { transform: rotate(-32deg); }
  to { transform: rotate(-12deg); }
}

@keyframes statusPulse {
  50% { opacity: .64; filter: brightness(1.28); }
}

.status[data-match="semantic"] {
  border-color: rgba(255, 122, 47, .34);
  background: rgba(255, 122, 47, .1);
  color: #ffd5bf;
}

.semantic-heading {
  display: grid;
  gap: 4px;
  margin: 10px 0 2px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 122, 47, .24);
  border-radius: 18px;
  background: rgba(255, 122, 47, .075);
}

.semantic-heading strong {
  color: #ffd5bf;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 13px;
}

.semantic-heading span {
  color: var(--muted);
  font-size: 13px;
}

.episode-detail {
  display: grid;
  gap: 18px;
}

.back-link {
  justify-self: start;
  color: #dffcff;
  font-weight: 900;
  text-decoration: none;
}

.episode-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
  gap: 18px;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid rgba(206, 224, 236, .2);
  border-radius: 32px;
  background:
    repeating-linear-gradient(100deg, transparent 0 16px, rgba(255, 255, 255, .025) 17px 18px),
    radial-gradient(circle at 12% 18%, rgba(33, 212, 217, .18), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .025)),
    rgba(10, 14, 20, .86);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.episode-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  background:
    linear-gradient(90deg, transparent, rgba(33, 212, 217, .16), transparent),
    repeating-linear-gradient(0deg, transparent 0 19px, rgba(255, 255, 255, .035) 20px);
  transform: translateX(-100%);
  animation: vaultScan 3.8s ease-out 1;
}

.episode-identity {
  position: relative;
  z-index: 1;
}

.episode-hero h1 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: .96;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.episode-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.episode-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(33, 212, 217, .24);
  border-radius: 999px;
  background: rgba(33, 212, 217, .08);
  color: #dffcff;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .11em;
}

.episode-badges span:nth-child(2) {
  color: #ffe69b;
  border-color: rgba(255, 216, 77, .32);
  background: rgba(255, 216, 77, .105);
  animation: statusPulse 2.8s ease-in-out infinite;
}

.episode-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.episode-meta-strip div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

.episode-meta-strip dt {
  color: var(--soft);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.episode-meta-strip dd {
  margin: 5px 0 0;
  color: #f7fbff;
  font-size: 14px;
  font-weight: 900;
}

.detail-actions {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(3, 5, 8, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.actions-label {
  margin: 0 0 2px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.detail-actions .button,
.detail-actions .copy {
  width: 100%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.detail-actions .button:hover,
.detail-actions .copy:hover,
.detail-actions .button:focus-visible,
.detail-actions .copy:focus-visible {
  transform: translateY(-1px);
}

.download-link {
  text-decoration: none;
}

.reader-progress {
  position: sticky;
  top: 0;
  z-index: 7;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.reader-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  box-shadow: 0 0 22px rgba(33, 212, 217, .45);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .32fr);
  gap: 18px;
  align-items: start;
}

.detail-sidebar,
.transcript-panel,
.detail-route-shell {
  border: 1px solid rgba(206, 224, 236, .16);
  border-radius: 26px;
  background: rgba(12, 16, 22, .9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.detail-sidebar {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 16px;
  padding: 18px;
  order: 2;
}

.metadata-panel-heading {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.metadata-panel-heading span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.metadata-panel-heading strong {
  font-size: 20px;
}

.metadata-group {
  display: grid;
  gap: 10px;
}

.detail-sidebar h2,
.transcript-panel h2 {
  margin: 0;
  font-size: 18px;
}

.related-list {
  display: grid;
  gap: 8px;
}

.related-list strong {
  font-size: 14px;
  line-height: 1.25;
}

.transcript-panel {
  position: relative;
  order: 1;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
}

.transcript-panel-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.transcript-text {
  max-height: none;
  margin-top: 0;
  color: #eef3f9;
  font-size: 18px;
  line-height: 1.76;
  white-space: normal;
  overflow-wrap: break-word;
}

.transcript-reader {
  position: relative;
}

.transcript-scan {
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  pointer-events: none;
  opacity: .35;
  background: linear-gradient(180deg, transparent, rgba(33, 212, 217, .18), transparent);
  transform: translateY(-120%);
  animation: transcriptLoadScan 2.2s ease-out 1;
}

.reader-toolbar {
  position: sticky;
  top: 12px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(5, 8, 12, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
}

.reader-toolbar-group {
  display: grid;
  gap: 3px;
}

.reader-toolbar-label,
.chapter-jump span,
.reader-search span {
  color: var(--soft);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reader-toolbar-group strong {
  color: #f7fbff;
  font-size: 13px;
}

.chapter-jump,
.reader-search {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.chapter-jump select,
.reader-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  padding: 0 12px;
}

.reader-top {
  min-height: 42px;
  white-space: nowrap;
}

.transcript-flow {
  display: grid;
  gap: 10px;
}

.transcript-notice {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 216, 77, .2);
  border-radius: 16px;
  background: rgba(255, 216, 77, .075);
  color: #e9edf5;
  font-size: 13px;
}

.transcript-notice span {
  flex: 0 0 auto;
  color: #ffe69b;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .12em;
}

.transcript-entry {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  scroll-margin-top: 120px;
  animation: chapterReveal .45s ease both;
}

.timestamp-cell {
  position: sticky;
  top: 94px;
  display: inline-flex;
  justify-content: center;
  min-width: 0;
  padding: 8px 7px;
  border: 1px solid rgba(33, 212, 217, .2);
  border-radius: 999px;
  background: rgba(33, 212, 217, .08);
  color: #bdfcff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .02em;
}

.timestamp-cell:hover,
.timestamp-cell:focus-visible {
  border-color: rgba(33, 212, 217, .5);
  box-shadow: 0 0 0 3px rgba(33, 212, 217, .12);
}

.transcript-block {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)),
    rgba(255, 255, 255, .025);
}

.transcript-entry.is-match .transcript-block,
.transcript-entry.is-arrival .transcript-block {
  border-color: rgba(255, 216, 77, .38);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, .08), 0 16px 36px rgba(255, 216, 77, .08);
}

.transcript-entry.is-arrival .timestamp-cell {
  animation: timestampFocus 1.4s ease-out 1;
}

.speaker-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.transcript-block p {
  max-width: 72ch;
  margin: 0;
}

.chapter-marker {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 216, 77, .2);
}

.chapter-marker span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .12em;
}

.chapter-marker strong {
  color: #fff4bf;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.2;
}

mark {
  padding: 0 .16em;
  border-radius: .25em;
  background: rgba(255, 216, 77, .28);
  color: #fff9db;
  box-shadow: 0 0 0 1px rgba(255, 216, 77, .22);
}

@keyframes transcriptLoadScan {
  0% { transform: translateY(-120%); }
  100% { transform: translateY(720%); }
}

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

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 216, 77, 0); }
  50% { box-shadow: 0 0 22px rgba(255, 216, 77, .14); }
}

@keyframes timestampFocus {
  0% { box-shadow: 0 0 0 0 rgba(255, 216, 77, .4); }
  100% { box-shadow: 0 0 0 18px rgba(255, 216, 77, 0); }
}

.detail-route-shell {
  padding: clamp(20px, 4vw, 36px);
}

mark {
  animation: markPulse .9s ease 1;
}

@keyframes markPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 216, 77, .48); }
  55% { box-shadow: 0 0 0 5px rgba(255, 216, 77, .08); }
  100% { box-shadow: 0 0 0 2px rgba(255, 216, 77, .08); }
}

.search-guide {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 28px));
  margin: 18px auto 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 12, 17, .82);
  overflow: hidden;
}

.guide-toggle {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 1000;
  text-align: left;
}

.guide-body {
  padding: 0 18px 18px;
  color: var(--muted);
}

.guide-body ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-body li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .045);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a {
  color: #dffcff;
  font-weight: 850;
}

@media (hover: hover) and (min-width: 901px) {
  .hero:hover .vault-door {
    transform: translateY(-50%) translate3d(8px, -4px, 0);
    transition: transform .5s ease;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vault-door {
    right: -90px;
    left: auto;
    top: 170px;
    width: 340px;
    opacity: .34;
  }

  .hero-art {
    min-height: auto;
    justify-content: start;
    padding: 18px;
  }

  .hero-art img {
    width: min(250px, 70vw);
  }

  .guide-body ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    position: relative;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .hero {
    padding: 18px;
  }

  .hero-art {
    display: grid;
    padding: 16px;
    border: 1px solid rgba(255, 216, 77, .24);
    background:
      radial-gradient(circle at 44% 48%, rgba(33, 212, 217, .23), transparent 54%),
      rgba(255, 255, 255, .04);
  }

  .hero-art img {
    width: min(260px, 76vw);
    padding: 14px;
  }

  .vault-door {
    top: 260px;
    right: -150px;
    width: 330px;
  }

  .kicker {
    margin-top: 14px;
  }

  .search-intro h2 {
    font-size: 30px;
  }

  .quote-indicator {
    position: static;
    display: inline-flex;
    margin: 0 0 8px;
  }

  .quote-indicator:not(.is-visible) {
    display: none;
  }

  .guide-body ul {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .episode-detail,
  .episode-hero,
  .episode-hero > div,
  .episode-meta-strip,
  .reader-toolbar,
  .detail-actions,
  .detail-grid,
  .detail-sidebar,
  .transcript-panel,
  .transcript-reader,
  .transcript-entry,
  .transcript-block,
  .transcript-text {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    gap: 16px;
    padding: 16px;
  }

  .hero-copy {
    padding: 4px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: .9;
  }

  .vault-search-form {
    margin-top: 20px;
    padding: 14px;
    border-radius: 22px;
  }

  .vault-search-form .search-shell,
  .vault-search-form .filters,
  .capability-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .vault-search-button,
  .vault-search-form input {
    width: 100%;
    min-height: 58px;
  }

  .capability-grid {
    gap: 7px;
  }

  .capability-grid span {
    min-height: 38px;
  }

  .hero-art {
    min-height: 330px;
    padding: 0;
  }

  .vault-system {
    min-height: 330px;
    padding: 14px;
  }

  .hero-art .vault-door {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    width: min(275px, 78vw);
    transform: none;
    opacity: 1;
  }

  .vault-readout {
    left: 12px;
    bottom: 12px;
    min-width: 128px;
    padding: 9px 10px;
  }

  .vault-readout-secondary {
    right: 12px;
    top: 12px;
    left: auto;
    bottom: auto;
  }

  .vault-readout strong {
    font-size: 14px;
  }

  .episode-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    overflow: hidden;
    border-radius: 26px;
  }

  .episode-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .episode-badges {
    gap: 7px;
  }

  .episode-badges span {
    max-width: 100%;
    white-space: normal;
  }

  .episode-meta-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .detail-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .detail-actions .button,
  .detail-actions .copy,
  .detail-actions .download-link {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    overflow: hidden;
  }

  .reader-progress {
    top: 0;
  }

  .transcript-panel {
    order: 1;
    width: 100%;
    padding: 16px;
  }

  .detail-sidebar {
    position: static;
    order: 2;
    width: 100%;
  }

  .detail-sidebar .tags {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .tag {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .transcript-text {
    width: 100%;
    font-size: 16px;
    line-height: 1.74;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .reader-toolbar {
    position: static;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    padding: 12px;
  }

  .reader-top,
  .chapter-jump select,
  .reader-search input {
    width: 100%;
  }

  .transcript-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .transcript-entry {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    scroll-margin-top: 24px;
  }

  .timestamp-cell {
    position: static;
    justify-self: start;
    max-width: 100%;
  }

  .transcript-block {
    width: 100%;
    padding: 16px;
  }

  .transcript-block p {
    max-width: 100%;
  }

.chapter-marker strong {
    overflow-wrap: anywhere;
  }
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 42px 42px; }
}

@keyframes vaultBreathe {
  0%, 100% { transform: translateX(-3%) translateZ(0) scale(1.04) rotateX(0deg); }
  50% { transform: translateX(-3%) translateZ(18px) scale(1.06) rotateX(1.5deg); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.012); }
}

@keyframes logoPunch {
  0% { transform: translateY(0) scale(1); filter: brightness(1); }
  42% { transform: translateY(-6px) scale(1.045); filter: brightness(1.18); }
  100% { transform: translateY(-18px) scale(.88); filter: brightness(.9); opacity: .16; }
}

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

@keyframes wheelOpen {
  0% { transform: rotate(0deg) scale(1); }
  70% { transform: rotate(710deg) scale(1.05); }
  100% { transform: rotate(720deg) scale(.86); }
}

@keyframes vaultOpen {
  0% { transform: translateX(-3%) scale(1.04) rotateY(0deg) translateZ(0); opacity: .72; }
  68% { transform: translateX(-8vw) scale(1.04) rotateY(-24deg) translateZ(80px); opacity: .74; }
  100% { transform: translateX(-38vw) scale(1.04) rotateY(-76deg) translateZ(140px); opacity: .04; }
}

@keyframes boltTop { to { transform: translateY(-145%); opacity: .25; } }
@keyframes boltBottom { to { transform: translateY(145%); opacity: .25; } }
@keyframes boltLeft { to { transform: translateX(-145%); opacity: .25; } }
@keyframes boltRight { to { transform: translateX(145%); opacity: .25; } }

@media (min-width: 769px) and (max-width: 1040px) {
  .reader-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .reader-top {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vault-entrance::before,
  .vault-door-cinematic,
  .vault-wheel,
  .vault-entrance.is-opening .vault-door-cinematic,
  .vault-entrance.is-opening .vault-wheel,
  .vault-entrance.is-opening .vault-bolt,
  .vault-ring-one,
  .vault-ring-two,
  .vault-system::after,
  .hero::before,
  .vault-pin,
  .vault-spoke,
  .hero-art,
  .hero-copy,
  .result-card,
  .transcript-scan,
  .episode-hero::before,
  .episode-badges span:nth-child(2),
  .transcript-entry,
  .transcript-entry.is-arrival .timestamp-cell,
  mark,
  .meta-pulse {
    animation: none !important;
  }

  .search-shell::before,
  .transcript-scan,
  .episode-hero::before {
    display: none !important;
  }

  .search-shell::before,
  .vault-search-button,
  .button,
  .open,
  .copy,
  #clearBtn {
    transition: none !important;
  }
}

/* V3 final correction: readable Daily Dose logo, no frame, true center. */
.vault-door-assembly {
  justify-items: center !important;
  align-items: center !important;
  overflow: visible !important;
}

.show-logo-hero {
  position: relative !important;
  z-index: 50 !important;
  justify-self: center !important;
  align-self: center !important;
  margin-inline: auto !important;
  transform-origin: center center !important;
}

.show-logo-hero::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.show-logo-hero::before {
  inset: 4% 8% 0 !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 50% 46%, rgba(33, 212, 217, .28), transparent 62%) !important;
  opacity: .72 !important;
}

.show-logo-hero img {
  display: block !important;
  margin-inline: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter:
    brightness(1.18)
    contrast(1.08)
    saturate(1.1)
    drop-shadow(0 26px 36px rgba(0, 0, 0, .94))
    drop-shadow(0 0 18px rgba(33, 212, 217, .42)) !important;
}

@media (min-width: 901px) {
  .show-logo-hero,
  .show-logo-hero img {
    width: min(54vw, 720px) !important;
  }
}

@media (max-width: 900px) {
  .show-logo-hero,
  .show-logo-hero img {
    width: min(100vw, 620px) !important;
  }
}

@media (max-width: 560px) {
  .show-logo-hero,
  .show-logo-hero img {
    width: min(92vw, 370px) !important;
  }

  .vault-door-assembly {
    min-height: 398px !important;
  }
}
