.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.typewriter-cursor::after {
    content: '█';
    display: inline-block;
    width: 8px;
    margin-left: 6px;
    animation: blink 1s step-end infinite;
    color: #38BDF8; /* theme('colors.primary') */
}

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

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Section divider - decorative separator between sections */
.section-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(56, 189, 248, 0.08),
        rgba(255, 255, 255, 0.1),
        rgba(56, 189, 248, 0.08),
        transparent
    );
    margin: 0;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.15);
}