/* pp-intelligence.css — onboarding / registry overlay */

.pp-intel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.pp-intel-overlay.open { display: flex; }

.pp-intel-card {
    position: relative;
    background: var(--bs-body-bg, #fff);
    color: var(--bs-body-color, #212529);
    width: 100%;
    max-width: 620px;
    max-height: 88vh;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.pp-intel-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--bs-secondary-color, #6c757d);
    cursor: pointer;
    z-index: 2;
}
.pp-intel-close:hover { color: var(--bs-body-color, #212529); }

.pp-intel-tabs {
    padding: 1rem 1rem 0 1rem;
    flex: 0 0 auto;
}

.pp-intel-body {
    padding: 1.25rem 1.5rem 1.5rem;
    overflow-y: auto;
}

.pp-intel-body p { line-height: 1.55; }

.pp-intel-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pp-intel-list a { text-decoration: none; }
.pp-intel-list a:hover { text-decoration: underline; }

.pp-intelligence-widget { margin-bottom: 1rem; }
