/* HERO ARCHITECTURE */
.hero-section {
    height: 80vh; 
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--void-black);
}

.bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 60px;
    width: 100%;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    color: var(--alert-amber);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(217, 119, 6, 0.3);
    padding-bottom: 5px;
}

.status-indicator span {
    width: 6px; height: 6px;
    background: var(--alert-amber);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 550px;
    margin-bottom: 50px;
    margin-top: 20px;
    line-height: 1.7;
}

.tech-readout {
    position: absolute;
    bottom: 50px;
    right: 50px;
    text-align: right;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--slate);
    opacity: 0.5;
    line-height: 1.8;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }