/* ============================================
   AJ VITANZA — Hyperpop Glitch Landing Page
   Dark + Burgundy + Glitch + Futuristic
   ============================================ */

:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #161616;
    --text: #f0f0f0;
    --text-muted: #888888;
    --text-dim: #555555;
    --accent: #8b1a1a;
    --accent-light: #a52a2a;
    --glitch-light: rgba(255, 255, 255, 0.85);
    --glitch-dark: rgba(0, 0, 0, 0.85);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-display: 'Unbounded', 'Space Grotesk', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: white;
}

/* ============================================
   Scan Lines Overlay
   ============================================ */
.scanlines {
    display: none;
}

/* ============================================
   Noise Overlay
   ============================================ */
.noise-svg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.035;
}

/* ============================================
   Scroll Progress Bar (Shimmer)
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #ff2d55, var(--accent-light), var(--accent));
    background-size: 300% 100%;
    animation: shimmerProgress 3s linear infinite;
    width: 0%;
    z-index: 10000;
    will-change: width;
}

@keyframes shimmerProgress {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3rem;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 3rem;
}

.nav-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* 3D Spinning Logo */
.logo-3d-wrapper {
    perspective: 600px;
    display: inline-block;
}

.logo-3d-text {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    transform-style: preserve-3d;
    animation: spin3d 6s cubic-bezier(0.68, -0.15, 0.27, 1.15) infinite;
    /* Chrome / metallic effect */
    background: linear-gradient(
        180deg,
        #e8e8e8 0%,
        #ffffff 15%,
        #a0a0a0 30%,
        #d4d4d4 45%,
        #ffffff 50%,
        #b0b0b0 55%,
        #e0e0e0 70%,
        #888888 85%,
        #c0c0c0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
    transition: filter 0.3s ease;
}

.logo-3d-text:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    animation-duration: 1.5s;
}

@keyframes spin3d {
    0% { transform: rotateY(0deg); }
    20% { transform: rotateY(360deg); }
    50% { transform: rotateY(360deg); }
    70% { transform: rotateY(720deg); }
    100% { transform: rotateY(720deg); }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    will-change: transform;
    transform: scale(1.1);
    transition: transform 0.1s linear;
    filter: invert(1);
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0) 0%,
        rgba(10, 10, 10, 0.2) 60%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

/* Hero Title — Glitch Effect */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-word:nth-child(1) {
    animation-delay: 0.3s;
    margin-right: 0.3em;
}

.hero-word:nth-child(2) {
    animation-delay: 0.5s;
}

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

/* Glitch pseudo-elements — activated after reveal */
.hero-title.glitch-active::before,
.hero-title.glitch-active::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
    overflow: hidden;
    pointer-events: none;
}

.hero-title.glitch-active::before {
    color: var(--glitch-light);
    animation: glitch1 4s infinite linear;
    mix-blend-mode: difference;
    z-index: 1;
}

.hero-title.glitch-active::after {
    color: var(--glitch-dark);
    animation: glitch2 4s infinite linear;
    mix-blend-mode: exclusion;
    z-index: 2;
}

/* Quicker bursts, more randomly spaced — malfunctioning screen feel */
@keyframes glitch1 {
    0% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    3% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    3.5% { clip-path: inset(25% 0 45% 0); transform: translate(-5px, 2px); }
    4% { clip-path: inset(70% 0 8% 0); transform: translate(4px, -1px); }
    4.3% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    17% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    17.3% { clip-path: inset(85% 0 3% 0); transform: translate(-3px, 1px); }
    17.6% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    34% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    34.4% { clip-path: inset(12% 0 65% 0); transform: translate(6px, -2px); }
    34.7% { clip-path: inset(50% 0 25% 0); transform: translate(-4px, 1px); }
    35% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    58% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    58.2% { clip-path: inset(40% 0 35% 0); transform: translate(3px, 2px); }
    58.5% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    73% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    73.3% { clip-path: inset(5% 0 82% 0); transform: translate(-5px, -1px); }
    73.5% { clip-path: inset(60% 0 18% 0); transform: translate(4px, 2px); }
    73.8% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    91% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    91.2% { clip-path: inset(30% 0 50% 0); transform: translate(-3px, 1px); }
    91.5% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
}

@keyframes glitch2 {
    0% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    5% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    5.3% { clip-path: inset(55% 0 20% 0); transform: translate(4px, -2px); }
    5.6% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    22% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    22.2% { clip-path: inset(15% 0 60% 0); transform: translate(-5px, 1px); }
    22.5% { clip-path: inset(75% 0 8% 0); transform: translate(3px, -2px); }
    22.8% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    41% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    41.3% { clip-path: inset(35% 0 40% 0); transform: translate(5px, 1px); }
    41.5% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    63% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    63.2% { clip-path: inset(80% 0 5% 0); transform: translate(-4px, 2px); }
    63.4% { clip-path: inset(10% 0 72% 0); transform: translate(3px, -1px); }
    63.7% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    82% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    82.3% { clip-path: inset(45% 0 30% 0); transform: translate(-6px, -1px); }
    82.5% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    95% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    95.2% { clip-path: inset(20% 0 55% 0); transform: translate(4px, 2px); }
    95.4% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
}

.hero-tagline {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--text-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 26, 26, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-dot {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { cy: 8; }
    50% { cy: 16; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   Marquee Strip
   ============================================ */
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    background: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1rem 0;
}

.marquee-track {
    display: inline-block;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0 2.5rem;
    position: relative;
}

.marquee-track span::after {
    content: '//';
    position: absolute;
    right: 0;
    color: var(--accent);
    opacity: 0.5;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ============================================
   Bio Section
   ============================================ */
.bio {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.bio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg), var(--bg));
    pointer-events: none;
}

/* Large watermark */
.bio::after {
    content: 'AJ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

.bio-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bio-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 1/1;
    background: var(--bg);
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(1);
    opacity: 0.7;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.bio-image:hover img {
    transform: scale(1.03);
    opacity: 0.85;
}

/* Chromatic aberration on hover */
.bio-image::before,
.bio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    mix-blend-mode: screen;
}

.bio-image::before {
    box-shadow: inset -4px 0 0 var(--glitch-light);
}

.bio-image::after {
    box-shadow: inset 4px 0 0 var(--glitch-dark);
}

.bio-image:hover::before,
.bio-image:hover::after {
    opacity: 0.6;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.bio-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.bio-paragraph strong {
    color: var(--text);
    font-weight: 500;
}

.bio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: rgba(139, 26, 26, 0.1);
    border: 1px solid rgba(139, 26, 26, 0.25);
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   Music Section
   ============================================ */
.music {
    padding: 6rem 2rem 8rem;
    background: var(--bg-elevated);
    position: relative;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg), var(--bg-elevated));
    pointer-events: none;
}

.music-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.spotify-embed {
    margin: 2rem 0 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stream-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.stream-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.stream-link svg {
    flex-shrink: 0;
}

/* ============================================
   Press Section
   ============================================ */
.press {
    padding: 8rem 2rem;
    position: relative;
}

.press::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg-elevated), var(--bg));
    pointer-events: none;
}

.press-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.press-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.6;
    color: var(--text);
    font-weight: 400;
    font-style: italic;
    margin: 2rem 0 3rem;
    position: relative;
}

/* Word-by-word reveal for press quote */
.press-quote .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.press-quote .word.revealed {
    opacity: 1;
    transform: translateY(0);
}

.quote-mark {
    color: var(--accent);
    font-size: 1.5em;
    font-style: normal;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.press-logo {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.press-logo:hover {
    color: var(--text-muted);
}

/* ============================================
   Videos Section
   ============================================ */
.videos {
    padding: 6rem 2rem 8rem;
    background: var(--bg-elevated);
    position: relative;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg), var(--bg-elevated));
    pointer-events: none;
}

.videos-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.videos-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: -1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.video-featured {
    max-width: 900px;
    margin: 0 auto;
}

.videos-grid-loaded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.video-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 40%, transparent 60%, rgba(139,26,26,0.25));
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-card:hover::before {
    opacity: 1;
}

.video-card:hover {
    border-color: rgba(139, 26, 26, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(139, 26, 26, 0.12);
}

.video-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: filter 0.4s ease, transform 0.5s ease;
}

.video-card:hover .video-thumb {
    filter: brightness(0.5);
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.video-card:hover .video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-title {
    display: block;
    padding: 0.85rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: var(--text);
}

.videos-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================
   Signup / Laylo Section
   ============================================ */
.signup {
    padding: 6rem 2rem 8rem;
    position: relative;
    text-align: center;
}

.signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg-elevated), var(--bg));
    pointer-events: none;
}

.signup-inner {
    max-width: 600px;
    margin: 0 auto;
}

.signup-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.signup-cta {
    display: flex;
    justify-content: center;
}

.btn-signup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 3rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-signup:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(139, 26, 26, 0.35), 0 0 20px rgba(139, 26, 26, 0.15);
}

.btn-signup svg {
    transition: transform 0.3s ease;
}

.btn-signup:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--bg-elevated), var(--bg));
    pointer-events: none;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    color: var(--text-dim);
    transition: all 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: var(--text);
    transform: translateY(-3px) scale(1.1);
}

.footer-info p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.footer-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-left {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-right {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Glitch flash on section labels */
.section-label.glitch-flash {
    animation: glitchFlash 0.3s steps(2) forwards;
}

@keyframes glitchFlash {
    0% { transform: translate(0); text-shadow: none; }
    25% { transform: translate(-2px, 1px); text-shadow: 2px 0 var(--glitch-light), -2px 0 var(--glitch-dark); }
    50% { transform: translate(2px, -1px); text-shadow: -2px 0 var(--glitch-light), 2px 0 var(--glitch-dark); }
    75% { transform: translate(-1px, 0); text-shadow: 1px 0 var(--glitch-light), -1px 0 var(--glitch-dark); }
    100% { transform: translate(0); text-shadow: none; }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-word {
        opacity: 1;
        transform: none;
    }
    .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
    .hero-title.glitch-active::before,
    .hero-title.glitch-active::after {
        display: none;
    }
    .scanlines { display: none; }
    .noise-svg { display: none; }
    .logo-3d-text { animation: none; }
    .marquee-track { animation: none; }
    .press-quote .word {
        opacity: 1;
        transform: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav.scrolled {
        padding: 0.6rem 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .logo-3d-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .hero-word {
        display: block;
    }

    .hero-word:nth-child(1) {
        margin-right: 0;
    }

    .hero-title.glitch-active::before,
    .hero-title.glitch-active::after {
        font-size: clamp(3rem, 15vw, 5rem);
    }

.bio {
        padding: 5rem 1.5rem;
    }

    .bio-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bio-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .music {
        padding: 4rem 1.5rem 6rem;
    }

    .streaming-links {
        gap: 1rem;
    }

    .stream-link span {
        display: none;
    }

    .stream-link {
        padding: 0.75rem;
    }

    .press {
        padding: 5rem 1.5rem;
    }

    .press-logos {
        gap: 1.5rem;
    }

    .press-logo {
        font-size: 0.75rem;
    }

    .videos {
        padding: 4rem 1.5rem 6rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 3rem 1.5rem;
    }

    .footer-socials {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

}
