/* CompFlo low-bandwidth badge — dark chrome (marketing nav + global top bar) */
.cf-bw-badge-wrap {
    position: relative;
    flex: 0 0 auto;
}

.cf-bw-badge-wrap[hidden] {
    display: none !important;
}

.cf-bw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 8px;
    border-radius: 4px;
    border: 1px solid rgba(251, 191, 36, 0.45);
    background: rgba(251, 191, 36, 0.12);
    color: #fde68a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: default;
    user-select: none;
}

.cf-bw-badge:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

.cf-bw-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
}

.cf-bw-badge.is-pulse .cf-bw-badge__dot {
    animation: cf-bw-pulse 1.6s ease-out infinite;
}

@keyframes cf-bw-pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.cf-bw-badge-tip {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1040;
    display: none;
    width: max-content;
    max-width: min(320px, calc(100vw - 24px));
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    text-transform: none;
    letter-spacing: 0;
    color: #e5e7eb;
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    white-space: normal;
    pointer-events: none;
}

.cf-bw-badge-wrap.is-open .cf-bw-badge-tip,
.cf-bw-badge-wrap:hover .cf-bw-badge-tip,
.cf-bw-badge-wrap:focus-within .cf-bw-badge-tip {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .cf-bw-badge.is-pulse .cf-bw-badge__dot {
        animation: none;
    }
}
