/**
 * S-Cloud — Onboarding tour CSS (v2.2.36)
 */
.sc-onb-overlay {
    position: fixed; inset: 0;
    z-index: 1100;
    background: rgba(20,14,30,.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: auto;
    animation: scOnbFadeIn .25s ease-out;
}
@keyframes scOnbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.sc-onb-spotlight {
    position: fixed;
    border-radius: 8px;
    box-shadow: 0 0 0 9999px rgba(20,14,30,.65), 0 0 0 3px #7C3AED, 0 0 24px rgba(124,58,237,.5);
    transition: top .35s cubic-bezier(.42,0,.58,1),
                left .35s cubic-bezier(.42,0,.58,1),
                width .35s cubic-bezier(.42,0,.58,1),
                height .35s cubic-bezier(.42,0,.58,1);
    pointer-events: none;
    background: transparent;
}

.sc-onb-card {
    position: fixed;
    width: 360px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    padding: 20px 22px;
    transition: top .35s cubic-bezier(.42,0,.58,1), left .35s cubic-bezier(.42,0,.58,1);
    z-index: 1101;
}

.sc-onb-card.is-center {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: 440px;
}

.sc-onb-skip {
    position: absolute; top: 8px; right: 10px;
    background: none; border: none;
    font-size: 1.4rem; line-height: 1;
    color: #9ca3af; cursor: pointer;
    width: 28px; height: 28px;
    border-radius: 6px;
    transition: background .15s ease, color .15s ease;
}
.sc-onb-skip:hover {
    background: #f3f4f6; color: #ef4444;
}

.sc-onb-step-indicator {
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED, #5C2D91);
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.sc-onb-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 10px;
    line-height: 1.3;
}

.sc-onb-body {
    color: #4b5563;
    font-size: .9rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.sc-onb-body kbd {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: .78rem;
    font-family: ui-monospace,SFMono-Regular,Menlo,monospace;
    box-shadow: 0 1px 0 #d1d5db;
    color: #1f2937;
}

.sc-onb-actions {
    display: flex; justify-content: space-between; gap: 8px;
    margin-top: 4px;
}

.sc-onb-actions .btn { flex: 1; }

@media (max-width: 576px) {
    .sc-onb-card { width: calc(100vw - 24px); }
    .sc-onb-card.is-center { width: calc(100vw - 24px); }
}
