/* Thinking.html V2 - The Void Aesthetic */

/* 1. Typography Smoothing & Selection */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 2. Noise Texture Generation (Base64 for no-asset dependency) */
.noise-bg {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 100px 100px;
}

/* 3. Hero Typography - Fluid Scale */
.hero-title {
    /* Subtle text shadow for depth in the void */
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

/* 4. Manifesto Text Reveal Logic */
.manifesto-line {
    /* We will use JS to toggle a class, 
       but here's a utility for the active state */
}

.manifesto-line.active {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* 5. Spotlight / Bento Card Effects */
.spotlight-card {
    position: relative;
    overflow: hidden;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -500px);
    left: var(--mouse-x, -500px);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
}

.spotlight-card:hover::before {
    opacity: 1;
}

/* 6. Custom Scrollbar (Minimalist) */
::-webkit-scrollbar {
    width: 4px;
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 7. Utilities */
.fade-in-nav {
    animation: fadeInDown 1s ease-out 1s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}