/* ===== Self-hosted fonts (no external requests) ===== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/Inter-400.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/Inter-500.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/Inter-600.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/Inter-700.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('/assets/fonts/Inter-800.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    src: url('/assets/fonts/Inter-900.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/Orbitron-600.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/Orbitron-700.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 900;
    src: url('/assets/fonts/Orbitron-900.woff2') format('woff2');
    font-display: swap;
}

:root {
    --bg: #05050a;
    --ink: #20e6ff;
    --muted: #9aa7bd;
    --line: rgba(255, 255, 255, 0.14);
    --panel: rgba(9, 12, 22, 0.78);
    --panel-2: rgba(15, 19, 34, 0.92);
    --cyan: #20e6ff;
    --pink: #ff2d8f;
    --violet: #8d62ff;
    --lime: #c9ff4d;
    --gold: #ffd36a;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.54);
    --heading: 'Orbitron', sans-serif;
    --body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ===== Accessibility: focus, skip link, screen-reader text ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 0.75rem;
    top: -100%;
    z-index: 200;
    padding: 0.7rem 1.1rem;
    border-radius: 6px;
    background: var(--cyan);
    color: #02040a;
    font: 800 var(--body);
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus-visible {
    top: 0.75rem;
    outline: 2px solid var(--lime);
    outline-offset: 2px;
}

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 2px;
    border-radius: 2px;
}
:focus:not(:focus-visible) {
    outline: none;
}
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: #ff7a9e;
    border-width: 2px;
}
a:focus-visible {
    outline-offset: 3px;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: var(--body);
    background: linear-gradient(180deg, #6b2da0 0%, #000 75%, #000 100%);
    background-attachment: fixed;
    padding-bottom: 78px;
    overflow-x: hidden;
    overflow-x: clip;
}

/* Background logo — fixed layer, scaled down to 90% of its cover size. */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: url('/assets/images/logo-background.png') right center / contain no-repeat;
    transform: scale(0.6986);
    transform-origin: right center;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0 92%, rgba(32,230,255,0.08) 92% 93%, transparent 93%);
    background-size: 100% 7px;
    opacity: 0.25;
    z-index: 1;
}

a { color: inherit; }
/* Anti-spam honeypot — invisible to humans, only bots fill it in. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
/* Mobile: allow wide grids to shrink to their container */
.catalog-grid, .song-grid { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll table { min-width: 560px; }

main, .site-nav, .site-footer { position: relative; z-index: 2; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 0.4rem;
    min-height: 76px;
    padding: 0 5vw;
background: linear-gradient(90deg, rgba(107, 45, 160, 0.96) 0%, rgba(74, 30, 116, 0.96) 100%);
    border-bottom: 1px solid rgba(32,230,255,0.18);
    backdrop-filter: blur(18px);
}
.logo {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}
.logo-banner {
    display: block;
    width: clamp(150px, 18vw, 250px);
    height: 46px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 0 18px rgba(32,230,255,0.28));
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.nav-links a {
    display: inline-block;
    color: #f2efff;
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    min-height: 44px;
    line-height: 1.2;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-links a:hover {
    color: var(--ink);
    border-color: rgba(32,230,255,0.55);
    background: rgba(32, 230, 255, 0.08);
    box-shadow: 0 0 16px rgba(32,230,255,0.18);
}
.nav-pill {
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(141,98,255,0.5);
    border-radius: 999px;
    color: #e2d9ff !important;
    background: rgba(141,98,255,0.13);
}
.hamburger {
    display: none;
    min-width: 48px;
    min-height: 48px;
    padding: 0.6rem;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
}

/* ===== Accessibility options ===== */
.a11y-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    margin-left: 1rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #f2efff;
    font: 800 0.76rem/1 var(--body);
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.a11y-toggle:hover,
.a11y-toggle[aria-expanded="true"] {
    color: var(--ink);
    border-color: rgba(32,230,255,0.55);
    background: rgba(32,230,255,0.08);
}
.a11y-toggle-icon {
    font-family: var(--heading);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.a11y-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 5vw;
    z-index: 60;
    display: grid;
    gap: 0.9rem;
    width: min(340px, calc(100vw - 2rem));
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(32,230,255,0.35);
    border-radius: 12px;
    background: rgba(6,8,16,0.98);
    box-shadow: 0 18px 44px rgba(0,0,0,0.6);
}
.a11y-title {
    margin: 0;
    color: var(--ink);
    font: 900 1rem var(--heading);
    text-transform: uppercase;
}
.a11y-copy { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
.a11y-group { display: grid; gap: 0.5rem; }
.a11y-group-label { color: var(--muted); font-weight: 800; font-size: 0.85rem; }
.a11y-font-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.a11y-font-row button {
    min-width: 48px;
    min-height: 48px;
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: var(--ink);
    font: 700 1rem var(--body);
    cursor: pointer;
}
.a11y-font-row button.is-active {
    border-color: var(--cyan);
    background: rgba(32,230,255,0.18);
    box-shadow: 0 0 0 1px var(--cyan);
}
.a11y-checks label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    color: #e2e9f5;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}
.a11y-checks input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--cyan);
    flex: none;
}
.a11y-panel .btn { justify-self: start; }

/* Nav dropdown toggles are real <button>s for keyboard/screen readers. */
.nav-drop-toggle {
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    min-height: 44px;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    color: #f2efff;
    font: 800 0.76rem/1 var(--body);
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-drop-toggle:hover,
.nav-drop.open .nav-drop-toggle {
    color: var(--ink);
    border-color: rgba(32,230,255,0.55);
    background: rgba(32,230,255,0.08);
    box-shadow: 0 0 16px rgba(32,230,255,0.18);
}
@media (max-width: 960px) {
    .a11y-toggle-label { display: none; }
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: clamp(4rem, 7vw, 7rem) 5vw;
    overflow: hidden;
}
.stage-lights {
    position: absolute;
    inset: 0;
    background:
        conic-gradient(from 180deg at 18% 0%, rgba(32,230,255,0.16), transparent 15%, rgba(255,45,143,0.14), transparent 38%),
        radial-gradient(circle at 52% 52%, rgba(201,255,77,0.08), transparent 22rem);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero-copy h1,
.page-header h1,
.page-header h2 {
    margin: 0;
    font: 900 clamp(3.4rem, 8.8vw, 8.2rem)/0.86 var(--heading);
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(32,230,255,0.16);
}
.lead {
    max-width: 670px;
    color: #d7e1f0;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.7;
}
.hero-actions, .cta-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.12rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
}
.btn.primary {
    border: 0;
    color: #02040a;
    background: linear-gradient(135deg, var(--cyan), var(--lime));
    box-shadow: 0 0 40px rgba(32,230,255,0.25);
}
.btn.secondary {
    border-color: rgba(255,45,143,0.35);
    background: linear-gradient(135deg, rgba(255,45,143,0.22), rgba(141,98,255,0.14));
}
.btn.ghost { border-color: rgba(255,255,255,0.2); }

.signal-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 2rem;
}
.signal-strip span, .bio-tags span {
    padding: 0.44rem 0.7rem;
    border: 1px solid rgba(32,230,255,0.25);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(32,230,255,0.06);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-tech {
    position: relative;
    min-height: 540px;
    border: 1px solid rgba(32,230,255,0.22);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%), rgba(5,8,16,0.72);
    box-shadow: var(--shadow), inset 0 0 70px rgba(32,230,255,0.08);
    overflow: hidden;
}
.hero-visualizer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-mascot {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 48%;
    width: min(250px, 42%);
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 24px 34px rgba(0,0,0,0.56)) drop-shadow(0 0 26px rgba(32,230,255,0.18));
    pointer-events: none;
}
.record {
    position: absolute;
    width: 210px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, #05060c 0 14%, var(--pink) 15% 17%, #090b12 18% 30%, #111520 31% 32%, #05060c 33% 100%);
    box-shadow: 0 0 42px rgba(255,45,143,0.18);
    animation: spin 9s linear infinite;
}
.left-record { left: 6%; bottom: 14%; }
.right-record { right: 7%; top: 13%; animation-duration: 7s; }
.mixer {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(300px, 44vw);
    height: 190px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    box-shadow: inset 0 0 30px rgba(0,0,0,0.4);
}
.mixer span {
    position: absolute;
    bottom: 26px;
    width: 8px;
    height: 85px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--cyan), var(--pink));
    animation: fader 1.6s ease-in-out infinite alternate;
}
.mixer span:nth-child(1) { left: 24%; animation-delay: 0.1s; }
.mixer span:nth-child(2) { left: 39%; animation-delay: 0.5s; }
.mixer span:nth-child(3) { left: 55%; animation-delay: 0.2s; }
.mixer span:nth-child(4) { left: 70%; animation-delay: 0.8s; }
.spectrum-bars, .wave-rail {
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: 34px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 5px;
    height: 100px;
}
.spectrum-bars span, .wave-rail span {
    width: 5px;
    height: 18%;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--lime), var(--cyan), var(--pink));
    opacity: 0.75;
    animation: eq 1.2s ease-in-out infinite alternate;
}
.spectrum-bars span:nth-child(3n), .wave-rail span:nth-child(3n) { animation-duration: 0.75s; }
.spectrum-bars span:nth-child(4n), .wave-rail span:nth-child(4n) { animation-duration: 1.7s; }
.spectrum-bars span:nth-child(5n), .wave-rail span:nth-child(5n) { animation-delay: 0.35s; }
body:not(.is-playing) .spectrum-bars span,
body:not(.is-playing) .wave-rail span { animation-play-state: paused; opacity: 0.26; }

.section { padding: clamp(3.5rem, 6vw, 6rem) 5vw; }
.section-head { max-width: 900px; margin-bottom: 1.6rem; }
.section h2, .direct-contact h2 {
    margin: 0 0 0.7rem;
    font: 900 clamp(1.8rem, 4vw, 3.8rem)/1 var(--heading);
    text-transform: uppercase;
}
.section h1 {
    margin: 0 0 0.7rem;
    font: 900 clamp(3rem, 7vw, 5.5rem)/1 var(--heading);
    text-transform: uppercase;
}
.section p, .page-header p, .card p, .pricing-card li, .bio-card p, .artist-card p {
    color: var(--muted);
    line-height: 1.75;
}
.stream-panel, .card, .bio-card, .pricing-card, .contact-form, .radio-card, .now-playing-panel, .artist-card {
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}
.stream-panel { overflow: hidden; }
.panel-heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 54px;
    padding: 0 1rem;
    background: rgba(5,7,14,0.95);
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
}
.panel-heading a { margin-left: auto; color: var(--cyan); text-decoration: none; }
.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 18px var(--pink);
    animation: pulse 1.4s infinite;
}
.stream-frame { aspect-ratio: 16 / 9; background: #000; }
.stream-frame iframe { display: block; width: 100%; height: 100%; }

.radio-card {
    display: grid;
    grid-template-columns: 1fr auto minmax(180px, 280px);
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    background: linear-gradient(90deg, rgba(255,45,143,0.16), rgba(32,230,255,0.08)), var(--panel-2);
}
.round-play, .track-button {
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    box-shadow: 0 0 40px rgba(255,45,143,0.24);
}
.round-play { width: 78px; height: 78px; }
.round-play span, .track-button span {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #05050a;
    margin-left: 4px;
}
.is-playing .round-play span,
.track-card.playing .track-button span {
    width: 16px;
    height: 22px;
    border: solid #05050a;
    border-width: 0 5px;
    margin-left: 0;
}
.volume-wrap label { display: block; margin-bottom: 0.45rem; color: var(--muted); font-weight: 800; }
input[type="range"] { accent-color: var(--cyan); width: 100%; }

.track-list { display: grid; gap: 0.75rem; }
.track-card {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(32,230,255,0.14);
    border-radius: 8px;
    background: rgba(5,8,16,0.78);
}
.track-card.playing {
    border-color: rgba(201,255,77,0.75);
    box-shadow: 0 0 34px rgba(201,255,77,0.12);
}
.track-number { color: var(--cyan); font: 900 1rem var(--heading); }
.track-card h3 { margin: 0; font: 800 1rem var(--heading); }
.track-card p { margin: 0.2rem 0 0; }
.track-button { width: 46px; height: 46px; }
.track-button span { border-top-width: 7px; border-bottom-width: 7px; border-left-width: 11px; }
.now-playing-panel {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    margin-top: 1rem;
    padding: 1.3rem;
}
.now-playing-panel .wave-rail {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.2rem;
    height: 72px;
}

.discord-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 1.4rem;
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 1px solid rgba(88, 101, 242, 0.44);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(88,101,242,0.24), rgba(32,230,255,0.08)),
        var(--panel-2);
    box-shadow: var(--shadow), inset 0 0 80px rgba(88,101,242,0.08);
    overflow: hidden;
}
.discord-panel::after {
    content: '';
    position: absolute;
    inset: auto -10% -70% 45%;
    height: 220px;
    background: linear-gradient(90deg, transparent, rgba(201,255,77,0.18), transparent);
    transform: rotate(-8deg);
    pointer-events: none;
}
.discord-join {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.4rem;
    justify-items: center;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--ink);
    text-align: center;
    text-decoration: none;
    background: rgba(5,8,16,0.72);
}
.discord-join span {
    color: var(--cyan);
    font: 900 1.2rem var(--heading);
    text-transform: uppercase;
}
.discord-join small {
    color: var(--muted);
    font-weight: 800;
}

.crew-panel {
    display: grid;
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
    gap: clamp(1.2rem, 4vw, 2.4rem);
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    border: 1px solid rgba(255,211,106,0.34);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,211,106,0.14), rgba(32,230,255,0.06)), var(--panel-2);
    box-shadow: var(--shadow), inset 0 0 80px rgba(255,211,106,0.06);
}
.crew-badges {
    display: grid;
    gap: 1rem;
    justify-items: center;
}
.crew-badges a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.crew-badges img {
    display: block;
    width: 100%;
    max-width: 280px;
    justify-self: center;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.38);
}
.crew-badges img:nth-child(2) {
    max-width: 190px;
    border-radius: 50%;
    box-shadow: 0 0 44px rgba(32,230,255,0.28), 0 24px 60px rgba(0,0,0,0.38);
}
.crew-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}
.crew-links a {
    padding: 0.72rem 0.9rem;
    border: 1px solid rgba(32,230,255,0.28);
    border-radius: 6px;
    color: var(--cyan);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(32,230,255,0.07);
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
    gap: 1.4rem;
    align-items: center;
}
.mixcloud-stack { display: grid; gap: 0.8rem; }
.mixcloud-stack iframe {
    width: 100%;
    height: 142px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #080a12;
}
.cards, .pricing-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.card, .pricing-card, .contact-form, .bio-card, .artist-card { padding: clamp(1.2rem, 3vw, 2rem); }
.card h3, .pricing-card h3 { margin-top: 0; color: var(--ink); font-family: var(--heading); }
.clip-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border: 1px solid rgba(32,230,255,0.4);
    border-radius: 50%;
    color: var(--cyan);
    font: 900 0.9rem var(--heading);
}

.page-header { max-width: 1040px; padding: clamp(4rem, 7vw, 6rem) 5vw 1.5rem; }
.bio-layout, .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 1rem;
    align-items: start;
}
.split-frame {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
}
.split-half { min-width: 0; }
.story-photo {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 1.2rem;
    border: 1px solid rgba(32,230,255,0.35);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.bio-card { margin: 0; max-width: none; }
.artist-card {
    min-width: 0;
    text-align: center;
}
.artist-card h2,
.partner-card h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}
.artist-card h2 {
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}
.partner-card h3 {
    line-height: 1.15;
}
.artist-orb, .partner-card .avatar {
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    color: #03050c;
    background: linear-gradient(135deg, var(--cyan), var(--lime));
    font: 900 1.4rem var(--heading);
}
.bio-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem; margin: 1rem 0 1.4rem; }
.bio-facts {
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
    text-align: left;
}
.bio-facts li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bio-facts li:last-child { border-bottom: 0; }
.bio-facts span {
    color: var(--muted);
    font: 800 0.72rem var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.gallery-grid, .pricing-grid { padding: 2rem 5vw 4rem; }
.placeholder-img {
    min-height: 240px;
    display: grid;
    align-content: end;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(32,230,255,0.18);
    border-radius: 8px;
    background: radial-gradient(circle at 30% 20%, rgba(255,45,143,0.34), transparent 35%), radial-gradient(circle at 80% 12%, rgba(32,230,255,0.32), transparent 32%), linear-gradient(135deg, rgba(5,8,16,0.95), rgba(16,20,38,0.86));
}
.placeholder-img span { font: 900 1.15rem var(--heading); }
.placeholder-img small { color: var(--muted); }
.pricing-card.featured { border-color: rgba(201,255,77,0.55); transform: translateY(-8px); }
.price { color: var(--cyan); font: 900 1.9rem var(--heading); }
label { display: grid; gap: 0.45rem; color: var(--muted); font-weight: 800; }
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0.9rem;
    background: rgba(0,0,0,0.3);
    color: var(--ink);
    font: inherit;
}
.direct-contact { display: grid; gap: 1rem; }

.mail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 1rem;
    align-items: stretch;
}
.mail-panel, .account-card {
    border: 1px solid rgba(32,230,255,0.18);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(32,230,255,0.1), rgba(255,45,143,0.08)), var(--panel);
    box-shadow: var(--shadow);
    padding: clamp(1.3rem, 3vw, 2rem);
}
.mail-panel h2 {
    margin: 0 0 0.8rem;
    font: 900 clamp(1.6rem, 3vw, 3rem)/1 var(--heading);
    text-transform: uppercase;
}
.mail-account {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.8rem;
    padding: 0.85rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    background: rgba(0,0,0,0.22);
}
.mail-account span, .account-card span {
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.mail-account strong, .account-card h3 {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-family: var(--heading);
}
.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.account-card h3 {
    margin: 0.65rem 0;
    font-size: 1.1rem;
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 1rem;
    align-items: stretch;
}
.support-panel {
    border: 1px solid rgba(201,255,77,0.28);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(201,255,77,0.12), rgba(32,230,255,0.08)), var(--panel-2);
    box-shadow: var(--shadow), inset 0 0 80px rgba(201,255,77,0.05);
    padding: clamp(1.4rem, 3vw, 2.4rem);
}
.support-panel h2 {
    margin: 0 0 0.8rem;
    font: 900 clamp(1.8rem, 4vw, 3.8rem)/1 var(--heading);
    text-transform: uppercase;
}
.support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
}
.support-note {
    margin-top: 1rem;
    font-size: 0.9rem;
}
.disabled-link {
    opacity: 0.72;
    pointer-events: none;
}
.support-costs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.support-cost {
    border: 1px solid rgba(32,230,255,0.16);
    border-radius: 8px;
    background: rgba(5,8,16,0.78);
    box-shadow: var(--shadow);
    padding: clamp(1.1rem, 2.2vw, 1.6rem);
}
.support-cost span {
    color: var(--cyan);
    font: 900 0.85rem var(--heading);
}
.support-cost h3 {
    margin: 0.7rem 0;
    font-family: var(--heading);
}

.site-footer {
    padding: 3rem 5vw;
    background: rgba(3,5,12,0.88);
    border-top: 1px solid rgba(32,230,255,0.16);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
}
.footer-badges {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.footer-badges a {
    display: block;
}
.footer-art {
    max-width: 150px;
    border-radius: 8px;
    opacity: 0.92;
    box-shadow: 0 18px 42px rgba(0,0,0,0.34);
}
.footer-art-round {
    max-width: 92px;
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(32,230,255,0.24), 0 18px 42px rgba(0,0,0,0.34);
}
.footer-title { margin: 0; color: var(--ink); font: 900 1.1rem var(--heading); }
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem 0;
}
.social-links a { color: var(--cyan); font-weight: 900; text-decoration: none; }
.site-footer > p { text-align: center; color: var(--muted); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fader { from { height: 44px; } to { height: 120px; } }
@keyframes eq { 0% { height: 16%; transform: translateY(0); } 100% { height: 92%; transform: translateY(-3px); } }
@keyframes pulse { 50% { opacity: 0.34; } }

@media (max-width: 960px) {
    .home-hero, .split-showcase, .bio-layout, .contact-layout, .radio-card, .discord-panel, .crew-panel, .mail-layout, .account-grid, .support-layout, .support-costs, .split-frame { grid-template-columns: 1fr; }
    .hero-tech { min-height: 430px; }
    .cards, .pricing-grid, .gallery-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
}

@media (max-width: 760px) {
    body { padding-bottom: 0; }
    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 5vw;
        background: rgba(3,5,12,0.97);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: grid; gap: 5px; border: 0; background: transparent; }
    .hamburger span { width: 28px; height: 2px; background: var(--ink); }
    .logo-banner { width: 150px; height: 42px; }
    .record { width: 150px; }
    .mixer { width: 220px; }
    .hero-mascot { width: min(210px, 56%); }
    .footer-inner { flex-direction: column; text-align: center; }
}


/* ===== nav CTA (Create Your Own Music) ===== */
.nav-cta {
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(32,230,255,0.5);
    border-radius: 999px;
    color: var(--ink) !important;
    background: linear-gradient(135deg, rgba(32,230,255,0.22), rgba(201,255,77,0.18));
}
.nav-cta:hover { box-shadow: 0 0 22px rgba(32,230,255,0.4); }

/* ===== Nav dropdown ===== */
.nav-drop { position: relative; }
.nav-drop-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    margin: 0;
    padding: 0.45rem;
    list-style: none;
    background: rgba(6,8,16,0.98);
    border: 1px solid rgba(32,230,255,0.35);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.55);
    z-index: 50;
}
.nav-drop.open .nav-drop-menu { display: block; }
.nav-drop-menu a {
    display: block;
    width: 100%;
    white-space: nowrap;
    margin: 0;
}
@media (max-width: 760px) {
    .nav-drop-menu {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        margin: 0.25rem 0 0 1rem;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
    .nav-drop-menu a { white-space: normal; }
}

/* ===== Gallery cards ===== */
.gallery-item {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}
.gallery-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--ink);
}
.gallery-link img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}
.gallery-link:hover img { transform: scale(1.035); filter: brightness(1.12); }
.gallery-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 0.2rem;
    padding: 1.9rem 1rem 0.9rem;
    background: linear-gradient(transparent, rgba(3,5,12,0.92));
}
.gallery-cap span { font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; }
.gallery-cap small { color: var(--muted); font-size: 0.78rem; }

/* ===== Homepage stats strip ===== */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.3rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.stat-card:hover { border-color: rgba(32,230,255,0.45); transform: translateY(-2px); }
.stat-icon {
    font-weight: 900;
    color: var(--cyan);
    font-size: 1.1rem;
    min-width: 2.4rem;
}
.stat-card h3, .stat-card h2 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.stat-card p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
@media (max-width: 760px) {
    .stats-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME — refined, professional build
   ============================================================ */

/* Hero */
.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    align-content: center;
    min-height: min(82vh, 860px);
    padding: clamp(5rem, 10vw, 9rem) 5vw 6rem;
    overflow: hidden;
}
.hero-stage {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(32,230,255,0.14), transparent 34rem),
        radial-gradient(circle at 75% 20%, rgba(255,45,143,0.12), transparent 30rem);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    justify-items: start;
    text-align: left;
    max-width: 780px;
}
.home-hero .eyebrow { margin-bottom: 1rem; }
.home-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 1;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, var(--ink) 0%, var(--cyan) 45%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 60px rgba(32,230,255,0.25);
}
.hero-lead {
    max-width: 640px;
    margin: 1.6rem auto 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 30px;
    line-height: 1.3;
    text-align: center;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2.2rem;
}

/* Latest tracks strip */
.latest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.latest-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: clamp(1.1rem, 2vw, 1.6rem);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: var(--panel-2);
    box-shadow: var(--shadow);
}
.latest-card h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}
.latest-card .latest-meta { color: var(--muted); font-size: 0.82rem; }
.latest-card audio { width: 100%; }
@media (max-width: 980px) {
    .latest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .latest-grid { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.testimonial-card {
    padding: clamp(1.2rem, 2vw, 1.7rem);
    border: 1px solid rgba(255,45,143,0.28);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,45,143,0.08), rgba(32,230,255,0.05)), var(--panel-2);
    box-shadow: var(--shadow);
}
.testimonial-card p { margin: 0 0 1rem; color: var(--ink); line-height: 1.6; font-size: 0.95rem; }
.testimonial-card footer { color: var(--muted); font-size: 0.85rem; }
.testimonial-card footer strong { color: var(--cyan); }
@media (max-width: 860px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

/* Stats */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 5vw clamp(3rem, 5vw, 4.5rem);
}
.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    background: var(--panel);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.stat-card:hover { border-color: rgba(32,230,255,0.5); transform: translateY(-3px); }
.stat-icon { font: 900 1.1rem var(--heading); color: var(--cyan); min-width: 2.4rem; }
.stat-card h3, .stat-card h2 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.stat-card p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.55; }

/* Services */
.services-section .service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    max-width: 1100px;
}
.service-card {
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    background: var(--panel-2);
    box-shadow: var(--shadow);
}
.service-card h3 { margin: 0 0 0.6rem; font-size: 1.12rem; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* Community */
.community-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: clamp(1.4rem, 4vw, 2.6rem);
    align-items: center;
    padding: clamp(1.6rem, 3vw, 2.6rem);
    border: 1px solid rgba(88,101,242,0.4);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(88,101,242,0.18), rgba(32,230,255,0.08)), var(--panel-2);
    box-shadow: var(--shadow), inset 0 0 80px rgba(88,101,242,0.08);
}
.community-panel p { color: var(--muted); line-height: 1.65; }
.community-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }
.community-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.community-badges img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--shadow);
}

/* CTA band */
.cta-band {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    margin: clamp(3rem, 5vw, 5rem) 5vw;
    padding: clamp(1.8rem, 4vw, 3rem);
    border: 1px solid rgba(201,255,77,0.34);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201,255,77,0.12), rgba(32,230,255,0.07)), var(--panel-2);
    box-shadow: var(--shadow);
}
.cta-band h2 { margin: 0 0 0.4rem; }
.cta-band p { margin: 0; color: var(--muted); }

/* Responsive home */
@media (max-width: 860px) {
    .stats-section, .services-section .service-grid { grid-template-columns: 1fr; }
    .community-panel { grid-template-columns: 1fr; }
    .cta-band { justify-content: center; text-align: center; }
}
/* ---- Collection page (replaces Gallery) ---- */
.collection-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0 0 1.2rem;
}
.collection-search input {
    width: min(420px, 100%);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(154, 167, 189, 0.25);
    border-radius: 10px;
    color: var(--ink);
    padding: 0.7rem 0.9rem;
    font: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.collection-search input:focus {
    border-color: var(--cyan);
}
.collection-meta {
    color: var(--muted);
    font-size: 0.92rem;
}
.collection-player {
    display: grid;
    grid-template-columns: auto 1fr 48px;
    gap: 0.8rem;
    align-items: center;
    background: linear-gradient(120deg, rgba(32, 230, 255, 0.08), rgba(255, 45, 143, 0.08));
    border: 1px solid rgba(32, 230, 255, 0.35);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
}
.collection-play-icon {
    color: var(--cyan);
    font-size: 1.1rem;
    width: 1.4em;
    text-align: center;
}
.collection-player-title {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.collection-player-track {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.collection-progress {
    height: 5px;
    border-radius: 4px;
    background: rgba(154, 167, 189, 0.2);
    overflow: hidden;
}
.collection-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    transition: width 0.2s linear;
}
.collection-time {
    font-size: 0.8rem;
    color: var(--muted);
}
.collection-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.collection-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(154, 167, 189, 0.15);
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}
.collection-row:hover {
    border-color: rgba(32, 230, 255, 0.4);
    background: rgba(32, 230, 255, 0.05);
}
.collection-play {
    background: rgba(32, 230, 255, 0.1);
    border: 1px solid rgba(32, 230, 255, 0.4);
    color: var(--cyan);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.1s;
}
.collection-play:hover {
    background: rgba(32, 230, 255, 0.25);
    transform: scale(1.05);
}
.collection-row-title {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.collection-row-meta {
    color: var(--muted);
    font-size: 0.85rem;
    text-align: right;
}
.collection-empty {
    color: var(--muted);
    text-align: center;
    padding: 2.5rem 1rem;
}
@media (max-width: 560px) {
    .collection-row-meta { display: none; }
}

/* ===== GDPR cookie banner ===== */
.cookie-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1000;
    max-width: 520px;
    margin: 0 auto;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(32, 230, 255, 0.3);
    border-radius: 10px;
    background: rgba(8, 10, 18, 0.98);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    font-size: 0.9rem;
    line-height: 1.5;
}
.cookie-banner p { margin: 0 0 0.8rem; }
.cookie-banner .cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-banner .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }
.cookie-banner a { color: var(--cyan); }

.privacy-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.6rem 0 1rem;
    font-size: 0.9rem;
}
.privacy-cookie-table th, .privacy-cookie-table td {
    text-align: left;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--line);
    vertical-align: top;
}
.privacy-cookie-table th { color: var(--ink); font-weight: 800; }
.privacy-cookie-table td:first-child { white-space: nowrap; color: var(--cyan); }

.consent-check {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.45;
}
.consent-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--cyan); flex: none; }
.consent-check a { color: var(--cyan); }
.consent-check input:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 2px;
}

/* ===== Accessibility: reduced motion ===== */
@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;
    }
}

/* ============================================================
   Accessibility overrides — driven by /assets/js/a11y.js
   (data-* attributes on <html>) and prefers-contrast
   ============================================================ */
html[data-a11y-contrast="on"] {
    --muted: #dbe6f5;
    --ink: #7ff2ff;
    --line: rgba(255, 255, 255, 0.4);
    --panel: rgba(6, 9, 18, 0.98);
    --panel-2: rgba(10, 14, 28, 0.98);
}
html[data-a11y-contrast="on"] body {
    background: #05050a;
}
html[data-a11y-contrast="on"] .site-nav {
    background: linear-gradient(90deg, rgb(43, 18, 64) 0%, rgb(34, 14, 53) 100%);
}
html[data-a11y-contrast="on"] .nav-links a,
html[data-a11y-contrast="on"] .nav-drop-toggle,
html[data-a11y-contrast="on"] .a11y-toggle {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}
html[data-a11y-contrast="on"] .section p,
html[data-a11y-contrast="on"] .page-header p,
html[data-a11y-contrast="on"] .section-head p,
html[data-a11y-contrast="on"] .card p,
html[data-a11y-contrast="on"] .pricing-card li,
html[data-a11y-contrast="on"] .bio-card p,
html[data-a11y-contrast="on"] .artist-card p,
html[data-a11y-contrast="on"] .testimonial-card footer,
html[data-a11y-contrast="on"] .latest-meta,
html[data-a11y-contrast="on"] .catalog-meta,
html[data-a11y-contrast="on"] .collection-row-meta,
html[data-a11y-contrast="on"] .collection-time,
html[data-a11y-contrast="on"] .support-note,
html[data-a11y-contrast="on"] .site-footer > p {
    color: #e2e9f5;
}
html[data-a11y-contrast="on"] .hero-lead { color: #ffec99; }
html[data-a11y-contrast="on"] .lead { color: #ffffff; }
html[data-a11y-contrast="on"] .community-panel p,
html[data-a11y-contrast="on"] .cta-band p { color: #e2e9f5; }

html[data-a11y-underline="on"] a {
    text-decoration: underline !important;
}

html[data-a11y-motion="on"] *,
html[data-a11y-motion="on"] *::before,
html[data-a11y-motion="on"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

@media (prefers-contrast: more) {
    :root {
        --muted: #dbe6f5;
        --line: rgba(255, 255, 255, 0.4);
        --panel: rgba(6, 9, 18, 0.98);
        --panel-2: rgba(10, 14, 28, 0.98);
    }
    .section p,
    .page-header p,
    .card p,
    .pricing-card li,
    .bio-card p,
    .artist-card p,
    .site-footer > p,
    .hero-lead {
        color: #e2e9f5;
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
    }
}
