.first-time-welcome-overlay {
    z-index: 120;
    background:
        radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 34%),
        var(--modal-overlay);
}

.first-time-welcome {
    width: min(560px, 100%);
    padding: 40px;
    border-radius: 22px;
    background: var(--bg-elevated);
    box-shadow: var(--shadow-modal);
    text-align: center;
}

.first-time-welcome-brand {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 22px;
    border-radius: 14px;
    background: linear-gradient(
        145deg,
        var(--lifecycle-pending-header-start),
        var(--lifecycle-pending-header-end)
    );
    color: white;
    font-size: 14px;
    font-weight: var(--weight-bold);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 20%, transparent);
}

.first-time-welcome-eyebrow {
    margin-bottom: 12px;
}

.first-time-welcome-title {
    max-width: 460px;
    margin: 0 auto;
    color: var(--text-primary);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    letter-spacing: var(--tracking-title);
}

.first-time-welcome-message {
    max-width: 455px;
    min-height: 66px;
    margin: 18px auto 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.first-time-welcome-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}

.first-time-welcome-progress-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--control-bg);
    transition: width .2s ease, background-color .2s ease;
}

.first-time-welcome-progress-dot.is-active {
    width: 24px;
    background: var(--accent);
}

.first-time-welcome-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 30px;
}

.first-time-welcome-skip {
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font: inherit;
    font-size: 12px;
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: color .18s ease;
}

.first-time-welcome-skip:hover {
    color: var(--text-primary);
}

@media (max-width: 560px) {
    .first-time-welcome-overlay {
        padding: 12px;
    }

    .first-time-welcome {
        padding: 32px 22px 24px;
        border-radius: 18px;
    }

    .first-time-welcome-message {
        min-height: 88px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .first-time-welcome-progress-dot {
        transition: none;
    }
}
