/* Guided spotlight tour */
.tour {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.tour__spotlight {
    position: fixed;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(var(--color-accent-rgb), 0.6);
    pointer-events: none;
    transition: top 250ms ease, left 250ms ease, width 250ms ease, height 250ms ease;
}

.tour__spotlight--hidden {
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border: none;
    border-radius: 50%;
}

.tour__card {
    position: fixed;
    width: 340px;
    max-width: calc(100vw - 32px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), var(--shadow-glow);
    transition: top 250ms ease, left 250ms ease;
}

.tour__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.tour__text {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.tour__dots {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.tour__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-border);
    transition: background var(--transition);
}

.tour__dot--active {
    background: var(--color-accent);
    box-shadow: 0 0 6px var(--color-accent);
}

.tour__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.tour__nav {
    display: flex;
    gap: var(--space-sm);
}

.tour__skip {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    cursor: pointer;
    padding: 0;
}

.tour__skip:hover {
    color: var(--color-text);
    text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
    .tour__spotlight,
    .tour__card,
    .tour__dot {
        transition: none;
    }
}
