/* Futuristic hero micro-interactions */

.command-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(103, 232, 249, 0.08), rgba(168, 85, 247, 0.08));
    opacity: 0.6;
}

.id-card h1 {
    background: linear-gradient(120deg, #67e8f9, #c084fc, #22d3ee);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: titleShift 12s ease infinite;
}

@keyframes titleShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-typed {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin: 0;
    color: rgba(248, 250, 252, 0.65);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.hero-typed .typed-text {
    color: var(--text-accent);
}

.hero-typed .typed-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.2; }
}
