/*
   Boundary Operator - Noir Cyberpunk
   Eternal nights. Relentless rain. Neon bleeds through corruption.
   Shadowrun Returns x Blade Runner x Ghost in the Shell
*/

:root {
    --black: #050505;
    --black-pure: #000000;
    --white: #e8e8e8;
    --silver: #9a9a9a;
    --rhodium: #b8b8b8;
    --neon: #00d4ff;
    --neon-dim: rgba(0, 212, 255, 0.15);
    --neon-glow: rgba(0, 212, 255, 0.4);
    --rain: rgba(180, 200, 220, 0.15);
    --mercury: linear-gradient(135deg, #c0c0c0 0%, #888888 25%, #a8a8a8 50%, #666666 75%, #909090 100%);
    --wet-street: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 100%);
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Consolas', 'SF Mono', 'Monaco', monospace;
    --max-width: 1200px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Global form reset */
input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="email"],
input[type="text"] {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 0;
    color: var(--white);
}

input::placeholder {
    color: var(--silver);
    opacity: 0.5;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════
   RAIN - Relentless. Eternal.
   ═══════════════════════════════════════ */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cline x1='0' y1='0' x2='2' y2='20' stroke='rgba(180,200,220,0.2)' stroke-width='0.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cline x1='50' y1='0' x2='52' y2='15' stroke='rgba(180,200,220,0.15)' stroke-width='0.3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cline x1='25' y1='0' x2='27' y2='18' stroke='rgba(180,200,220,0.1)' stroke-width='0.4'/%3E%3C/svg%3E");
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: rain 0.8s linear infinite;
    opacity: 0.6;
}

@keyframes rain {
    0% { background-position: 0 0, 50px 0, 25px 0; }
    100% { background-position: 20px 100px, 70px 150px, 45px 200px; }
}

/* Scanlines over rain */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
}

/* ═══════════════════════════════════════
   HERO - The eternal night
   ═══════════════════════════════════════ */

.hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: contrast(1.2) brightness(0.7) saturate(0.8);
    animation: noir-pulse 8s ease-in-out infinite;
}

@keyframes noir-pulse {
    0%, 100% { filter: contrast(1.2) brightness(0.7) saturate(0.8); }
    50% { filter: contrast(1.25) brightness(0.65) saturate(0.7); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Vignette - noir style, heavy */
        radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.7) 100%),
        /* Neon reflection from below */
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 5, 10, 0.4) 70%,
            rgba(0, 10, 15, 0.98) 100%
        ),
        /* Subtle cyan tint at bottom - wet street reflection */
        linear-gradient(
            to top,
            rgba(0, 212, 255, 0.05) 0%,
            transparent 30%
        );
}

/* Arcane/circuit geometry overlay */
.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(0,212,255,0.03)' stroke-width='0.5'/%3E%3Ccircle cx='30' cy='30' r='5' fill='none' stroke='rgba(0,212,255,0.02)' stroke-width='0.3'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.7;
    animation: geo-drift 90s linear infinite;
}

@keyframes geo-drift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 30vh;
    max-width: 90%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ═══════════════════════════════════════
   GLITCH TEXT - Corrupted signal
   ═══════════════════════════════════════ */

.artist-name {
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.9;
    text-transform: uppercase;
    position: relative;
}

.name-boundary {
    display: block;
    color: var(--white);
    text-shadow:
        0 0 60px rgba(0, 212, 255, 0.3),
        0 0 120px rgba(0, 212, 255, 0.15),
        2px 2px 0 rgba(0, 0, 0, 0.8);
    position: relative;
    animation: glitch-text 3s infinite;
}

.name-boundary::before,
.name-boundary::after {
    content: 'Boundary';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.name-boundary::before {
    animation: glitch-1 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-2px);
    color: var(--neon);
    opacity: 0;
}

.name-boundary::after {
    animation: glitch-2 3s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(2px);
    color: #ff0040;
    opacity: 0;
}

@keyframes glitch-text {
    0%, 92%, 100% { transform: translate(0); }
    93% { transform: translate(-3px, 1px); }
    95% { transform: translate(3px, -1px); }
    97% { transform: translate(-2px, 2px); }
}

@keyframes glitch-1 {
    0%, 91%, 100% { transform: translate(0); opacity: 0; }
    92% { transform: translate(4px, -2px); opacity: 0.8; }
    94% { transform: translate(-4px, 1px); opacity: 0; }
    96% { transform: translate(3px, 0); opacity: 0.6; }
}

@keyframes glitch-2 {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    91% { transform: translate(-3px, 2px); opacity: 0.6; }
    93% { transform: translate(3px, -1px); opacity: 0; }
    97% { transform: translate(-4px, 0); opacity: 0.8; }
}

.name-operator {
    display: block;
    background: var(--mercury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1) drop-shadow(0 0 30px rgba(0, 212, 255, 0.2));
    position: relative;
}

.tagline {
    margin-top: 1.5rem;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--silver);
    opacity: 0.6;
    font-family: var(--font-mono);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.tagline::before {
    content: '// ';
    color: var(--neon);
    opacity: 0.5;
}

.tagline::after {
    content: ' //';
    color: var(--neon);
    opacity: 0.5;
}

.scroll-cta {
    display: inline-flex;
    margin-top: 3rem;
    color: var(--neon);
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--neon-dim));
}

.scroll-cta:hover {
    opacity: 1;
    transform: translateY(4px);
    filter: drop-shadow(0 0 20px var(--neon-glow));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */

section {
    padding: 6rem 1.5rem;
    position: relative;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--neon);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-family: var(--font-mono);
    text-shadow: 0 0 20px var(--neon-dim);
}

.section-title::before {
    content: '[ ';
    opacity: 0.6;
}

.section-title::after {
    content: ' ]';
    opacity: 0.6;
}

/* ═══════════════════════════════════════
   MUSIC SECTION
   ═══════════════════════════════════════ */

.music {
    background:
        var(--wet-street),
        linear-gradient(180deg, var(--black) 0%, #030508 50%, #020305 100%);
}

/* Hex grid - circuit board aesthetic */
.music::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 0l14 8.094v16.188L14 32.376 0 24.282V8.094L14 0zm0 5.476L4.667 10.82v10.687L14 26.85l9.333-5.343V10.82L14 5.476z' fill='rgba(0,212,255,0.02)' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.spotify-container {
    background: rgba(5, 10, 15, 0.9);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    position: relative;
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 212, 255, 0.03);
}

/* Neon corner accents */
.spotify-container::before,
.spotify-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 1px solid var(--neon);
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.spotify-container::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.spotify-container::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.spotify-container:hover::before,
.spotify-container:hover::after {
    opacity: 0.8;
}

.spotify-container iframe {
    display: block;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--neon);
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    display: flex;
    max-width: fit-content;
    border: 1px solid var(--neon);
    opacity: 0.7;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px var(--neon-dim);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-dim), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    opacity: 1;
    box-shadow:
        0 0 30px var(--neon-dim),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    text-shadow: 0 0 20px var(--neon-glow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px var(--neon-dim));
}

/* ═══════════════════════════════════════
   VISUALS - Noir Gallery
   ═══════════════════════════════════════ */

.visuals {
    background:
        linear-gradient(0deg, rgba(0, 212, 255, 0.02) 0%, transparent 50%),
        var(--black-pure);
    padding-bottom: 4rem;
}

.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 2px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    background: #020305;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: grayscale(40%) contrast(1.2) brightness(0.75) saturate(0.7);
}

/* Neon reflection overlay */
.mosaic-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 212, 255, 0.03) 50%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mosaic-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 60%, rgba(0, 10, 20, 0.8) 100%),
        linear-gradient(0deg, rgba(0, 212, 255, 0.1) 0%, transparent 30%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.mosaic-item:hover img {
    transform: scale(1.08);
    filter: grayscale(10%) contrast(1.15) brightness(0.9) saturate(1);
}

.mosaic-item:hover::before {
    opacity: 1;
}

.mosaic-item:hover::after {
    opacity: 1;
}

/* Glitch on hover */
.mosaic-item:hover {
    animation: tile-glitch 0.3s ease;
}

@keyframes tile-glitch {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, -1px); }
}

/* Mosaic variations */
.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item.wide {
    grid-column: span 2;
}

.mosaic-item.tall {
    grid-row: span 2;
}

/* ═══════════════════════════════════════
   CONNECT SECTION
   ═══════════════════════════════════════ */

.connect {
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 100%),
        linear-gradient(180deg, var(--black-pure) 0%, var(--black) 100%);
    padding-top: 4rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--silver);
    text-decoration: none;
    padding: 2rem 3rem;
    border: 1px solid rgba(0, 212, 255, 0.15);
    background: rgba(0, 212, 255, 0.02);
    transition: all 0.3s ease;
    min-width: 140px;
    position: relative;
}

/* Neon corner brackets */
.social-link::before,
.social-link::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--neon);
    transition: all 0.3s ease;
    opacity: 0.3;
}

.social-link::before {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.social-link::after {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.social-link:hover {
    color: var(--white);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.1),
        inset 0 0 30px rgba(0, 212, 255, 0.03);
}

.social-link:hover::before,
.social-link:hover::after {
    opacity: 0.8;
    box-shadow: 0 0 10px var(--neon-dim);
}

.social-link svg {
    filter: drop-shadow(0 0 5px var(--neon-dim));
    transition: filter 0.3s ease;
}

.social-link:hover svg {
    filter: drop-shadow(0 0 15px var(--neon-glow));
}

.social-link span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
    text-align: center;
    padding: 3rem 1.5rem;
    color: rgba(0, 212, 255, 0.3);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    border-top: 1px solid rgba(0, 212, 255, 0.08);
    font-family: var(--font-mono);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.footer p::before {
    content: '> ';
    opacity: 0.5;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
    .mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .mosaic-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 40vh;
    }

    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 2px;
    }

    .mosaic-item.large,
    .mosaic-item.wide {
        grid-column: span 2;
    }

    .mosaic-item.tall {
        grid-row: span 2;
    }

    .social-link {
        padding: 1.5rem 2rem;
        min-width: 120px;
    }

    section {
        padding: 4rem 1rem;
    }

    /* Reduce effects on mobile */
    .name-boundary::before,
    .name-boundary::after {
        display: none;
    }

    body::before {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: 50vh;
    }

    .artist-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 0.55rem;
        letter-spacing: 0.12em;
    }

    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.7rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        padding: 1.25rem 1.5rem;
        min-width: 100px;
    }

    /* Lighter rain on mobile for performance */
    body::before {
        opacity: 0.2;
        background-size: 150px 150px, 200px 200px, 250px 250px;
    }
}

/* ═══════════════════════════════════════
   ACCESSIBILITY & MOTION
   ═══════════════════════════════════════ */

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

    body::before {
        animation: none;
        opacity: 0.1;
    }

    .hero-image img {
        animation: none;
    }

    .name-boundary {
        animation: none;
    }

    .name-boundary::before,
    .name-boundary::after {
        display: none;
    }

    .scroll-cta,
    .mosaic-item,
    .mosaic-item img,
    .cta-button,
    .social-link {
        animation: none;
        transition: none;
    }
}

:focus-visible {
    outline: 1px solid var(--neon);
    outline-offset: 4px;
}

/* Selection */
::selection {
    background: rgba(0, 212, 255, 0.2);
    color: var(--white);
}

/* Scrollbar - neon noir */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.4);
}

/* ═══════════════════════════════════════
   SKIP LINK - Accessibility
   ═══════════════════════════════════════ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--neon);
    border: 1px solid var(--neon);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    opacity: 1;
    pointer-events: auto;
}

/* ═══════════════════════════════════════
   SUBSCRIBE SECTION
   ═══════════════════════════════════════ */

.subscribe {
    background: linear-gradient(180deg, var(--black-pure) 0%, #030508 100%);
    padding: 5rem 1.5rem;
    text-align: center;
}

.subscribe-copy {
    color: var(--silver);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-right: none;
    color: var(--white);
    padding: 0.875rem 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.subscribe-form input::placeholder {
    color: var(--silver);
    opacity: 0.5;
}

.subscribe-form input:focus {
    border-color: var(--neon);
    background: rgba(0, 212, 255, 0.05);
}

.subscribe-form button {
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--neon);
    padding: 0.875rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    border-color: var(--neon);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px var(--neon-dim);
}

.subscribe-note {
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--silver);
    opacity: 0.3;
}

/* ═══════════════════════════════════════
   MERCH SECTION
   ═══════════════════════════════════════ */

.merch {
    background: linear-gradient(180deg, #030508 0%, var(--black-pure) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
}

.merch-placeholder {
    max-width: 350px;
    margin: 0 auto;
}

.merch-coming {
    color: var(--silver);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.6;
}

.merch-notify {
    display: flex;
    justify-content: center;
    gap: 0;
}

.merch-notify input {
    flex: 1;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-right: none;
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.merch-notify input::placeholder {
    color: var(--silver);
    opacity: 0.4;
}

.merch-notify input:focus {
    border-color: var(--neon);
}

.merch-notify button {
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--neon);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.merch-notify button:hover {
    opacity: 1;
    border-color: var(--neon);
}

/* ═══════════════════════════════════════
   FOOTER - Enhanced
   ═══════════════════════════════════════ */

.footer-nav {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-nav a {
    color: rgba(0, 212, 255, 0.3);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--neon);
}

/* ═══════════════════════════════════════
   RESPONSIVE - New sections
   ═══════════════════════════════════════ */

@media (max-width: 480px) {
    .subscribe-form,
    .merch-notify {
        flex-direction: column;
        gap: 0.5rem;
    }

    .subscribe-form input,
    .merch-notify input {
        border-right: 1px solid rgba(0, 212, 255, 0.2);
    }

    .footer-nav {
        gap: 1.5rem;
    }
}
