:root {
    --bc-ink: #20212b;
    --bc-muted: #707184;
    --bc-soft: #f7f5fc;
    --bc-lav: #f1edff;
    --bc-line: rgba(43, 38, 70, .09);
    --bc-purple: #7058e9;
    --bc-blue: #6d9bf5;
    --bc-pink: #e68ccf;
    --bc-white: rgba(255, 255, 255, .88);
    --bc-radius: 28px;
    --bc-shadow: 0 22px 60px rgba(67, 52, 112, .09);
    --bc-shadow-soft: 0 12px 36px rgba(67, 52, 112, .07)
}

* {
    box-sizing: border-box
}

.bc-page {
    margin: 0;
    background: #fcfbff;
    color: var(--bc-ink);
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    overflow-x: hidden
}

.bc-page a {
    color: inherit;
    text-decoration: none
}

.bc-page button,
.bc-page input,
.bc-page textarea,
.bc-page select {
    font: inherit
}

.bc-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto
}

.bc-narrow {
    width: min(820px, calc(100% - 48px))
}

.bc-main {
    position: relative;
    z-index: 1;
    min-height: 70vh
}

.bc-ambient {
    position: fixed;
    z-index: 0;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .45;
    pointer-events: none
}

.bc-ambient-one {
    width: 370px;
    height: 370px;
    background: #e9e3ff;
    top: 90px;
    right: -130px
}

.bc-ambient-two {
    width: 260px;
    height: 260px;
    background: #e8f2ff;
    top: 680px;
    left: -120px
}

.bc-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: 78px;
    background: rgba(252, 251, 255, .82);
    border-bottom: 1px solid rgba(57, 49, 93, .06);
    backdrop-filter: blur(20px)
}

.bc-nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 48px
}

.bc-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 750;
    font-size: 18px;
    letter-spacing: -.02em;
    white-space: nowrap
}

.bc-brand-mark {
    position: relative;
    width: 29px;
    height: 29px;
    display: inline-block;
    transform: rotate(-8deg)
}

.bc-brand-mark i {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 7px;
    background: linear-gradient(145deg, var(--bc-purple), var(--bc-blue))
}

.bc-brand-mark i:nth-child(1) {
    top: 1px;
    left: 1px
}

.bc-brand-mark i:nth-child(2) {
    right: 1px;
    bottom: 1px;
    background: linear-gradient(145deg, var(--bc-pink), #9c76f2)
}

.bc-brand-mark i:nth-child(3) {
    width: 9px;
    height: 9px;
    right: 2px;
    top: 1px;
    background: #bfd7ff
}

.bc-nav {
    display: flex;
    gap: 30px;
    margin-right: auto
}

.bc-nav a,
.bc-text-link {
    color: #595a6d;
    font-size: 14px;
    transition: .2s
}

.bc-nav a:hover,
.bc-text-link:hover {
    color: var(--bc-purple)
}

.bc-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px
}

.bc-avatar-link {
    padding: 7px 12px;
    background: #fff;
    border: 1px solid var(--bc-line);
    border-radius: 999px;
    font-size: 13px
}

.bc-menu-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 8px
}

.bc-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bc-ink);
    margin: 5px
}

.bc-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 16px;
    font-weight: 650;
    font-size: 14px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s
}

.bc-button:hover {
    transform: translateY(-2px)
}

.bc-button-primary {
    color: #fff !important;
    background: linear-gradient(135deg, #7660eb, #668ff1 62%, #c77bd5);
    box-shadow: 0 12px 28px rgba(105, 83, 223, .23)
}

.bc-button-ghost {
    color: #3e3f4c !important;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--bc-line)
}

.bc-button-small {
    min-height: 40px;
    padding: 0 17px;
    border-radius: 14px
}

.bc-hero {
    padding: 92px 0 70px
}

.bc-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 70px;
    align-items: center
}

.bc-eyebrow,
.bc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6755cb;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase
}

.bc-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bc-purple), var(--bc-pink));
    box-shadow: 0 0 0 6px rgba(112, 88, 233, .08)
}

.bc-hero h1,
.bc-inner-hero h1 {
    margin: 20px 0 24px;
    font-size: 58px;
    line-height: 1.13;
    letter-spacing: -.055em;
    font-weight: 760
}

.bc-hero h1 em {
    font-style: normal;
    color: #765ee2
}

.bc-hero-copy>p {
    max-width: 620px;
    color: var(--bc-muted);
    font-size: 17px;
    line-height: 1.9
}

.bc-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 610px;
    margin: 34px 0 20px;
    padding: 8px 8px 8px 19px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(72, 58, 120, .1);
    border-radius: 19px;
    box-shadow: var(--bc-shadow-soft)
}

.bc-search-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #88849d;
    border-radius: 50%;
    position: relative;
    flex: none
}

.bc-search-icon:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 2px;
    background: #88849d;
    right: -5px;
    bottom: -2px;
    transform: rotate(45deg);
    border-radius: 2px
}

.bc-search input {
    min-width: 0;
    flex: 1;
    height: 46px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--bc-ink)
}

.bc-search button {
    height: 44px;
    border: 0;
    border-radius: 14px;
    padding: 0 20px;
    color: #fff;
    background: #282a36;
    font-weight: 650
}

.bc-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.bc-microcopy {
    display: flex;
    gap: 22px !important;
    margin-top: 23px !important;
    font-size: 12px !important
}

.bc-microcopy span:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 8px;
    border-radius: 50%;
    background: #8e79e8;
    vertical-align: 2px
}

.bc-hero-visual {
    position: relative;
    height: 550px;
    perspective: 1200px
}

.bc-product-card,
.bc-float-card {
    position: absolute;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .9);
    backdrop-filter: blur(22px);
    box-shadow: var(--bc-shadow)
}

.bc-product-main {
    z-index: 3;
    top: 65px;
    left: 55px;
    width: 410px;
    padding: 28px;
    border-radius: 32px;
    transform: rotateY(-7deg) rotateX(3deg) rotateZ(1deg)
}

.bc-product-head {
    display: flex;
    align-items: center;
    gap: 12px
}

.bc-product-head div {
    display: flex;
    flex-direction: column
}

.bc-product-head small,
.bc-product-evidence small,
.bc-float-card small {
    color: #9995a9;
    font-size: 10px
}

.bc-product-head b {
    margin-left: auto;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eeeaff;
    color: #6e59ce;
    font-size: 10px
}

.bc-mini-logo {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: linear-gradient(145deg, #c7bbff, #7fa7f9);
    box-shadow: inset 0 1px 2px #fff
}

.bc-product-company {
    margin-top: 30px;
    padding: 20px;
    background: #faf9fd;
    border: 1px solid var(--bc-line);
    border-radius: 20px;
    display: flex;
    flex-direction: column
}

.bc-product-company span {
    font-size: 10px;
    color: #9995a9
}

.bc-product-lines {
    padding: 24px 4px 13px
}

.bc-product-lines i {
    display: block;
    height: 9px;
    border-radius: 10px;
    background: #eceaf1;
    margin-bottom: 11px
}

.bc-product-lines i:nth-child(2) {
    width: 83%
}

.bc-product-lines i:nth-child(3) {
    width: 62%;
    background: #e5e0fa
}

.bc-product-evidence {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 17px;
    background: rgba(241, 237, 255, .72)
}

.bc-product-evidence>span {
    width: 34px;
    height: 38px;
    border: 1px solid rgba(112, 88, 233, .23);
    border-radius: 10px;
    background: rgba(255, 255, 255, .7)
}

.bc-product-evidence div {
    display: flex;
    flex-direction: column
}

.bc-float-card {
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 19px
}

.bc-float-card div {
    display: flex;
    flex-direction: column
}

.bc-float-status {
    top: 23px;
    right: 0
}

.bc-float-status>span {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #c7f1dc;
    position: relative
}

.bc-float-status>span:after {
    content: "";
    position: absolute;
    width: 9px;
    height: 5px;
    border: 2px solid #368f64;
    border-top: 0;
    border-right: 0;
    transform: rotate(45deg);
    left: 8px;
    top: 9px
}

.bc-float-reply {
    left: 5px;
    bottom: 76px
}

.bc-float-reply>i {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 12px;
    background: #ede9ff;
    color: #6d58d4;
    font-style: normal;
    font-weight: 700
}

.bc-orbit {
    position: absolute;
    border: 1px solid rgba(121, 98, 221, .16);
    border-radius: 50%;
    transform: rotate(-15deg)
}

.bc-orbit-one {
    width: 520px;
    height: 360px;
    top: 70px;
    left: 10px
}

.bc-orbit-two {
    width: 410px;
    height: 480px;
    top: 20px;
    left: 70px;
    transform: rotate(25deg)
}

.bc-glass-sphere {
    position: absolute;
    z-index: 4;
    right: 30px;
    bottom: 40px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95), rgba(180, 170, 244, .38) 44%, rgba(116, 90, 217, .34));
    box-shadow: inset -10px -12px 28px rgba(95, 69, 180, .18), 0 20px 40px rgba(86, 67, 160, .13)
}

.bc-section {
    padding: 50px 0
}

.bc-soft-section {
    background: rgba(246, 244, 252, .72);
    border-top: 1px solid rgba(75, 61, 116, .04);
    border-bottom: 1px solid rgba(75, 61, 116, .04)
}

.bc-trust-strip {
    padding: 26px 0
}

.bc-stats {
    display: grid;
    grid-template-columns: repeat(3, 150px) 1fr;
    align-items: center;
    gap: 28px;
    padding: 25px 32px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--bc-line);
    border-radius: 24px
}

.bc-stats div {
    display: flex;
    align-items: baseline;
    gap: 8px
}

.bc-stats strong {
    font-size: 24px
}

.bc-stats span,
.bc-stats p {
    color: var(--bc-muted);
    font-size: 12px
}

.bc-stats p {
    margin: 0;
    text-align: right
}

.bc-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px
}

.bc-section h2,
.bc-section-head h2 {
    margin: 8px 0 0;
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: -.04em
}

.bc-section-head>p {
    margin: 0;
    color: var(--bc-muted)
}

.bc-section-head>a {
    color: #6755cb;
    font-size: 13px;
    font-weight: 650
}

.bc-topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.bc-topic-card {
    position: relative;
    min-height: 170px;
    padding: 23px;
    border: 1px solid var(--bc-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .72);
    transition: .25s
}

.bc-topic-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: var(--bc-shadow-soft)
}

.bc-topic-card strong,
.bc-topic-card small {
    display: block
}

.bc-topic-card strong {
    margin-top: 22px;
    font-size: 16px
}

.bc-topic-card small {
    color: var(--bc-muted)
}

.bc-topic-card>i {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #9e99af;
    font-style: normal
}

.bc-topic-icon {
    display: block;
    width: 43px;
    height: 43px;
    border-radius: 15px;
    background: linear-gradient(145deg, #f0ecff, #dbe8ff);
    border: 1px solid rgba(122, 102, 208, .1);
    position: relative
}

.bc-topic-icon:after {
    content: "";
    position: absolute;
    inset: 13px;
    border: 2px solid #7864d4;
    border-radius: 5px
}

.bc-topic-overtime,
.bc-topic-dismissal {
    background: linear-gradient(145deg, #edf5ff, #dfe9ff)
}

.bc-topic-bullying,
.bc-topic-discrimination {
    background: linear-gradient(145deg, #fff0f8, #f0e7ff)
}

.bc-report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.bc-report-list {
    display: grid;
    gap: 16px
}

.bc-report-card {
    padding: 25px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--bc-line);
    transition: .25s
}

.bc-report-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bc-shadow-soft)
}

.bc-report-meta {
    display: flex;
    align-items: center;
    gap: 8px
}

.bc-report-meta span,
.bc-report-meta b {
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 650
}

.bc-report-meta span {
    background: #f0edfa;
    color: #6c58cc
}

.bc-report-meta b {
    background: #fff0f6;
    color: #a9527f
}

.bc-report-meta .is-verified {
    background: #eaf8f1;
    color: #398063
}

.bc-report-meta .bc-source-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    transition: .2s
}

.bc-report-meta .bc-source-label.is-import {
    border-color: rgba(93, 104, 190, .13);
    background: linear-gradient(135deg, #eeebff, #e9f4ff);
    color: #5e60b8
}

.bc-report-meta a.bc-source-label.is-import:hover {
    transform: translateY(-1px);
    border-color: rgba(93, 104, 190, .25);
    box-shadow: 0 7px 18px rgba(93, 104, 190, .12)
}

.bc-report-meta .bc-source-label.is-user {
    border-color: rgba(58, 139, 105, .12);
    background: #eaf8f1;
    color: #398063
}

.bc-source-label i {
    font-size: 11px;
    font-style: normal
}

.bc-report-card h3 {
    margin: 18px 0 11px;
    font-size: 19px;
    line-height: 1.45
}

.bc-report-card>p {
    min-height: 74px;
    color: var(--bc-muted);
    font-size: 13px
}

.bc-report-card footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 15px;
    border-top: 1px solid var(--bc-line);
    color: #8b8998;
    font-size: 11px
}

.bc-report-card footer a {
    color: #4d4e5d;
    font-weight: 650
}

.bc-how-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center
}

.bc-how-grid>div>p {
    color: var(--bc-muted);
    font-size: 16px
}

.bc-steps {
    list-style: none;
    margin: 0;
    padding: 0
}

.bc-steps li {
    display: flex;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--bc-line)
}

.bc-steps li>span {
    color: #7a66dc;
    font-size: 12px;
    font-weight: 700
}

.bc-steps strong {
    font-size: 17px
}

.bc-steps p {
    margin: 5px 0 0;
    color: var(--bc-muted);
    font-size: 13px
}

.bc-final-cta {
    padding-top: 20px
}

.bc-cta-panel {
    text-align: center;
    padding: 68px 30px;
    border-radius: 32px;
    background: linear-gradient(145deg, #f4f1ff, #f9f8fd 55%, #edf4ff);
    border: 1px solid rgba(109, 87, 201, .08)
}

.bc-cta-panel h2 {
    margin: 12px 0;
    font-size: 38px
}

.bc-cta-panel p {
    margin: 0 auto 25px;
    color: var(--bc-muted)
}

.bc-empty {
    text-align: center;
    padding: 70px 24px;
    border: 1px dashed rgba(78, 63, 126, .18);
    border-radius: 28px;
    background: rgba(255, 255, 255, .5)
}

.bc-empty-compact {
    padding: 38px
}

.bc-empty-orb {
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(145deg, #e5ddff, #dcecff);
    transform: rotate(12deg)
}

.bc-empty h3 {
    margin: 0;
    font-size: 21px
}

.bc-empty p {
    color: var(--bc-muted);
    margin: 8px 0 20px
}

.bc-footer {
    position: relative;
    z-index: 1;
    padding: 52px 0;
    border-top: 1px solid var(--bc-line);
    background: #faf9fd
}

.bc-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr .7fr;
    gap: 50px
}

.bc-footer p,
.bc-footer-meta {
    color: var(--bc-muted);
    font-size: 12px
}

.bc-footer-links {
    display: flex;
    gap: 24px;
    font-size: 13px
}

.bc-footer-meta {
    text-align: right
}

.bc-inner-hero {
    padding: 40px 0 0;
    text-align: center
}

.bc-inner-hero h1 {
    font-size: 48px
}

.bc-inner-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--bc-muted);
    font-size: 16px
}

.bc-prose p {
    font-size: 17px;
    color: #656676;
    line-height: 2
}

.bc-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.bc-value-grid>div {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--bc-line);
    border-radius: 24px
}

.bc-value-grid>div>span {
    color: #7a65dc;
    font-size: 12px
}

.bc-value-grid h3 {
    margin: 20px 0 8px
}

.bc-value-grid p,
.bc-policy-list p {
    color: var(--bc-muted);
    font-size: 13px
}

.bc-policy-list {
    padding: 10px 30px;
    border-left: 1px solid var(--bc-line)
}

.bc-policy-list p {
    padding: 12px 0
}

.bc-policy-list strong {
    color: var(--bc-ink)
}

.bc-search-hero {
    padding-bottom: 50px
}

.bc-search-hero h1 {
    font-size: 40px;
    margin: 12px 0 25px
}

.bc-search-wide {
    max-width: 760px;
    margin: 0 auto
}

.bc-search-wide input+input {
    flex: .55;
    border-left: 1px solid var(--bc-line);
    padding-left: 18px
}

.bc-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.bc-company-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--bc-line);
    border-radius: 24px;
    transition: .25s
}

.bc-company-card.has-dispute {
    padding-top: 34px;
    padding-right: 130px
}

.bc-dispute-stamp {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 102px;
    height: 44px;
    border: 3px double rgba(190, 48, 69, .78);
    border-radius: 8px;
    color: rgba(190, 48, 69, .86);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: 4px;
    line-height: 1;
    text-indent: 4px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .65);
    transform: rotate(45deg);
    pointer-events: none
}

.bc-dispute-stamp:after {
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(190, 48, 69, .35);
    border-radius: 4px;
    content: ""
}

.bc-company-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bc-shadow-soft)
}

.bc-company-logo {
    display: grid;
    place-items: center;
    flex: none;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(145deg, #e4ddff, #dfeaff);
    color: #6653c7;
    font-size: 20px;
    font-weight: 750
}

.bc-company-info {
    flex: 1;
    min-width: 0
}

.bc-company-info>div {
    display: flex;
    align-items: center;
    gap: 9px
}

.bc-company-info h3 {
    margin: 0;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.bc-company-info>div span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #eaf8f1;
    color: #398063;
    font-size: 9px
}

.bc-company-info p {
    margin: 3px 0;
    color: var(--bc-muted);
    font-size: 12px
}

.bc-company-info footer {
    font-size: 11px;
    color: #888696
}

.bc-company-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 14px
}

.bc-company-info footer b {
    color: #6653c7
}

.bc-company-info footer strong {
    color: #6653c7;
    font-size: 13px
}

.bc-company-tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px !important;
    margin: 10px 0 12px
}

.bc-company-tags b {
    padding: 4px 9px;
    border: 1px solid rgba(114, 91, 213, .12);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(237, 232, 255, .9), rgba(231, 241, 255, .9));
    color: #6756bd;
    font-size: 10px;
    font-weight: 650
}

.bc-company-sources {
    display: flex !important;
    flex-wrap: wrap;
    gap: 7px !important;
    margin: -4px 0 11px
}

.bc-company-sources span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border: 1px solid rgba(77, 125, 166, .12);
    border-radius: 999px;
    background: rgba(244, 249, 255, .88);
    color: #60788d;
    font-size: 10px
}

.bc-company-sources i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8f7be8, #78b7e8);
    box-shadow: 0 0 0 3px rgba(126, 139, 224, .1)
}

.bc-company-info footer em {
    margin-left: 10px;
    color: #a6537d;
    font-style: normal
}

.bc-company-card>i {
    color: #a19dac;
    font-style: normal
}

.bc-pagination {
    text-align: center;
    margin-top: 35px
}

.bc-pagination .pagination {
    display: inline-flex;
    gap: 6px
}

.bc-pagination .pagination>li>a,
.bc-pagination .pagination>li>span {
    border: 0;
    border-radius: 10px;
    color: #69687a
}

.bc-pagination .pagination>.active>span {
    background: #745ee0;
    color: #fff
}

.bc-company-hero {
    text-align: left
}

.bc-company-hero>.bc-shell,
.bc-account-hero>.bc-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.bc-company-title {
    display: flex;
    align-items: center;
    gap: 22px
}

.bc-company-logo-large {
    width: 82px;
    height: 82px;
    border-radius: 25px;
    font-size: 30px
}

.bc-company-title h1 {
    margin: 10px 0 3px;
    font-size: 38px
}

.bc-company-title p {
    margin: 0
}

.bc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #716d7e;
    font-size: 12px;
    font-weight: 650
}

.bc-back-link i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--bc-line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .72);
    font-style: normal;
    transition: .2s
}

.bc-back-link:hover i {
    transform: translateX(-3px);
    background: #fff
}

.bc-company-tags-large {
    margin-bottom: 0
}

.bc-company-tags-large b {
    padding: 5px 10px;
    background: rgba(255, 255, 255, .65)
}

.bc-narrow-wide {
    max-width: 1080px
}

.bc-company-report-stack {
    display: grid;
    gap: 30px
}

.bc-company-report {
    overflow: hidden;
    border: 1px solid rgba(101, 82, 184, .12);
    border-radius: 30px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 22px 60px rgba(83, 70, 135, .08)
}

.bc-company-report-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding: 30px 34px 24px;
    background: linear-gradient(135deg, rgba(250, 248, 255, .96), rgba(246, 250, 255, .92))
}

.bc-company-report-head h2 {
    margin: 12px 0 0;
    color: #292936;
    font-size: 23px;
    line-height: 1.4
}

.bc-report-date {
    flex: none;
    text-align: right
}

.bc-report-date strong,
.bc-report-date span {
    display: block
}

.bc-report-date strong {
    color: #555361;
    font-size: 12px
}

.bc-report-date span {
    margin-top: 4px;
    color: #9a97a6;
    font-size: 10px
}

.bc-company-report>.bc-dispute-banner {
    margin: 20px 34px 24px
}

.bc-company-report-body {
    padding: 32px 34px;
    border-top: 1px solid rgba(112, 93, 185, .08)
}

.bc-company-report-body .bc-article-section+.bc-article-section {
    margin-top: 28px;
    padding-top: 26px
}

.bc-inline-evidence {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0 34px;
    padding: 20px;
    border-radius: 18px;
    background: #f7f4ff
}

.bc-inline-evidence>span {
    flex: none;
    color: #705bd0;
    font-size: 11px;
    font-weight: 700
}

.bc-inline-evidence>div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.bc-inline-evidence a {
    padding: 6px 10px;
    border-radius: 9px;
    background: #fff;
    color: #5f5d6b;
    font-size: 11px
}

.bc-public-cases {
    display: grid;
    gap: 12px;
    margin: 26px 34px 0;
    padding: 22px;
    border: 1px solid rgba(167, 91, 128, .12);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 249, 252, .96), rgba(248, 247, 255, .94))
}

.bc-public-cases-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 5px
}

.bc-public-cases-head span {
    color: #32313e;
    font-size: 15px;
    font-weight: 750
}

.bc-public-cases-head strong {
    color: #9893a4;
    font-size: 10px;
    font-weight: 600
}

.bc-public-case {
    padding: 17px 18px;
    border: 1px solid rgba(80, 68, 125, .09);
    border-radius: 17px;
    background: rgba(255, 255, 255, .82)
}

.bc-public-case header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.bc-public-case header b,
.bc-public-case header span {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px
}

.bc-public-case header b {
    background: #fff0f6;
    color: #a9527f
}

.bc-public-case.is-appeal header b {
    background: #eeeaff;
    color: #6553ba
}

.bc-public-case header span {
    background: #f4f2f8;
    color: #6f6b79
}

.bc-public-case header time {
    margin-left: auto;
    color: #9b97a5;
    font-size: 10px
}

.bc-public-case>p {
    margin: 13px 0 0;
    color: #555361;
    font-size: 13px;
    line-height: 1.8
}

.bc-public-case>div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid rgba(80, 68, 125, .08);
    color: #666272;
    font-size: 12px;
    line-height: 1.7
}

.bc-public-case>div strong {
    color: #393744
}

.bc-company-report>.bc-record-actions {
    margin: 30px 34px 0;
    padding-bottom: 28px
}

.bc-company-report>.bc-flag-form {
    margin: 0 34px 28px
}

.bc-company-comments {
    margin: 0;
    padding: 30px 34px 34px;
    border-top: 1px solid var(--bc-line);
    background: rgba(249, 248, 253, .72)
}

.bc-company-comments .bc-section-head {
    margin-bottom: 18px
}

.bc-company-comments .bc-section-head h3 {
    margin: 4px 0 0;
    font-size: 18px
}

.bc-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px
}

.bc-side-card {
    position: sticky;
    top: 105px;
    padding: 25px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--bc-line);
    border-radius: 24px
}

.bc-side-card dl {
    margin: 18px 0
}

.bc-side-card dt {
    color: #9b98a7;
    font-size: 11px;
    font-weight: 500
}

.bc-side-card dd {
    margin: 2px 0 14px;
    font-size: 13px
}

.bc-side-card small {
    display: block;
    padding-top: 15px;
    border-top: 1px solid var(--bc-line);
    color: var(--bc-muted);
    font-size: 11px
}

/* .bc-form-hero {
    padding-bottom: 42px
} */

.bc-form-hero h1 {
    font-size: 42px
}

.bc-form-shell {
    max-width: 860px
}

.bc-form {
    display: grid;
    gap: 22px
}

.bc-form-section {
    padding: 32px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--bc-line);
    border-radius: 28px;
    box-shadow: var(--bc-shadow-soft)
}

.bc-form-section-head {
    display: flex;
    gap: 18px;
    margin-bottom: 27px
}

.bc-form-section-head>span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: #eeeaff;
    color: #6b55cf;
    font-size: 11px;
    font-weight: 700
}

.bc-form-section-head h2 {
    margin: 0;
    font-size: 20px
}

.bc-form-section-head p {
    margin: 2px 0 0;
    color: var(--bc-muted);
    font-size: 12px
}

.bc-form label,
.bc-form fieldset {
    display: block;
    margin: 0 0 20px
}

.bc-form label:last-child {
    margin-bottom: 0
}

.bc-form label>span,
.bc-form legend {
    display: block;
    margin-bottom: 8px;
    color: #4b4c58;
    font-size: 13px;
    font-weight: 650
}

.bc-form input,
.bc-form textarea,
.bc-form select,
.bc-comment-form textarea {
    width: 100%;
    border: 1px solid rgba(60, 52, 91, .11);
    border-radius: 15px;
    background: #fbfafe;
    color: var(--bc-ink);
    outline: 0;
    transition: .2s
}

.bc-form input,
.bc-form select {
    height: 49px;
    padding: 0 15px
}

.bc-form textarea,
.bc-comment-form textarea {
    padding: 14px 15px;
    resize: vertical
}

.bc-form input:focus,
.bc-form textarea:focus,
.bc-form select:focus,
.bc-comment-form textarea:focus {
    border-color: rgba(112, 88, 233, .5);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(112, 88, 233, .07)
}

.bc-form label>small,
.bc-upload-box small {
    display: block;
    margin-top: 7px;
    color: #9693a2;
    font-size: 11px
}

.bc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.bc-form fieldset {
    padding: 0;
    border: 0
}

.bc-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px
}

.bc-choice {
    margin: 0 !important
}

.bc-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.bc-choice span {
    margin: 0 !important;
    padding: 12px 8px !important;
    text-align: center;
    border: 1px solid var(--bc-line);
    border-radius: 13px;
    background: #fbfafe;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer
}

.bc-choice input:checked+span {
    color: #6650c8;
    background: #eeeaff;
    border-color: rgba(112, 88, 233, .2)
}

.bc-upload-box {
    padding: 24px;
    border: 1px dashed rgba(83, 67, 135, .22);
    border-radius: 18px;
    background: #faf9fd;
    text-align: center
}

.bc-upload {
    height: 43px;
    padding: 0 17px;
    border: 0;
    border-radius: 13px;
    background: #292a35;
    color: #fff;
    font-weight: 650
}

.bc-upload-preview {
    list-style: none;
    margin: 15px 0 0;
    padding: 0
}

.bc-switch-row,
.bc-declaration {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--bc-line);
    border-radius: 17px;
    background: #faf9fd
}

.bc-switch-row input,
.bc-declaration input {
    width: 18px !important;
    height: 18px !important;
    margin-top: 2px
}

.bc-switch-row span,
.bc-declaration span {
    margin: 0 !important;
    font-weight: 500 !important
}

.bc-switch-row strong,
.bc-switch-row small {
    display: block
}

.bc-switch-row small {
    margin: 2px 0 0
}

.bc-form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 2px
}

.bc-form-submit p {
    margin: 0;
    color: var(--bc-muted);
    font-size: 12px
}

.bc-form-submit>div {
    display: flex;
    gap: 10px
}

.bc-form-context,
.bc-inline-notice {
    margin-bottom: -22px;
    padding: 20px 24px;
    margin-top: 20px;
    background: #f1edff;
    border-radius: 19px
}

.bc-form-context span {
    display: block;
    color: #817a9e;
    font-size: 11px
}

.bc-form-context strong {
    font-size: 17px
}

.bc-form-context p,
.bc-inline-notice p {
    margin: 3px 0 0;
    color: var(--bc-muted);
    font-size: 12px
}

.bc-account-hero {
    text-align: left
}

.bc-account-hero h1 {
    font-size: 40px;
    margin: 9px 0
}

.bc-my-list {
    display: grid;
    gap: 12px
}

.bc-my-list article {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 22px 25px;
    background: #fff;
    border: 1px solid var(--bc-line);
    border-radius: 22px
}

.bc-status-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
}

.bc-status {
    padding: 5px 9px;
    border-radius: 999px;
    background: #eeeaff;
    color: #6650c8;
    font-size: 10px;
    font-weight: 700
}

.bc-status-published {
    background: #eaf8f1;
    color: #398063
}

.bc-status-rejected,
.bc-status-hidden {
    background: #fff0f0;
    color: #aa4e55
}

.bc-status-column small {
    color: #9a97a5;
    font-size: 10px
}

.bc-my-content p {
    margin: 0;
    color: #777486;
    font-size: 11px
}

.bc-my-content h3 {
    margin: 3px 0;
    font-size: 16px
}

.bc-reason {
    color: #a45067;
    font-size: 11px
}

.bc-my-actions a {
    color: #6754cb;
    font-size: 12px;
    font-weight: 650
}

.bc-report-hero {
    text-align: left;
    padding-bottom: 44px
}

.bc-report-hero h1 {
    font-size: 43px
}

.bc-byline {
    display: flex;
    gap: 18px;
    color: #8b8898;
    font-size: 12px
}

.bc-byline a {
    color: #514f5d;
    font-weight: 650
}

.bc-dispute-banner {
    margin-top: 20px;
    padding: 18px 22px;
    border-radius: 18px;
    background: #fff0f6;
    color: #7f4664
}

.bc-dispute-banner p {
    margin: 3px 0 0;
    font-size: 12px
}

.bc-article {
    padding: 38px;
    background: #fff;
    border: 1px solid var(--bc-line);
    border-radius: 28px
}

.bc-article-section+.bc-article-section {
    margin-top: 38px;
    padding-top: 32px;
    border-top: 1px solid var(--bc-line)
}

.bc-article-section>span {
    display: block;
    margin-bottom: 14px;
    color: #6c57ce;
    font-size: 12px;
    font-weight: 700
}

.bc-article-text {
    font-size: 16px;
    line-height: 2.1;
    color: #41424d
}

.bc-article-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
    padding-top: 25px;
    border-top: 1px solid var(--bc-line)
}

.bc-article-facts div {
    padding: 14px;
    background: #faf9fd;
    border-radius: 15px
}

.bc-article-facts small,
.bc-article-facts strong {
    display: block
}

.bc-article-facts small {
    color: #9592a0;
    font-size: 10px
}

.bc-article-facts strong {
    font-size: 12px
}

.bc-evidence,
.bc-comments {
    margin-top: 55px
}

.bc-evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px
}

.bc-evidence-grid a {
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--bc-line);
    border-radius: 17px;
    background: #fff
}

.bc-evidence-grid i {
    color: #7561da;
    font-size: 22px
}

.bc-evidence-grid strong {
    margin-top: 12px;
    font-size: 12px
}

.bc-evidence-grid small {
    color: #9693a2;
    font-size: 10px
}

.bc-evidence-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
    padding: 20px 23px;
    border-radius: 20px;
    background: #f2eefc
}

.bc-evidence-summary>span {
    width: 34px;
    height: 40px;
    border: 1px solid #c4b9ef;
    border-radius: 10px;
    background: rgba(255, 255, 255, .7)
}

.bc-evidence-summary p {
    margin: 3px 0 0;
    color: #7f7a92;
    font-size: 11px
}

.bc-record-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    padding-top: 28px;
    border-top: 1px solid var(--bc-line)
}

.bc-record-actions p {
    margin: 0;
    color: var(--bc-muted);
    font-size: 12px
}

.bc-comment-list {
    display: grid;
    gap: 12px
}

.bc-comment {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--bc-line);
    border-radius: 19px
}

.bc-comment-avatar {
    display: grid;
    place-items: center;
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: #ede9fb;
    color: #6b57ca;
    font-weight: 700
}

.bc-comment header {
    display: flex;
    align-items: center;
    gap: 12px
}

.bc-comment header span {
    color: #9b98a5;
    font-size: 10px
}

.bc-comment p {
    margin: 7px 0 0;
    color: #565765;
    font-size: 13px
}

.bc-comment-form {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid var(--bc-line);
    border-radius: 20px;
    background: #fff
}

.bc-comment-form>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px
}

.bc-comment-form small {
    color: #9693a2
}

.bc-login-prompt {
    padding: 22px;
    text-align: center;
    border-radius: 18px;
    background: #f5f2fc;
    color: var(--bc-muted)
}

.bc-login-prompt a {
    color: #6854cc;
    font-weight: 650
}

@media(max-width:980px) {
    .bc-hero-grid {
        grid-template-columns: 1fr
    }

    .bc-hero-visual {
        height: 480px;
        max-width: 560px;
        width: 100%;
        margin: 0 auto
    }

    .bc-topic-grid,
    .bc-value-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .bc-report-grid {
        grid-template-columns: 1fr 1fr
    }

    .bc-how-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .bc-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .bc-stats p {
        grid-column: 1/-1;
        text-align: left
    }

    .bc-detail-layout {
        grid-template-columns: 1fr
    }

    .bc-side-card {
        position: static
    }

    .bc-company-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:720px) {

    .bc-shell,
    .bc-narrow {
        width: min(100% - 30px, 1180px)
    }

    .bc-header {
        height: 68px
    }

    .bc-nav-wrap {
        gap: 0;
        justify-content: space-between
    }

    .bc-menu-toggle {
        display: block
    }

    .bc-nav,
    .bc-nav-actions {
        display: none
    }

    .bc-header.is-open {
        height: auto
    }

    .bc-header.is-open .bc-nav-wrap {
        flex-wrap: wrap;
        padding-bottom: 16px
    }

    .bc-header.is-open .bc-nav,
    .bc-header.is-open .bc-nav-actions {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 15px
    }

    .bc-header.is-open .bc-nav a,
    .bc-header.is-open .bc-nav-actions a {
        padding: 10px
    }

    .bc-hero {
        padding: 60px 0 35px
    }

    .bc-hero h1,
    .bc-inner-hero h1 {
        font-size: 40px
    }

    .bc-hero-grid {
        gap: 25px
    }

    .bc-hero-visual {
        height: 390px;
        transform: scale(.82);
        transform-origin: top left;
        width: 120%
    }

    .bc-product-main {
        left: 20px
    }

    .bc-float-status {
        right: 15px
    }

    .bc-search {
        flex-wrap: wrap
    }

    .bc-search button {
        width: 100%
    }

    .bc-hero-actions {
        flex-direction: column;
        align-items: stretch
    }

    .bc-microcopy {
        flex-wrap: wrap
    }

    .bc-section {
        padding: 55px 0
    }

    .bc-section-head {
        align-items: flex-start;
        flex-direction: column
    }

    .bc-topic-grid,
    .bc-report-grid,
    .bc-value-grid {
        grid-template-columns: 1fr
    }

    .bc-stats {
        grid-template-columns: 1fr 1fr;
        padding: 22px
    }

    .bc-stats p {
        grid-column: 1/-1
    }

    .bc-footer-grid {
        grid-template-columns: 1fr
    }

    .bc-footer-meta {
        text-align: left
    }

    .bc-footer-links {
        flex-wrap: wrap
    }

    .bc-company-hero>.bc-shell,
    .bc-account-hero>.bc-shell {
        align-items: flex-start;
        flex-direction: column
    }

    .bc-company-title {
        align-items: flex-start
    }

    .bc-company-logo-large {
        width: 62px;
        height: 62px
    }

    .bc-form-section {
        padding: 22px
    }

    .bc-form-grid,
    .bc-choice-grid {
        grid-template-columns: 1fr 1fr
    }

    .bc-form-submit,
    .bc-record-actions {
        align-items: stretch;
        flex-direction: column
    }

    .bc-form-submit>div {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .bc-my-list article {
        grid-template-columns: 1fr
    }

    .bc-article {
        padding: 24px
    }

    .bc-article-facts,
    .bc-evidence-grid {
        grid-template-columns: 1fr
    }

    .bc-byline {
        flex-wrap: wrap
    }

    .bc-report-hero h1 {
        font-size: 34px
    }

    .bc-section h2,
    .bc-section-head h2 {
        font-size: 29px
    }
}

.bc-top-toast {
    position: fixed;
    z-index: 9999;
    top: 88px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 310px;
    max-width: calc(100% - 30px);
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: 16px;
    background: rgba(255, 255, 255, .8);
    color: #4c4b59;
    box-shadow: 0 18px 45px rgba(70, 54, 132, .16);
    font-size: 12px;
    opacity: 0;
    transform: translate(-50%, -18px);
    pointer-events: none;
    backdrop-filter: blur(22px);
    transition: .35s
}

.bc-top-toast:before {
    display: grid;
    place-items: center;
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: #eeeaff;
    color: #6752cc;
    content: "i";
    font-family: Georgia, serif;
    font-weight: 700
}

.bc-top-toast.is-error:before {
    content: "!";
    background: #fff0f2;
    color: #bd5965
}

.bc-top-toast.is-success:before {
    content: "✓";
    background: #eaf8f1;
    color: #378164;
    font-family: inherit
}

.bc-top-toast strong {
    display: block;
    font-size: 12px
}

.bc-top-toast span {
    display: block;
    margin-top: 1px;
    color: #92909d;
    font-size: 10px
}

.bc-top-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0)
}

.bc-top-toast.is-leaving {
    opacity: 0;
    transform: translate(-50%, -12px)
}

@media(max-width:600px) {
    .bc-top-toast {
        top: 77px;
        min-width: 0;
        width: calc(100% - 30px)
    }
}

.bc-tag-fieldset>small {
    display: block;
    margin-top: 10px;
    color: #9693a2;
    font-size: 11px
}

.bc-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.bc-tag-choice {
    position: relative;
    margin: 0 !important
}

.bc-tag-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.bc-tag-choice span {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    margin: 0 !important;
    padding: 0 15px !important;
    border: 1px solid rgba(67, 55, 110, .1);
    border-radius: 999px;
    background: rgba(250, 249, 253, .82);
    color: #666575;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: .2s
}

.bc-tag-choice span i {
    width: 7px;
    height: 7px;
    border: 1px solid #aaa4bd;
    border-radius: 50%;
    background: #fff;
    transition: .2s
}

.bc-tag-choice input:checked+span {
    border-color: rgba(112, 88, 233, .28);
    background: #eeeaff;
    color: #6350c1;
    box-shadow: 0 7px 18px rgba(94, 72, 187, .09)
}

.bc-tag-choice input:checked+span i {
    border-color: #725ddd;
    background: #725ddd;
    box-shadow: 0 0 0 4px rgba(114, 93, 221, .1)
}

.bc-region-picker select:disabled {
    cursor: not-allowed;
    color: #aaa6b5;
    background: #f5f3f8
}

.bc-article-facts-compact {
    grid-template-columns: minmax(220px, 1fr)
}

.bc-company-search {
    max-width: 920px
}

.bc-search-region {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1.1;
    min-width: 300px;
    border-left: 1px solid var(--bc-line)
}

.bc-search-region select {
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border: 0;
    border-right: 1px solid var(--bc-line);
    background: transparent;
    color: #5d5c6b;
    outline: 0
}

.bc-search-region select:last-child {
    border-right: 0
}

.bc-search-region select:focus {
    background: rgba(241, 237, 255, .5)
}

@media (max-width: 720px) {
    .bc-company-search>input {
        flex-basis: calc(100% - 30px)
    }

    .bc-search-region {
        flex-basis: 100%;
        min-width: 0;
        border: 1px solid var(--bc-line);
        border-radius: 13px
    }

    .bc-search-region select {
        width: 100%
    }

    .bc-company-hero>.bc-company-hero-shell,
    .bc-company-report-head,
    .bc-company-report>.bc-record-actions {
        align-items: stretch;
        flex-direction: column
    }

    .bc-company-title {
        align-items: flex-start
    }

    .bc-company-title h1 {
        font-size: 28px
    }

    .bc-report-date {
        text-align: left
    }

    .bc-company-report-head,
    .bc-company-report-body,
    .bc-company-comments {
        padding-right: 22px;
        padding-left: 22px
    }

    .bc-company-report>.bc-dispute-banner,
    .bc-company-report>.bc-record-actions,
    .bc-company-report>.bc-flag-form,
    .bc-inline-evidence,
    .bc-public-cases {
        margin-right: 22px;
        margin-left: 22px
    }

    .bc-public-case>div {
        grid-template-columns: 1fr;
        gap: 4px
    }

    .bc-company-report>.bc-record-actions>div {
        display: flex;
        flex-wrap: wrap;
        gap: 8px
    }
}

/* Premium region selects */
.bc-select-wrap {
    position: relative;
    display: block
}

.bc-select-wrap:before {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 17px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #7769a6;
    border-bottom: 1.5px solid #7769a6;
    content: "";
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
    transition: transform .2s, border-color .2s
}

.bc-select-wrap:after {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 9px;
    width: 24px;
    height: 24px;
    border-radius: 9px;
    background: rgba(116, 94, 218, .07);
    content: "";
    pointer-events: none;
    transform: translateY(-50%);
    transition: background .2s
}

.bc-select-wrap:focus-within:before {
    border-color: #654fca;
    transform: translateY(-30%) rotate(225deg)
}

.bc-select-wrap:focus-within:after {
    background: rgba(116, 94, 218, .12)
}

.bc-form .bc-select-wrap select,
.bc-search-region .bc-select-wrap select {
    width: 100%;
    padding-right: 48px !important;
    border: 1px solid rgba(72, 58, 120, .11) !important;
    border-radius: 15px !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(247, 245, 252, .78)) !important;
    color: #4c4c5b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 8px 22px rgba(71, 55, 128, .045) !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .2s, box-shadow .2s, background .2s
}

.bc-form .bc-select-wrap select:hover,
.bc-search-region .bc-select-wrap select:hover {
    border-color: rgba(112, 88, 233, .25) !important;
    background: rgba(255, 255, 255, .96) !important
}

.bc-form .bc-select-wrap select:focus,
.bc-search-region .bc-select-wrap select:focus {
    border-color: rgba(112, 88, 233, .48) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(112, 88, 233, .075), 0 12px 28px rgba(72, 54, 145, .08) !important
}

.bc-form .bc-select-wrap select:disabled,
.bc-search-region .bc-select-wrap select:disabled {
    border-color: rgba(72, 58, 120, .065) !important;
    background: rgba(244, 242, 248, .66) !important;
    color: #aaa6b5;
    box-shadow: none !important;
    cursor: not-allowed
}

.bc-select-wrap:has(select:disabled):before {
    border-color: #b9b4c5
}

.bc-select-wrap:has(select:disabled):after {
    background: rgba(120, 112, 145, .045)
}

.bc-select-wrap select option {
    background: #fff;
    color: #494956
}

.bc-search-region {
    gap: 8px;
    padding: 0 3px 0 9px;
    border-left: 1px solid rgba(66, 54, 106, .075)
}

.bc-search-region .bc-select-wrap {
    min-width: 0
}

.bc-search-region .bc-select-wrap select {
    height: 42px;
    padding-left: 13px;
    border-radius: 13px !important;
    font-size: 12px
}

.bc-search-region .bc-select-wrap:before {
    right: 14px
}

.bc-search-region .bc-select-wrap:after {
    right: 6px
}

@media (max-width: 720px) {
    .bc-search-region {
        gap: 9px;
        padding: 8px;
        border-color: rgba(72, 58, 120, .075);
        background: rgba(255, 255, 255, .48)
    }
}

.bc-reward-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: visibility .25s, opacity .25s
}

.bc-reward-modal.is-open {
    visibility: visible;
    opacity: 1
}

.bc-reward-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(35, 31, 55, .3);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px)
}

.bc-reward-dialog {
    position: relative;
    width: min(440px, 100%);
    padding: 40px 39px 31px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 246, 255, .91));
    box-shadow: 0 34px 90px rgba(67, 49, 115, .24), inset 0 1px 0 #fff;
    transform: translateY(18px) scale(.97);
    transition: transform .3s cubic-bezier(.2, .8, .2, 1)
}

.bc-reward-modal.is-open .bc-reward-dialog {
    transform: none
}

.bc-reward-dialog:before,
.bc-reward-dialog:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none
}

.bc-reward-dialog:before {
    width: 210px;
    height: 210px;
    right: -115px;
    top: -110px;
    background: radial-gradient(circle, rgba(123, 107, 239, .2), transparent 70%)
}

.bc-reward-dialog:after {
    width: 180px;
    height: 180px;
    left: -100px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(229, 128, 190, .16), transparent 70%)
}

.bc-reward-close {
    position: absolute;
    z-index: 2;
    right: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(72, 61, 113, .08);
    border-radius: 12px;
    color: #898596;
    background: rgba(255, 255, 255, .72);
    transition: .2s
}

.bc-reward-close:hover {
    color: #6457d5;
    background: #fff;
    transform: rotate(4deg)
}

.bc-reward-heart {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(145deg, #7469ef, #cf74c5);
    box-shadow: 0 18px 35px rgba(119, 91, 208, .27), inset 6px 6px 12px rgba(255, 255, 255, .22)
}

.bc-reward-heart:after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(124, 102, 222, .12);
    border-radius: 27px;
    transform: rotate(9deg)
}

.bc-reward-kicker {
    display: block;
    color: #7868dc;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em
}

.bc-reward-dialog h2 {
    margin: 8px 0 10px;
    color: #272735;
    font-size: 25px;
    font-weight: 750;
    letter-spacing: -.03em
}

.bc-reward-message {
    max-width: 340px;
    margin: 0 auto 21px;
    color: #747282;
    font-size: 13px;
    line-height: 1.8
}

.bc-reward-code {
    width: 270px;
    height: 270px;
    margin: 0 auto 12px;
    padding: 10px;
    border: 1px solid rgba(112, 89, 195, .12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 17px 40px rgba(76, 59, 134, .12)
}

.bc-reward-code img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: contain
}

.bc-reward-code.is-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #89839c;
    background: linear-gradient(145deg, #fff, #f4f1ff)
}

.bc-reward-code.is-empty i {
    color: #7869dc;
    font-size: 62px;
    opacity: .72
}

.bc-reward-code.is-empty span {
    font-size: 12px
}

.bc-reward-scan {
    display: block;
    color: #555366;
    font-size: 12px
}

.bc-reward-note {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    color: #8e8b99;
    background: rgba(240, 247, 246, .82);
    font-size: 10px;
    line-height: 1.5
}

.bc-reward-note i {
    color: #58a483
}

.bc-reward-lock {
    overflow: hidden
}

@media(max-width:600px) {
    .bc-reward-modal {
        padding: 16px
    }

    .bc-reward-dialog {
        padding: 34px 22px 25px;
        border-radius: 25px
    }

    .bc-reward-dialog h2 {
        font-size: 22px
    }

    .bc-reward-code {
        width: 174px;
        height: 174px
    }
}