:root {
    --artist-bg: #000;
    --artist-bg-soft: #05070d;
    --artist-panel: rgba(0, 255, 255, 0.1);
    --artist-panel-strong: rgba(0, 255, 255, 0.08);
    --artist-panel-border: rgba(0, 255, 255, 0.16);
    --artist-text: #fff;
    --artist-muted: #cde8f6;
    --artist-neon: #0ff;
    --artist-neon-dark: #00f;
}

body.artist-page {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--artist-bg);
    color: var(--artist-text);
}

body.contact-page {
    background: radial-gradient(circle at top, #102033 0%, #05070d 40%, #000 100%);
}

.text-neon {
    color: var(--artist-neon);
    text-shadow: 0 0 6px var(--artist-neon), 0 0 12px var(--artist-neon-dark);
}

.text-neon-glow {
    color: var(--artist-neon);
    text-shadow: 0 0 8px var(--artist-neon), 0 0 20px var(--artist-neon-dark), 0 0 30px var(--artist-neon);
}

.glow-text {
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.35);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--artist-neon) !important;
}

.carousel-img {
    height: 80vh;
    object-fit: cover;
}

.home-page .carousel-video {
    height: 80vh;
    object-fit: cover;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.24), rgba(2, 0, 36, 0.96));
}

.home-page .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
    pointer-events: none;
}

.home-page .carousel-caption {
    z-index: 2;
}

.video-unavailable {
    background-color: #030310;
}

.btn-primary {
    background-color: var(--artist-neon);
    border-color: var(--artist-neon);
    color: #000;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--artist-neon-dark);
    border-color: var(--artist-neon-dark);
    color: #fff;
}

.btn-light {
    color: #000;
}

.btn-glow {
    background: var(--artist-neon);
    color: #000;
    border-radius: 5px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--artist-neon);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-glow:hover,
.btn-glow:focus-visible {
    background: #ff0;
    color: #000;
    box-shadow: 0 0 15px #ff0;
    transform: translateY(-1px);
}

.contact-page .btn-glow {
    background: linear-gradient(135deg, #00f6ff, #87fff6);
    color: #04111a;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    letter-spacing: 0.08em;
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.35);
}

.contact-page .btn-glow:hover,
.contact-page .btn-glow:focus-visible {
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.55);
    color: #04111a;
}

.about-section h6 {
    letter-spacing: 2px;
}

.contact-page .about-section h6 {
    letter-spacing: 0.18em;
}

.info-card {
    padding: 20px;
    background: var(--artist-panel);
    border-radius: 10px;
}

.info-card h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.contact-page .info-card {
    padding: 28px;
    background: var(--artist-panel-strong);
    border: 1px solid var(--artist-panel-border);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.contact-page .info-card h2 {
    margin-bottom: 10px;
}

.form-label,
.form-text {
    color: #e7f6ff;
}

.form-control {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 14px 16px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(0, 255, 255, 0.55);
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.12);
}

.status-box {
    display: none;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.96rem;
    line-height: 1.5;
}

.status-box.is-visible {
    display: block;
}

.status-box.success {
    background: rgba(20, 103, 67, 0.28);
    border: 1px solid rgba(125, 255, 207, 0.4);
    color: #c8ffe6;
}

.status-box.error {
    background: rgba(131, 35, 58, 0.22);
    border: 1px solid rgba(255, 155, 178, 0.35);
    color: #ffd5df;
}

.platform-logo {
    max-height: 56px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.platform-logo:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.album-cover {
    max-width: min(100%, 320px);
    height: auto;
}

.footer-bg {
    background: #05070d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-page .footer-bg {
    background: #050505;
    border-top-color: rgba(0, 255, 255, 0.16);
}

.footer-menu a,
.small-text a {
    color: var(--artist-muted);
    text-decoration: none;
    margin: 0 10px;
}

.footer-menu a:hover,
.small-text a:hover {
    color: var(--artist-neon);
}

.faq-page .footer-menu a,
.faq-page .small-text a {
    color: var(--artist-neon);
}

.faq-page .footer-menu a:hover,
.faq-page .small-text a:hover {
    color: #fff;
}

.visually-hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.faq-hero {
    background: linear-gradient(135deg, #020024 0%, #090979 50%, #00d4ff 100%);
}

.faq-card {
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.16);
    border-radius: 14px;
}

.accordion-button {
    background: #091029;
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background: #0e1938;
    color: var(--artist-neon);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.2);
}

.accordion-item {
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.12);
    color: #fff;
}

.accordion-body {
    background: #050914;
}

.custom-btn {
    min-width: 180px;
    text-align: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
}

.custom-btn:hover,
.custom-btn:focus-visible {
    background: rgba(255, 255, 255, 0.4);
    color: #000;
}

@media (max-width: 576px) {
    .custom-btn {
        min-width: 140px;
        padding: 10px 15px;
    }
}


.page-hero {
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.18), rgba(2, 0, 36, 0.92) 50%, #000 100%);
}

.page-band {
    background: linear-gradient(135deg, rgba(2, 0, 36, 0.96), rgba(9, 9, 121, 0.82), rgba(0, 212, 255, 0.18));
}

.section-shell {
    background: linear-gradient(135deg, rgba(2, 0, 36, 0.95), rgba(7, 18, 42, 0.95));
}

.release-showcase {
    background: #04060b;
}

.cta-section {
    background: #02040a;
}

.hero-copy-panel {
    max-width: 760px;
    padding: 1.75rem;
    border-radius: 1.25rem;
    background: rgba(4, 8, 18, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--artist-neon);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

.section-heading {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.section-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.8;
}

.artist-card,
.release-card,
.cta-panel,
.video-feature-card,
.product-card,
.merch-hero-panel,
.embed-shell {
    background: rgba(7, 14, 24, 0.85);
    border: 1px solid rgba(80, 215, 255, 0.18);
    border-radius: 1.2rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.artist-card {
    padding: 1.5rem;
}

.artist-card-wide {
    min-height: 100%;
}

.artist-card-kicker {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--artist-neon);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
}

.artist-card h3,
.release-card h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.artist-card p,
.release-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 0;
}

.release-card {
    overflow: hidden;
}

.release-cover {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.meta-list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.artist-image-large {
    width: min(100%, 520px);
    border-radius: 1.5rem;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.footer-bg {
    background: #04070f;
    border-top: 1px solid rgba(0, 255, 255, 0.12);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
    color: var(--artist-neon);
}

.visually-hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .hero-copy-panel {
        padding: 1.25rem;
        max-width: 92%;
    }

    .section-heading {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }
}


.videos-hero,
.merch-hero {
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.2), rgba(2, 0, 36, 0.92) 46%, #000 100%);
}

.hero-stat-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-stat-item + .hero-stat-item {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
}

.hero-stat-item p,
.videos-intro-copy,
.merch-intro-copy {
    color: rgba(255, 255, 255, 0.78);
}

.videos-intro-copy,
.merch-intro-copy {
    max-width: 760px;
}

.video-feature-card,
.product-card,
.merch-hero-panel {
    background: rgba(7, 14, 24, 0.85);
    border: 1px solid rgba(80, 215, 255, 0.18);
    border-radius: 1.2rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.video-thumb-link,
.video-thumb-link:hover,
.video-thumb-link:focus-visible {
    text-decoration: none;
}

.video-thumb-wrap {
    position: relative;
    overflow: hidden;
    background: #030711;
}

.video-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.video-feature-card:hover .video-thumb,
.video-feature-card:focus-within .video-thumb {
    transform: scale(1.035);
}

.video-thumb-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.08) 60%);
}

.video-badge,
.video-play {
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-badge {
    top: 1rem;
    left: 1rem;
    background: rgba(0, 255, 255, 0.18);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #d7ffff;
}

.video-play {
    bottom: 1rem;
    left: 1rem;
    background: rgba(4, 8, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.video-card-copy,
.product-card-copy {
    padding: 1.5rem;
}

.video-card-copy h3,
.product-card-copy h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.video-card-copy p,
.product-card-copy p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 0;
}

.merch-hero-panel {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.merch-hero-image {
    width: min(100%, 520px);
    max-height: 560px;
    object-fit: contain;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.02);
}

.merch-note-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .merch-hero-image {
        max-height: 460px;
    }
}


html {
    scroll-behavior: smooth;
}

body.artist-page {
    min-height: 100vh;
}

.navbar {
    backdrop-filter: blur(10px);
}

.navbar-brand {
    letter-spacing: 0.08em;
}

.nav-link {
    border-radius: 999px;
    padding-inline: 0.9rem !important;
}

.nav-link.active {
    color: var(--artist-neon) !important;
    background: rgba(0, 255, 255, 0.1);
}

#mobileNav.show {
    margin-top: 0.9rem;
    padding: 0.85rem;
    border-radius: 1rem;
    background: rgba(4, 8, 18, 0.92);
    border: 1px solid rgba(0, 255, 255, 0.12);
}

#mobileNav .nav-link {
    margin: 0.2rem 0;
}

.navbar-toggler:focus-visible,
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.video-thumb-link:focus-visible,
.form-control:focus-visible {
    outline: 2px solid rgba(125, 255, 207, 0.92);
    outline-offset: 3px;
}

.btn,
.nav-link,
.platform-logo,
.video-thumb,
.product-card,
.artist-card,
.release-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.72;
    cursor: not-allowed;
}

.section-shell,
.release-showcase,
.cta-section,
.paid-platforms-section,
.footer-bg {
    position: relative;
}

.release-card:hover,
.artist-card:hover,
.product-card:hover,
.video-feature-card:hover {
    transform: translateY(-3px);
}

.embed-shell {
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(80, 215, 255, 0.18);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    background: rgba(7, 14, 24, 0.85);
}

.home-page .carousel-item,
.home-page .carousel-video {
    min-height: clamp(460px, 80vh, 880px);
}

.home-page .carousel-caption {
    padding-bottom: clamp(2rem, 6vw, 4rem);
}

.hero-copy-panel .lead {
    max-width: 50rem;
    margin-inline: auto;
}

.platform-logo {
    border-radius: 999px;
}

.platform-logo:hover,
.platform-logo:focus-visible {
    transform: translateY(-3px) scale(1.02);
}

@media (max-width: 767.98px) {
    .artist-card,
    .video-card-copy,
    .product-card-copy,
    .cta-panel,
    .hero-copy-panel,
    .contact-page .info-card {
        padding: 1.15rem;
    }

    .section-copy {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .home-page .carousel-caption {
        inset: 0;
        padding-inline: 1rem;
        display: flex !important;
    }

    .home-page .carousel-caption .hero-copy-panel {
        margin-top: auto;
        margin-bottom: 1.25rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* Pass 9 — searchability and AI-readable content */
.artist-card a {
  color: #8de5ff;
}
.artist-card a:hover,
.artist-card a:focus-visible {
  color: #ffffff;
}

.release-meta {
    margin-bottom: 0.85rem;
    color: rgba(143, 255, 241, 0.92);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.release-fact-card h3 {
    min-height: 3.2rem;
}

.platform-text-links {
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.platform-text-links a {
    color: var(--artist-neon);
    text-decoration: none;
}

.platform-text-links a:hover,
.platform-text-links a:focus-visible {
    text-decoration: underline;
}


/* Pass 11 — official identity/profile index */
.official-links-page code {
    color: #9ef3ff;
}

.official-links-page .artist-card p,
.official-links-page .artist-card li {
    color: rgba(255,255,255,0.82);
}


.discography-page .page-band {
    background: linear-gradient(135deg, rgba(2, 0, 36, 0.96), rgba(5, 27, 61, 0.92), rgba(0, 212, 255, 0.16));
}

.discography-card {
    display: flex;
    flex-direction: column;
}

.discography-card .release-cover {
    max-height: 360px;
}

.discography-note {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
}

.discography-subheading {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.discography-copy {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.discography-track-list {
    margin: 0;
    padding-left: 1.2rem;
    columns: 2;
    column-gap: 2rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
}

.discography-track-list li {
    break-inside: avoid;
    margin-bottom: 0.2rem;
}

.verified-discography-panel .cta-panel {
    background: rgba(7, 14, 24, 0.92);
}

@media (max-width: 767.98px) {
    .discography-track-list {
        columns: 1;
    }

    .discography-card .release-cover {
        max-height: 320px;
    }
}


/* Pass 13 — release detail pages */
.release-detail-hero {
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.22), rgba(2, 0, 36, 0.94) 48%, #000 100%);
}

.release-detail-artwork {
    width: min(100%, 560px);
}

.release-detail-meta {
    font-size: 1rem;
}

.release-detail-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.release-detail-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.16);
    color: rgba(229, 252, 255, 0.92);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.release-detail-sources a {
    color: var(--artist-neon);
    text-decoration: none;
}

.release-detail-sources a:hover,
.release-detail-sources a:focus-visible {
    text-decoration: underline;
}

.discography-track-list--detail {
    columns: 1;
}

.release-card .card-actions,
.artist-card .card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.release-card .card-actions .btn,
.artist-card .card-actions .btn {
    flex: 1 1 auto;
}


/* Pass 14 — songs reference page */
.songs-hero {
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.24), rgba(3, 9, 24, 0.94) 48%, #000 100%);
}

.songs-summary-card {
    min-height: 100%;
}

.songs-signal-card {
    padding: 1.5rem;
}

.songs-signal-list {
    margin: 0;
    padding-left: 1.2rem;
    columns: 2;
    column-gap: 2rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
}

.songs-signal-list li {
    break-inside: avoid;
    margin-bottom: 0.4rem;
}

.songs-signal-list span {
    color: rgba(255, 255, 255, 0.68);
}

.songs-release-card .p-4 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.songs-track-list {
    columns: 1;
}

.songs-page .release-card .card-actions {
    margin-top: auto;
}

@media (max-width: 767.98px) {
    .songs-signal-list {
        columns: 1;
    }
}


/* Pass 15 — song detail pages */
.song-detail-hero {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.96), rgba(5, 8, 15, 0.98));
}

.songs-signal-list a,
.discography-track-list a,
.meta-list a {
    color: #8fdcff;
    text-decoration: none;
}

.songs-signal-list a:hover,
.songs-signal-list a:focus,
.discography-track-list a:hover,
.discography-track-list a:focus,
.meta-list a:hover,
.meta-list a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.song-detail-page .meta-list li + li {
    margin-top: 0.35rem;
}


.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    font-size: .92rem;
    color: rgba(255,255,255,.72);
    margin-bottom: 1.25rem;
}

.page-breadcrumb a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
}

.page-breadcrumb .divider {
    color: rgba(255,255,255,.45);
}

.track-jump-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.track-jump-link {
    display: block;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 1rem 1.15rem;
    text-decoration: none;
    background: rgba(255,255,255,.03);
    color: #fff;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.track-jump-link:hover,
.track-jump-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 195, .45);
    background: rgba(0, 255, 195, .08);
    color: #fff;
}

.track-jump-label {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.6);
    margin-bottom: .35rem;
}

.track-jump-name {
    display: block;
    font-weight: 700;
}

.song-inline-links a,
.discography-track-list a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,255,195,.25);
}

.song-inline-links a:hover,
.song-inline-links a:focus-visible,
.discography-track-list a:hover,
.discography-track-list a:focus-visible {
    color: #b6fff0;
    border-bottom-color: rgba(0,255,195,.75);
}


/* Pass 20 — immersive cinematic experience layer */
:root {
    --artist-magenta: #ff4fd8;
    --artist-violet: #6f5bff;
    --artist-lime: #b8ff5c;
    --scroll-progress: 0%;
    --pointer-x: 50%;
    --pointer-y: 30%;
}

body.artist-page {
    background:
        radial-gradient(circle at 12% 12%, rgba(0, 255, 255, 0.12), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(111, 91, 255, 0.16), transparent 26%),
        radial-gradient(circle at 55% 80%, rgba(255, 79, 216, 0.08), transparent 30%),
        linear-gradient(180deg, #03050d 0%, #040711 32%, #020306 100%);
    isolation: isolate;
}

body.artist-page::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -4;
    background: linear-gradient(180deg, rgba(2, 6, 14, 0.18), rgba(2, 6, 14, 0.42));
}

body.artist-page > *:not(.immersive-shell):not(.site-progress) {
    position: relative;
    z-index: 1;
}

.immersive-shell {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.site-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-progress);
    height: 3px;
    z-index: 1085;
    background: linear-gradient(90deg, var(--artist-neon), var(--artist-violet), var(--artist-magenta));
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.65), 0 0 24px rgba(111, 91, 255, 0.45);
}

.site-grid,
.site-noise,
.site-spotlight,
.site-orb {
    position: absolute;
    inset: 0;
}

.site-grid {
    background-image:
        linear-gradient(rgba(122, 235, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 235, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
    opacity: 0.34;
    transform: perspective(1200px) rotateX(72deg) translateY(28vh) scale(1.75);
    transform-origin: center top;
}

.site-noise {
    opacity: 0.16;
    mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-spotlight {
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(0, 255, 255, 0.18), transparent 18%),
        radial-gradient(circle at calc(var(--pointer-x) + 12%) calc(var(--pointer-y) + 10%), rgba(111, 91, 255, 0.14), transparent 24%);
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.site-orb {
    filter: blur(6px);
}

.site-orb--one,
.site-orb--two,
.site-orb--three {
    inset: auto;
    border-radius: 999px;
    aspect-ratio: 1;
    opacity: 0.28;
    animation: floatOrb 18s ease-in-out infinite;
}

.site-orb--one {
    width: 24rem;
    top: 9rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.22), transparent 70%);
}

.site-orb--two {
    width: 30rem;
    top: 24rem;
    right: -10rem;
    background: radial-gradient(circle, rgba(111, 91, 255, 0.22), transparent 70%);
    animation-duration: 24s;
}

.site-orb--three {
    width: 20rem;
    bottom: 8rem;
    left: 42%;
    background: radial-gradient(circle, rgba(255, 79, 216, 0.18), transparent 72%);
    animation-duration: 21s;
}

.navbar {
    background: rgba(3, 7, 17, 0.72) !important;
    border-bottom: 1px solid rgba(130, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px) saturate(1.25);
}

.navbar-brand {
    position: relative;
    text-shadow: 0 0 18px rgba(0, 255, 255, 0.45);
}

.navbar-brand::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.25rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.75), transparent);
    opacity: 0.7;
}

.nav-link {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 255, 255, 0.18), rgba(111, 91, 255, 0.1), rgba(255, 79, 216, 0.14));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-link.active::before {
    opacity: 1;
}

.page-hero,
.page-band,
.section-shell,
.release-showcase,
.cta-section,
.release-detail-hero,
.songs-hero,
.videos-hero,
.merch-hero,
.faq-hero {
    position: relative;
    overflow: clip;
}

.page-hero::before,
.page-band::before,
.section-shell::before,
.release-showcase::before,
.release-detail-hero::before,
.songs-hero::before,
.videos-hero::before,
.merch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(0, 255, 255, 0.11), transparent 28%),
        radial-gradient(circle at bottom right, rgba(111, 91, 255, 0.12), transparent 30%);
    opacity: 0.9;
}

.page-hero > .container,
.page-band > .container,
.section-shell > .container,
.release-showcase > .container,
.release-detail-hero > .container,
.songs-hero > .container,
.videos-hero > .container,
.merch-hero > .container {
    position: relative;
    z-index: 1;
}

.hero-copy-panel,
.artist-card,
.release-card,
.cta-panel,
.video-feature-card,
.product-card,
.merch-hero-panel,
.embed-shell,
.info-card,
.discography-note,
.track-jump-link,
.song-detail-hero .artist-card,
.release-detail-artwork {
    position: relative;
    border-radius: 1.45rem;
    border: 1px solid rgba(146, 239, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(10, 16, 28, 0.64), rgba(7, 12, 22, 0.32)),
        linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(111, 91, 255, 0.04));
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(6, 25, 34, 0.5);
    backdrop-filter: blur(12px) saturate(1.08);
    overflow: hidden;
    transform-style: preserve-3d;
}

.hero-copy-panel::before,
.artist-card::before,
.release-card::before,
.cta-panel::before,
.video-feature-card::before,
.product-card::before,
.merch-hero-panel::before,
.embed-shell::before,
.info-card::before,
.track-jump-link::before,
.release-detail-artwork::before,
.experience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.12) 45%, transparent 70%),
        radial-gradient(circle at top right, rgba(0, 255, 255, 0.18), transparent 32%);
    opacity: 0.38;
    transform: translateX(-28%);
    transition: transform 0.55s ease, opacity 0.3s ease;
}

.hero-copy-panel:hover::before,
.artist-card:hover::before,
.release-card:hover::before,
.cta-panel:hover::before,
.video-feature-card:hover::before,
.product-card:hover::before,
.merch-hero-panel:hover::before,
.embed-shell:hover::before,
.info-card:hover::before,
.track-jump-link:hover::before,
.experience-card:hover::before,
.hero-copy-panel:focus-within::before,
.artist-card:focus-within::before,
.release-card:focus-within::before,
.cta-panel:focus-within::before,
.video-feature-card:focus-within::before,
.product-card:focus-within::before,
.merch-hero-panel:focus-within::before,
.embed-shell:focus-within::before,
.track-jump-link:focus-visible::before,
.experience-card:focus-visible::before {
    transform: translateX(0);
    opacity: 0.68;
}

.hero-copy-panel,
.cta-panel {
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(128, 250, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-page .carousel-item::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52) 55%, rgba(0, 0, 0, 0.82));
}

.home-page .carousel-caption {
    padding-inline: 1rem;
}

.hero-copy-panel {
    padding: 2rem;
    max-width: 860px;
}

.home-page .hero-copy-panel {
    background:
        linear-gradient(180deg, rgba(8, 14, 24, 0.52), rgba(7, 12, 22, 0.2)),
        linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(111, 91, 255, 0.03));
    border-color: rgba(146, 239, 255, 0.12);
    backdrop-filter: blur(10px) saturate(1.04);
}

.home-page .hero-copy-panel::before {
    opacity: 0.22;
}

.hero-copy-panel h1,
.hero-copy-panel h2 {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-wrap: balance;
    margin-bottom: 1rem;
}

.text-neon-glow {
    background: linear-gradient(135deg, #ffffff 0%, #b3fdff 32%, #8fc5ff 56%, #ff86e7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.eyebrow {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 255, 0.18);
    background: rgba(5, 18, 25, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section-heading,
.release-card h3,
.artist-card h3,
.video-card-copy h3,
.product-card-copy h3 {
    text-wrap: balance;
}

.section-heading {
    font-size: clamp(2.35rem, 5vw, 4.2rem);
    letter-spacing: -0.04em;
}

.section-copy,
.artist-card p,
.release-card p,
.video-card-copy p,
.product-card-copy p,
.discography-copy,
.discography-note,
.meta-list,
.release-meta {
    color: rgba(237, 247, 255, 0.82);
}

.custom-btn,
.btn-primary,
.btn-glow,
.track-jump-link,
.experience-card {
    position: relative;
}

.custom-btn,
.btn-primary,
.btn-glow,
.btn-outline-light.custom-btn {
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, rgba(13, 25, 39, 0.86), rgba(10, 20, 38, 0.72));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.custom-btn::after,
.btn-primary::after,
.btn-glow::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(0, 255, 255, 0.24), rgba(111, 91, 255, 0.18), rgba(255, 79, 216, 0.24));
    opacity: 0;
    transition: opacity 0.28s ease;
    z-index: -1;
}

.custom-btn:hover,
.custom-btn:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-glow:hover,
.btn-glow:focus-visible {
    color: #fff;
    border-color: rgba(0, 255, 255, 0.42);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 18px rgba(0, 255, 255, 0.18);
}

.custom-btn:hover::after,
.custom-btn:focus-visible::after,
.btn-primary:hover::after,
.btn-primary:focus-visible::after,
.btn-glow:hover::after,
.btn-glow:focus-visible::after {
    opacity: 1;
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 12, 19, 0.58);
    color: rgba(240, 249, 255, 0.92);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.35rem;
    text-decoration: none;
    color: rgba(245, 252, 255, 0.92);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-scroll-icon {
    width: 1.85rem;
    height: 3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    position: relative;
    display: inline-block;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.hero-scroll-icon::after {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 50%;
    width: 0.35rem;
    height: 0.75rem;
    margin-left: -0.175rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0,255,255,0.95), rgba(255,255,255,0.2));
    animation: scrollCue 1.6s ease-in-out infinite;
}

.experience-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    height: 100%;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(0, 255, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(9, 15, 26, 0.92), rgba(4, 8, 16, 0.84));
    border: 1px solid rgba(135, 240, 255, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.experience-card:hover,
.experience-card:focus-visible {
    transform: translateY(-6px);
    color: #fff;
    border-color: rgba(0, 255, 255, 0.34);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38), 0 0 16px rgba(0, 255, 255, 0.12);
}

.experience-number {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d7fdff;
}

.experience-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0;
}

.experience-card p {
    color: rgba(236, 247, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 0;
}

.experience-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    color: var(--artist-neon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
}

.experience-link::after {
    content: "↗";
    font-size: 0.9rem;
}

.immersive-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.985);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.immersive-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.tilt-ready {
    will-change: transform;
}

html[data-reduced-motion='true'] .site-grid,
html[data-reduced-motion='true'] .site-noise,
html[data-reduced-motion='true'] .site-orb,
html[data-reduced-motion='true'] .site-spotlight {
    display: none;
}

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

@keyframes scrollCue {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(1rem); opacity: 0; }
}

@media (max-width: 991.98px) {
    .site-grid {
        transform: perspective(1000px) rotateX(76deg) translateY(32vh) scale(2.2);
        opacity: 0.26;
    }

    .hero-copy-panel h1,
    .hero-copy-panel h2 {
        font-size: clamp(2.4rem, 11vw, 4rem);
    }
}

@media (max-width: 767.98px) {
    .hero-copy-panel {
        padding: 1.35rem;
    }

    .hero-meta-row {
        gap: 0.55rem;
    }

    .hero-stat-pill {
        width: 100%;
    }

    .hero-scroll-cue {
        justify-content: center;
        width: 100%;
    }

    .experience-card {
        padding: 1.2rem;
    }
}


/* Pass 21 — surreal experience upgrade */
body.artist-page {
    opacity: 0;
    transition: opacity 0.42s ease;
}

body.artist-page.page-ready {
    opacity: 1;
}

body.artist-page.intro-active {
    overflow: hidden;
}

body.artist-page.motion-minimal *,
html[data-reduced-motion='true'] * {
    scroll-behavior: auto;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 1092;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(0,255,255,0.28), transparent 24%),
        radial-gradient(circle at 80% 60%, rgba(255,79,216,0.24), transparent 20%),
        linear-gradient(180deg, rgba(2,8,16,0.15), rgba(2,8,16,0.92));
    backdrop-filter: blur(14px);
    transition: opacity 0.28s ease;
}

.page-transition::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: translateX(-120%);
}

.page-transition.is-active {
    opacity: 1;
}

.page-transition.is-active::after {
    animation: sweepAcross 0.56s cubic-bezier(.22,1,.36,1) forwards;
}

.cursor-halo,
.cursor-dot,
.cursor-label {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1091;
    opacity: 0;
}

.cursor-halo,
.cursor-dot {
    border-radius: 999px;
    transform: translate3d(-100px, -100px, 0);
}

.cursor-halo {
    width: 3.5rem;
    height: 3.5rem;
    margin-left: -1.75rem;
    margin-top: -1.75rem;
    border: 1px solid rgba(170, 250, 255, 0.35);
    background: radial-gradient(circle, rgba(0,255,255,0.18), rgba(111,91,255,0.06) 55%, transparent 70%);
    box-shadow: 0 0 30px rgba(0,255,255,0.18);
    transition: opacity 0.22s ease, width 0.22s ease, height 0.22s ease, margin 0.22s ease, border-color 0.22s ease;
    mix-blend-mode: screen;
}

.cursor-halo.is-active {
    width: 5.5rem;
    height: 5.5rem;
    margin-left: -2.75rem;
    margin-top: -2.75rem;
    border-color: rgba(255,255,255,0.42);
}

.cursor-dot {
    width: 0.55rem;
    height: 0.55rem;
    margin-left: -0.275rem;
    margin-top: -0.275rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(0,255,255,0.8));
    box-shadow: 0 0 16px rgba(0,255,255,0.5);
}

.cursor-label {
    min-height: 2rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(5, 14, 28, 0.82);
    color: rgba(244,250,255,0.95);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    transition: opacity 0.18s ease;
}

.cursor-halo.is-visible,
.cursor-dot.is-visible,
.cursor-label.is-visible {
    opacity: 1;
}

.site-intro {
    position: fixed;
    inset: 0;
    z-index: 1093;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(2, 6, 14, 0.68);
    backdrop-filter: blur(16px) saturate(1.1);
}

.site-intro__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.site-intro__background span {
    position: absolute;
    left: 50%;
    bottom: -6rem;
    width: 12vw;
    min-width: 5rem;
    max-width: 8rem;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, rgba(0,255,255,0.55), rgba(111,91,255,0.12));
    filter: blur(1px);
    animation: introRise 7s ease-in-out infinite;
    opacity: 0.35;
}

.site-intro__background span:nth-child(1) { transform: translateX(-180px); height: 48vh; animation-delay: 0s; }
.site-intro__background span:nth-child(2) { transform: translateX(-90px); height: 60vh; animation-delay: .8s; }
.site-intro__background span:nth-child(3) { transform: translateX(0); height: 72vh; animation-delay: 1.4s; }
.site-intro__background span:nth-child(4) { transform: translateX(90px); height: 58vh; animation-delay: .4s; }
.site-intro__background span:nth-child(5) { transform: translateX(180px); height: 44vh; animation-delay: 1.1s; }

.site-intro__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    text-align: center;
    border-radius: 1.75rem;
    border: 1px solid rgba(151, 244, 255, 0.18);
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 48%),
        linear-gradient(180deg, rgba(8,14,24,0.92), rgba(5,8,16,0.84));
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.site-intro__kicker {
    margin: 1rem 0 0.45rem;
    color: rgba(208,241,255,0.75);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.site-intro__panel h2 {
    font-size: clamp(2.6rem, 8vw, 5.6rem);
    line-height: 0.92;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff 0%, #bfffff 28%, #8cb4ff 58%, #ff77df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-intro__panel p:last-of-type {
    max-width: 44rem;
    margin: 0 auto;
    color: rgba(236,247,255,0.84);
    line-height: 1.8;
}

.site-intro__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-intro.is-leaving {
    animation: introFadeOut 0.5s ease forwards;
}

.kinetic-title {
    position: relative;
}

.signal-marquee-section {
    position: relative;
    overflow: hidden;
    padding: 1rem 0 0;
}

.signal-marquee-shell {
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(90deg, rgba(4,12,19,0.8), rgba(11,18,33,0.92), rgba(4,12,19,0.8));
    overflow: hidden;
}

.signal-marquee-shell::before,
.signal-marquee-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12vw;
    z-index: 1;
    pointer-events: none;
}

.signal-marquee-shell::before {
    left: 0;
    background: linear-gradient(90deg, rgba(3,7,17,0.95), transparent);
}

.signal-marquee-shell::after {
    right: 0;
    background: linear-gradient(270deg, rgba(3,7,17,0.95), transparent);
}

.signal-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: max-content;
    padding: 1rem 0;
    animation: marqueeSlide 28s linear infinite;
}

.signal-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(240,248,255,0.88);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.74rem;
    white-space: nowrap;
}

.signal-marquee-track span::before {
    content: "✦";
    color: var(--artist-neon);
}

.portal-story-section {
    position: relative;
    overflow: clip;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.2rem;
}

.portal-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 25rem;
    padding: 1.7rem;
    text-decoration: none;
    color: #fff;
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(154,243,255,0.18);
    background: linear-gradient(180deg, rgba(4,8,16,0.58), rgba(4,8,16,0.94));
    box-shadow: 0 28px 64px rgba(0,0,0,0.36);
}

.portal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    opacity: 0.42;
    transition: transform 0.7s ease, opacity 0.4s ease;
}

.portal-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,8,16,0.12), rgba(4,8,16,0.94));
}

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

.portal-card--sound { grid-column: span 5; }
.portal-card--visual { grid-column: span 3; }
.portal-card--signal { grid-column: span 4; }

.portal-card--sound::before { background-image: url('../img/fragments-to-light.png'); }
.portal-card--visual::before { background-image: url('../img/After-the-last-thought.png'); }
.portal-card--signal::before { background-image: url('../img/self-the-forgeting.png'); }

.portal-card-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(5,13,21,0.72);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: rgba(214,248,255,0.88);
}

.portal-card h3 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 1;
    margin-bottom: 0;
}

.portal-card p {
    max-width: 24rem;
    color: rgba(238,247,255,0.82);
    line-height: 1.8;
    margin-bottom: 0;
}

.portal-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--artist-neon);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

.portal-card-link::after {
    content: "→";
}

.portal-card:hover,
.portal-card:focus-visible {
    color: #fff;
    border-color: rgba(0,255,255,0.36);
    box-shadow: 0 34px 82px rgba(0,0,0,0.42), 0 0 24px rgba(0,255,255,0.12);
}

.portal-card:hover::before,
.portal-card:focus-visible::before {
    transform: scale(1.08);
    opacity: 0.56;
}

body.motion-minimal .site-grid,
body.motion-minimal .site-noise,
body.motion-minimal .site-orb,
body.motion-minimal .site-spotlight,
body.motion-minimal .cursor-halo,
body.motion-minimal .cursor-dot,
body.motion-minimal .cursor-label {
    display: none !important;
}

body.motion-minimal .signal-marquee-track,
html[data-reduced-motion='true'] .signal-marquee-track {
    animation: none;
}

@keyframes introRise {
    0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.2; }
    50% { transform: translateY(-12px) scaleY(1.08); opacity: 0.5; }
}

@keyframes introFadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

@keyframes marqueeSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes sweepAcross {
    to { transform: translateX(120%); }
}

@media (max-width: 991.98px) {
    .portal-card--sound,
    .portal-card--visual,
    .portal-card--signal {
        grid-column: span 12;
    }

    .portal-card {
        min-height: 20rem;
    }
}

@media (max-width: 767.98px) {
    .site-intro__actions {
        flex-direction: column;
    }

    .signal-marquee-track span {
        font-size: 0.68rem;
    }

    .portal-card {
        min-height: 18rem;
        padding: 1.25rem;
    }
}


body.artist-page > .page-transition,
body.artist-page > .cursor-halo,
body.artist-page > .cursor-dot,
body.artist-page > .cursor-label,
body.artist-page > .site-intro {
    position: fixed !important;
}


/* Pass 22 — signal dock, command deck, and interactive release vault */
html[data-signal-mode="ember"] {
    --artist-neon: #ff9e66;
    --artist-neon-dark: #ff4d6d;
    --artist-panel: rgba(255, 158, 102, 0.12);
    --artist-panel-strong: rgba(255, 118, 92, 0.12);
    --artist-panel-border: rgba(255, 178, 129, 0.24);
    --artist-muted: #ffe3d6;
    --artist-violet: #ff5d8f;
    --artist-magenta: #ffc857;
    --artist-lime: #ffe58f;
}

html[data-signal-mode="ember"] body.artist-page {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 158, 102, 0.16), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(255, 77, 109, 0.16), transparent 28%),
        radial-gradient(circle at 55% 82%, rgba(255, 200, 87, 0.08), transparent 28%),
        linear-gradient(180deg, #120609 0%, #13070c 32%, #050304 100%);
}

html[data-signal-mode="lunar"] {
    --artist-neon: #98eeff;
    --artist-neon-dark: #5370ff;
    --artist-panel: rgba(126, 178, 255, 0.12);
    --artist-panel-strong: rgba(126, 178, 255, 0.1);
    --artist-panel-border: rgba(170, 215, 255, 0.22);
    --artist-muted: #dde9ff;
    --artist-violet: #90a0ff;
    --artist-magenta: #cbb8ff;
    --artist-lime: #d9fff6;
}

html[data-signal-mode="lunar"] body.artist-page {
    background:
        radial-gradient(circle at 12% 12%, rgba(152, 238, 255, 0.14), transparent 32%),
        radial-gradient(circle at 84% 18%, rgba(83, 112, 255, 0.18), transparent 28%),
        radial-gradient(circle at 55% 82%, rgba(203, 184, 255, 0.1), transparent 28%),
        linear-gradient(180deg, #040713 0%, #050812 32%, #020409 100%);
}

.signal-dock {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 1088;
    display: grid;
    gap: 0.65rem;
    width: min(17rem, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.15rem;
    background: rgba(5, 8, 17, 0.7);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.signal-dock__label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

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

.signal-mode-btn,
.signal-launcher {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.7rem 0.9rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.signal-mode-btn:hover,
.signal-mode-btn:focus-visible,
.signal-launcher:hover,
.signal-launcher:focus-visible,
.signal-mode-btn.is-active {
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 20px rgba(0, 255, 255, 0.15);
    transform: translateY(-1px);
}

.signal-launcher {
    width: 100%;
    background: linear-gradient(135deg, rgba(0,255,255,0.22), rgba(111,91,255,0.2));
}

.command-deck {
    position: fixed;
    inset: 0;
    z-index: 1094;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.command-deck.is-open {
    opacity: 1;
    pointer-events: auto;
}

.command-deck__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 5, 13, 0.72);
    backdrop-filter: blur(10px);
}

.command-panel {
    position: relative;
    width: min(48rem, calc(100vw - 1.5rem));
    margin: min(10vh, 4rem) auto 0;
    padding: 1.2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.94), rgba(8, 12, 22, 0.96));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(18px) scale(0.985);
    transition: transform 0.28s ease;
}

.command-deck.is-open .command-panel {
    transform: translateY(0) scale(1);
}

.command-panel__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1rem;
}

.command-panel__top h2 {
    margin: 0.15rem 0 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.command-close {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1.5rem;
}

.command-search {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    margin-bottom: 0.75rem;
}

.command-hint {
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.command-hint kbd {
    padding: 0.14rem 0.38rem;
    border-radius: 0.45rem;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
}

.command-results {
    display: grid;
    gap: 0.75rem;
}

.command-link,
.command-empty {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.command-link:hover,
.command-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
}

.command-link__title {
    font-weight: 700;
    letter-spacing: 0.04em;
}

.command-link__description,
.command-empty {
    color: rgba(255,255,255,0.74);
    font-size: 0.94rem;
}

.release-vault-section {
    position: relative;
}

.vault-shell {
    display: grid;
    grid-template-columns: minmax(17rem, 20rem) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.vault-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vault-proof-card {
    display: grid;
    gap: 0.4rem;
    padding: 1rem 1.05rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.vault-proof-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--artist-muted);
}

.vault-proof-card strong {
    font-size: 1.08rem;
    color: #fff;
}

.vault-proof-card span:last-child {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.55;
}

.vault-nav {
    display: grid;
    gap: 0.9rem;
}

.vault-nav-button {
    display: grid;
    gap: 0.22rem;
    text-align: left;
    width: 100%;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #fff;
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.vault-nav-button:hover,
.vault-nav-button:focus-visible,
.vault-nav-button.is-active {
    transform: translateX(4px);
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 18px 35px rgba(0,0,0,0.22);
}

.vault-nav-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--artist-muted);
}

.vault-nav-button strong {
    font-size: 1.02rem;
}

.vault-nav-button span:last-child {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.vault-stage {
    position: relative;
    min-height: 34rem;
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        radial-gradient(circle at 14% 20%, rgba(0,255,255,0.18), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(111,91,255,0.18), transparent 24%),
        linear-gradient(180deg, rgba(5,9,18,0.94), rgba(5,8,15,0.98));
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}

.vault-stage[data-vault-stage="ember"] {
    background:
        radial-gradient(circle at 16% 20%, rgba(255,158,102,0.22), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255,77,109,0.22), transparent 24%),
        linear-gradient(180deg, rgba(22,10,11,0.95), rgba(12,6,7,0.98));
}

.vault-stage[data-vault-stage="lunar"] {
    background:
        radial-gradient(circle at 16% 20%, rgba(152,238,255,0.18), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(83,112,255,0.2), transparent 24%),
        linear-gradient(180deg, rgba(9,11,22,0.95), rgba(5,7,14,0.98));
}

.vault-stage-grid,
.vault-orbit,
.vault-bars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vault-stage-grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 88%);
    opacity: 0.22;
}

.vault-orbit span {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    animation: vaultSpin 22s linear infinite;
}

.vault-orbit span:nth-child(1) {
    width: 18rem;
    height: 18rem;
    left: 7%;
    top: 13%;
}

.vault-orbit span:nth-child(2) {
    width: 25rem;
    height: 25rem;
    left: -2%;
    top: 2%;
    animation-duration: 29s;
    animation-direction: reverse;
}

.vault-orbit span:nth-child(3) {
    width: 11rem;
    height: 11rem;
    left: 15%;
    top: 23%;
    animation-duration: 18s;
}

.vault-bars {
    display: flex;
    align-items: end;
    gap: 0.65rem;
    padding: 0 1.25rem 1.1rem;
    opacity: 0.55;
}

.vault-bars span {
    width: 0.45rem;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.58));
    animation: vaultBars 1.8s ease-in-out infinite;
}

.vault-bars span:nth-child(1) { height: 18%; }
.vault-bars span:nth-child(2) { height: 32%; animation-delay: 0.12s; }
.vault-bars span:nth-child(3) { height: 22%; animation-delay: 0.32s; }
.vault-bars span:nth-child(4) { height: 48%; animation-delay: 0.18s; }
.vault-bars span:nth-child(5) { height: 28%; animation-delay: 0.42s; }
.vault-bars span:nth-child(6) { height: 38%; animation-delay: 0.26s; }

.vault-art-shell,
.vault-panel {
    position: relative;
    z-index: 1;
}

.vault-art-shell {
    display: grid;
    place-items: center;
    padding: 1rem;
}

.vault-cover-image {
    width: min(100%, 24rem);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1.45rem;
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 24px 60px rgba(0,0,0,0.34), 0 0 35px rgba(255,255,255,0.08);
}

.vault-panel {
    display: grid;
    gap: 0.8rem;
    padding-right: clamp(0rem, 2vw, 1rem);
}

.vault-panel h3 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.vault-date {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vault-blurb {
    max-width: 42rem;
    color: rgba(255,255,255,0.78);
    font-size: 1.04rem;
}

.vault-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.vault-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.84);
    font-size: 0.84rem;
    letter-spacing: 0.05em;
}

body.artist-page > .signal-dock,
body.artist-page > .command-deck,
body.artist-page > .page-transition,
body.artist-page > .cursor-halo,
body.artist-page > .cursor-dot,
body.artist-page > .cursor-label,
body.artist-page > .site-intro {
    position: fixed !important;
}

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

@keyframes vaultBars {
    0%, 100% { transform: scaleY(0.7); opacity: 0.62; }
    50% { transform: scaleY(1.18); opacity: 1; }
}

@media (max-width: 991.98px) {
    .vault-proof-grid,
    .vault-shell,
    .vault-stage {
        grid-template-columns: 1fr;
    }

    .vault-stage {
        min-height: 0;
    }

    .vault-panel {
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .signal-dock {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        width: auto;
    }

    .command-panel {
        margin-top: 1rem;
        width: calc(100vw - 1rem);
    }

    .vault-nav-button:hover,
    .vault-nav-button:focus-visible,
    .vault-nav-button.is-active {
        transform: none;
    }
}

body.motion-minimal .vault-orbit span,
body.motion-minimal .vault-bars span,
body.motion-minimal .signal-mode-btn,
body.motion-minimal .signal-launcher,
body.motion-minimal .command-link,
body.motion-minimal .vault-nav-button,
body.motion-minimal .vault-cover-image {
    animation: none !important;
    transition: none !important;
}


.constellation-section {
    position: relative;
}

.constellation-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    gap: 1.25rem;
    align-items: stretch;
}

.constellation-map,
.constellation-panel,
.afterhours-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(8, 12, 24, 0.94), rgba(4, 8, 16, 0.98));
    box-shadow: 0 24px 60px rgba(0,0,0,0.32);
}

.constellation-map {
    min-height: 31rem;
    isolation: isolate;
}

.constellation-map::before,
.constellation-map::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.constellation-map::before {
    background:
        radial-gradient(circle at 20% 24%, rgba(0,255,255,0.18), transparent 18%),
        radial-gradient(circle at 76% 28%, rgba(111,91,255,0.18), transparent 16%),
        radial-gradient(circle at 54% 76%, rgba(255,255,255,0.08), transparent 12%),
        linear-gradient(135deg, rgba(255,255,255,0.04), transparent 55%);
}

.constellation-map::after {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9), transparent 88%);
    opacity: 0.36;
}

.constellation-map__field {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(117deg, transparent 27%, rgba(255,255,255,0.07) 28%, transparent 29%),
        linear-gradient(18deg, transparent 38%, rgba(255,255,255,0.07) 39%, transparent 40%),
        linear-gradient(152deg, transparent 58%, rgba(255,255,255,0.08) 59%, transparent 60%),
        linear-gradient(193deg, transparent 72%, rgba(255,255,255,0.05) 73%, transparent 74%);
    opacity: 0.5;
    filter: blur(0.2px);
}

.constellation-node {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    gap: 0.5rem;
    width: 8rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    background: radial-gradient(circle, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
    color: #fff;
    z-index: 1;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.constellation-node::before {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
}

.constellation-node:hover,
.constellation-node:focus-visible,
.constellation-node.is-active {
    border-color: rgba(255,255,255,0.32);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 28px rgba(0,255,255,0.16), 0 18px 40px rgba(0,0,0,0.32);
    background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
}

.constellation-node__pulse {
    position: absolute;
    inset: -0.7rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    animation: constellationPulse 3.6s ease-in-out infinite;
}

.constellation-node__label {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.constellation-panel {
    display: grid;
    align-content: center;
    gap: 0.9rem;
    padding: clamp(1.4rem, 3vw, 2.1rem);
}

.constellation-panel::before {
    content: "";
    position: absolute;
    inset: auto -12% -18% auto;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
    opacity: 0.3;
    pointer-events: none;
}

.constellation-panel[data-theme="visual"]::before {
    background: radial-gradient(circle, rgba(111,91,255,0.28), transparent 68%);
}

.constellation-panel[data-theme="songs"]::before {
    background: radial-gradient(circle, rgba(0,255,255,0.24), transparent 68%);
}

.constellation-panel[data-theme="signal"]::before {
    background: radial-gradient(circle, rgba(203,184,255,0.24), transparent 68%);
}

.constellation-panel[data-theme="contact"]::before {
    background: radial-gradient(circle, rgba(255,159,107,0.24), transparent 68%);
}

.constellation-panel h3 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.constellation-copy,
.afterhours-copy {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 1.04rem;
}

.constellation-meta,
.afterhours-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.constellation-hint {
    margin: 0.2rem 0 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
}

.signal-dock__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.signal-launcher--secondary {
    background: linear-gradient(135deg, rgba(255,145,102,0.22), rgba(255,89,126,0.2));
}

.afterhours-layer {
    position: fixed;
    inset: 0;
    z-index: 1096;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}

.afterhours-layer.is-open {
    opacity: 1;
    pointer-events: auto;
}

.afterhours-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 4, 12, 0.8);
    backdrop-filter: blur(12px) saturate(1.15);
}

.afterhours-panel {
    position: relative;
    width: min(70rem, calc(100vw - 1.25rem));
    margin: min(6vh, 2.75rem) auto 0;
    padding: clamp(1.2rem, 3vw, 2rem);
    min-height: min(84vh, 49rem);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    gap: 1.1rem;
    background:
        radial-gradient(circle at 18% 18%, rgba(0,255,255,0.18), transparent 24%),
        radial-gradient(circle at 82% 24%, rgba(255,83,121,0.18), transparent 22%),
        linear-gradient(180deg, rgba(8, 11, 22, 0.96), rgba(4, 7, 16, 0.98));
}

.afterhours-panel::before,
.afterhours-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.afterhours-panel::before {
    background-image: radial-gradient(circle, rgba(255,255,255,0.65) 0.7px, transparent 0.9px);
    background-size: 20px 20px;
    opacity: 0.08;
}

.afterhours-panel::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 30%, rgba(255,255,255,0.03) 65%, transparent 100%);
}

.afterhours-scene,
.afterhours-copydeck {
    position: relative;
    z-index: 1;
}

.afterhours-scene {
    min-height: 27rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.14), transparent 36%),
        linear-gradient(180deg, rgba(6, 12, 26, 0.86), rgba(3, 7, 15, 0.96));
    overflow: hidden;
}

.afterhours-ring,
.afterhours-ring::before,
.afterhours-ring::after {
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,0.12);
    content: "";
}

.afterhours-ring {
    width: 19rem;
    height: 19rem;
    animation: afterhoursSpin 22s linear infinite;
}

.afterhours-ring::before {
    width: 13rem;
    height: 13rem;
    animation: afterhoursSpin 14s linear infinite reverse;
}

.afterhours-ring::after {
    width: 26rem;
    height: 26rem;
    animation: afterhoursSpin 34s linear infinite;
}

.afterhours-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8.2rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(0,255,255,0.45) 42%, rgba(111,91,255,0.1) 64%, transparent 68%);
    box-shadow: 0 0 32px rgba(0,255,255,0.28), 0 0 90px rgba(255,255,255,0.14);
}

.afterhours-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg, rgba(255,255,255,0.08) 0px, rgba(255,255,255,0.08) 1px, transparent 2px, transparent 10px);
    mix-blend-mode: soft-light;
    opacity: 0.18;
}

.afterhours-nodes span {
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 0 18px rgba(255,255,255,0.3);
}

.afterhours-nodes span:nth-child(1) { left: 20%; top: 24%; }
.afterhours-nodes span:nth-child(2) { left: 70%; top: 20%; }
.afterhours-nodes span:nth-child(3) { left: 80%; top: 64%; }
.afterhours-nodes span:nth-child(4) { left: 30%; top: 76%; }
.afterhours-nodes span:nth-child(5) { left: 48%; top: 16%; }

.afterhours-copydeck {
    display: grid;
    align-content: center;
    gap: 0.95rem;
}

.afterhours-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.76);
}

.afterhours-kicker::before {
    content: "";
    width: 2.4rem;
    height: 1px;
    background: rgba(255,255,255,0.44);
}

.afterhours-title {
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.afterhours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.afterhours-card {
    display: grid;
    gap: 0.38rem;
    padding: 0.95rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    text-decoration: none;
    color: #fff;
}

.afterhours-card strong {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.afterhours-card span {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
}

.afterhours-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.afterhours-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1.35rem;
    z-index: 1;
}

body.afterhours-open {
    overflow: hidden;
}

body.afterhours-open .artist-shell__orbs,
body.afterhours-open .pointer-light,
body.afterhours-open .scroll-progress {
    opacity: 0.45;
}

body.artist-page > .afterhours-layer {
    position: fixed !important;
}

@keyframes constellationPulse {
    0%, 100% { transform: scale(0.88); opacity: 0.45; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes afterhoursSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 991.98px) {
    .constellation-shell,
    .afterhours-panel {
        grid-template-columns: 1fr;
    }

    .afterhours-panel {
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .signal-dock__actions,
    .afterhours-grid {
        grid-template-columns: 1fr;
    }

    .constellation-map {
        min-height: 24rem;
    }

    .constellation-node {
        width: 6.1rem;
    }

    .afterhours-title {
        font-size: clamp(2.35rem, 13vw, 4.2rem);
    }
}

body.motion-minimal .constellation-node__pulse,
body.motion-minimal .afterhours-ring,
body.motion-minimal .afterhours-ring::before,
body.motion-minimal .afterhours-ring::after {
    animation: none !important;
}


/* Pass 24 — inner-page experience systems */
.signal-stage-shell,
.signal-filter-shell {
    position: relative;
    overflow: hidden;
    --stage-glow: rgba(88, 199, 250, 0.24);
}

.signal-stage-shell::before,
.signal-filter-shell::before {
    content: '';
    position: absolute;
    inset: -10% auto auto -8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--stage-glow), rgba(0, 0, 0, 0));
    filter: blur(10px);
    opacity: 0.88;
    pointer-events: none;
}

.signal-stage-shell::after,
.signal-filter-shell::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.signal-stage-nav {
    display: grid;
    gap: 12px;
}

.signal-stage-button,
.signal-filter-button {
    position: relative;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(8, 11, 20, 0.72);
    color: #ffffff;
    padding: 1rem 1.05rem;
    text-align: left;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.signal-stage-button:hover,
.signal-filter-button:hover,
.signal-stage-button:focus-visible,
.signal-filter-button:focus-visible {
    border-color: rgba(141, 229, 255, 0.45);
    background: rgba(12, 18, 31, 0.88);
}

.signal-stage-button.is-active,
.signal-filter-button.is-active {
    transform: translateY(-3px);
    border-color: rgba(141, 229, 255, 0.6);
    background: linear-gradient(180deg, rgba(15, 24, 41, 0.96), rgba(7, 12, 22, 0.92));
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(141, 229, 255, 0.12) inset;
}

.signal-stage-button__kicker,
.signal-filter-button span {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(189, 230, 255, 0.72);
}

.signal-stage-button strong {
    display: block;
    font-size: 1.08rem;
    margin: 0.38rem 0 0.22rem;
}

.signal-stage-display {
    min-height: 100%;
}

.stage-panel-card {
    display: none;
    grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    min-height: 100%;
    background: linear-gradient(145deg, rgba(10, 15, 28, 0.94), rgba(5, 8, 16, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.stage-panel-card.is-active {
    display: grid;
}

.stage-panel-visual {
    position: relative;
    min-height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 48%), linear-gradient(180deg, rgba(5, 9, 17, 0.1), rgba(5, 9, 17, 0.78));
}

.stage-panel-visual::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(3, 6, 12, 0.82));
}

.stage-panel-visual img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.stage-panel-copy {
    position: relative;
    padding: clamp(1.5rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.95rem;
}

.stage-panel-copy h3 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin: 0;
}

.stage-panel-copy p {
    color: rgba(233, 243, 255, 0.8);
    margin: 0;
}

.stage-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.stage-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.stage-meta-card {
    border-radius: 18px;
    padding: 0.9rem 0.95rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-meta-card span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(190, 226, 255, 0.7);
    margin-bottom: 0.35rem;
}

.stage-meta-card strong {
    display: block;
    font-size: 0.94rem;
    color: #fff;
}

.stage-panel-visual--thumb {
    min-height: 360px;
}

.stage-visual-badge {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(4, 7, 14, 0.72);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.music-scanner-shell,
.video-scene-shell,
.songs-filter-shell {
    padding: clamp(1.5rem, 2vw, 2rem);
}

.signal-filter-summary {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-filter-summary h3 {
    margin: 0.15rem 0 0.35rem;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.signal-filter-summary p {
    color: rgba(233, 243, 255, 0.8);
}

.signal-filter-count {
    flex: 0 0 auto;
    text-align: right;
}

.signal-filter-count strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: #fff;
}

.signal-filter-count span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    color: rgba(190, 226, 255, 0.7);
    margin-top: 0.45rem;
}

.signal-filter-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
}

.signal-filter-button {
    width: auto;
    min-width: 170px;
}

.signal-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.signal-filter-item {
    min-height: 135px;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(8, 11, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.22);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.signal-filter-item:hover,
.signal-filter-item:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(141, 229, 255, 0.4);
    background: rgba(12, 18, 31, 0.92);
}

.signal-filter-item.is-hidden {
    display: none;
}

.signal-filter-item__top {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.signal-filter-item__title {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.signal-filter-item__meta {
    color: rgba(220, 233, 247, 0.72);
    font-size: 0.85rem;
}

.signal-filter-item__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(88, 199, 250, 0.18);
    border: 1px solid rgba(88, 199, 250, 0.24);
    color: #d5f4ff;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .stage-panel-card {
        grid-template-columns: 1fr;
    }

    .stage-panel-visual,
    .stage-panel-visual--thumb {
        min-height: 260px;
    }

    .signal-filter-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .signal-filter-count {
        text-align: left;
    }

    .stage-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .music-scanner-shell,
    .video-scene-shell,
    .songs-filter-shell {
        padding: 1.1rem;
        border-radius: 24px;
    }

    .signal-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .signal-filter-button {
        min-width: calc(50% - 0.5rem);
        flex: 1 1 calc(50% - 0.5rem);
    }
}

@media (max-width: 575.98px) {
    .signal-filter-grid {
        grid-template-columns: 1fr;
    }

    .signal-filter-button {
        min-width: 100%;
        flex: 1 1 100%;
    }
}

/* Pass 25 — cinematic release detail pages */
.release-cinematic-page .release-showcase .cta-panel { position: relative; overflow: hidden; }
.release-cinematic-page .release-showcase .cta-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top left, rgba(95, 226, 255, 0.14), transparent 44%), radial-gradient(circle at bottom right, rgba(255, 168, 106, 0.12), transparent 38%); pointer-events: none; }
.release-cinema-section { position: relative; }
.release-cinema-shell { position: relative; padding: clamp(1.25rem, 2vw, 2rem); border-radius: 34px; background: linear-gradient(145deg, rgba(9, 18, 36, 0.9), rgba(5, 10, 22, 0.86)), rgba(6, 10, 20, 0.88); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32); overflow: hidden; }
.release-cinema-shell::before, .release-cinema-shell::after { content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%; pointer-events: none; opacity: 0.8; }
.release-cinema-shell::before { top: -160px; right: -120px; background: radial-gradient(circle, rgba(95, 226, 255, 0.18), transparent 70%); }
.release-cinema-shell::after { bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(255, 163, 96, 0.16), transparent 70%); }
.release-cinema-main { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr); gap: 1.25rem; align-items: stretch; margin-bottom: 1.25rem; }
.release-cinema-stage { --release-accent: rgba(95, 226, 255, 0.34); position: relative; min-height: 320px; border-radius: 28px; padding: clamp(1.4rem, 2.8vw, 2.2rem); background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)), radial-gradient(circle at top left, var(--release-accent), transparent 44%), rgba(5, 10, 22, 0.94); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 40px rgba(0,0,0,0.24); overflow: hidden; }
.release-cinema-stage__mesh { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 24px 24px; mask-image: radial-gradient(circle at center, rgba(0,0,0,0.95), transparent 85%); opacity: 0.16; pointer-events: none; }
.release-cinema-stage__content { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100%; justify-content: space-between; gap: 1.1rem; }
.release-cinema-kicker-row, .release-track-spotlight__meta, .release-cinema-meta { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.release-cinema-kicker, .release-cinema-scene-index, .release-cinema-meta span, .release-track-spotlight__meta span, .release-route-card__kicker { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.8rem; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); color: #e6f6ff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.release-cinema-stage h3 { font-size: clamp(1.75rem, 3.4vw, 3rem); line-height: 1.04; margin: 0; }
.release-cinema-stage p, .release-track-explorer__intro p, .release-route-card p { color: rgba(229, 240, 255, 0.86); }
.release-cinema-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.release-cinema-nav { display: grid; gap: 0.85rem; }
.release-scene-button, .release-track-button { position: relative; width: 100%; text-align: left; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); color: #fff; border-radius: 20px; padding: 1rem 1.05rem; transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
.release-scene-button span { display: block; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(205, 231, 255, 0.7); margin-bottom: 0.35rem; }
.release-scene-button strong { display: block; font-size: 1rem; font-weight: 700; line-height: 1.3; }
.release-scene-button:hover, .release-scene-button:focus-visible, .release-scene-button.is-active, .release-track-button:hover, .release-track-button:focus-visible, .release-track-button.is-active, .release-route-card:hover, .release-route-card:focus-visible { border-color: rgba(110, 228, 255, 0.38); background: rgba(110, 228, 255, 0.1); box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2); transform: translateY(-3px); }
.release-track-explorer { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 1.25rem; align-items: start; margin-bottom: 1.25rem; }
.release-track-explorer__intro { grid-column: 1 / -1; }
.release-track-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.release-track-button { font-size: 0.96rem; font-weight: 600; min-height: 72px; }
.release-track-spotlight { border-radius: 28px; background: linear-gradient(155deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)), rgba(4, 8, 18, 0.9); border: 1px solid rgba(255,255,255,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.release-route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.release-route-card { display: flex; flex-direction: column; gap: 0.8rem; min-height: 100%; padding: 1.15rem 1.15rem 1.2rem; border-radius: 22px; text-decoration: none; color: #fff; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.release-route-card strong { font-size: 1.06rem; line-height: 1.28; }
@media (max-width: 1199.98px) { .release-cinema-main, .release-track-explorer { grid-template-columns: 1fr; } }
@media (max-width: 767.98px) { .release-cinema-shell { padding: 1rem; border-radius: 24px; } .release-cinema-stage { min-height: 280px; border-radius: 22px; } .release-track-grid, .release-route-grid { grid-template-columns: 1fr; } .release-scene-button, .release-track-button, .release-route-card { transform: none !important; } }



/* Pass 26 — cinematic featured song chambers */
.featured-song-page .song-detail-hero::before {
    background:
        radial-gradient(circle at top left, rgba(0, 255, 255, 0.16), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 108, 178, 0.14), transparent 34%),
        radial-gradient(circle at 72% 12%, rgba(126, 116, 255, 0.16), transparent 24%);
}

.song-stage-shell--featured {
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: 32px;
}

.song-stage-nav {
    height: 100%;
    align-content: start;
}

.song-stage-button__meta {
    display: block;
    margin-top: 0.35rem;
    color: rgba(225, 237, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.45;
}

.song-stage-display {
    min-height: 100%;
}

.song-stage-panel {
    min-height: 100%;
}

.song-stage-visual {
    isolation: isolate;
    overflow: hidden;
}

.song-stage-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(5, 8, 15, 0.06), rgba(5, 8, 15, 0.78));
    z-index: 1;
}

.song-stage-visual--signal::before,
.song-stage-visual--ember::before,
.song-stage-visual--lunar::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(5, 8, 15, 0.08), rgba(5, 8, 15, 0.8));
}

.song-stage-visual--orbit::before {
    background:
        radial-gradient(circle at 78% 20%, rgba(118, 135, 255, 0.26), transparent 28%),
        linear-gradient(180deg, rgba(5, 8, 15, 0.08), rgba(5, 8, 15, 0.82));
}

.song-stage-visual--portal::before {
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 112, 184, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(5, 8, 15, 0.12), rgba(5, 8, 15, 0.84));
}

.song-stage-rings,
.song-stage-bars,
.song-stage-grid,
.song-stage-beacon,
.song-stage-portal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.song-stage-rings span,
.song-stage-portal span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    transform: translate(-50%, -50%);
}

.song-stage-rings span:nth-child(2),
.song-stage-portal span:nth-child(2) {
    width: 16rem;
    height: 16rem;
    opacity: 0.72;
}

.song-stage-rings span:nth-child(3),
.song-stage-portal span:nth-child(3) {
    width: 22rem;
    height: 22rem;
    opacity: 0.45;
}

.song-stage-rings span {
    animation: songStagePulse 6s ease-in-out infinite;
}

.song-stage-rings span:nth-child(2) { animation-delay: 1.1s; }
.song-stage-rings span:nth-child(3) { animation-delay: 2.2s; }

.song-stage-bars {
    display: flex;
    align-items: end;
    gap: 0.7rem;
    padding: 1.25rem;
    justify-content: flex-end;
}

.song-stage-bars span {
    width: 9px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(0,255,255,0.18));
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.25);
    animation: songStageBars 1.8s ease-in-out infinite;
}

.song-stage-bars span:nth-child(1) { height: 26%; }
.song-stage-bars span:nth-child(2) { height: 46%; animation-delay: 0.18s; }
.song-stage-bars span:nth-child(3) { height: 34%; animation-delay: 0.36s; }
.song-stage-bars span:nth-child(4) { height: 58%; animation-delay: 0.12s; }
.song-stage-bars span:nth-child(5) { height: 30%; animation-delay: 0.28s; }

.song-stage-grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9), transparent 78%);
    opacity: 0.28;
}

.song-stage-beacon {
    inset: auto 1.4rem 1.4rem auto;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    border: 1px solid rgba(146, 239, 255, 0.34);
    box-shadow: 0 0 0 18px rgba(146, 239, 255, 0.05), 0 0 30px rgba(146, 239, 255, 0.18);
}

.song-stage-portal {
    display: grid;
    place-items: center;
}

.song-stage-portal span {
    border-color: rgba(255, 255, 255, 0.18);
    animation: songPortalSpin 16s linear infinite;
}

.song-stage-portal span:nth-child(2) { animation-duration: 20s; animation-direction: reverse; }
.song-stage-portal span:nth-child(3) { animation-duration: 26s; }

.song-stage-copy {
    gap: 1.15rem;
}

.song-stage-jumps {
    margin-top: 0.25rem;
}

.song-stage-static {
    cursor: default;
}

.signal-stage-shell.song-stage-shell--featured[data-active-stage="signal"] {
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 255, 0.08) inset;
}

.signal-stage-shell.song-stage-shell--featured[data-active-stage="orbit"] {
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(128, 118, 255, 0.1) inset;
}

.signal-stage-shell.song-stage-shell--featured[data-active-stage="portal"] {
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 115, 184, 0.1) inset;
}

body.motion-minimal .song-stage-rings span,
body.motion-minimal .song-stage-bars span,
body.motion-minimal .song-stage-portal span {
    animation: none !important;
}

@keyframes songStagePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.35; }
    50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.82; }
}

@keyframes songStageBars {
    0%, 100% { transform: scaleY(0.8); opacity: 0.7; }
    50% { transform: scaleY(1.08); opacity: 1; }
}

@keyframes songPortalSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 991.98px) {
    .song-stage-shell--featured {
        padding: 1.15rem;
    }

    .song-stage-button__meta {
        font-size: 0.86rem;
    }
}


.signal-dock__modes { display: none; }
