#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.58;
}

#matrix-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#matrix-canvas.active {
    opacity: 1;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

.hero-shell {
    z-index: 1;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 13, 23, 0.48);
    backdrop-filter: blur(10px);
}

.hero-status-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.52);
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(3.2rem, 8vw, 5.6rem);
    font-weight: 700;
    line-height: 0.95;
}

.typewriter-cursor {
    display: inline-block;
    width: 0.7rem;
    color: var(--neon-cyan);
    animation: blink 1s infinite;
}

.project-archive-shell,
.project-single-hero {
    position: relative;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 8.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.9rem;
    }

    .hero-lead,
    .archive-lead {
        font-size: 1rem;
    }
}
