/* hero-typo.css - Brutalist Typography & Engine Styles */

/* Enforce the Pure Black Void */
.hero-typo-section {
    background-color: #000000;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Z-Index Hierarchy */
#hero-brain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Background */
    /* Opacity handled in JS or via class, but usually full opacity for canvas is fine if materials are transparent */
}

/* Typography Specifics */
.hero-eyebrow {
    color: #00FFCC;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    /* Animation handled by class below or specific rule */
}

.hero-h1 {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif; 
    font-weight: 800; 
    /* Font size handled by Tailwind classes in HTML */
    line-height: 1.1;
    letter-spacing: -2px; 
    text-shadow: 0 0 30px rgba(0,0,0,0.5); 
}

.brutalist-shadow {
    text-shadow: 0 4px 8px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6);
}

.hero-subhead {
    color: #A0A0A0; 
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9); /* Stronger shadow for readability */
}

/* CTAs */
.hero-cta {
    position: relative;
    overflow: hidden;
    /* Tailwind handles most styling */
}

.hero-cta-secondary {
    position: relative;
    overflow: hidden;
}

/* Animation Utility Class (referenced in HTML) */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Genesis Node */
.genesis-node-wrapper {
    /* Position handled by Tailwind */
    z-index: 60; /* Higher than text z-50 */
}

.genesis-node {
    /* Styling handled by Tailwind mostly, but specific glow here */
    box-shadow: 0 0 10px #00FFCC, 0 0 20px #00FFCC;
    animation: pulseNode 2s infinite;
}

@keyframes pulseNode {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
