/* ===================================================================
   arcano&paranoide // MUSIC DIVISION
   Dark Occultist Conspiracy System Brutalist
   =================================================================== */

/* ===== PALETTE ===== */
:root {
    /* Void & Surface */
    --void:        #050008;
    --surface:     #0a0015;
    --surface-2:   #110022;
    --surface-3:   #1a0033;
    --surface-4:   #220044;

    /* Accent Spectrum: pink -> violet -> purple -> indigo -> cyan */
    --pink:        #FF1493;
    --hot-pink:    #FF2D8A;
    --violet:      #8B00FF;
    --purple:      #9B30FF;
    --indigo:      #4B0082;
    --deep-indigo: #2E0054;
    --cyan:        #00FFFF;
    --pale-cyan:   #00CED1;

    /* Utility */
    --text:        #D4C6E8;
    --text-dim:    #7B6B94;
    --text-bright: #F0E6FF;
    --white:       #FFFFFF;
    --danger:      #FF0044;

    /* Gradients */
    --grad-main:   linear-gradient(135deg, var(--pink) 0%, var(--violet) 40%, var(--indigo) 70%, var(--cyan) 100%);
    --grad-subtle: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 50%, var(--surface-2) 100%);
    --grad-glow:   linear-gradient(135deg, var(--pink) 0%, var(--violet) 50%, var(--cyan) 100%);

    /* Borders */
    --border:      3px solid var(--surface-4);
    --border-glow: 3px solid var(--pink);
    --border-thick: 4px solid var(--violet);

    /* Typography */
    --font-display: 'Chakra Petch', 'Impact', sans-serif;
    --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

    /* Shadows */
    --shadow-brutal:  6px 6px 0 var(--indigo);
    --shadow-glow:    0 0 30px rgba(139, 0, 255, 0.3), 0 0 60px rgba(255, 20, 147, 0.15);
    --shadow-pink:    0 0 20px rgba(255, 20, 147, 0.4);
    --shadow-cyan:    0 0 20px rgba(0, 255, 255, 0.3);

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2rem;
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
    --sp-3xl: 6rem;
    --sp-4xl: 8rem;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    scrollbar-color: var(--violet) var(--void);
}

body {
    font-family: var(--font-mono);
    background: var(--void);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-bright);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

::selection {
    background: var(--pink);
    color: var(--void);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* ===== BACKGROUND ===== */
.void-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: var(--void);
}

#occultCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Scanline overlay */
.scanlines {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

@media (max-width: 768px) {
    .container { padding: 0 var(--sp-md); }
}

/* ===== NAVIGATION ===== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 0, 8, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--surface-3);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: var(--sp-sm) var(--sp-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--violet);
    object-fit: cover;
    display: block;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.02em;
    position: relative;
}

/* Nav glitch: subtler, faster cycle */
.logo-name.glitch::before { animation: glitchPink 3s infinite; opacity: 0.5; }
.logo-name.glitch::after  { animation: glitchCyan 3s infinite; opacity: 0.4; }

.logo-division {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: var(--sp-xs);
    align-items: center;
}

.nav-link {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.2s, background 0.2s;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    background: rgba(0, 255, 255, 0.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--pink);
    transition: all 0.3s ease;
    display: block;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--surface);
        border-left: 3px solid var(--violet);
        flex-direction: column;
        padding: var(--sp-4xl) var(--sp-lg);
        gap: var(--sp-sm);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active { right: 0; }

    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
    }

    .hamburger { display: flex; }

    .nav-logo-text { display: none; }
    .glitch-img--nav { width: 32px; height: 32px; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--sp-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--cyan);
    padding: 0.4rem 1rem;
    border: 2px solid var(--cyan);
    margin-bottom: var(--sp-lg);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { border-color: var(--cyan); box-shadow: 0 0 8px rgba(0, 255, 255, 0.2); }
    50% { border-color: var(--pink); box-shadow: 0 0 16px rgba(255, 20, 147, 0.3); }
}

/* ===== GLITCH SHADER (reusable) ===== */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Pink layer — clips to top portion, drifts left */
.glitch::before {
    color: var(--pink);
    z-index: -1;
    clip-path: inset(0 0 60% 0);
    animation: glitchPink 4s infinite;
    opacity: 0.7;
}

/* Cyan layer — clips to bottom portion, drifts right */
.glitch::after {
    color: var(--cyan);
    z-index: -2;
    clip-path: inset(60% 0 0 0);
    animation: glitchCyan 4s infinite;
    opacity: 0.6;
}

@keyframes glitchPink {
    0%, 85%, 100% { transform: translate(0); clip-path: inset(0 0 60% 0); }
    86%  { transform: translate(-3px, 1px); clip-path: inset(10% 0 50% 0); }
    88%  { transform: translate(2px, -1px); clip-path: inset(30% 0 30% 0); }
    89%  { transform: translate(-4px, 2px); clip-path: inset(0 0 55% 0); }
    90%  { transform: translate(0); clip-path: inset(0 0 60% 0); }
    93%  { transform: translate(-2px, 0); clip-path: inset(5% 0 65% 0); }
    94%  { transform: translate(3px, 1px); clip-path: inset(20% 0 40% 0); }
    95%  { transform: translate(0); clip-path: inset(0 0 60% 0); }
}

@keyframes glitchCyan {
    0%, 83%, 100% { transform: translate(0); clip-path: inset(60% 0 0 0); }
    84%  { transform: translate(3px, -1px); clip-path: inset(50% 0 10% 0); }
    86%  { transform: translate(-2px, 2px); clip-path: inset(40% 0 20% 0); }
    87%  { transform: translate(4px, -2px); clip-path: inset(55% 0 5% 0); }
    88%  { transform: translate(0); clip-path: inset(60% 0 0 0); }
    91%  { transform: translate(2px, 1px); clip-path: inset(65% 0 0% 0); }
    92%  { transform: translate(-3px, -1px); clip-path: inset(45% 0 15% 0); }
    93%  { transform: translate(0); clip-path: inset(60% 0 0 0); }
}

/* ===== GLITCH IMAGE SHADER ===== */
.glitch-img {
    position: relative;
    overflow: hidden;
}

.glitch-img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.glitch-img-pink {
    filter: sepia(1) saturate(20) hue-rotate(300deg) brightness(1.1);
    mix-blend-mode: lighten;
    opacity: 0;
    clip-path: inset(0 0 55% 0);
    animation: glitchImgPink 4s infinite;
}

.glitch-img-cyan {
    filter: sepia(1) saturate(20) hue-rotate(140deg) brightness(1.2);
    mix-blend-mode: lighten;
    opacity: 0;
    clip-path: inset(55% 0 0 0);
    animation: glitchImgCyan 4s infinite;
}

@keyframes glitchImgPink {
    0%, 84%, 90%, 100% { transform: translate(0); clip-path: inset(0 0 55% 0); opacity: 0; }
    85% { transform: translate(-4px, 2px); clip-path: inset(10% 0 40% 0); opacity: 0.7; }
    86% { transform: translate(3px, -1px); clip-path: inset(25% 0 30% 0); opacity: 0.6; }
    87% { transform: translate(-5px, 3px); clip-path: inset(0 0 50% 0); opacity: 0.8; }
    88% { transform: translate(2px, 0); clip-path: inset(5% 0 60% 0); opacity: 0.5; }
    89% { transform: translate(0); clip-path: inset(0 0 55% 0); opacity: 0; }
    94% { transform: translate(-3px, 1px); clip-path: inset(15% 0 45% 0); opacity: 0.65; }
    95% { transform: translate(4px, -2px); clip-path: inset(5% 0 55% 0); opacity: 0.55; }
    96% { transform: translate(0); clip-path: inset(0 0 55% 0); opacity: 0; }
}

@keyframes glitchImgCyan {
    0%, 82%, 88%, 100% { transform: translate(0); clip-path: inset(55% 0 0 0); opacity: 0; }
    83% { transform: translate(4px, -2px); clip-path: inset(45% 0 10% 0); opacity: 0.6; }
    84% { transform: translate(-3px, 3px); clip-path: inset(50% 0 15% 0); opacity: 0.7; }
    85% { transform: translate(5px, -3px); clip-path: inset(40% 0 5% 0); opacity: 0.8; }
    86% { transform: translate(-2px, 1px); clip-path: inset(55% 0 0 0); opacity: 0.5; }
    87% { transform: translate(0); clip-path: inset(55% 0 0 0); opacity: 0; }
    92% { transform: translate(3px, -1px); clip-path: inset(50% 0 5% 0); opacity: 0.6; }
    93% { transform: translate(-4px, 2px); clip-path: inset(40% 0 15% 0); opacity: 0.7; }
    94% { transform: translate(0); clip-path: inset(55% 0 0 0); opacity: 0; }
}

/* Nav logo image: small, circular — keep border-radius on layers */
.glitch-img--nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.glitch-img--nav .nav-logo-img,
.glitch-img--nav .glitch-img-layer {
    border-radius: 50%;
}

.glitch-img--nav .nav-logo-img {
    width: 100%;
    height: 100%;
}

/* Vinyl center: layers must match the circular clip */
.vinyl-center .glitch-img-layer {
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
    width: 115%;
    height: 115%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Vinyl layers use different animation offset for visual variety */
.vinyl-center .glitch-img-pink {
    animation: glitchImgPinkVinyl 5s infinite;
}
.vinyl-center .glitch-img-cyan {
    animation: glitchImgCyanVinyl 5s infinite;
}

@keyframes glitchImgPinkVinyl {
    0%, 80%, 87%, 100% { transform: translate(-50%, -50%); opacity: 0; }
    81% { transform: translate(calc(-50% - 6px), calc(-50% + 3px)); opacity: 0.8; }
    82% { transform: translate(calc(-50% + 4px), calc(-50% - 2px)); opacity: 0.7; }
    83% { transform: translate(calc(-50% - 5px), calc(-50% + 4px)); opacity: 0.9; }
    84% { transform: translate(calc(-50% + 2px), -50%); opacity: 0.6; }
    85% { transform: translate(-50%, -50%); opacity: 0; }
    92% { transform: translate(calc(-50% - 4px), calc(-50% + 2px)); opacity: 0.7; }
    93% { transform: translate(calc(-50% + 3px), calc(-50% - 1px)); opacity: 0.6; }
    94% { transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes glitchImgCyanVinyl {
    0%, 78%, 85%, 100% { transform: translate(-50%, -50%); opacity: 0; }
    79% { transform: translate(calc(-50% + 6px), calc(-50% - 3px)); opacity: 0.7; }
    80% { transform: translate(calc(-50% - 4px), calc(-50% + 4px)); opacity: 0.8; }
    81% { transform: translate(calc(-50% + 5px), calc(-50% - 4px)); opacity: 0.9; }
    82% { transform: translate(calc(-50% - 2px), calc(-50% + 1px)); opacity: 0.5; }
    83% { transform: translate(-50%, -50%); opacity: 0; }
    90% { transform: translate(calc(-50% + 3px), calc(-50% - 2px)); opacity: 0.65; }
    91% { transform: translate(calc(-50% - 5px), calc(-50% + 3px)); opacity: 0.7; }
    92% { transform: translate(-50%, -50%); opacity: 0; }
}

/* ===== HERO TITLE (uses glitch children) ===== */
.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.92;
    margin-bottom: var(--sp-lg);
    position: relative;
    color: var(--white);
}

.glitch-hero {
    display: flex;
    flex-direction: column;
}

.glitch-line {
    display: block;
}

/* Hero-specific: bigger, more aggressive glitch + text-shadow burst */
.glitch-hero .glitch::before { animation: glitchPinkHero 5s infinite; }
.glitch-hero .glitch::after  { animation: glitchCyanHero 5s infinite; }

@keyframes glitchPinkHero {
    0%, 82%, 100% { transform: translate(0); clip-path: inset(0 0 60% 0); opacity: 0.7; }
    83%  { transform: translate(-5px, 2px); clip-path: inset(5% 0 45% 0); opacity: 0.9; }
    84%  { transform: translate(3px, -1px); clip-path: inset(25% 0 35% 0); opacity: 0.8; }
    85%  { transform: translate(-6px, 3px); clip-path: inset(0 0 50% 0); opacity: 1; }
    86%  { transform: translate(2px, 0); clip-path: inset(15% 0 55% 0); opacity: 0.7; }
    87%  { transform: translate(0); clip-path: inset(0 0 60% 0); opacity: 0.7; }
    92%  { transform: translate(-3px, 1px); clip-path: inset(10% 0 60% 0); opacity: 0.85; }
    93%  { transform: translate(4px, -2px); clip-path: inset(30% 0 25% 0); opacity: 0.9; }
    94%  { transform: translate(0); clip-path: inset(0 0 60% 0); opacity: 0.7; }
}

@keyframes glitchCyanHero {
    0%, 80%, 100% { transform: translate(0); clip-path: inset(60% 0 0 0); opacity: 0.6; }
    81%  { transform: translate(5px, -2px); clip-path: inset(45% 0 5% 0); opacity: 0.8; }
    82%  { transform: translate(-3px, 3px); clip-path: inset(50% 0 15% 0); opacity: 0.9; }
    83%  { transform: translate(6px, -3px); clip-path: inset(55% 0 0 0); opacity: 1; }
    84%  { transform: translate(-2px, 1px); clip-path: inset(60% 0 5% 0); opacity: 0.7; }
    85%  { transform: translate(0); clip-path: inset(60% 0 0 0); opacity: 0.6; }
    90%  { transform: translate(3px, -1px); clip-path: inset(50% 0 10% 0); opacity: 0.8; }
    91%  { transform: translate(-4px, 2px); clip-path: inset(40% 0 20% 0); opacity: 0.85; }
    92%  { transform: translate(0); clip-path: inset(60% 0 0 0); opacity: 0.6; }
}

/* Occasional text-shadow jolt on the hero lines */
.glitch-hero .glitch {
    animation: heroTextJolt 6s infinite;
}

@keyframes heroTextJolt {
    0%, 90%, 100% { text-shadow: none; transform: translate(0); }
    91% { text-shadow: -3px 0 var(--pink), 3px 0 var(--cyan); transform: translateX(-2px); }
    92% { text-shadow: 4px 0 var(--pink), -4px 0 var(--cyan); transform: translateX(3px); }
    93% { text-shadow: -2px 0 var(--violet), 2px 0 var(--cyan); transform: translateX(-1px); }
    94% { text-shadow: none; transform: translate(0); }
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    margin-bottom: var(--sp-xl);
}

.hero-actions {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: var(--sp-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xs);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
}

/* ===== VINYL ===== */
.vinyl-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        var(--surface-3) 0%, var(--surface-3) 18%,
        var(--surface) 18%, var(--surface) 19%,
        var(--surface-2) 19%, var(--surface-2) 38%,
        var(--surface) 38%, var(--surface) 39%,
        var(--surface-3) 39%, var(--surface-3) 58%,
        var(--surface) 58%, var(--surface) 59%,
        var(--surface-2) 59%, var(--surface-2) 78%,
        var(--surface) 78%, var(--surface) 79%,
        var(--surface-3) 79%, var(--surface-3) 100%
    );
    border: 3px solid var(--surface-4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.4s;
}

.vinyl-record:hover {
    box-shadow: var(--shadow-glow);
}

.vinyl-record.spinning {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--surface);
    border: 2px solid var(--violet);
}

.vinyl-logo {
    width: 115%;
    height: 115%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    clip-path: circle(50% at 50% 50%);
}

.vinyl-glow {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 0, 255, 0.15) 0%, rgba(255, 20, 147, 0.08) 40%, transparent 70%);
    pointer-events: none;
    animation: vinylGlow 4s ease-in-out infinite;
}

@keyframes vinylGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 3px solid var(--violet);
    background: transparent;
    color: var(--text-bright);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-main);
    opacity: 0;
    transition: opacity 0.25s;
    z-index: -1;
}

.btn:hover::before { opacity: 1; }

.btn:hover {
    color: var(--white);
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brutal);
}

.btn-primary {
    background: var(--grad-main);
    border-color: var(--pink);
    color: var(--white);
}

.btn-primary:hover {
    box-shadow: var(--shadow-pink), var(--shadow-brutal);
}

.btn-ghost {
    background: transparent;
    border-color: var(--surface-4);
    color: var(--text-dim);
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-icon {
    font-size: 0.9rem;
}

/* ===== SECTION LAYOUT ===== */
.section {
    padding: var(--sp-4xl) 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    margin-bottom: var(--sp-3xl);
}

.section-code {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0.15em;
    padding: 0.3rem 0.7rem;
    border: 2px solid var(--pink);
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    white-space: nowrap;
    flex-shrink: 0;
}

.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--surface-3), transparent);
    min-width: 40px;
}

/* ===== LISTEN SECTION ===== */
.section-listen {
    background: linear-gradient(180deg, var(--surface) 0%, var(--void) 100%);
    border-top: 2px solid var(--surface-3);
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: var(--sp-xl);
}

.player-card {
    border: var(--border);
    background: var(--surface);
    overflow: hidden;
    transition: border-color 0.3s;
}

.player-card:hover {
    border-color: var(--violet);
}

.player-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--pink);
    padding: var(--sp-sm) var(--sp-md);
    border-bottom: 2px solid var(--surface-3);
}

.player-embed {
    padding: 0;
}

.player-embed iframe {
    display: block;
}

/* ===== RELEASES SECTION ===== */
.section-releases {
    background: var(--void);
    border-top: 2px solid var(--surface-3);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.album-card {
    border: 2px solid var(--surface-3);
    border-right: none;
    background: var(--surface);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.album-card:last-child {
    border-right: 2px solid var(--surface-3);
}

.album-card:hover {
    background: var(--surface-2);
    border-color: var(--violet);
    z-index: 2;
}

.album-card:hover + .album-card {
    border-left-color: var(--violet);
}

.album-card.active {
    border-color: var(--pink);
    background: var(--surface-2);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15);
}

.album-card.active .album-expand {
    transform: rotate(180deg);
    color: var(--pink);
}

.album-art {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--surface-3);
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s;
    filter: saturate(0.7) brightness(0.9);
}

.album-card:hover .album-img {
    transform: scale(1.08);
    filter: saturate(1) brightness(1);
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-sm);
    background: linear-gradient(transparent, rgba(5, 0, 8, 0.9));
    display: flex;
    justify-content: flex-start;
}

.album-status {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.7rem;
    text-transform: uppercase;
}

.status-out {
    color: var(--cyan);
    border: 2px solid var(--cyan);
    background: rgba(0, 255, 255, 0.1);
}

.status-soon {
    color: var(--pink);
    border: 2px solid var(--pink);
    background: rgba(255, 20, 147, 0.1);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.album-info {
    padding: var(--sp-md);
}

.album-name {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    margin-bottom: 0.25rem;
    color: var(--text-bright);
}

.album-meta {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-sm);
}

.album-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--violet);
    border: 1px solid var(--surface-4);
    padding: 0.15rem 0.5rem;
    transition: color 0.2s, border-color 0.2s;
}

.album-card:hover .tag {
    border-color: var(--violet);
}

.album-expand {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-dim);
    border-top: 1px solid var(--surface-3);
    transition: transform 0.3s, color 0.3s;
}

/* ===== TRACKLIST PANEL ===== */
.tracklist-panel {
    border: 2px solid var(--surface-3);
    border-top: none;
    background: var(--surface);
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tracklist-panel.open {
    grid-template-rows: 1fr;
}

.tracklist-panel > .tracklist {
    overflow: hidden;
    min-height: 0;
    display: none;
}

.tracklist-panel > .tracklist.active {
    display: block;
}

/* Theme variants */
.tracklist-panel.theme-cfv { background: var(--surface); }
.tracklist-panel.theme-wda { background: #0d0520; }
.tracklist-panel.theme-protocol { background: #06101a; }

.tracklist-panel.theme-wda .track { border-bottom-color: #1a0a30; }
.tracklist-panel.theme-wda .track:hover { background: linear-gradient(90deg, rgba(155, 48, 255, 0.3), transparent); }
.tracklist-panel.theme-wda .act-header { border-bottom-color: #1a0a30; }

.tracklist-panel.theme-protocol .track { border-bottom-color: #0d1e2a; color: #8ab4c4; }
.tracklist-panel.theme-protocol .track:hover { background: linear-gradient(90deg, rgba(0, 255, 255, 0.15), transparent); }
.tracklist-panel.theme-protocol .track .track-n { color: var(--cyan); }

/* Act headers */
.act-header {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    padding: var(--sp-md) var(--sp-lg);
    border-bottom: 1px solid var(--surface-3);
}

.act-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.15em;
}

.act-num::before { content: 'ACT '; }

.act-line-inner {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--violet), transparent);
}

/* Track items */
.track {
    display: grid;
    grid-template-columns: 2.5rem 1fr auto;
    gap: var(--sp-sm);
    padding: 0.75rem var(--sp-lg);
    border-bottom: 1px solid var(--surface-3);
    align-items: center;
    color: var(--text);
    transition: all 0.2s;
    text-decoration: none;
}

.track:hover {
    background: linear-gradient(90deg, rgba(255, 20, 147, 0.15), transparent);
    color: var(--white);
    padding-left: calc(var(--sp-lg) + 6px);
}

.track-n {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pink);
}

.track-t {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.track-ext {
    font-size: 0.8rem;
    color: var(--cyan);
    opacity: 0;
    transition: opacity 0.2s;
}

.track:hover .track-ext { opacity: 1; }

/* ===== DOSSIER SECTION ===== */
.section-dossier {
    background: linear-gradient(180deg, var(--surface) 0%, var(--void) 100%);
    border-top: 2px solid var(--surface-3);
}

.dossier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
}

.dossier-facts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facts-carousel {
    cursor: pointer;
    user-select: none;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-xl);
    border: var(--border);
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
}

.facts-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--grad-main);
}

.facts-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--pink);
    margin-bottom: var(--sp-md);
}

.fact-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-bright);
    position: relative;
    transition: none;
}

.fact-text.sliding-out {
    animation: factOut 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.fact-text.sliding-in {
    animation: factIn 0.35s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes factOut {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0; }
}

@keyframes factIn {
    0% { transform: translateX(80%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.facts-hint {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-top: var(--sp-md);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.facts-carousel:hover .facts-hint { opacity: 1; }

/* ===== CONTACT FORM ===== */
.dossier-contact {
    border: var(--border);
    background: var(--surface);
    padding: var(--sp-xl);
}

.contact-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--pink);
    margin-bottom: var(--sp-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem var(--sp-md);
    background: var(--surface-2);
    border: 2px solid var(--surface-3);
    color: var(--text-bright);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: var(--text-dim);
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-mono);
}

.form-error {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--danger);
    min-height: 1rem;
}

.form-success {
    display: none;
    padding: var(--sp-md);
    border: 2px solid var(--cyan);
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyan);
    font-weight: 700;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== CONNECT SECTION ===== */
.section-connect {
    background: var(--surface);
    border-top: 2px solid var(--surface-3);
}

.connect-block {
    margin-bottom: var(--sp-3xl);
}

.connect-heading {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: var(--sp-lg);
    padding-bottom: var(--sp-sm);
    border-bottom: 1px solid var(--surface-3);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0;
}

.link-grid--narrow {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem var(--sp-md);
    border: 1px solid var(--surface-3);
    margin: -1px 0 0 -1px;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.2s;
}

.link-card:hover {
    background: var(--surface-2);
    color: var(--cyan);
    border-color: var(--violet);
    z-index: 2;
    position: relative;
}

.link-arrow {
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
    color: var(--pink);
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== NEWSLETTER ===== */
.newsletter-block {
    max-width: 700px;
    margin: var(--sp-3xl) auto 0;
    padding: var(--sp-xl);
    border: var(--border);
    background: var(--surface-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-main);
}

.newsletter-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-bright);
    margin-bottom: var(--sp-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--sp-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-msg {
    display: none;
    padding: var(--sp-sm);
    margin-top: var(--sp-md);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.newsletter-msg.success {
    color: var(--cyan);
    border: 1px solid var(--cyan);
}

.newsletter-msg.error {
    color: var(--danger);
    border: 1px solid var(--danger);
}

/* ===== TRACK POPUP ===== */
.track-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.track-popup[hidden] { display: none; }
.track-popup.active { opacity: 1; visibility: visible; }

.track-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 0, 8, 0.9);
    backdrop-filter: blur(8px);
}

.track-popup-body {
    position: relative;
    background: var(--surface);
    border: 3px solid var(--violet);
    box-shadow: var(--shadow-brutal);
    padding: var(--sp-lg);
    max-width: 320px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.track-popup.active .track-popup-body {
    transform: scale(1) translateY(0);
}

.track-popup-close {
    position: absolute;
    top: var(--sp-sm);
    right: var(--sp-sm);
    width: 28px;
    height: 28px;
    background: var(--surface-3);
    color: var(--text);
    border: 2px solid var(--surface-4);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.track-popup-close:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.track-popup-title {
    font-size: 1rem;
    margin-bottom: var(--sp-md);
    padding-right: 2rem;
    color: var(--text-bright);
}

.track-popup-links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
}

.popup-link {
    display: block;
    padding: 0.6rem var(--sp-md);
    background: var(--surface-2);
    border: 2px solid var(--surface-3);
    color: var(--text);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.15s;
}

.popup-link:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: var(--white);
    transform: translateX(4px);
}

.popup-link[data-platform="spotify"]:hover { background: #1DB954; border-color: #1DB954; }
.popup-link[data-platform="soundcloud"]:hover { background: #FF5500; border-color: #FF5500; }
.popup-link[data-platform="youtube"]:hover { background: #FF0000; border-color: #FF0000; }
.popup-link[data-platform="bandcamp"]:hover { background: #1DA0C3; border-color: #1DA0C3; }

/* ===== FOOTER ===== */
.footer {
    padding: var(--sp-3xl) 0 var(--sp-lg);
    background: var(--void);
    border-top: 2px solid var(--surface-3);
}

.footer-inner {
    text-align: center;
}

.footer-logo-block {
    margin-bottom: var(--sp-md);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
    position: relative;
}

/* Footer glitch: medium intensity */
.footer-brand.glitch::before { animation: glitchPink 5s infinite; opacity: 0.6; }
.footer-brand.glitch::after  { animation: glitchCyan 5s infinite; opacity: 0.5; }

.footer-sub {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-dim);
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* ===== LANDING PAGE (coming soon) ===== */
.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sp-xl);
    gap: 0;
    position: relative;
}

.landing-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: var(--sp-xl);
}

.landing-logo .landing-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid var(--violet);
}

.landing-logo .glitch-img-layer {
    border-radius: 50%;
}

.landing-title {
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: var(--sp-lg);
}

.landing-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    margin-bottom: var(--sp-3xl);
}

.landing-status {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--pink);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--pink);
    margin-bottom: var(--sp-3xl);
    animation: statusPulse 2s ease-in-out infinite;
}

.landing-nav {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
    justify-content: center;
}

.landing-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    padding: 0.5rem 1rem;
    border: 1px solid var(--surface-3);
    transition: all 0.2s;
}

.landing-link:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    background: rgba(0, 255, 255, 0.05);
}

@media (max-width: 480px) {
    .landing-logo { width: 80px; height: 80px; }
    .landing-title { font-size: clamp(2.5rem, 14vw, 5rem); }
    .landing-nav { flex-direction: column; align-items: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--sp-xl);
        text-align: center;
    }

    .hero-actions { justify-content: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .vinyl-container { max-width: 300px; }
    .dossier-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .album-grid {
        grid-template-columns: 1fr;
    }

    .album-card {
        display: grid;
        grid-template-columns: 100px 1fr auto;
        border-right: 2px solid var(--surface-3);
        border-bottom: none;
    }

    .album-card:last-child {
        border-bottom: 2px solid var(--surface-3);
        border-right: 2px solid var(--surface-3);
    }

    .album-card:hover,
    .album-card.active {
        transform: none;
    }

    .album-art {
        aspect-ratio: 1;
        border-bottom: none;
        border-right: 2px solid var(--surface-3);
    }

    .album-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: var(--sp-sm) var(--sp-md);
    }

    .album-expand {
        border-top: none;
        border-left: 1px solid var(--surface-3);
        display: flex;
        align-items: center;
        padding: 0 var(--sp-md);
    }

    .player-grid { grid-template-columns: 1fr; }
    .link-grid { grid-template-columns: 1fr; }
    .link-grid--narrow { grid-template-columns: 1fr; }

    .newsletter-form { flex-direction: column; }

    .track {
        padding: 0.6rem var(--sp-md);
        grid-template-columns: 2rem 1fr auto;
    }

    .section-header { flex-wrap: wrap; }

    .hero-scroll-hint { display: none; }

    .vinyl-container { max-width: 240px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.2rem, 12vw, 3.5rem); }
    .hero-actions { flex-direction: column; align-items: center; }

    .album-card {
        grid-template-columns: 80px 1fr auto;
    }
}

/* ===== SCROLL ===== */
section {
    scroll-margin-top: 80px;
}

/* ===== PERFORMANCE ===== */
.album-card,
.player-card,
.link-card {
    contain: layout style paint;
}

.vinyl-record,
.hero-title {
    will-change: transform;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .vinyl-record.spinning { animation: none; }
    .hero-title { animation: none; }
    .scanlines { display: none; }
}

/* ===== FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

/* ===== TOUCH TARGETS ===== */
@media (max-width: 768px) {
    .btn,
    .link-card,
    .nav-link,
    .track {
        min-height: 44px;
    }
}

/* ===== PRINT ===== */
@media print {
    .void-bg, .scanlines, .nav-bar, .hamburger, .vinyl-glow { display: none; }
    body { background: white; color: black; }
}
