/**
 * BC PNP Calculator — purple accent variant
 */
#bt-bc-pnp.bt-wrap--bc {
    --bt-primary: #6d28d9;
    --bt-primary-dark: #5b21b6;
    --bt-accent: #7c3aed;
}

.bt-bc-intro {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.bt-bc-live {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 1px solid #ddd6fe;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bt-bc-live {
        grid-template-columns: 180px 1fr;
        align-items: center;
    }
}

.bt-bc-live__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6d28d9;
}

.bt-bc-live__val {
    font-family: var(--bt-font, inherit);
    font-weight: 800;
    font-size: 2rem;
    color: #4c1d95;
    line-height: 1;
}

.bt-bc-live__val span {
    font-size: 1rem;
    font-weight: 600;
    color: #7c3aed;
}

.bt-bc-bar {
    display: grid;
    grid-template-columns: 110px 1fr 36px;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
}

.bt-bc-bar__track {
    height: 6px;
    background: #e9d5ff;
    border-radius: 99px;
    overflow: hidden;
}

.bt-bc-bar__fill {
    height: 100%;
    background: #7c3aed;
    border-radius: 99px;
    transition: width 0.3s ease;
}

.bt-bc-bar__pts {
    text-align: right;
    font-weight: 700;
    color: #5b21b6;
}

.bt-bc-chip {
    font-size: 0.7rem;
    font-weight: 700;
    background: #ede9fe;
    color: #5b21b6;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
}

/* Stacked location options — keep flex gap between radio circle and label text */
.bt-radios--stack {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.bt-radios--stack .bt-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
}

.bt-radios--stack .bt-radio input[type="radio"] {
    flex-shrink: 0;
    margin: 0;
}

.bt-radios--stack .bt-radio > span {
    flex: 1;
    line-height: 1.45;
}

/* All BC PNP radios — spacing + vertical center with label */
#bt-bc-pnp .bt-radio {
    display: flex;
    align-items: center;
    gap: 12px;
}

#bt-bc-pnp .bt-radio input[type="radio"] {
    flex-shrink: 0;
    margin: 0;
    align-self: center;
}

.bt-q__hint {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.bt-bc-report__hero {
    text-align: center;
    padding: 1.75rem 1.5rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
}

.bt-bc-report__hero.is-strong { background: #ecfdf5; border-color: #a7f3d0; }
.bt-bc-report__hero.is-moderate { background: #fffbeb; border-color: #fde68a; }
.bt-bc-report__hero.is-low { background: #fef2f2; border-color: #fecaca; }

.bt-bc-report__score {
    font-size: 3rem;
    font-weight: 900;
    color: #4c1d95;
    margin: 0.25rem 0;
}

.bt-bc-report__score span {
    font-size: 1.25rem;
    color: #7c3aed;
}

.bt-bc-report__badge {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.bt-bc-report__note {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    max-width: 520px;
    margin: 0 auto;
}

.bt-bc-report__h {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.bt-bc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.bt-bc-table th,
.bt-bc-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.bt-bc-table th:last-child,
.bt-bc-table td:last-child {
    text-align: right;
}

.bt-bc-table__total td {
    border-top: 2px solid #7c3aed;
    background: #faf5ff;
}

.bt-bc-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}

.bt-bc-cta {
    text-align: center;
    margin-top: 1.25rem;
}
