/**
 * PNP Pathway Calculator — orange accent variant
 */
#bt-pnp.bt-wrap--pnp {
    --bt-primary: #ea580c;
    --bt-primary-dark: #c2410c;
    --bt-accent: #f97316;
}

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

.bt-pnp-intro a {
    color: var(--bt-primary, #ea580c);
    font-weight: 600;
}

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

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

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

.bt-pnp-live__val {
    display: block;
    font-family: var(--bt-font, inherit);
    font-weight: 800;
    font-size: 1.1rem;
    color: #9a3412;
    line-height: 1.3;
}

.bt-pnp-live__pct {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ea580c;
    margin-top: 0.15rem;
}

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

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

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

.bt-pnp-bar__fill--strong { background: #16a34a; }
.bt-pnp-bar__fill--moderate { background: #ea580c; }
.bt-pnp-bar__fill--low { background: #f59e0b; }
.bt-pnp-bar__fill--unlikely { background: #9ca3af; }

.bt-pnp-bar__pts {
    font-weight: 700;
    color: #9a3412;
    text-align: right;
}

.bt-checkgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.bt-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem 0.65rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
}

.bt-check:has(input:checked) {
    border-color: #fdba74;
    background: #fff7ed;
}

.bt-check input {
    margin-top: 0.15rem;
    accent-color: var(--bt-primary, #ea580c);
}

.bt-radios--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bt-radios--inline .bt-radio {
    flex: 0 0 auto;
}

/* Results */
.bt-pnp-report__hero {
    text-align: center;
    padding: 1.5rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1px solid #fed7aa;
}

.bt-pnp-report__hero.is-strong { background: linear-gradient(135deg, #ecfdf5, #d1fae5); border-color: #a7f3d0; }
.bt-pnp-report__hero.is-moderate { background: linear-gradient(135deg, #fff7ed, #ffedd5); border-color: #fed7aa; }
.bt-pnp-report__hero.is-low { background: linear-gradient(135deg, #f9fafb, #f3f4f6); border-color: #e5e7eb; }

.bt-pnp-report__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9a3412;
    margin: 0;
}

.bt-pnp-report__score {
    font-size: 3rem;
    font-weight: 800;
    color: #c2410c;
    margin: 0.25rem 0;
    line-height: 1;
}

.bt-pnp-report__score span {
    font-size: 1.25rem;
    font-weight: 600;
}

.bt-pnp-report__top {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.bt-pnp-report__h {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: #111827;
}

.bt-pnp-federal {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.bt-pnp-federal h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.bt-pnp-federal__type {
    margin: 0 0 0.35rem;
}

.bt-pnp-federal__crs {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    color: #166534;
}

.bt-pnp-cards {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bt-pnp-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.bt-pnp-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.15rem;
    background: #fff;
}

.bt-pnp-card--strong { border-left: 4px solid #16a34a; }
.bt-pnp-card--moderate { border-left: 4px solid #ea580c; }
.bt-pnp-card--low { border-left: 4px solid #f59e0b; }
.bt-pnp-card--unlikely { border-left: 4px solid #9ca3af; }

.bt-pnp-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.bt-pnp-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.bt-pnp-card__score {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c2410c;
    line-height: 1;
}

.bt-pnp-card__score small {
    font-size: 0.75rem;
    font-weight: 600;
}

.bt-pnp-card__badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ea580c;
    margin: 0 0 0.25rem;
}

.bt-pnp-card__note {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0 0 0.75rem;
    line-height: 1.45;
}

.bt-pnp-card__h {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin: 0.5rem 0 0.35rem;
}

.bt-pnp-card__list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.8rem;
    color: #374151;
    line-height: 1.5;
}

.bt-pnp-gap {
    color: #b45309;
}

.bt-pnp-card__cta {
    margin-top: 0.75rem;
}

.bt-btn--sm {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
}

.bt-btn--outline {
    background: transparent;
    border: 1px solid var(--bt-primary, #ea580c);
    color: var(--bt-primary, #ea580c);
}

.bt-btn--outline:hover {
    background: #fff7ed;
}

.bt-pnp-sinp {
    margin-top: 1.25rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
}

.bt-pnp-sinp h4 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.bt-pnp-table--compact {
    width: 100%;
    font-size: 0.8rem;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.bt-pnp-table--compact td {
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.bt-pnp-tips {
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
}

.bt-pnp-tips h4 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.bt-pnp-tips ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #1e40af;
}

.bt-pnp-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 1.25rem;
}

.bt-pnp-cta {
    text-align: center;
    margin-top: 1rem;
}
