﻿/* TalentHub/css/onboarding.css â€” Fuma Technologies Onboarding UI */

/* â”€â”€ OVERLAY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#onboarding-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(6, 6, 10, 0.92);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#onboarding-overlay.visible  { opacity: 1; }
#onboarding-overlay.dismissing { opacity: 0; pointer-events: none; }

/* â”€â”€ MODAL BOX â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ob-modal {
    background: #111118;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 2.5rem 2rem 2rem;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,111,0,0.08);
    scrollbar-width: none;
}
.ob-modal::-webkit-scrollbar { display: none; }

/* â”€â”€ SKIP BUTTON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ob-skip {
    position: absolute;
    top: 18px; right: 18px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #7a7a96;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    display: flex; align-items: center; gap: 6px;
    transition: all 0.2s;
}
.ob-skip:hover { color: var(--primary, #FF6F00); border-color: var(--primary, #FF6F00); }

/* â”€â”€ STEP DOTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ob-steps {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.ob-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.35s ease;
}
.ob-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--primary, #FF6F00);
}
.ob-dot.complete {
    background: rgba(255,111,0,0.5);
}

/* â”€â”€ CONTENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ob-content {
    opacity: 1;
    transform: translateY(0);
}

.ob-header {
    text-align: center;
    margin-bottom: 2rem;
}
.ob-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #f0f0f5;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}
.ob-subtitle {
    color: #7a7a96;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* â”€â”€ INTENT CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ob-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 560px) {
    .ob-cards { grid-template-columns: 1fr; }
}

.ob-card {
    background: #0d0d14;
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
    color: #f0f0f5;
}

.ob-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--card-color, #FF6F00), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s;
}

.ob-card:hover { border-color: var(--card-color, #FF6F00); transform: translateY(-3px); }
.ob-card:hover::before { opacity: 0.06; }

.ob-card.selected {
    border-color: var(--card-color, #FF6F00);
    background: #13131e;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--card-color, #FF6F00) 15%, transparent);
}
.ob-card.selected::before { opacity: 0.1; }

.ob-card-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--card-color, #FF6F00);
    transition: background 0.2s;
}
.ob-card.selected .ob-card-icon { background: color-mix(in srgb, var(--card-color, #FF6F00) 15%, transparent); }

.ob-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.ob-card p  { font-size: 0.78rem; color: #7a7a96; line-height: 1.4; }

.ob-card-check {
    position: absolute;
    top: 12px; right: 12px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--card-color, #FF6F00);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}
.ob-card.selected .ob-card-check { opacity: 1; transform: scale(1); }

/* â”€â”€ SKILL PILLS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ob-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-height: 320px;
    overflow-y: auto;
    padding: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,111,0,0.3) transparent;
}

.ob-pill {
    padding: 9px 18px;
    background: #0d0d14;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    color: #a0a0b8;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}
.ob-pill:hover { border-color: rgba(255,111,0,0.4); color: #f0f0f5; }
.ob-pill.selected {
    background: rgba(255,111,0,0.12);
    border-color: #FF6F00;
    color: #FF6F00;
    font-weight: 600;
}

.ob-hint {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #7a7a96;
}

/* â”€â”€ COMPLETION SCREEN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ob-complete {
    text-align: center;
    padding: 1rem 0;
}

.ob-complete-icon {
    width: 90px; height: 90px;
    background: rgba(255,111,0,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: #FF6F00;
    position: relative;
    animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,111,0,0.2); }
    50% { box-shadow: 0 0 0 16px rgba(255,111,0,0); }
}

.ob-summary {
    background: #0d0d14;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}
.ob-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #a0a0b8;
    text-align: left;
}
.ob-summary-item strong { color: #f0f0f5; }

/* â”€â”€ NAVIGATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ob-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
}

.ob-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    border: none;
}
.ob-btn-ghost {
    background: transparent;
    color: #7a7a96;
    border: 1px solid rgba(255,255,255,0.1);
}
.ob-btn-ghost:hover { color: #f0f0f5; background: rgba(255,255,255,0.04); }

.ob-btn-primary {
    background: #FF6F00;
    color: white;
    box-shadow: 0 4px 16px rgba(255,111,0,0.3);
    margin-left: auto;
}
.ob-btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); }
.ob-btn-final {
    background: linear-gradient(135deg, #FF6F00, #ff9a3c);
    box-shadow: 0 4px 24px rgba(255,111,0,0.4);
}

/* â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes shake {
    0%,100% { transform: translateX(0); }
    20%,60% { transform: translateX(-6px); }
    40%,80% { transform: translateX(6px); }
}
.shake { animation: shake 0.5s ease; }
