/* =================================
   Post-onboarding Getting-Started Guide
   ================================= */
.getting-started-overlay {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2500;
    max-width: 360px;
    width: calc(100% - 2.5rem);
    animation: gs-slide-up 0.35s ease;
}

.getting-started-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    padding: 1.25rem 1.25rem 1rem;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.getting-started-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-text-faint);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    transition: color 0.15s ease, background 0.15s ease;
}

.getting-started-close:hover {
    color: var(--color-text);
    background: var(--color-bg-subtle);
}

.getting-started-title {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.getting-started-sub {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.getting-started-progress {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.getting-started-progress-bar {
    flex: 1;
    height: 6px;
    background: #f6ebe7;
    border-radius: 999px;
    overflow: hidden;
}

.getting-started-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--color-success));
    border-radius: 999px;
    transition: width 0.3s ease;
}

.getting-started-progress-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 2.25rem;
    text-align: right;
}

.getting-started-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.getting-started-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    background: var(--light-color);
    border-radius: var(--radius-sm, 6px);
    font-size: 0.85rem;
    transition: background 0.15s ease;
}

.getting-started-step:hover {
    background: #f6ebe7;
}

.getting-started-step.is-done {
    background: var(--status-success-bg);
    color: var(--status-success-fg);
}

.getting-started-step.is-done .getting-started-label {
    text-decoration: line-through;
    color: var(--status-success-fg);
}

.getting-started-check {
    font-size: 1rem;
    width: 1.25rem;
    display: inline-flex;
    justify-content: center;
    color: var(--color-text-faint);
    flex-shrink: 0;
}

.getting-started-step.is-done .getting-started-check {
    color: var(--color-success);
}

.getting-started-label {
    color: var(--dark-color);
    text-decoration: none;
    flex: 1;
    line-height: 1.3;
}

a.getting-started-label:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.getting-started-actions {
    display: flex;
    justify-content: flex-end;
}

@keyframes gs-slide-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .getting-started-overlay {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        width: auto;
        max-width: none;
    }
}
