/* 
 * Onboarding Flow Styles
 * Premium Glassmorphic Overlay
 */

.onboarding-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.onboarding-overlay.fade-out {
    opacity: 0;
}

.onboarding-card {
    width: 100%;
    max-width: 350px;
    padding: 40px 30px;
    text-align: center;
    animation: slideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.onboarding-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.progress-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--titanium-accent);
}

.onboarding-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.onboarding-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--titanium-text-main);
}

.onboarding-body {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
}

.onboarding-footer {
    display: flex;
    gap: 15px;
}

.onboarding-footer button {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.onboarding-btn-next {
    background: var(--titanium-accent);
    color: white;
}

.onboarding-btn-skip {
    background: rgba(0, 0, 0, 0.05);
    color: #64748b;
}

.onboarding-footer button:active {
    transform: scale(0.95);
}
