/* Custom Variables for Professional Civic Palette */
:root {
    --civic-navy: #0f172a;
    --civic-gold: #fbbf24;
    --civic-slate: #64748b;
    --civic-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

@media (prefers-color-scheme: dark) {
    :root {
        --civic-navy: #020617;
        --civic-gold: #fcd34d;
        --civic-slate: #94a3b8;
        --civic-light: #0f172a;
        --glass-bg: rgba(15, 23, 42, 0.7);
        --glass-border: rgba(30, 41, 59, 0.3);
    }
}

/* Modern Startup Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Glassmorphism Effect */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Journey Path Stepper */
.timeline-path {
    position: relative;
}

/* Persona Card Glow */
.persona-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.persona-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Smooth Screen Transitions */
.screen-transition {
    animation: fadeIn 0.4s ease-in-out;
}

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