#kbrp-brief-widget,
#kbrp-brief-widget *,
#kbrp-brief-widget *::before,
#kbrp-brief-widget *::after {
    box-sizing: border-box !important;
}

#kbrp-brief-widget {
    all: initial !important;
    --kbrp-accent: #111111;
    --kbrp-dark: #111111;
    --kbrp-surface: #f4f1ed;
    --kbrp-line: #d8d1c8;
    --kbrp-bottom: 28px;
    --kbrp-right: 28px;
    position: fixed !important;
    right: var(--kbrp-right) !important;
    bottom: var(--kbrp-bottom) !important;
    z-index: 2147483000 !important;
    width: max-content !important;
    max-width: calc(100vw - 28px) !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    opacity: 0 !important;
    transform: translateY(12px) !important;
    pointer-events: none !important;
    transition: opacity .42s ease, transform .42s cubic-bezier(.2,.78,.22,1) !important;
}

#kbrp-brief-widget.kbrp-brief-widget.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

#kbrp-brief-widget .kbrp-brief-widget__inner {
    all: unset !important;
    position: relative !important;
    display: flex !important;
    align-items: flex-end !important;
    gap: 12px !important;
    width: max-content !important;
    max-width: calc(100vw - 28px) !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
}

#kbrp-brief-widget .kbrp-brief-widget__launcher {
    all: unset !important;
    position: relative !important;
    z-index: 3 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    min-height: 48px !important;
    padding: 0 18px !important;
    color: #ffffff !important;
    background: var(--kbrp-accent) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 46px rgba(0,0,0,.16) !important;
    cursor: pointer !important;
    text-decoration: none !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    overflow: hidden !important;
    animation: kbrpDesktopAttention 6.8s ease-in-out 1.6s infinite !important;
    transition: transform .28s cubic-bezier(.2,.78,.22,1), background .28s ease, box-shadow .28s ease !important;
}

#kbrp-brief-widget .kbrp-brief-widget__launcher::after {
    content: "" !important;
    position: absolute !important;
    left: -45% !important;
    top: 0 !important;
    width: 42% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent) !important;
    transform: translateX(-115%) !important;
    animation: kbrpLineScan 5.6s ease-in-out 2.2s infinite !important;
    pointer-events: none !important;
}


#kbrp-brief-widget .kbrp-brief-widget__launcher::before {
    content: "" !important;
    position: absolute !important;
    inset: 5px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    pointer-events: none !important;
}

#kbrp-brief-widget .kbrp-brief-widget__launcher-label {
    all: unset !important;
    color: #ffffff !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

#kbrp-brief-widget .kbrp-brief-widget__label-default,
#kbrp-brief-widget .kbrp-brief-widget__label-hover {
    all: unset !important;
    display: inline-block !important;
    color: #ffffff !important;
    transition: opacity .22s ease, transform .28s cubic-bezier(.2,.78,.22,1), max-width .28s ease !important;
    white-space: nowrap !important;
}

#kbrp-brief-widget .kbrp-brief-widget__label-hover {
    max-width: 0 !important;
    opacity: 0 !important;
    transform: translateX(6px) !important;
    overflow: hidden !important;
}

#kbrp-brief-widget:hover .kbrp-brief-widget__label-default,
#kbrp-brief-widget:focus-within .kbrp-brief-widget__label-default {
    max-width: 0 !important;
    opacity: 0 !important;
    transform: translateX(-6px) !important;
    overflow: hidden !important;
}

#kbrp-brief-widget:hover .kbrp-brief-widget__label-hover,
#kbrp-brief-widget:focus-within .kbrp-brief-widget__label-hover {
    max-width: 230px !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

#kbrp-brief-widget .kbrp-brief-widget__launcher-arrow {
    all: unset !important;
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
    transition: transform .28s ease !important;
}

#kbrp-brief-widget:hover .kbrp-brief-widget__launcher,
#kbrp-brief-widget:focus-within .kbrp-brief-widget__launcher {
    transform: translateY(-3px) !important;
    box-shadow: 0 22px 56px rgba(0,0,0,.19) !important;
    animation: none !important;
}

#kbrp-brief-widget:hover .kbrp-brief-widget__launcher-arrow,
#kbrp-brief-widget:focus-within .kbrp-brief-widget__launcher-arrow {
    transform: translate(3px, -1px) !important;
}

#kbrp-brief-widget .kbrp-brief-widget__hint {
    all: unset !important;
    display: none !important;
}

#kbrp-brief-widget .kbrp-brief-widget__panel {
    all: unset !important;
    position: absolute !important;
    right: 0 !important;
    bottom: calc(100% + 14px) !important;
    width: min(344px, calc(100vw - 32px)) !important;
    color: var(--kbrp-dark) !important;
    background: rgba(244,241,237,.96) !important;
    border: 1px solid var(--kbrp-line) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.14) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(12px) scale(.985) !important;
    transform-origin: bottom right !important;
    pointer-events: none !important;
    transition: opacity .28s ease, visibility .28s ease, transform .34s cubic-bezier(.2,.78,.22,1) !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
}

#kbrp-brief-widget .kbrp-brief-widget__panel::after {
    content: "" !important;
    position: absolute !important;
    right: 26px !important;
    bottom: -7px !important;
    width: 14px !important;
    height: 14px !important;
    background: rgba(244,241,237,.96) !important;
    border-right: 1px solid var(--kbrp-line) !important;
    border-bottom: 1px solid var(--kbrp-line) !important;
    transform: rotate(45deg) !important;
}

#kbrp-brief-widget .kbrp-brief-widget__panel::before {
    content: "" !important;
    position: absolute !important;
    left: 24px !important;
    top: 18px !important;
    width: 54px !important;
    height: 1px !important;
    background: var(--kbrp-dark) !important;
    opacity: .64 !important;
    transform-origin: left center !important;
    animation: kbrpPanelMarker 3.8s ease-in-out infinite !important;
}

#kbrp-brief-widget:hover .kbrp-brief-widget__panel,
#kbrp-brief-widget:focus-within .kbrp-brief-widget__panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

#kbrp-brief-widget .kbrp-brief-widget__panel-link {
    all: unset !important;
    position: relative !important;
    display: block !important;
    padding: 28px 24px 22px !important;
    color: var(--kbrp-dark) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
}

#kbrp-brief-widget .kbrp-brief-widget__panel-link::before {
    content: "" !important;
    position: absolute !important;
    left: 24px !important;
    right: 24px !important;
    top: 56px !important;
    height: 1px !important;
    background: var(--kbrp-line) !important;
}

#kbrp-brief-widget .kbrp-brief-widget__eyebrow {
    all: unset !important;
    display: block !important;
    margin: 0 0 22px !important;
    color: rgba(17,17,17,.58) !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
}

#kbrp-brief-widget .kbrp-brief-widget__title {
    all: unset !important;
    display: block !important;
    margin: 0 0 12px !important;
    color: var(--kbrp-dark) !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
    font-weight: 500 !important;
    letter-spacing: -.035em !important;
}

#kbrp-brief-widget .kbrp-brief-widget__text {
    all: unset !important;
    display: block !important;
    max-width: 280px !important;
    color: rgba(17,17,17,.68) !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
    letter-spacing: -.01em !important;
}

#kbrp-brief-widget .kbrp-brief-widget__cta {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 18px !important;
    padding-top: 14px !important;
    width: 100% !important;
    border-top: 1px solid var(--kbrp-line) !important;
    color: var(--kbrp-dark) !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
}

#kbrp-brief-widget .kbrp-brief-widget__time {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    width: max-content !important;
    margin-top: 14px !important;
    padding: 7px 9px !important;
    color: rgba(17,17,17,.72) !important;
    background: rgba(17,17,17,.055) !important;
    border: 1px solid rgba(17,17,17,.10) !important;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

#kbrp-brief-widget .kbrp-brief-widget__cta-default,
#kbrp-brief-widget .kbrp-brief-widget__cta-hover {
    all: unset !important;
    display: inline-block !important;
    color: var(--kbrp-dark) !important;
    transition: opacity .2s ease, transform .24s ease, max-width .24s ease !important;
    white-space: nowrap !important;
}

#kbrp-brief-widget .kbrp-brief-widget__cta-hover {
    max-width: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transform: translateX(6px) !important;
}

#kbrp-brief-widget:hover .kbrp-brief-widget__cta-default,
#kbrp-brief-widget:focus-within .kbrp-brief-widget__cta-default {
    max-width: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transform: translateX(-6px) !important;
}

#kbrp-brief-widget:hover .kbrp-brief-widget__cta-hover,
#kbrp-brief-widget:focus-within .kbrp-brief-widget__cta-hover {
    max-width: 240px !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

#kbrp-brief-widget .kbrp-brief-widget__cta > span[aria-hidden="true"] {
    all: unset !important;
    transition: transform .28s ease !important;
}

#kbrp-brief-widget .kbrp-brief-widget__panel-link:hover .kbrp-brief-widget__cta > span[aria-hidden="true"],
#kbrp-brief-widget .kbrp-brief-widget__panel-link:focus-visible .kbrp-brief-widget__cta > span[aria-hidden="true"] {
    transform: translateX(4px) !important;
}


@keyframes kbrpDesktopAttention {
    0%, 68%, 100% { transform: translateY(0); box-shadow: 0 18px 46px rgba(0,0,0,.16); }
    74% { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(0,0,0,.20); }
    80% { transform: translateY(0); }
    86% { transform: translateY(-2px); }
    92% { transform: translateY(0); }
}

@keyframes kbrpLineScan {
    0% { transform: translateX(-115%); opacity: 0; }
    18% { opacity: .72; }
    58% { opacity: .28; }
    100% { transform: translateX(115%); opacity: 0; }
}

@keyframes kbrpPanelMarker {
    0%, 100% { transform: scaleX(.36); opacity: .48; }
    50% { transform: scaleX(1); opacity: .92; }
}

@keyframes kbrpMobileHintEnter {
    0% { opacity: 0; transform: translateX(10px) scale(.96); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes kbrpMobileHintAttention {
    0%, 72%, 100% { transform: translateX(0); }
    78% { transform: translateX(-5px); }
    84% { transform: translateX(2px); }
    90% { transform: translateX(-2px); }
}

@keyframes kbrpMobileLauncherBreath {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@media (max-width: 767px) {
    #kbrp-brief-widget {
        right: 12px !important;
        bottom: 14px !important;
        max-width: calc(100vw - 24px) !important;
    }

    #kbrp-brief-widget.kbrp-brief-widget--hidden-mobile {
        display: none !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__inner {
        width: auto !important;
        max-width: calc(100vw - 24px) !important;
        gap: 0 !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__panel,
    #kbrp-brief-widget .kbrp-brief-widget__panel::after {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__launcher {
        min-height: 44px !important;
        padding: 0 14px !important;
        gap: 10px !important;
        box-shadow: 0 12px 34px rgba(0,0,0,.16) !important;
        animation: kbrpMobileLauncherBreath 3.8s ease-in-out 1.4s infinite !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__launcher::before {
        inset: 4px !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__launcher-label {
        font-size: 10px !important;
        letter-spacing: .12em !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__label-hover {
        display: none !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__label-default {
        max-width: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__launcher-arrow {
        font-size: 14px !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__hint {
        all: unset !important;
        position: absolute !important;
        right: calc(100% + 9px) !important;
        bottom: 0 !important;
        z-index: 4 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        min-height: 44px !important;
        max-width: calc(100vw - 104px) !important;
        padding: 0 12px !important;
        color: var(--kbrp-dark) !important;
        background: rgba(244,241,237,.98) !important;
        border: 1px solid var(--kbrp-line) !important;
        box-shadow: 0 12px 32px rgba(0,0,0,.12) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        text-decoration: none !important;
        cursor: pointer !important;
        font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
        transform: translateX(10px) scale(.96) !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__hint::after {
        content: "" !important;
        position: absolute !important;
        right: -6px !important;
        bottom: 16px !important;
        width: 11px !important;
        height: 11px !important;
        background: rgba(244,241,237,.98) !important;
        border-top: 1px solid var(--kbrp-line) !important;
        border-right: 1px solid var(--kbrp-line) !important;
        transform: rotate(45deg) !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__hint-kicker {
        all: unset !important;
        color: rgba(17,17,17,.52) !important;
        font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 10px !important;
        line-height: 1 !important;
        font-weight: 500 !important;
        letter-spacing: .08em !important;
        text-transform: uppercase !important;
    }

    #kbrp-brief-widget .kbrp-brief-widget__hint-text {
        all: unset !important;
        color: var(--kbrp-dark) !important;
        font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 10px !important;
        line-height: 1.18 !important;
        font-weight: 500 !important;
        letter-spacing: .08em !important;
        text-transform: uppercase !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    #kbrp-brief-widget.is-mobile-hint-visible .kbrp-brief-widget__hint {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) scale(1) !important;
        animation: kbrpMobileHintEnter .48s cubic-bezier(.2,.78,.22,1) both, kbrpMobileHintAttention 5.2s ease-in-out 1.35s infinite !important;
    }

    #kbrp-brief-widget:hover .kbrp-brief-widget__launcher,
    #kbrp-brief-widget:focus-within .kbrp-brief-widget__launcher {
        transform: none !important;
    }
}
