:root {
  --site-css-ready: 1;
  --bg: #100f14;
  --bg-soft: #191820;
  --ink: #f8f3e9;
  --muted: #c7bdad;
  --line: rgba(248, 243, 233, 0.18);
  --ember: #d8893b;
  --gold: #f0c766;
  --teal: #68d4c4;
  --blue: #476bd9;
  --paper: #fbf5e9;
  --paper-ink: #24212a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--paper);
  color: var(--paper-ink);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(16, 15, 20, 0.84);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 0.8rem clamp(1rem, 3vw, 2.5rem);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.75rem;
  min-width: 0;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  border-radius: 8px;
  color: #17110a;
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mobile-brand-tour-toggle {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  gap: 0.35rem;
  height: 48px;
  justify-content: center;
  line-height: 1;
  padding: 0.28rem;
  text-transform: uppercase;
  width: 58px;
}

.mobile-brand-tour-toggle img {
  border-radius: 6px;
  height: 30px;
  object-fit: cover;
  width: 30px;
}

.mobile-brand-tour-toggle[aria-expanded="true"],
.mobile-brand-tour-toggle:hover,
.mobile-brand-tour-toggle:focus-visible {
  background: rgba(104, 212, 196, 0.18);
  border-color: rgba(104, 212, 196, 0.45);
  color: var(--teal);
}

.brand strong,
.brand small {
  display: block;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand strong {
  line-height: 1.03;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.header-music-transport {
  align-items: center;
  background: rgba(20, 19, 26, 0.72);
  border: 1px solid rgba(104, 212, 196, 0.2);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  flex: 0 1 430px;
  gap: 0.5rem;
  justify-content: center;
  margin-left: auto;
  max-width: 460px;
  min-width: 0;
  padding: 0.28rem 0.4rem 0.28rem 0.62rem;
}

.header-music-transport[hidden] {
  display: none;
}

.header-music-kicker {
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-music-title-button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: inherit;
  cursor: pointer;
  display: block;
  flex: 1 1 auto;
  font: inherit;
  min-width: 0;
  overflow: hidden;
  padding: 0.14rem 0.3rem;
  text-align: center;
}

.header-music-title-button:focus-visible {
  outline: 2px solid rgba(104, 212, 196, 0.58);
  outline-offset: 2px;
}

.header-music-transport strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  white-space: nowrap;
}

.header-music-transport strong span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-music-transport.has-marquee-title strong span {
  animation: headerMusicTicker 11s linear infinite;
  display: inline-block;
  min-width: max-content;
  padding-right: 2rem;
  text-overflow: clip;
}

@keyframes headerMusicTicker {
  0%,
  12% {
    transform: translateX(0);
  }

  88%,
  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-music-transport.has-marquee-title strong span {
    animation: none;
    display: block;
    min-width: 0;
    text-overflow: ellipsis;
  }
}

.header-music-buttons {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  margin-left: auto;
}

.header-music-buttons button {
  background: rgba(104, 212, 196, 0.11);
  border: 1px solid rgba(104, 212, 196, 0.24);
  border-radius: 50%;
  color: var(--teal);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  height: 2.12rem;
  line-height: 1;
  min-height: 2.12rem;
  min-width: 2.12rem;
  padding: 0;
  width: 2.12rem;
}

.header-music-buttons button:hover,
.header-music-buttons button:focus-visible {
  background: rgba(104, 212, 196, 0.2);
}

.header-music-buttons button:disabled {
  cursor: default;
  opacity: 0.34;
}

.header-music-buttons button:disabled:hover,
.header-music-buttons button:disabled:focus-visible {
  background: rgba(104, 212, 196, 0.11);
}

.header-music-volume {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 800;
  gap: 0.28rem;
  white-space: nowrap;
}

.header-music-volume input {
  accent-color: var(--teal);
  width: 64px;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  padding: 0.65rem 0.7rem;
  text-decoration: none;
}

.nav-mia-toggle {
  align-items: center;
  background: rgba(104, 212, 196, 0.07);
  border: 1px solid rgba(104, 212, 196, 0.2);
  border-radius: 999px;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  gap: 0.45rem;
  letter-spacing: 0.03em;
  line-height: 1;
  min-height: 38px;
  padding: 0.28rem 0.72rem 0.28rem 0.32rem;
  text-shadow: 0 0 16px rgba(104, 212, 196, 0.36);
  white-space: nowrap;
}

.nav-mia-toggle img {
  border: 1px solid rgba(159, 245, 233, 0.62);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(104, 212, 196, 0.08), 0 0 18px rgba(104, 212, 196, 0.22);
  height: 30px;
  object-fit: cover;
  object-position: center 40%;
  width: 46px;
}

.nav-mia-toggle span {
  display: inline-block;
}

.nav-mia-toggle:hover,
.nav-mia-toggle[aria-expanded="true"] {
  background: rgba(104, 212, 196, 0.13);
  border-color: rgba(104, 212, 196, 0.42);
  color: #9ff5e9;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  display: none;
  padding: 0.6rem 0.8rem;
}

.page {
  display: none;
  scroll-margin-top: 6.25rem;
}

.page.active {
  display: block;
}

.mobile-copy {
  display: none;
}

.hero {
  min-height: calc(100svh - 112px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 34%;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 15, 20, 0.72), rgba(16, 15, 20, 0.48) 28%, rgba(16, 15, 20, 0.1) 54%, rgba(16, 15, 20, 0) 82%),
    linear-gradient(0deg, rgba(16, 15, 20, 0.42), rgba(16, 15, 20, 0.08) 28%, rgba(16, 15, 20, 0) 54%);
  inset: 0;
  position: absolute;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 112px);
  max-width: 820px;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 7vw, 6rem);
  position: relative;
  z-index: 1;
}

.home-spotlight {
  background: linear-gradient(135deg, rgba(20, 19, 26, 0.76), rgba(22, 42, 41, 0.7));
  border: 1px solid rgba(104, 212, 196, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26), 0 0 30px rgba(104, 212, 196, 0.1);
  color: var(--ink);
  display: grid;
  gap: 0.48rem;
  max-width: calc(100% - 2rem);
  padding: 0.88rem;
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(8.7rem, 12vw, 10.8rem);
  width: min(360px, 33vw);
  z-index: 2;
}

.home-spotlight.is-changing {
  animation: home-spotlight-shift 260ms ease;
}

.home-spotlight-kicker {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.home-spotlight h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.18rem;
  line-height: 1.12;
  margin: 0;
}

.home-spotlight p:not(.home-spotlight-kicker) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
  margin: 0;
}

.home-spotlight-link {
  align-self: start;
  background: rgba(104, 212, 196, 0.14);
  border: 1px solid rgba(104, 212, 196, 0.34);
  border-radius: 6px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.42rem 0.58rem;
  text-decoration: none;
}

.home-spotlight-link:hover,
.home-spotlight-link:focus-visible {
  background: rgba(104, 212, 196, 0.22);
  border-color: rgba(104, 212, 196, 0.56);
}

.home-spotlight-dots {
  display: flex;
  gap: 0.34rem;
  margin-top: 0.1rem;
}

.home-spotlight-dots button {
  background: rgba(248, 243, 233, 0.24);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 0.48rem;
  padding: 0;
  width: 0.48rem;
}

.home-spotlight-dots button.is-active {
  background: var(--teal);
  width: 1.2rem;
}

@keyframes home-spotlight-shift {
  from {
    opacity: 0.72;
    transform: translateY(4px);
  }
}

.home-tour-card {
  align-items: center;
  background: rgba(20, 19, 26, 0.58);
  border: 1px solid rgba(104, 212, 196, 0.28);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), 0 0 32px rgba(104, 212, 196, 0.12);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 0.82rem;
  grid-template-columns: auto 1fr;
  min-width: 245px;
  padding: 0.56rem 1rem 0.56rem 0.56rem;
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(3.2rem, 7vw, 5.6rem);
  text-align: left;
  z-index: 2;
}

.home-tour-card:hover {
  background: rgba(20, 19, 26, 0.72);
  border-color: rgba(104, 212, 196, 0.56);
}

.home-tour-card strong,
.home-tour-card small {
  display: block;
}

.home-tour-card strong {
  font-size: 1rem;
  line-height: 1.05;
}

.home-tour-card small {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-tour-image {
  border: 1px solid rgba(159, 245, 233, 0.58);
  border-radius: 14px;
  box-shadow: 0 0 0 4px rgba(104, 212, 196, 0.08), 0 0 28px rgba(104, 212, 196, 0.22);
  height: 62px;
  object-fit: cover;
  object-position: center 38%;
  width: 92px;
}

.tour-host-picker {
  background: rgba(15, 14, 20, 0.78);
  border: 1px solid rgba(104, 212, 196, 0.26);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 38px rgba(104, 212, 196, 0.12);
  display: grid;
  gap: 0.7rem;
  max-width: min(92vw, 335px);
  padding: 0.9rem;
  position: fixed;
  right: clamp(1rem, 3vw, 2.25rem);
  top: 86px;
  z-index: 30;
}

.tour-host-picker[hidden] {
  display: none;
}

.tour-host-picker .eyebrow {
  margin-bottom: 0;
}

.tour-host-list {
  display: grid;
  gap: 0.55rem;
}

.tour-host-option {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 0.78rem;
  grid-template-columns: auto 1fr;
  padding: 0.48rem 0.85rem 0.48rem 0.48rem;
  text-align: left;
}

.tour-host-option:hover {
  background: rgba(104, 212, 196, 0.12);
  border-color: rgba(104, 212, 196, 0.38);
}

.tour-host-option img {
  border: 2px solid rgba(159, 245, 233, 0.82);
  border-radius: 999px;
  height: 58px;
  object-fit: cover;
  object-position: center 42%;
  width: 58px;
}

.tour-host-option strong,
.tour-host-option small {
  display: block;
}

.tour-host-option small {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.hero h1 {
  font-size: clamp(2.05rem, 3.35vw, 3.3rem);
  max-width: 15.4ch;
}

.hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  max-width: 650px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-album-ribbon {
  align-items: center;
  background: rgba(20, 19, 26, 0.56);
  border: 1px solid rgba(248, 243, 233, 0.15);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 0.6rem;
  grid-template-columns: minmax(0, 1fr) auto;
  isolation: isolate;
  margin-top: 0.95rem;
  max-width: min(560px, 100%);
  overflow: hidden;
  padding: 0.45rem;
  position: relative;
}

.hero-album-ribbon::before {
  background-image: var(--ribbon-art);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(18px);
  inset: -22px;
  opacity: 0.38;
  position: absolute;
  transform: scale(1.08);
  z-index: -2;
}

.hero-album-ribbon::after {
  background: linear-gradient(90deg, rgba(16, 15, 20, 0.78), rgba(16, 15, 20, 0.38));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-album-main {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 0.68rem;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
}

.hero-album-main img {
  aspect-ratio: 1;
  border: 1px solid rgba(248, 243, 233, 0.28);
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(246, 192, 96, 0.2);
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.hero-album-main small,
.hero-album-main strong {
  display: block;
}

.hero-album-main small {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.18rem;
  text-transform: uppercase;
}

.hero-album-main strong {
  font-size: 0.96rem;
  line-height: 1.12;
}

.hero-album-covers {
  display: flex;
  gap: 0.38rem;
}

.hero-album-covers button {
  background: transparent;
  border: 1px solid rgba(248, 243, 233, 0.2);
  border-radius: 6px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  transition: border-color 160ms ease, transform 160ms ease;
}

.hero-album-covers button:hover,
.hero-album-covers button:focus-visible,
.hero-album-covers button.is-active {
  border-color: rgba(104, 212, 196, 0.75);
  transform: translateY(-1px);
}

.hero-album-covers button.is-active {
  box-shadow: 0 0 0 1px rgba(104, 212, 196, 0.28);
}

.hero-album-covers img {
  aspect-ratio: 1;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.home-welcome-section {
  display: grid;
  gap: clamp(1rem, 3vw, 1.7rem);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.home-welcome-copy h2 {
  margin-bottom: 0;
}

.home-welcome-section .video-embed {
  max-width: min(100%, 860px);
}

.home-song-ribbon {
  margin: 0 auto;
  max-width: min(100%, 560px);
  width: min(100%, 560px);
}

.home-song-ribbon.is-changing {
  animation: home-spotlight-shift 260ms ease;
}

.home-song-feature {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #0f0e14;
  border: 1px solid rgba(16, 15, 20, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  display: flex;
  gap: clamp(1rem, 5vw, 2.4rem);
  isolation: isolate;
  justify-content: center;
  overflow: hidden;
  padding: clamp(0.72rem, 2.2vw, 1.05rem);
  position: relative;
  text-decoration: none;
}

.home-song-feature::before {
  background-image: var(--home-song-art);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(18px);
  inset: -22px;
  opacity: 0.78;
  position: absolute;
  transform: scale(1.08);
  z-index: -2;
}

.home-song-feature::after {
  background:
    radial-gradient(circle at center, rgba(16, 15, 20, 0.1), rgba(16, 15, 20, 0.42) 58%, rgba(16, 15, 20, 0.68)),
    linear-gradient(0deg, rgba(16, 15, 20, 0.28), rgba(16, 15, 20, 0.04));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.home-song-cover {
  display: block;
  position: relative;
  text-decoration: none;
}

.home-song-cover img {
  aspect-ratio: 1;
  border: 1px solid rgba(248, 243, 233, 0.32);
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32), 0 0 24px rgba(246, 192, 96, 0.18);
  display: block;
  max-height: calc(100% - 0.2rem);
  object-fit: cover;
  transition: transform 260ms ease;
  width: clamp(9rem, 24vw, 12rem);
}

.home-song-cover:hover img,
.home-song-cover:focus-visible img {
  transform: scale(1.04);
}

.home-song-nav {
  align-items: center;
  background: rgba(16, 15, 20, 0.34);
  border: 1px solid rgba(248, 243, 233, 0.2);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  font-weight: 800;
  height: clamp(2.5rem, 8vw, 3.15rem);
  justify-content: center;
  line-height: 1;
  position: relative;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  width: clamp(2.5rem, 8vw, 3.15rem);
}

.home-song-nav:hover,
.home-song-nav:focus-visible {
  background: rgba(16, 15, 20, 0.52);
  border-color: rgba(248, 243, 233, 0.38);
  transform: translateY(-1px);
}

.home-song-hint {
  color: #5b5348;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0.55rem 0 0;
  text-align: center;
}

.button,
.text-link,
.avatar-controls button,
.chat-form button,
.prompt-chips button,
.fake-player button,
.inline-player button {
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  padding: 0.85rem 1rem;
}

.mobile-tour-button,
.mobile-story-button {
  display: none;
}

.button.primary {
  background: var(--paper);
  color: var(--paper-ink);
}

.button.accent {
  background: var(--ember);
  border-color: var(--ember);
  color: #160d05;
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.content-band {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 7vw, 6rem);
}

@media (min-width: 1180px) {
  body.avatar-panel-open .site-header,
  body.avatar-panel-open main {
    padding-right: 420px;
  }

  body.avatar-panel-open .site-nav a,
  body.avatar-panel-open .nav-mia-toggle {
    font-size: 0.78rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  body.avatar-panel-open .brand-copy strong {
    max-width: 8.5ch;
    white-space: normal;
  }

  body.avatar-panel-open .brand small {
    display: none;
  }

  body.avatar-panel-open .header-music-transport {
    max-width: 330px;
  }

  body.avatar-panel-open .content-band {
    padding-left: clamp(1rem, 4vw, 3.2rem);
    padding-right: clamp(1rem, 4vw, 3.2rem);
  }

  body.avatar-panel-open .release-grid {
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.avatar-panel-open .release-card {
    padding: 0.85rem;
  }

  body.avatar-panel-open .release-card img {
    margin-bottom: 0.75rem;
  }

  body.avatar-panel-open .release-card h3 {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  body.avatar-panel-open .release-card p:not(.meta) {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

.intro-grid,
.split-feature,
.story-strip,
.account-teaser,
.ai-grid,
.shop-intro,
.join-intro,
.account-layout,
.contact-layout,
.epk-layout,
.podcast-feature,
.privacy-layout {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.content-band h2,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
}

.content-band h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin-bottom: 0.75rem;
}

@media (min-width: 900px) {
  #home-video-title {
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1.02;
    white-space: nowrap;
  }
}

.content-band p {
  color: var(--muted);
  line-height: 1.7;
}

.audio-card,
.secure-panel,
.list-section article,
.security-grid article,
.release-card,
.video-tile,
.shop-card,
.tier-card,
.contact-form,
.cookie-banner {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audio-card {
  display: grid;
  gap: 1.3rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.site-music-player {
  background: rgba(20, 19, 26, 0.92);
  border: 1px solid rgba(104, 212, 196, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: none;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 0 1.35rem;
  min-height: 164px;
  padding: 1rem 1.1rem;
}

.site-music-player.is-active {
  display: grid;
}

.site-music-player.has-video {
  align-items: start;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
}

.site-music-primary {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 132px minmax(0, 1fr);
  min-width: 0;
}

.site-music-player img {
  aspect-ratio: 1;
  border-radius: 8px;
  height: 132px;
  object-fit: cover;
  width: 132px;
}

.site-music-player.has-video .site-music-primary {
  gap: 0.75rem;
  grid-template-columns: 96px minmax(0, 1fr);
}

.site-music-player.has-video img {
  height: 96px;
  width: 96px;
}

.site-music-copy {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  justify-content: flex-start;
  min-width: 0;
}

.site-music-topline {
  display: block;
  width: 100%;
}

.site-music-console {
  align-items: start;
  background: rgba(104, 212, 196, 0.04);
  border: 1px solid rgba(104, 212, 196, 0.09);
  border-radius: 8px;
  display: grid;
  gap: 0.1rem;
  max-width: min(100%, 25rem);
  padding: 0.18rem 0.2rem;
}

.site-music-status-row,
.site-music-title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.14rem 0.28rem;
  justify-content: flex-start;
  width: 100%;
}

.site-music-title-row {
  gap: 0.12rem 0.3rem;
}

.site-music-seek {
  align-items: center;
  color: var(--muted);
  display: grid;
  font-size: 0.66rem;
  gap: 0.12rem 0.32rem;
  grid-template-columns: auto minmax(8rem, 1fr) auto;
  line-height: 1;
  width: 100%;
}

.site-music-seek input {
  accent-color: var(--teal);
  cursor: pointer;
  min-width: 0;
  width: 100%;
}

.site-music-seek input:disabled {
  cursor: default;
  opacity: 0.45;
}

.site-music-seek span:last-child {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  min-width: 4.6rem;
  text-align: right;
}

.site-music-details {
  display: contents;
}

.site-music-player h3 {
  color: var(--ink);
  flex: 0 1 auto;
  font-size: 1.08rem;
  line-height: 1;
  margin: 0.02rem 0 0;
  max-width: min(100%, 17rem);
  min-width: 0;
}

.site-music-player p {
  margin: 0;
}

.site-music-description {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
  max-width: min(100%, 640px);
}

.site-music-player audio[hidden] {
  display: none;
}

.site-music-player audio {
  grid-column: 1 / -1;
}

.site-music-video {
  align-self: stretch;
  display: grid;
  gap: 0.45rem;
  grid-column: 2;
  min-width: 0;
}

.site-music-video[hidden] {
  display: none;
}

.site-music-video-frame {
  aspect-ratio: 16 / 9;
  background: #05050a;
  border: 1px solid rgba(248, 243, 233, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.site-music-video-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.site-music-visualizer {
  align-items: end;
  aspect-ratio: 16 / 9;
  background-color: #05050a;
  background-position: center;
  background-size: cover;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.site-music-visualizer::before {
  background: repeating-linear-gradient(
    90deg,
    rgba(104, 212, 196, 0.08) 0,
    rgba(104, 212, 196, 0.08) 1px,
    transparent 1px,
    transparent 22px
  );
  content: "";
  inset: 0;
  position: absolute;
}

.site-music-visualizer-bars {
  align-items: end;
  bottom: 1rem;
  display: flex;
  gap: 0.32rem;
  height: 42%;
  position: absolute;
  right: 1rem;
  width: min(42%, 190px);
  z-index: 1;
}

.site-music-visualizer-bars span {
  animation: visualizerLift 1.25s ease-in-out infinite;
  animation-delay: calc(var(--bar-index) * -0.11s);
  background: linear-gradient(180deg, var(--gold), var(--teal));
  border-radius: 999px 999px 0 0;
  flex: 1;
  min-height: 22%;
  opacity: 0.78;
  transform-origin: bottom;
}

.site-music-visualizer-copy {
  display: grid;
  gap: 0.2rem;
  max-width: 58%;
  position: relative;
  z-index: 2;
}

.site-music-visualizer-copy span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-music-visualizer-copy strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 0.95;
}

.site-music-video-copy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-start;
}

.site-music-video-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.site-music-player a {
  color: var(--teal);
  font-weight: 800;
}

.site-music-menus {
  align-items: flex-start;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
  width: min(100%, 25rem);
  z-index: 2;
}

.site-music-menu {
  align-items: center;
  background: rgba(248, 243, 233, 0.06);
  border: 1px solid rgba(248, 243, 233, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: 7.25rem minmax(0, 1fr);
  padding: 0.18rem 0.25rem 0.18rem 0.45rem;
  width: 100%;
}

.site-music-menu span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
}

.site-music-menu select {
  background: #171d26;
  border: 1px solid rgba(104, 212, 196, 0.3);
  border-radius: 8px;
  color: var(--teal);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 900;
  min-height: 26px;
  padding: 0.12rem 1.65rem 0.12rem 0.42rem;
  width: 100%;
}

.site-music-info {
  align-self: flex-start;
  background: rgba(248, 243, 233, 0.06);
  border: 1px solid rgba(104, 212, 196, 0.18);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 0.65rem;
  max-width: min(100%, 640px);
  padding: 0.8rem;
  position: relative;
  width: 100%;
  z-index: 1;
}

.site-music-info[hidden] {
  display: none;
}

.site-music-info-head {
  align-items: start;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-bottom: -0.25rem;
}

.site-music-info h4 {
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  margin: 0.1rem 0 0;
}

.site-music-info-head button {
  background: rgba(248, 243, 233, 0.08);
  border: 1px solid rgba(248, 243, 233, 0.16);
  border-radius: 8px;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.32rem 0.56rem;
}

.site-music-info-body {
  color: var(--muted);
  line-height: 1.55;
  max-height: min(46vh, 430px);
  overflow: auto;
  padding-right: 0.2rem;
  scrollbar-gutter: stable;
}

.site-music-info-body p,
.site-music-info-body ul,
.site-music-info-body pre {
  margin: 0;
}

.site-music-info-body ul {
  display: grid;
  gap: 0.25rem;
  padding-left: 1.1rem;
}

.site-music-info-body pre {
  color: var(--paper);
  font: inherit;
  white-space: pre-wrap;
}

.site-music-download-card {
  align-items: center;
  background: rgba(104, 212, 196, 0.08);
  border: 1px solid rgba(104, 212, 196, 0.18);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 0.75rem;
}

.site-music-download-card > div:first-child {
  display: grid;
  gap: 0.2rem;
  min-width: min(100%, 210px);
}

.site-music-download-card strong {
  color: var(--paper);
}

.site-music-download-card span,
.site-music-download-note,
.site-music-download-output {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-music-download-action {
  align-items: center;
  display: flex;
  gap: 0.6rem;
}

.site-music-download-action .button {
  min-height: 34px;
  padding: 0.36rem 0.75rem;
}

.site-music-download-output {
  background: rgba(248, 243, 233, 0.06);
  border: 1px solid rgba(248, 243, 233, 0.12);
  border-radius: 8px;
  display: block;
  padding: 0.55rem 0.65rem;
}

.site-music-info-link {
  align-self: start;
  background: rgba(104, 212, 196, 0.1);
  border: 1px solid rgba(104, 212, 196, 0.22);
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 0.2rem;
  padding: 0.38rem 0.64rem;
  text-decoration: none;
}

.transport-kicker {
  color: var(--teal);
  display: block;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.fake-player,
.inline-player {
  align-items: center;
  display: flex;
  gap: 0.9rem;
}

.podcast-player-stage {
  background: #0a090d;
  border-radius: 8px;
  margin-top: 1rem;
  overflow: hidden;
  padding: 0.75rem;
}

.podcast-player-stage audio {
  display: block;
  width: 100%;
}

.podcast-player-status {
  color: #5b5348;
  font-weight: 800;
  margin-top: 0.65rem;
}

.fake-player button,
.inline-player button,
.chat-form button,
.prompt-chips button {
  background: var(--gold);
  border: 0;
  color: #17110a;
  font-weight: 900;
  padding: 0.65rem 0.8rem;
}

.player-line {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  flex: 1;
  height: 6px;
  overflow: hidden;
}

.player-line span {
  background: var(--teal);
  display: block;
  height: 100%;
  transition: width 160ms linear;
  width: 0%;
}

.release-card.is-selected {
  border-color: rgba(104, 212, 196, 0.7);
  box-shadow: 0 0 0 2px rgba(104, 212, 196, 0.18), var(--shadow);
}

.release-card.is-playing {
  border-color: rgba(238, 166, 63, 0.85);
}

.split-feature {
  background: var(--paper);
  color: var(--paper-ink);
}

.split-feature p {
  color: #5b5348;
}

.home-welcome-section {
  align-items: center;
  gap: clamp(1rem, 3vw, 1.7rem);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.home-welcome-copy h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

button.text-link {
  appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  padding: 0;
}

.video-tile {
  display: grid;
  gap: 0.9rem;
  overflow: hidden;
  position: relative;
}

.video-tile .video-embed-button,
.video-tile .video-embed-frame {
  aspect-ratio: 16 / 9;
  height: auto;
}

.video-tile-copy {
  display: grid;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}

.video-tile-copy h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin: 0;
}

.video-tile-copy p {
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
}

.video-tile-copy .video-label-inline {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.video-tile img,
.video-embed-button img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-label {
  background: rgba(16, 15, 20, 0.82);
  border-radius: 6px;
  bottom: 1rem;
  font-weight: 900;
  left: 1rem;
  padding: 0.5rem 0.65rem;
  position: absolute;
  z-index: 2;
}

.video-embed {
  aspect-ratio: 16 / 9;
  background: #05050a;
  border: 1px solid rgba(16, 15, 20, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}

.video-embed-button {
  background: #05050a;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: block;
  height: 100%;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.video-embed-button img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-embed-button::before {
  background: rgba(16, 15, 20, 0.28);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.video-play-icon {
  align-items: center;
  background: rgba(224, 31, 34, 0.92);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.18);
  display: flex;
  height: clamp(2.15rem, 3.7vw, 2.8rem);
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  width: clamp(3.15rem, 5vw, 4.1rem);
  z-index: 2;
}

.video-play-icon::after {
  border-bottom: 0.48rem solid transparent;
  border-left: 0.78rem solid #fff;
  border-top: 0.48rem solid transparent;
  content: "";
  margin-left: 0.16rem;
}

.video-embed-button:hover .video-play-icon,
.video-embed-button:focus-visible .video-play-icon {
  background: #ff1f1f;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.44), 0 0 0 2px rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-embed-frame {
  aspect-ratio: 16 / 9;
  background: #05050a;
  display: block;
  overflow: hidden;
  width: 100%;
}

.video-embed .video-embed-frame {
  height: 100%;
}

.video-embed iframe,
.video-embed-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.story-strip,
.category-band,
.account-teaser {
  background: var(--bg-soft);
}

.quick-actions {
  display: grid;
  gap: 0.7rem;
}

.quick-actions a,
.category-grid a,
.category-grid button,
.press-grid a {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  padding: 1rem;
  text-decoration: none;
}

.category-grid button.is-active {
  background: rgba(104, 212, 196, 0.12);
  border-color: rgba(104, 212, 196, 0.5);
  color: var(--teal);
}

.page-hero.compact {
  background: var(--paper);
  color: var(--paper-ink);
  padding: clamp(1.25rem, 3.5vw, 3rem) clamp(1rem, 7vw, 6rem) clamp(1rem, 3vw, 2rem);
}

.page-hero.compact h1 {
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  max-width: 900px;
}

.page-hero-copy {
  color: #5b5348;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  margin: 0.35rem 0 0;
  max-width: 720px;
}

.page-hero.video-hero {
  align-items: center;
  display: grid;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  grid-template-columns: max-content minmax(560px, 1fr);
  padding-bottom: clamp(0.35rem, 0.65vw, 0.6rem);
  padding-top: clamp(0.35rem, 0.65vw, 0.6rem);
}

.page-hero.video-hero h1 {
  font-size: clamp(0.98rem, 1.05vw, 1.18rem);
  line-height: 1.12;
  max-width: none;
  text-align: left;
  white-space: nowrap;
}

.page-hero.video-hero h1 span {
  display: block;
}

.video-category-panel {
  align-items: center;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(27, 25, 31, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: max-content minmax(0, 1fr);
  padding: 0.45rem;
}

.video-category-panel h2 {
  color: rgba(38, 34, 45, 0.74);
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  line-height: 1.1;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-category-grid {
  gap: 0.4rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.video-category-grid button:first-child {
  grid-column: auto;
}

.video-category-grid button {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(27, 25, 31, 0.12);
  color: rgba(38, 34, 45, 0.78);
  font-size: 0.7rem;
  line-height: 1.1;
  min-height: 2rem;
  padding: 0.38rem 0.45rem;
  text-align: center;
}

.video-category-grid button.is-active {
  background: rgba(97, 229, 212, 0.13);
  border-color: rgba(97, 229, 212, 0.55);
  color: var(--aqua);
  text-align: center;
}

#videos .content-band {
  padding-top: clamp(2.4rem, 4vw, 3.5rem);
}

#videos .section-heading {
  margin-bottom: 1rem;
}

#videos .content-band h2 {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
}

.video-heading-actions {
  align-items: end;
  display: grid;
  gap: 0.65rem;
  justify-items: end;
  max-width: min(100%, 520px);
}

.video-filter-control {
  color: var(--muted);
  display: grid;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 0.32rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: min(100%, 260px);
}

.video-filter-control select {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(248, 243, 233, 0.14);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  text-transform: none;
}

.video-filter-control option {
  background: var(--paper);
  color: var(--paper-ink);
}

#about .page-hero.compact {
  padding-bottom: clamp(0.75rem, 1.8vw, 1.25rem);
}

#about .page-hero.compact h1 {
  font-size: clamp(1.75rem, 2.25vw, 2.25rem);
  line-height: 1.05;
  max-width: 980px;
}

#about .epk-layout {
  align-items: start;
  padding-top: clamp(0.75rem, 2vw, 1.45rem);
}

#about .epk-layout > div {
  max-width: 760px;
  padding-right: clamp(0rem, 2.5vw, 2rem);
}

#about .epk-layout p {
  hyphens: auto;
  max-width: 72ch;
  text-align: justify;
  text-align-last: left;
  text-wrap: pretty;
}

#music .music-hero {
  padding-bottom: clamp(0.75rem, 1.4vw, 1.15rem);
  padding-top: clamp(0.85rem, 1.6vw, 1.35rem);
}

#music .music-hero h1 {
  line-height: 1.02;
}

#music.has-active-song .music-hero {
  padding-block: 0.7rem;
}

#music.has-active-song .music-hero .eyebrow {
  font-size: 0.66rem;
  margin-bottom: 0.12rem;
}

#music.has-active-song .music-hero h1 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 720px;
}

#music.has-active-song .music-hero .page-hero-copy {
  font-size: 0.86rem;
  line-height: 1.35;
  margin-top: 0.16rem;
}

#music .content-band {
  padding-top: clamp(1.15rem, 2.4vw, 2rem);
}

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

.section-heading p {
  max-width: 480px;
}

.release-grid,
.video-grid,
.shop-grid,
.tier-grid,
.security-grid,
.support-grid,
.category-grid,
.press-grid,
.avatar-embed-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.release-card,
.shop-card,
.tier-card,
.support-grid article,
.security-grid article {
  padding: 1.2rem;
}

.release-card {
  cursor: pointer;
}

.release-card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.85rem;
}

.release-card-purchase {
  align-items: center;
  background: rgba(104, 212, 196, 0.15);
  border: 1px solid rgba(104, 212, 196, 0.35);
  border-radius: 999px;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  text-decoration: none;
}

.release-card-purchase:hover,
.release-card-purchase:focus-visible {
  background: var(--teal);
  color: #10201d;
}

.release-card-artwork-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: inherit;
  width: 100%;
}

.release-card-artwork-button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.release-card-artwork-cue,
.release-card-artwork-tray {
  display: none;
}

.release-card-artwork-tray[hidden] {
  display: none !important;
}

.release-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.shop-intro {
  background: var(--bg-soft);
}

.support-intro {
  background: var(--bg-soft);
}

.support-grid article {
  background: rgba(20, 19, 26, 0.94);
  border: 1px solid rgba(104, 212, 196, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.support-grid .meta {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.support-choice-band {
  align-items: center;
  background: #14131a;
  color: var(--ink);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.shop-card {
  display: grid;
  gap: 0.9rem;
}

.music-store-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.music-store-card {
  align-items: center;
  background: rgba(20, 19, 26, 0.95);
  border: 1px solid rgba(104, 212, 196, 0.2);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 5.8rem minmax(0, 1fr) auto;
  padding: 0.85rem;
}

.music-store-card img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  display: block;
  height: 5.8rem;
  object-fit: cover;
  width: 5.8rem;
}

.music-store-card h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0 0 0.25rem;
}

.music-store-card p {
  color: #d4c8b7;
  margin: 0;
}

.music-store-card .meta {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.music-store-card-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 7.2rem;
}

.music-store-card-actions button {
  background: rgba(104, 212, 196, 0.14);
  border: 1px solid rgba(104, 212, 196, 0.3);
  color: var(--teal);
  cursor: pointer;
  font-weight: 900;
  min-height: 2.25rem;
}

.shop-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.shop-card .meta {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-card-action {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: auto;
}

.shop-card-action strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.release-card img {
  background: rgba(255, 255, 255, 0.035);
  border-radius: 6px;
  display: block;
  height: auto;
  margin-bottom: 1rem;
  width: 100%;
}

.release-card .meta,
.tier-card .meta {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.podcast-feature,
.epk-layout,
.live-avatar-room {
  background: var(--paper);
  color: var(--paper-ink);
}

#podcast .page-hero.compact {
  padding-bottom: clamp(0.35rem, 0.9vw, 0.8rem);
  padding-top: clamp(0.7rem, 1.4vw, 1.3rem);
}

#podcast .page-hero.compact h1 {
  font-size: clamp(1rem, 1.3vw, 1.34rem);
  line-height: 1.08;
  max-width: none;
  white-space: nowrap;
}

#ai .page-hero.compact {
  padding-bottom: clamp(0.4rem, 0.65vw, 0.6rem);
  padding-top: clamp(0.45rem, 0.8vw, 0.7rem);
}

#ai .page-hero.compact .eyebrow {
  font-size: 0.68rem;
  margin-bottom: 0.25rem;
}

#ai .page-hero.compact h1 {
  font-size: clamp(1.45rem, 2.15vw, 2.05rem);
  line-height: 1.02;
  margin-bottom: 0.35rem;
}

#ai .page-hero.compact p:not(.eyebrow) {
  color: #5b5348;
  font-size: 0.86rem;
  line-height: 1.3;
  margin-bottom: 0;
  max-width: none;
}

#podcast .podcast-feature {
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3.25rem);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.1fr);
  padding-bottom: clamp(1.6rem, 3vw, 3rem);
  padding-top: clamp(1rem, 2.2vw, 2rem);
}

#podcast .podcast-feature h1 {
  font-size: clamp(1.75rem, 3.3vw, 3.45rem);
  line-height: 1.03;
  margin: 0 0 clamp(1.2rem, 2vw, 1.75rem);
  max-width: 760px;
}

#podcast .podcast-feature h2 {
  font-size: clamp(1.35rem, 2.35vw, 2.25rem);
  line-height: 1.02;
  max-width: 680px;
}

#podcast .podcast-feature p {
  font-size: 0.96rem;
  line-height: 1.5;
}

#podcast .podcast-copy {
  max-width: 720px;
}

.podcast-mobile-art {
  display: none;
}

#podcast .podcast-feature img {
  aspect-ratio: 3 / 2;
  display: block;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.podcast-media-window {
  aspect-ratio: 1 / 1;
  background: #0e0d12;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  overflow: hidden;
  place-items: center;
  position: relative;
  width: 100%;
}

.podcast-media-window::before {
  background-image: var(--podcast-art);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(18px);
  inset: -10%;
  opacity: 0.48;
  position: absolute;
  transform: scale(1.06);
}

.podcast-media-window::after {
  background: rgba(8, 7, 12, 0.24);
  content: "";
  inset: 0;
  position: absolute;
}

#podcast .podcast-media-window img {
  aspect-ratio: auto;
  border-radius: 6px;
  box-shadow: none;
  display: block;
  height: auto;
  inset: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: absolute;
  width: auto;
  z-index: 1;
}

.podcast-mobile-window {
  display: none;
}

.podcast-feature p,
.epk-layout p,
.live-avatar-room p {
  color: #5b5348;
}

.podcast-feature img,
.epk-layout img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.artist-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.artist-links .eyebrow {
  flex: 1 0 100%;
  margin: 0 0 -0.15rem;
}

.artist-links a {
  border: 1px solid rgba(28, 25, 32, 0.16);
  border-radius: 999px;
  color: var(--paper-ink);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
}

.artist-links a:hover {
  border-color: rgba(28, 25, 32, 0.38);
}

.artist-links a.artist-contact-link {
  background: rgba(71, 107, 217, 0.08);
  border-color: rgba(71, 107, 217, 0.32);
  color: var(--blue);
  margin-left: auto;
}

.artist-links a.artist-contact-link:hover {
  background: rgba(71, 107, 217, 0.13);
  border-color: rgba(71, 107, 217, 0.55);
}

.list-section {
  display: grid;
  gap: 1rem;
}

.list-section article {
  padding: 1.2rem;
}

.secure-panel {
  padding: 1.2rem;
}

.avatar-embed-section {
  background: var(--bg-soft);
}

.avatar-preview-section {
  padding-top: clamp(1.25rem, 2.2vw, 2rem);
}

.avatar-demo-gate {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(26, 27, 35, 0.11);
  border-radius: 8px;
  display: grid;
  gap: 0.85rem;
  margin: 0 0 clamp(1rem, 2vw, 1.4rem);
  padding: clamp(0.85rem, 2vw, 1.2rem);
}

.avatar-demo-gate p {
  color: #514b43;
  font-size: 0.94rem;
  line-height: 1.42;
  margin: 0;
}

.avatar-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.avatar-demo-actions .button {
  align-items: center;
  background: rgba(36, 33, 42, 0.06);
  border-color: rgba(26, 27, 35, 0.16);
  color: var(--paper-ink);
  justify-content: center;
  min-height: 42px;
}

.avatar-demo-actions .button.primary {
  background: var(--paper-ink);
  border-color: var(--paper-ink);
  color: var(--paper);
}

.avatar-demo-actions .button:disabled {
  background: #d8d2c8;
  border-color: #aaa298;
  color: #3e3942;
  cursor: default;
  opacity: 1;
  transform: none;
}

#avatar-demo-gate-status:empty {
  display: none;
}

#avatar-demo-gate-status {
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.avatar-preview-grid {
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.avatar-preview-grid + .section-heading {
  margin-top: clamp(1rem, 1.8vw, 1.5rem);
}

.section-heading + .avatar-demo-gate {
  margin-top: 0;
}

.avatar-preview-card {
  gap: 0;
  padding: 0;
}

.avatar-preview-window {
  aspect-ratio: 16 / 8.8;
  background: #07070c;
  max-height: 340px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.avatar-preview-trigger {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  height: 100%;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.avatar-preview-trigger::after {
  background: linear-gradient(0deg, rgba(7, 7, 12, 0.78), rgba(7, 7, 12, 0));
  bottom: 0;
  content: "";
  height: 42%;
  left: 0;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: opacity 160ms ease;
}

.avatar-preview-trigger:hover::after,
.avatar-preview-trigger:focus-visible::after {
  opacity: 1;
}

.avatar-preview-trigger:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

.avatar-preview-trigger span {
  background: rgba(7, 7, 12, 0.82);
  border: 1px solid rgba(248, 243, 233, 0.18);
  border-radius: 999px;
  bottom: 1rem;
  color: var(--paper);
  font-weight: 900;
  left: 1rem;
  padding: 0.55rem 0.8rem;
  position: absolute;
  z-index: 1;
}

.avatar-preview-trigger.is-loading span {
  color: var(--teal);
}

.avatar-preview-card .avatar-preview-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.avatar-preview-card .mia-preview-image {
  object-position: center 20%;
}

.avatar-preview-copy {
  display: grid;
  gap: 0.42rem;
  padding: 0.75rem 0.85rem 0.55rem;
}

.avatar-preview-copy .eyebrow {
  margin-bottom: 0;
}

.avatar-preview-copy h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.05;
  margin: 0;
}

.avatar-preview-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.38;
  margin: 0;
}

@media (min-width: 641px) {
  #ai .avatar-preview-window {
    aspect-ratio: 16 / 6.5;
    max-height: 250px;
  }

  #ai .avatar-preview-copy {
    gap: 0.25rem;
    padding: 0.55rem 0.75rem 0.65rem;
  }

  #ai .avatar-preview-copy .eyebrow {
    font-size: 0.66rem;
  }

  #ai .avatar-preview-copy p:not(.eyebrow) {
    font-size: 0.82rem;
    line-height: 1.28;
  }
}

.avatar-preview-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0 0.85rem 0.85rem;
}

.avatar-preview-actions .button {
  margin: 0;
}

.avatar-preview-window .full-avatar-inline {
  inset: 0;
  position: absolute;
  z-index: 2;
}

.full-avatar-end {
  align-items: center;
  appearance: none;
  backdrop-filter: blur(8px) saturate(1.15);
  background: rgba(18, 18, 24, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  bottom: 0.65rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  justify-content: center;
  min-height: 38px;
  opacity: 0.88;
  padding: 0.46rem 0.68rem;
  position: absolute;
  right: 0.65rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  top: auto;
  z-index: 5;
}

.full-avatar-end:hover,
.full-avatar-end:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.52);
  color: rgba(255, 255, 255, 0.98);
  opacity: 1;
}

.full-avatar-inline[hidden] {
  display: none;
}

.full-avatar-inline-stage {
  align-items: center;
  background: #07070c;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  display: grid;
  height: 100%;
  justify-items: center;
  overflow: hidden;
  padding: 1rem;
  text-align: center;
  width: 100%;
}

.full-avatar-inline-stage p {
  margin: 0;
}

.full-avatar-inline-stage .avatar-live-placeholder {
  min-height: 100%;
  width: 100%;
}

.full-avatar-inline-stage .liveavatar-iframe {
  border: 0;
  display: block;
  height: calc(100% + 140px);
  margin-bottom: -140px;
  width: 100%;
}

.avatar-preview-card.is-live .avatar-preview-trigger {
  visibility: hidden;
}

.avatar-preview-card.is-live .avatar-preview-window {
  aspect-ratio: 16 / 9;
  max-height: none;
}

.avatar-preview-window .full-avatar-inline-stage {
  padding: 0;
}

.avatar-preview-window .full-avatar-inline-stage .avatar-live-placeholder {
  padding: 1rem;
}

.avatar-preview-window .full-avatar-inline-stage .liveavatar-iframe {
  height: 100%;
  margin-bottom: 0;
}

.live-avatar-hero p {
  color: #5b5348;
  line-height: 1.65;
  max-width: 760px;
}

.live-avatar-hero .button {
  background: var(--ember);
  border-color: var(--ember);
  color: #160d05;
  display: inline-flex;
  margin-top: 1rem;
}

.live-avatar-room {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
}

.live-avatar-card,
.usage-grid article {
  background: rgba(16, 15, 20, 0.065);
  border: 1px solid rgba(36, 33, 42, 0.16);
  border-radius: 8px;
  padding: 1.2rem;
}

.live-avatar-card ul {
  color: #5b5348;
  display: grid;
  gap: 0.65rem;
  line-height: 1.55;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.usage-grid {
  background: var(--bg-soft);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.usage-grid .section-heading {
  grid-column: 1 / -1;
}

.usage-grid article {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.avatar-usage-check {
  display: grid;
  gap: 0.75rem;
}

.avatar-usage-check .button {
  justify-self: start;
  margin: 0;
}

.avatar-usage-check output {
  color: var(--teal);
  font-size: 0.9rem;
  line-height: 1.45;
}

.avatar-embed-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.avatar-embed-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: 1.2rem;
}

.secure-panel output,
.contact-form output,
.avatar-live-shell output {
  color: var(--teal);
  display: block;
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

.avatar-live-shell output:empty {
  display: none;
}

.checkout-return-notice {
  align-items: flex-start;
  background: rgba(16, 26, 29, 0.96);
  border: 1px solid rgba(104, 212, 196, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  color: var(--ink);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 50%;
  max-width: min(660px, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  position: fixed;
  top: 5.25rem;
  transform: translateX(-50%);
  width: 100%;
  z-index: 50;
}

.checkout-return-notice[hidden] {
  display: none;
}

.checkout-return-notice.is-cancelled {
  border-color: rgba(240, 199, 102, 0.38);
}

.checkout-return-notice .eyebrow {
  color: var(--teal);
  font-size: 0.68rem;
  margin: 0 0 0.28rem;
}

.checkout-return-notice strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.checkout-return-notice p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0.35rem 0 0;
}

.checkout-return-notice button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: 900;
  height: 2rem;
  line-height: 1;
  width: 2rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.benefit-list {
  color: var(--muted);
  display: grid;
  gap: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.tier-card .price {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 0.7rem 0;
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.contact-form label,
.avatar-controls label {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.avatar-head select,
.avatar-controls select,
.chat-form input {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(248, 243, 233, 0.11);
  border-radius: 12px;
  color: var(--ink);
  min-width: 0;
  padding: 0.85rem;
}

.contact-form select {
  color-scheme: light;
}

.contact-form select option {
  background: var(--paper);
  color: var(--paper-ink);
}

.secure-account-layout {
  align-items: start;
}

.secure-auth-panel {
  align-content: start;
}

.auth-status {
  border: 1px solid rgba(104, 212, 196, 0.28);
  border-radius: 8px;
  color: var(--teal);
  margin: 0;
  min-height: 2.8rem;
  padding: 0.8rem;
}

.auth-form {
  display: grid;
  gap: 0.85rem;
}

.auth-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.auth-button-row .button,
.auth-signout {
  justify-content: center;
}

.auth-recovery-form {
  border-top: 1px solid rgba(248, 243, 233, 0.11);
  padding-top: 1rem;
}

.secure-auth-panel[data-auth-state="disabled"] {
  opacity: 0.78;
}

.preference-grid {
  border: 1px solid rgba(248, 243, 233, 0.11);
  border-radius: 12px;
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0.9rem;
}

.preference-grid legend {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0 0.3rem;
}

.preference-grid label,
.checkbox-line {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 0.65rem;
}

.preference-grid input,
.checkbox-line input {
  accent-color: var(--teal);
  min-width: 1rem;
}

.cookie-banner {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(16, 15, 20, 0.88);
  border: 1px solid rgba(248, 243, 233, 0.12);
  border-radius: 8px;
  bottom: 0.75rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  display: grid;
  gap: 0.55rem;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 0.75rem;
  max-width: min(540px, calc(100vw - 1.5rem));
  padding: 0.55rem 0.65rem;
  position: fixed;
  z-index: 60;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  margin: 0;
}

.cookie-banner strong {
  color: var(--ink);
  font-size: 0.78rem;
  margin-right: 0.4rem;
}

.cookie-banner a {
  color: var(--teal);
  font-weight: 900;
  margin-left: 0.25rem;
  white-space: nowrap;
}

.cookie-banner div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.cookie-banner .button {
  font-size: 0.72rem;
  min-height: 30px;
  padding: 0.32rem 0.55rem;
}

.liveavatar-iframe {
  border: none;
  display: block;
}

.liveavatar-video {
  background: #05050a;
  display: block;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 1;
}

.avatar-video-hold {
  background:
    radial-gradient(circle at 50% 24%, rgba(104, 212, 196, 0.12), transparent 38%),
    #05050a;
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 160ms ease;
  z-index: 2;
}

.avatar-live-stage.is-video-holding .avatar-video-hold {
  opacity: 1;
}

.avatar-resting-overlay {
  background: #05050a;
  border-radius: inherit;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.avatar-resting-overlay img {
  display: block;
  filter: saturate(0.96) brightness(0.92);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  width: 100%;
}

.avatar-resting-overlay::after {
  background:
    linear-gradient(180deg, transparent 56%, rgba(5, 5, 10, 0.78)),
    radial-gradient(circle at 50% 8%, rgba(104, 212, 196, 0.12), transparent 44%);
  content: "";
  inset: 0;
  position: absolute;
}

.avatar-resting-overlay strong {
  bottom: 0.82rem;
  color: rgba(104, 212, 196, 0.92);
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 800;
  left: 1rem;
  letter-spacing: 0;
  position: absolute;
  right: 1rem;
  text-align: left;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.68);
  text-transform: none;
  z-index: 2;
}

.avatar-resting-overlay span {
  align-items: center;
  background: rgba(8, 12, 18, 0.58);
  border: 1px solid rgba(104, 212, 196, 0.18);
  border-radius: 999px;
  bottom: 0.8rem;
  color: #fffaf0;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  left: 0.8rem;
  line-height: 1.2;
  min-height: 28px;
  padding: 0.38rem 0.7rem;
  position: absolute;
  text-align: left;
  z-index: 2;
}

.route-helper {
  color: var(--muted);
  font-weight: 700;
  margin-top: 1rem;
}

.avatar-panel {
  background:
    linear-gradient(180deg, rgba(24, 23, 32, 0.82), rgba(13, 12, 18, 0.9)),
    radial-gradient(circle at 20% 0%, rgba(104, 212, 196, 0.16), transparent 38%);
  backdrop-filter: blur(26px) saturate(1.18);
  border: 1px solid rgba(248, 243, 233, 0.1);
  border-right: 0;
  border-radius: 24px 0 0 24px;
  bottom: 0;
  box-shadow: -18px 0 70px rgba(0, 0, 0, 0.34), -4px 0 34px rgba(238, 166, 63, 0.08);
  display: grid;
  gap: 0.75rem;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-width: 420px;
  padding: 1rem;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(104%);
  transition: transform 180ms ease;
  width: min(100vw, 420px);
  z-index: 30;
}

.avatar-panel.minimized {
  pointer-events: none;
  transform: translateX(104%);
}

.avatar-live-shell {
  align-content: start;
  display: grid;
  gap: 0.5rem;
  min-height: 0;
  overflow: auto;
  padding-right: 0.2rem;
}

.avatar-live-stage {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at top, rgba(104, 212, 196, 0.18), transparent 45%),
    rgba(7, 6, 11, 0.66);
  border: 1px solid rgba(248, 243, 233, 0.11);
  border-radius: 16px;
  display: grid;
  min-height: 230px;
  overflow: hidden;
  place-items: center;
  position: sticky;
  top: 0;
  z-index: 3;
}

.avatar-live-stage iframe {
  border: 0;
  height: calc(100% + 140px);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.avatar-live-placeholder {
  background: rgba(5, 5, 10, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: grid;
  gap: 0.4rem;
  max-width: 280px;
  padding: 1rem;
  position: relative;
  text-align: center;
  z-index: 2;
}

.avatar-live-placeholder.is-warming-up {
  background:
    radial-gradient(circle at 50% 18%, rgba(104, 212, 196, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.94), rgba(5, 5, 10, 0.82));
  border-color: rgba(104, 212, 196, 0.22);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.32), inset 0 0 42px rgba(104, 212, 196, 0.06);
  gap: 0.5rem;
  max-width: 320px;
  overflow: hidden;
  padding: 1.2rem 1.1rem 1.05rem;
}

.avatar-live-placeholder.is-warming-up::after {
  animation: avatarWarmupScan 2.1s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(104, 212, 196, 0.2), transparent);
  content: "";
  height: 1px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 34%;
}

.avatar-live-placeholder.has-resting-avatar {
  background: #05050a;
  border: 0;
  border-radius: inherit;
  height: 100%;
  max-width: none;
  padding: 0;
  width: 100%;
}

.avatar-live-placeholder.has-resting-avatar::after {
  display: none;
}

.avatar-live-placeholder.has-resting-avatar .avatar-warmup-visual {
  display: block;
  height: 100%;
  inset: 0;
  margin: 0;
  position: absolute;
  width: 100%;
}

.avatar-live-placeholder.has-resting-avatar .avatar-warmup-visual img {
  display: block;
  filter: saturate(0.96) brightness(0.92);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: filter 180ms ease;
  width: 100%;
}

.avatar-live-placeholder.has-resting-avatar .avatar-warmup-visual::after {
  background:
    linear-gradient(180deg, transparent 58%, rgba(5, 5, 10, 0.74)),
    radial-gradient(circle at 50% 8%, rgba(104, 212, 196, 0.12), transparent 44%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.avatar-live-placeholder.has-resting-avatar.is-lite-listening .avatar-warmup-visual img {
  animation: avatarPortraitBreathe 6.5s ease-in-out infinite;
}

.avatar-live-placeholder.has-resting-avatar.is-lite-thinking .avatar-warmup-visual img {
  animation: avatarPortraitThink 2.2s ease-in-out infinite;
}

.avatar-live-placeholder.has-resting-avatar.is-lite-speaking .avatar-warmup-visual img {
  animation: avatarPortraitSpeak 1.15s ease-in-out infinite;
  filter: saturate(1.05) brightness(1);
}

.avatar-live-placeholder.has-resting-avatar.is-lite-thinking .avatar-warmup-visual::before,
.avatar-live-placeholder.has-resting-avatar.is-lite-speaking .avatar-warmup-visual::before {
  animation: avatarPortraitGlow 1.4s ease-in-out infinite;
  background: radial-gradient(circle at 50% 34%, rgba(104, 212, 196, 0.2), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.avatar-warmup-visual {
  display: grid;
  gap: 0.45rem;
  height: 112px;
  margin: 0 auto 0.1rem;
  place-items: center;
  position: relative;
  width: 140px;
}

.avatar-warmup-ring {
  align-items: center;
  animation: avatarCallPulse 1.8s ease-in-out infinite;
  background:
    linear-gradient(135deg, rgba(104, 212, 196, 0.24), rgba(240, 199, 102, 0.2)),
    rgba(248, 243, 233, 0.06);
  border: 1px solid rgba(104, 212, 196, 0.42);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  font-size: 1.8rem;
  font-weight: 900;
  justify-content: center;
  box-shadow:
    0 0 0 8px rgba(104, 212, 196, 0.07),
    0 0 46px rgba(104, 212, 196, 0.2),
    inset 0 0 26px rgba(248, 243, 233, 0.06);
  height: 68px;
  line-height: 1;
  width: 68px;
}

.avatar-warmup-dot {
  animation: avatarWarmupPulse 1.4s ease-in-out infinite;
  background: var(--teal);
  border: 2px solid #080b12;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(104, 212, 196, 0.48);
  height: 12px;
  position: absolute;
  right: 34px;
  top: 16px;
  width: 12px;
}

.avatar-warmup-bars {
  align-items: center;
  bottom: 19px;
  display: flex;
  gap: 0.35rem;
  height: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.avatar-warmup-bars i {
  animation: avatarCallDots 1.1s ease-in-out infinite;
  background: var(--teal);
  border-radius: 999px;
  display: block;
  height: 7px;
  opacity: 0.4;
  width: 7px;
}

.avatar-warmup-bars i:nth-child(2) {
  animation-delay: -0.14s;
}

.avatar-warmup-bars i:nth-child(3) {
  animation-delay: -0.28s;
}

.avatar-warmup-bars i:nth-child(4) {
  animation-delay: -0.42s;
}

.avatar-warmup-bars i:nth-child(5) {
  animation-delay: -0.56s;
}

.avatar-warmup-label {
  bottom: -2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  left: 50%;
  letter-spacing: 0;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.avatar-live-stage.is-streaming .avatar-live-placeholder,
.full-avatar-inline-stage.is-streaming .avatar-live-placeholder {
  display: none;
}

.avatar-live-placeholder strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.avatar-live-placeholder.has-resting-avatar .avatar-placeholder-title {
  bottom: 2.65rem;
  color: var(--teal);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 900;
  left: 1rem;
  letter-spacing: 0.08em;
  position: absolute;
  right: 1rem;
  text-align: left;
  text-transform: uppercase;
  z-index: 3;
}

.avatar-live-placeholder.has-resting-avatar .avatar-placeholder-status {
  align-items: center;
  background: rgba(8, 12, 18, 0.58);
  border: 1px solid rgba(104, 212, 196, 0.18);
  border-radius: 999px;
  bottom: 0.8rem;
  color: #fffaf0;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  left: 0.8rem;
  line-height: 1.2;
  min-height: 28px;
  padding: 0.38rem 0.7rem;
  position: absolute;
  right: auto;
  text-align: left;
  z-index: 3;
}

.avatar-live-placeholder.has-resting-avatar .avatar-placeholder-status:empty {
  display: none;
}

.avatar-live-placeholder span,
.privacy-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.avatar-controls {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

.avatar-start-actions {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.avatar-start-actions .button {
  min-height: 36px;
  padding: 0.55rem 0.65rem;
}

.avatar-start-actions .button:disabled {
  cursor: default;
  opacity: 0.62;
  transform: none;
}

.avatar-start-actions .button.is-session-active {
  background: rgba(104, 212, 196, 0.1);
  border-color: rgba(104, 212, 196, 0.4);
  color: var(--teal);
  opacity: 0.92;
}

#avatar-session-output:empty {
  display: none;
}

.avatar-controls select {
  color-scheme: dark;
}

.avatar-access {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(248, 243, 233, 0.1);
  border-radius: 14px;
  display: none;
  gap: 0.65rem;
  padding: 0.75rem;
}

.avatar-live-shell > .privacy-note {
  display: none;
}

.avatar-access span {
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.9rem;
  line-height: 1.4;
}

.avatar-access div {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.avatar-access button {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(248, 243, 233, 0.11);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
}

.avatar-panel.open {
  transform: translateX(0);
}

.avatar-head {
  align-items: start;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
}

.avatar-head-main {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.avatar-head h2 {
  align-items: center;
  color: var(--teal);
  display: flex;
  flex-wrap: wrap;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 0.4rem;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.avatar-head select {
  background: rgba(104, 212, 196, 0.1);
  border-color: rgba(104, 212, 196, 0.35);
  color: var(--teal);
  color-scheme: dark;
  font: inherit;
  min-height: 34px;
  padding: 0.42rem 0.55rem;
  text-transform: none;
  width: auto;
}

.avatar-head-actions {
  align-items: stretch;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
}

.avatar-head-actions:has(.avatar-end-session-button:not([hidden])) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.avatar-head-actions .button {
  border-radius: 10px;
  font-size: 0.76rem;
  line-height: 1.15;
  min-height: 32px;
  padding: 0.4rem 0.52rem;
}

.avatar-head-actions .button.is-session-active {
  background: rgba(104, 212, 196, 0.12);
}

.avatar-head-actions .avatar-end-session-button {
  background: rgba(235, 93, 73, 0.12);
  border-color: rgba(235, 93, 73, 0.4);
  color: #ffd8d2;
}

.avatar-head-actions .avatar-end-session-button:hover,
.avatar-head-actions .avatar-end-session-button:focus-visible {
  background: rgba(255, 216, 210, 0.92);
  border-color: rgba(255, 216, 210, 0.95);
  color: #24100d;
}

.icon-button {
  background: transparent;
  border: 1px solid rgba(248, 243, 233, 0.14);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  height: 36px;
  width: 36px;
}

.avatar-transcript {
  display: grid;
  gap: 0.3rem;
  margin-top: -0.08rem;
  min-height: 0;
}

.avatar-transcript summary {
  align-items: center;
  border: 1px solid rgba(104, 212, 196, 0.24);
  border-radius: 999px;
  color: rgba(104, 212, 196, 0.9);
  cursor: pointer;
  display: flex;
  font-size: 0.62rem;
  font-weight: 900;
  gap: 0.24rem;
  min-height: 1.48rem;
  justify-content: center;
  justify-self: start;
  letter-spacing: 0.04em;
  line-height: 1.2;
  list-style: none;
  padding: 0.22rem 0.52rem;
  text-transform: uppercase;
  user-select: none;
}

.avatar-transcript summary::-webkit-details-marker {
  display: none;
}

.avatar-transcript summary::before {
  content: "+";
  display: inline-block;
  font-size: 0.78rem;
  line-height: 1;
  transform: translateY(-0.04rem);
}

.avatar-transcript[open] summary::before {
  content: "-";
}

.avatar-transcript[open] .transcript-label-closed,
.avatar-transcript:not([open]) .transcript-label-open {
  display: none;
}

.chat-feed {
  align-content: start;
  background: rgba(5, 5, 10, 0.24);
  border: 1px solid rgba(248, 243, 233, 0.09);
  border-radius: 14px;
  display: grid;
  font-size: 0.82rem;
  gap: 0.5rem;
  line-height: 1.38;
  max-height: clamp(260px, 38vh, 520px);
  min-height: 180px;
  overflow: auto;
  padding: 0.52rem;
}

.chat-feed:empty {
  display: none;
}

.message {
  border-radius: 10px;
  display: grid;
  gap: 0.24rem;
  line-height: 1.38;
  padding: 0.48rem 0.54rem;
}

.message-speaker {
  color: var(--teal);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.message a,
.avatar-suggested-links a {
  color: var(--mint);
  font-weight: 700;
}

.message.mia,
.message.vincent {
  background: rgba(104, 212, 196, 0.085);
  border: 1px solid rgba(104, 212, 196, 0.18);
}

.message.user {
  background: rgba(255, 255, 255, 0.06);
  justify-self: end;
  max-width: 92%;
}

.avatar-suggested-links {
  display: none;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: -0.35rem;
  min-height: 1.8rem;
}

.avatar-suggested-links:not(:empty) {
  display: flex;
}

.avatar-suggested-links a,
.avatar-suggested-links button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--teal);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.avatar-suggested-links button.primary {
  color: var(--mint);
}

.avatar-suggested-links button.avatar-music-play-button {
  background: var(--gold);
  border: 1px solid rgba(247, 207, 102, 0.75);
  border-radius: 999px;
  color: #17151c;
  font-weight: 900;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  text-shadow: none;
}

.avatar-suggested-links button.avatar-music-play-button:hover,
.avatar-suggested-links button.avatar-music-play-button:focus-visible {
  background: #ffe083;
  color: #17151c;
}

.chat-form {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr auto;
}

.prompt-chips {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.prompt-chips button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
}

@media (min-width: 981px) {
  #home .hero-content {
    max-width: 680px;
    padding-left: clamp(3rem, 7vw, 6rem);
    padding-right: clamp(2rem, 4vw, 4rem);
    width: min(680px, 43vw);
  }

  #home .hero-content .eyebrow {
    max-width: 30rem;
  }

  #home .hero h1 {
    font-size: clamp(2.35rem, 3vw, 3.1rem);
    max-width: 100%;
    text-wrap: balance;
  }

  #home .hero-content > p:not(.eyebrow) {
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.55;
    max-width: 100%;
  }

  #home .hero .cta-row {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle,
  .brand,
  .nav-mia-toggle,
  .avatar-head select,
  .avatar-head-actions .button,
  .avatar-start-actions .button,
  .avatar-access button,
  .full-avatar-end,
  .avatar-suggested-links a,
  .avatar-suggested-links button,
  .chat-form button,
  .icon-button,
  .prompt-chips button,
  .fake-player button,
  .inline-player button,
  .release-card-purchase,
  .text-link,
  .video-category-grid button,
  .music-store-card-actions button,
  .site-music-download-action .button,
  .site-music-info-head button {
    min-height: 44px;
  }

  .icon-button {
    height: 44px;
    width: 44px;
  }

  .avatar-suggested-links a,
  .avatar-suggested-links button,
  .text-link {
    align-items: center;
    display: inline-flex;
  }

  .site-nav {
    background: rgba(16, 15, 20, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    left: 0;
    padding: 0.75rem 1rem 1rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .header-music-transport {
    flex: 1 1 auto;
    max-width: min(46vw, 360px);
  }

  .header-music-volume {
    display: none;
  }

  .site-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split-feature,
  .story-strip,
  .account-teaser,
  .ai-grid,
  .shop-intro,
  .join-intro,
  .support-intro,
  .support-choice-band,
  .account-layout,
  .contact-layout,
  .epk-layout,
  .podcast-feature,
  .privacy-layout,
  .live-avatar-room,
  .page-hero.video-hero,
  .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .video-heading-actions {
    justify-items: stretch;
    width: 100%;
  }

  .video-filter-control {
    width: 100%;
  }

  .page-hero.video-hero h1 {
    white-space: normal;
  }

  .video-category-panel {
    grid-template-columns: 1fr;
  }

  #podcast .page-hero.compact h1 {
    white-space: normal;
  }

  .artist-links a.artist-contact-link {
    margin-left: 0;
  }

  .release-grid,
  .video-grid,
  .music-store-grid,
  .shop-grid,
  .tier-grid,
  .security-grid,
  .support-grid,
  .category-grid,
  .press-grid,
  .avatar-embed-grid,
  .usage-grid {
    grid-template-columns: 1fr;
  }

  .video-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-category-grid button:first-child {
    grid-column: 1 / -1;
  }

  .music-store-card {
    grid-template-columns: 5.2rem minmax(0, 1fr);
  }

  .music-store-card img {
    height: 5.2rem;
    width: 5.2rem;
  }

  .music-store-card-actions {
    flex-direction: row;
    grid-column: 1 / -1;
    min-width: 0;
  }

  .usage-grid .section-heading {
    grid-column: auto;
  }

  .site-music-player.is-active {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-music-player.has-video {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-music-primary,
  .site-music-player.has-video .site-music-primary {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .site-music-player img,
  .site-music-player.has-video img {
    height: 84px;
    width: 84px;
  }

  .site-music-video {
    grid-column: 1;
  }

  .site-music-player.has-video .site-music-video {
    grid-row: 1;
  }

  .site-music-player.has-video .site-music-primary {
    grid-row: 2;
  }

}

@media (max-width: 950px) {
  .avatar-panel.open.has-full-avatar-session .avatar-head-actions:has(.avatar-end-session-button:not([hidden])) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head-actions .avatar-end-session-button {
    backdrop-filter: blur(8px) saturate(1.15);
    background: rgba(18, 18, 24, 0.42);
    border-color: rgba(255, 255, 255, 0.34);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.85rem);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.74rem;
    min-height: 36px;
    opacity: 0.88;
    padding: 0.38rem 0.64rem;
    position: fixed;
    right: calc(env(safe-area-inset-right, 0px) + 0.85rem);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    top: auto;
    z-index: 1002;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head-actions .avatar-end-session-button:hover,
  .avatar-panel.open.has-full-avatar-session .avatar-head-actions .avatar-end-session-button:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.52);
    color: rgba(255, 255, 255, 0.98);
    opacity: 1;
  }
}

@media (max-width: 950px) and (orientation: landscape) {
  body.avatar-landscape-scroll-assist {
    min-height: calc(100dvh + 160px);
  }

  body.avatar-landscape-scroll-assist::after {
    content: "";
    display: block;
    height: 160px;
  }

  .avatar-panel.open.has-full-avatar-session {
    border: 0;
    border-radius: 0;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100dvh;
    max-height: 100dvh;
    max-width: none;
    padding: calc(env(safe-area-inset-top, 0px) + 0.35rem) calc(env(safe-area-inset-right, 0px) + 0.55rem) calc(env(safe-area-inset-bottom, 0px) + 0.35rem) calc(env(safe-area-inset-left, 0px) + 0.55rem);
    transform: translateX(0);
    width: 100vw;
    z-index: 1000;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head {
    align-items: center;
    gap: 0.45rem;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head-main {
    align-items: center;
    display: flex;
    gap: 0.55rem;
    min-width: 0;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-host-title {
    flex: 1 1 auto;
    font-size: 0.72rem;
    min-width: 0;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head select {
    min-height: 32px;
    padding: 0.32rem 0.48rem;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head-actions {
    flex: 0 0 auto;
    gap: 0.32rem;
    grid-template-columns: auto;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head-actions .button:not(.avatar-end-session-button) {
    display: none;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head-actions .avatar-end-session-button {
    backdrop-filter: blur(8px) saturate(1.15);
    background: rgba(18, 18, 24, 0.42);
    border-color: rgba(255, 255, 255, 0.34);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.7rem);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    min-height: 34px;
    opacity: 0.88;
    padding: 0.36rem 0.58rem;
    position: fixed;
    right: calc(env(safe-area-inset-right, 0px) + 0.7rem);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    top: auto;
    z-index: 1002;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-head-actions .avatar-end-session-button:hover,
  .avatar-panel.open.has-full-avatar-session .avatar-head-actions .avatar-end-session-button:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.94);
    opacity: 1;
  }

  .avatar-panel.open.has-full-avatar-session .icon-button {
    border-radius: 999px;
    height: 36px;
    min-height: 36px;
    width: 36px;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-live-shell {
    gap: 0;
    min-height: 0;
    overflow: hidden;
    padding-right: 0;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-live-stage {
    aspect-ratio: auto;
    border-radius: 10px;
    height: 100%;
    min-height: 0;
    position: relative;
    top: auto;
    width: 100%;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-live-stage iframe,
  .avatar-panel.open.has-full-avatar-session .avatar-live-stage .liveavatar-video {
    height: 100%;
    width: 100%;
  }

  .avatar-panel.open.has-full-avatar-session .avatar-transcript,
  .avatar-panel.open.has-full-avatar-session #avatar-session-output,
  .avatar-panel.open.has-full-avatar-session .avatar-suggested-links,
  .avatar-panel.open.has-full-avatar-session .avatar-access,
  .avatar-panel.open.has-full-avatar-session .privacy-note,
  .avatar-panel.open.has-full-avatar-session .chat-form,
  .avatar-panel.open.has-full-avatar-session .prompt-chips {
    display: none;
  }

  #ai .avatar-preview-card.is-live {
    background: #101014;
    border: 0;
    border-radius: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    left: 0;
    overflow: hidden;
    padding: calc(env(safe-area-inset-top, 0px) + 0.45rem) calc(env(safe-area-inset-right, 0px) + 0.7rem) calc(env(safe-area-inset-bottom, 0px) + 0.45rem) calc(env(safe-area-inset-left, 0px) + 0.7rem);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
  }

  #ai .avatar-preview-card.is-live .avatar-preview-window {
    aspect-ratio: auto;
    border-radius: 8px;
    height: 100%;
    max-height: none;
    min-height: 0;
  }

  #ai .avatar-preview-card.is-live .avatar-preview-copy {
    display: none;
  }

  #ai .avatar-preview-card.is-live .full-avatar-inline-stage,
  #ai .avatar-preview-card.is-live .avatar-live-placeholder {
    height: 100%;
    min-height: 0;
  }

  #ai .avatar-preview-card.is-live .liveavatar-video,
  #ai .avatar-preview-card.is-live .liveavatar-iframe {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  #ai .avatar-preview-card.is-live .full-avatar-end {
    backdrop-filter: blur(8px) saturate(1.15);
    background: rgba(18, 18, 24, 0.42);
    border-color: rgba(255, 255, 255, 0.34);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.7rem);
    color: rgba(255, 255, 255, 0.92);
    opacity: 0.88;
    right: calc(env(safe-area-inset-right, 0px) + 0.7rem);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    top: auto;
  }
}

@media (max-width: 900px) {
  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 18.5rem;
    padding-top: 6rem;
  }

  .home-spotlight {
    bottom: 6.15rem;
    left: clamp(1rem, 7vw, 3rem);
    padding: 0.75rem;
    right: clamp(1rem, 7vw, 3rem);
    width: auto;
  }

  .home-tour-card {
    bottom: calc(9rem + env(safe-area-inset-bottom, 0px));
    gap: 0.6rem;
    min-width: min(80vw, 245px);
    padding: 0.45rem 0.78rem 0.45rem 0.45rem;
    right: clamp(1rem, 7vw, 3rem);
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-wrap: wrap;
  }

  .mobile-brand-tour-toggle {
    display: inline-flex;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-mark {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .brand-copy {
    left: 50%;
    max-width: min(58vw, calc(100vw - 11.75rem), 17rem);
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
  }

  .brand strong {
    font-size: clamp(1.08rem, 5.05vw, 1.38rem);
    font-weight: 950;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .header-music-transport {
    flex: 1 1 100%;
    gap: 0.48rem;
    justify-content: flex-start;
    margin-left: 0;
    max-width: none;
    order: 3;
    padding: 0.34rem 0.5rem 0.34rem 0.54rem;
  }

  .header-music-kicker {
    flex: 0 0 2.95rem;
    font-size: 0.58rem;
    letter-spacing: 0.07em;
    line-height: 0.95;
    text-align: center;
    white-space: normal;
  }

  .header-music-title-button {
    flex: 1 1 auto;
    max-width: none;
    padding-inline: 0.2rem;
  }

  #header-music-title {
    font-size: 0.8rem;
  }

  .header-music-buttons {
    gap: 0.78rem;
  }

  .header-music-buttons button {
    font-size: 0.66rem;
    height: 2.5rem;
    min-height: 2.5rem;
    min-width: 2.5rem;
    width: 2.5rem;
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - 112px + 6rem);
  }

  .hero-content {
    justify-content: flex-start;
    padding: 0.95rem 1rem calc(13.5rem + env(safe-area-inset-bottom, 0px));
  }

  .hero-content .desktop-copy,
  .hero-content > p,
  .hero-content > .eyebrow {
    display: none;
  }

  .hero-content .mobile-copy {
    display: block;
  }

  .hero h1 {
    bottom: calc(12.35rem + env(safe-area-inset-bottom, 0px));
    left: 1rem;
    line-height: 1;
    max-width: calc(100vw - 2rem);
    position: absolute;
    right: 1rem;
    text-align: center;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
    width: 100%;
  }

  .mobile-title-line {
    display: block;
    white-space: nowrap;
  }

  .mobile-title-line {
    font-size: clamp(1.02rem, 4.85vw, 1.26rem);
  }

  .hero .cta-row {
    bottom: calc(5.35rem + env(safe-area-inset-bottom, 0px));
    left: 1rem;
    margin: 0;
    position: absolute;
    right: 1rem;
  }

  .hero .cta-row {
    display: grid;
    gap: 0.45rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero .cta-row .button {
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.62rem 0.35rem;
    text-align: center;
    width: 100%;
  }

  .hero .cta-row .button:nth-child(4) {
    grid-column: 1;
  }

  .home-tour-card {
    display: none;
  }

  .mobile-tour-button,
  .mobile-story-button {
    display: inline-flex;
  }

  .home-welcome-section {
    gap: 1rem;
    padding: 2.25rem 1rem;
  }

  #home-video-title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    line-height: 1.02;
  }

  .home-song-ribbon {
    width: min(100%, 380px);
  }

  .home-song-feature {
    gap: 0.75rem;
    padding: 0.68rem;
  }

  .home-song-cover img {
    width: clamp(9rem, 42vw, 11.4rem);
  }

  .hero-album-ribbon {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
  }

  .hero-album-covers {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2.35rem;
  }

  .site-nav.open {
    grid-template-columns: 1fr;
  }

  .home-spotlight {
    bottom: 6.15rem;
    left: 1rem;
    padding: 0.75rem;
    right: 1rem;
    width: auto;
  }

  .home-spotlight h2 {
    font-size: 1.05rem;
  }

  .tour-host-picker {
    left: 1rem;
    max-width: none;
    right: 1rem;
    top: 74px;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .site-music-player.is-active {
    grid-template-columns: 1fr;
  }

  .site-music-player.has-video {
    grid-template-columns: 1fr;
  }

  .site-music-primary,
  .site-music-player.has-video .site-music-primary {
    grid-template-columns: 1fr;
  }

  .site-music-player img,
  .site-music-player.has-video img {
    height: auto;
    width: min(100%, 190px);
  }

  #music .music-hero {
    display: none;
  }

  #music .content-band {
    padding: 0.85rem 0.75rem 2.25rem;
  }

  #music .site-music-player.is-active {
    background: rgba(20, 19, 26, 0.96);
    border-color: rgba(104, 212, 196, 0.22);
    box-shadow: none;
    display: none;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
    min-height: 0;
    padding: 0.65rem;
  }

  #music .site-music-primary > img,
  #music .site-music-menus,
  #music .site-music-description {
    display: none;
  }

  #music .site-music-console {
    max-width: none;
  }

  #music .site-music-player h3 {
    font-size: 1rem;
    max-width: 100%;
  }

  #music .release-grid {
    background: rgba(20, 19, 26, 0.9);
    border: 1px solid rgba(248, 243, 233, 0.12);
    border-radius: 8px;
    counter-reset: mobile-song-list;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  #music .release-card {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(248, 243, 233, 0.12);
    border-radius: 0;
    box-shadow: none;
    counter-increment: mobile-song-list;
    cursor: pointer;
    display: grid;
    gap: 0.55rem;
    grid-template-columns: 1.55rem 3.15rem minmax(0, 1fr) auto;
    min-height: 4.35rem;
    padding: 0.58rem 0.65rem;
  }

  #music .release-card:last-child {
    border-bottom: 0;
  }

  #music .release-card::before {
    color: rgba(248, 243, 233, 0.48);
    content: counter(mobile-song-list);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.95rem;
    text-align: center;
  }

  #music .release-card img {
    align-self: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    height: 3.15rem;
    margin: 0;
    object-fit: contain;
    width: 3.15rem;
  }

  #music .release-card .meta,
  #music .release-card > p:not(.meta),
  #music .release-card-actions,
  #music .player-line,
  #music [data-song-time] {
    display: none;
  }

  #music .release-card h3 {
    color: var(--ink);
    font-family: var(--body);
    font-size: 0.96rem;
    line-height: 1.15;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #music .fake-player {
    justify-content: flex-end;
  }

  #music .fake-player button {
    background: rgba(104, 212, 196, 0.13);
    border: 1px solid rgba(104, 212, 196, 0.34);
    border-radius: 999px;
    color: var(--teal);
    min-height: 38px;
    min-width: 4.1rem;
    padding: 0.45rem 0.72rem;
  }

  #music .release-card-artwork-button {
    align-self: center;
    border-radius: 6px;
    height: 3.15rem;
    width: 3.15rem;
  }

  #music .release-card-artwork-button:focus-visible {
    outline-offset: 2px;
  }

  #music .release-card.is-selected .release-card-artwork-cue {
    align-items: center;
    background: rgba(20, 19, 26, 0.92);
    border: 1px solid rgba(104, 212, 196, 0.54);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.34);
    color: var(--teal);
    display: grid;
    font-size: 0.82rem;
    font-weight: 900;
    height: 1.15rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: -0.28rem;
    top: -0.28rem;
    width: 1.15rem;
  }

  #music .release-card.is-selected .release-card-artwork-cue::before {
    content: "+";
  }

  #music .release-card.is-selected.has-artwork-tray-open .release-card-artwork-cue::before {
    content: "-";
  }

  #music .release-card-artwork-tray:not([hidden]) {
    align-items: end;
    background: rgba(5, 5, 10, 0.34);
    border: 1px solid rgba(104, 212, 196, 0.18);
    border-radius: 8px;
    display: grid;
    gap: 0.65rem;
    grid-column: 2 / 5;
    grid-template-columns: minmax(0, min(46vw, 12rem)) minmax(0, 1fr);
    margin: 0.1rem 0 0.15rem;
    padding: 0.55rem;
  }

  #music .release-card-artwork-tray img {
    aspect-ratio: 1;
    border-radius: 7px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    height: auto;
    object-fit: cover;
    width: min(46vw, 12rem);
  }

  #music .release-card-artwork-tray div {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
  }

  #music .release-card-artwork-tray span {
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #music .release-card-artwork-tray strong {
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.1;
  }

  #music .release-card.is-selected {
    background: rgba(104, 212, 196, 0.08);
  }

  #music .release-card.is-selected h3,
  #music .release-card.is-selected::before,
  #music .release-card.is-playing h3,
  #music .release-card.is-playing::before {
    color: var(--teal);
  }

  #videos .content-band {
    padding: 0.85rem 0.75rem 2.25rem;
  }

  #videos .section-heading {
    align-items: stretch;
    display: grid;
    gap: 0;
    margin-bottom: 0.85rem;
  }

  #videos .section-heading .eyebrow {
    display: none;
  }

  #videos .content-band h2 {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  #video-section-note {
    display: none;
  }

  #videos .video-heading-actions {
    align-items: stretch;
    display: grid;
    gap: 0;
    justify-items: stretch;
    max-width: none;
    text-align: left;
  }

  #videos .video-filter-control {
    align-items: center;
    color: var(--ink);
    display: grid;
    font-size: 0.84rem;
    gap: 0.5rem;
    grid-template-columns: auto minmax(0, 1fr);
    letter-spacing: 0;
    min-width: 0;
    text-transform: none;
    width: 100%;
  }

  #videos .video-filter-control span {
    white-space: nowrap;
  }

  #videos .video-filter-control select {
    min-height: 38px;
    padding: 0.48rem 0.6rem;
    width: 100%;
  }

  #videos .video-grid {
    gap: 0.85rem;
  }

  #podcast > .page-hero.compact {
    display: none;
  }

  #podcast .podcast-feature {
    align-items: start;
    gap: 0.62rem;
    grid-template-columns: 1fr;
    padding: 0.85rem 0.75rem 1rem;
  }

  #podcast .podcast-copy {
    display: grid;
    gap: 0.48rem;
    max-width: none;
  }

  #podcast .podcast-feature h1 {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: 0;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  #podcast .podcast-copy > .eyebrow {
    font-size: 0.66rem;
    line-height: 1;
    margin: 0.08rem 0 0;
  }

  #podcast .podcast-feature h2 {
    font-size: clamp(1.02rem, 4.2vw, 1.18rem);
    line-height: 1.05;
    margin: 0;
    max-width: none;
  }

  #podcast .podcast-feature p {
    font-size: 0.86rem;
    line-height: 1.35;
    margin: 0;
  }

  #podcast .podcast-feature .podcast-feature-window {
    display: none;
  }

  #podcast .podcast-feature .podcast-mobile-window {
    display: grid;
    margin: 0.08rem 0 0.2rem;
  }

  #podcast .inline-player {
    gap: 0.7rem;
    margin-top: 0.16rem;
  }

  #podcast .inline-player button {
    min-height: 40px;
    padding: 0.55rem 0.72rem;
  }

  #podcast .podcast-player-stage {
    margin-top: 0.2rem;
    padding: 0.55rem;
  }

  #podcast .podcast-player-status {
    font-size: 0.82rem;
    margin: 0;
  }

  #podcast .list-section {
    gap: 0.65rem;
    padding: 1.05rem 0.75rem 2.25rem;
  }

  #podcast .list-section h2 {
    font-size: 1.25rem;
    margin: 0;
  }

  #podcast .list-section article {
    padding: 0.85rem;
  }

  #podcast .list-section article h3 {
    font-size: 1rem;
    line-height: 1.15;
    margin: 0 0 0.35rem;
  }

  #podcast .list-section article p {
    font-size: 0.86rem;
    line-height: 1.35;
    margin: 0 0 0.55rem;
  }

  #ai > .page-hero.compact {
    display: none;
  }

  #ai .avatar-preview-section {
    padding: 0.85rem 0.75rem 2.25rem;
  }

  #ai .section-heading {
    gap: 0;
    margin-bottom: 0.72rem;
    text-align: center;
  }

  #ai .section-heading .eyebrow,
  #ai .section-heading > p {
    display: none;
  }

  #ai #live-avatar-title {
    font-size: clamp(1.1rem, 4.6vw, 1.35rem);
    line-height: 1.05;
    margin: 0;
  }

  #ai .avatar-demo-gate {
    background: rgba(20, 19, 26, 0.86);
    border-color: rgba(104, 212, 196, 0.22);
    gap: 0.58rem;
    margin-bottom: 0.72rem;
    padding: 0.68rem 0.72rem;
  }

  #ai .avatar-demo-gate p {
    color: rgba(247, 241, 232, 0.74);
    font-size: 0.78rem;
    line-height: 1.32;
  }

  #ai .avatar-demo-actions {
    display: grid;
    gap: 0.48rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #ai .avatar-demo-actions .button {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(247, 241, 232, 0.92);
    font-size: 0.72rem;
    min-height: 36px;
    padding: 0.46rem 0.42rem;
    text-align: center;
  }

  #ai .avatar-demo-actions .button.primary {
    background: rgba(104, 212, 196, 0.18);
    border-color: rgba(104, 212, 196, 0.58);
    color: var(--teal);
  }

  #ai .avatar-demo-actions .button:disabled {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(247, 241, 232, 0.72);
  }

  #ai #avatar-demo-gate-status {
    color: var(--teal);
    font-size: 0.78rem;
  }

  #ai .avatar-preview-grid {
    gap: 0.72rem;
  }

  #ai .avatar-preview-window {
    aspect-ratio: 16 / 7.6;
    max-height: none;
  }

  #ai .avatar-preview-trigger span {
    bottom: 0.62rem;
    font-size: 0.86rem;
    left: 0.62rem;
    padding: 0.38rem 0.58rem;
  }

  #ai .avatar-preview-copy {
    gap: 0.26rem;
    padding: 0.58rem 0.72rem 0.68rem;
  }

  #ai .avatar-preview-copy .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  #ai .avatar-preview-copy h3 {
    font-size: 1rem;
    line-height: 1.08;
  }

  #ai .avatar-preview-copy p:not(.eyebrow) {
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .site-music-menus {
    width: 100%;
  }

  .site-music-menu {
    flex: 1 1 150px;
  }

  .site-music-menu select {
    flex: 1;
    min-width: 0;
  }

  .cookie-banner {
    bottom: 0.5rem;
    grid-template-columns: 1fr;
    left: 0.5rem;
    max-width: none;
    right: 0.5rem;
  }

  .cookie-banner div {
    justify-content: flex-start;
  }

}

@media (max-width: 380px) {
  .mobile-brand-line,
  .mobile-title-line {
    margin-inline: auto;
    white-space: normal;
  }

  .mobile-brand-line {
    max-width: 17ch;
  }

  .mobile-title-line {
    max-width: 18ch;
  }
}

@keyframes visualizerLift {
  0%,
  100% {
    transform: scaleY(0.35);
  }

  50% {
    transform: scaleY(1);
  }
}

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

@keyframes avatarWarmupPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes avatarCallPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(104, 212, 196, 0.07),
      0 0 46px rgba(104, 212, 196, 0.18),
      inset 0 0 26px rgba(248, 243, 233, 0.06);
    transform: scale(0.98);
  }

  50% {
    box-shadow:
      0 0 0 13px rgba(104, 212, 196, 0.03),
      0 0 58px rgba(104, 212, 196, 0.28),
      inset 0 0 30px rgba(248, 243, 233, 0.08);
    transform: scale(1.02);
  }
}

@keyframes avatarCallDots {
  0%,
  100% {
    opacity: 0.32;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes avatarWarmupBars {
  0%,
  100% {
    height: 34%;
  }

  50% {
    height: 92%;
  }
}

@keyframes avatarWarmupScan {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }

  45%,
  55% {
    opacity: 1;
  }

  50% {
    transform: translateY(46px);
  }
}

@keyframes avatarPortraitBreathe {
  0%,
  100% {
    filter: saturate(0.96) brightness(0.92);
    transform: scale(1.01);
  }

  50% {
    filter: saturate(1.01) brightness(0.97);
    transform: scale(1.025);
  }
}

@keyframes avatarPortraitThink {
  0%,
  100% {
    filter: saturate(0.98) brightness(0.94);
    transform: scale(1.018);
  }

  50% {
    filter: saturate(1.04) brightness(0.99);
    transform: scale(1.035);
  }
}

@keyframes avatarPortraitSpeak {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }

  50% {
    transform: scale(1.038) translateY(-0.35%);
  }
}

@keyframes avatarPortraitGlow {
  0%,
  100% {
    opacity: 0.22;
  }

  50% {
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-music-visualizer-bars span,
  .avatar-warmup-ring,
  .avatar-warmup-dot,
  .avatar-warmup-bars i,
  .avatar-live-placeholder.is-warming-up::after {
    animation: none;
  }
}
