/* =========================================
   1. Reset & Variables
   ========================================= */
:root {
    --bg-color: #050505;
    /* Pitch Black */
    --text-color: #e0e0e0;
    --accent-color: #f0f0f0;
    --cursor-size: 8px;
    --cursor-follower-size: 40px;
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    height: 100vh;
    overflow: hidden;
    /* No scroll for this art-piece feel */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================================
   2. Custom Cursor
   ========================================= */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-follower-size);
    height: var(--cursor-follower-size);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower.active {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* =========================================
   3. Spotlight & Noise
   ========================================= */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    transition: background 0.1s ease;
}

.noise-overlay {
    /* Removed or kept as subtle layer */
    display: none;
}

/* =========================================
   4. Main Typography & Layout
   ========================================= */
.main-container {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.brand-logo {
    max-width: 300px;
    width: 60%;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    /* Animated in JS */
    transform: translateY(50px);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 2rem;
    opacity: 0;
    transform: scaleY(0);
}

.status-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translateY(20px);
}

/* =========================================
   5. Minimal Input
   ========================================= */
.notify-container {
    opacity: 0;
    transform: translateY(20px);
}

.minimal-form {
    display: inline-flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s;
}

.minimal-form:hover {
    border-bottom-color: #fff;
}

input[type="email"] {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    width: 250px;
    outline: none;
    letter-spacing: 1px;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.btn-minimal {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 1rem;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.btn-minimal:hover {
    opacity: 1;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    height: 1rem;
    color: rgba(255, 255, 255, 0.8);
}


/* =========================================
   7. Marquee & Corners
   ========================================= */
.technical-corners {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    padding: 2rem;
}

.corner {
    position: absolute;
    font-size: 0.7rem;
    font-family: monospace;
    /* Tech feel */
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.top-left {
    top: 2rem;
    left: 2rem;
}

.top-right {
    top: 2rem;
    right: 2rem;
}

.bottom-left {
    bottom: 2rem;
    left: 2rem;
}

.bottom-right {
    bottom: 2rem;
    right: 2rem;
}

.marquee-container {
    position: fixed;
    bottom: 10%;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    opacity: 0.3;
    /* Subtle */
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 60s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    margin-right: 2rem;
    text-transform: uppercase;
    font-style: italic;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   8. Responsive
   ========================================= */
@media (max-width: 768px) {
    .marquee-content span {
        font-size: 2rem;
    }

    .technical-corners {
        padding: 1rem;
    }

    .corner {
        font-size: 0.6rem;
    }

    .brand-logo {
        width: 80%;
        max-width: 250px;
    }

    input[type="email"] {
        width: 180px;
    }

    .cursor,
    .cursor-follower {
        display: none;
        /* Hide custom cursor on touch devices */
    }

    * {
        cursor: auto;
        /* Restore default cursor */
    }
}