/* ──────────────────────────────────────────────────────── */
/*  Portal page empty state                                 */
/*  Used on portal pages when a staff user has not yet      */
/*  selected a Client to manage. Quietly directs the user   */
/*  upward to the StaffCompanyContextBar picker.            */
/* ──────────────────────────────────────────────────────── */
.portal-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 5rem;
    text-align: center;
    color: var(--text-muted, rgba(50, 50, 50, 0.55));
    position: relative;
}

.portal-empty-state__art {
    position: relative;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin-bottom: 1.75rem;
}

.portal-empty-state__icon {
    width: 64px;
    height: 64px;
    color: rgba(50, 50, 50, 0.18);
    stroke-width: 1.25;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.portal-empty-state__pulse {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    color: var(--brand-orange, #dd9142);
    animation: portal-empty-pulse 2.4s ease-in-out infinite;
    opacity: 0.85;
    pointer-events: none;
}

.portal-empty-state__pulse svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes portal-empty-pulse {
    0%, 100% { transform: translate(-50%, 0); opacity: 0; }
    35%      { transform: translate(-50%, -4px); opacity: 0.95; }
    70%      { transform: translate(-50%, -8px); opacity: 0; }
}

.portal-empty-state__headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-charcoal, #323232);
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.portal-empty-state__copy {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-muted, rgba(50, 50, 50, 0.55));
    max-width: 420px;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .portal-empty-state__pulse {
        animation: none;
        opacity: 0.6;
        transform: translate(-50%, -4px);
    }
}

@media (max-width: 599px) {
    .portal-empty-state {
        padding: 4rem 1.25rem 3rem;
    }
    .portal-empty-state__art {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }
    .portal-empty-state__icon {
        width: 48px;
        height: 48px;
    }
    .portal-empty-state__headline {
        font-size: 1.0625rem;
    }
}
