/* signed: serozr */
/*
    File: animations.css
    Purpose: animation keyframes used across the site
    Signed by: serozr
*/
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.64s cubic-bezier(.2,.9,.2,1) forwards;
    will-change: opacity, transform;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.typing {
    overflow: hidden;
    border-right: 2px solid #00FF8C;
    white-space: nowrap;
    animation: typing 3s steps(40) 1s 1 normal both, blink 0.6s step-end infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.78; transform: scale(0.995); }
}

/* Reduced motion: shorten/disable repetitive animations */
@media (prefers-reduced-motion: reduce) {
    .typing { animation: none; border-right: none; }
    .fade-in { animation: none; }
    .pulse { animation: none; }
}

/* End of file - signed: serozr */
