/**
 * Teacher benchmark dashboard — ported from archive/demo focus-areas.css,
 * certificate.css (passport/certificate layout), and BenchmarkDashboardsDemo.tsx shell.
 * Scoped to .airb__results--teacher, .airb__results--student, .airb__results--parent, .airb__results--leader, .airb__results--support, .airb__results--public.
 */

.airb__results--teacher {
	--teacher-dash-border: #e2e8f0;
	--teacher-dash-muted: #64748b;
	--teacher-dash-white: #fff;
	--teacher-dash-accent: #2563eb;
	--teacher-dash-soft: #dbeafe;
	--teacher-dash-ink: #172554;
}

.airb__results--student {
	--teacher-dash-border: #e2e8f0;
	--teacher-dash-muted: #64748b;
	--teacher-dash-white: #fff;
	--teacher-dash-accent: #0f766e;
	--teacher-dash-soft: #ccfbf1;
	--teacher-dash-ink: #134e4a;
}

.airb__results--parent {
	--teacher-dash-border: #e2e8f0;
	--teacher-dash-muted: #64748b;
	--teacher-dash-white: #fff;
	--teacher-dash-accent: #9333ea;
	--teacher-dash-soft: #f3e8ff;
	--teacher-dash-ink: #581c87;
}

.airb__results--leader {
	--teacher-dash-border: #e2e8f0;
	--teacher-dash-muted: #64748b;
	--teacher-dash-white: #fff;
	--teacher-dash-accent: #475569;
	--teacher-dash-soft: #e2e8f0;
	--teacher-dash-ink: #0f172a;
}

.airb__results--support {
	--teacher-dash-border: #e2e8f0;
	--teacher-dash-muted: #64748b;
	--teacher-dash-white: #fff;
	--teacher-dash-accent: #b45309;
	--teacher-dash-soft: #fef3c7;
	--teacher-dash-ink: #78350f;
}

.airb__results--public {
	--teacher-dash-border: #e2e8f0;
	--teacher-dash-muted: #64748b;
	--teacher-dash-white: #fff;
	--teacher-dash-accent: #dc2626;
	--teacher-dash-soft: #fee2e2;
	--teacher-dash-ink: #7f1d1d;
}

/* ── Demo AIRB component skin (.demo-airb wrapper) ── */
.airb__results--teacher .demo-airb, .airb__results--student .demo-airb, .airb__results--parent .demo-airb, .airb__results--leader .demo-airb, .airb__results--support .demo-airb, .airb__results--public .demo-airb {
	--airb-border: #e2e8f0;
	--airb-muted: #64748b;
	--white: #fff;
}

.airb__results--teacher .benchmark-domain-grid, .airb__results--student .benchmark-domain-grid, .airb__results--parent .benchmark-domain-grid, .airb__results--leader .benchmark-domain-grid, .airb__results--support .benchmark-domain-grid, .airb__results--public .benchmark-domain-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
}

.airb__results--teacher .benchmark-metric-card, .airb__results--student .benchmark-metric-card, .airb__results--parent .benchmark-metric-card, .airb__results--leader .benchmark-metric-card, .airb__results--support .benchmark-metric-card, .airb__results--public .benchmark-metric-card {
	display: flex;
	min-height: 6rem;
	min-width: 0;
	flex-direction: column;
	border-radius: 8px;
	border-width: 1px;
	border-style: solid;
	background: #fff;
	padding: 0.7rem;
}

.airb__results--teacher .benchmark-metric-card__header, .airb__results--student .benchmark-metric-card__header, .airb__results--parent .benchmark-metric-card__header, .airb__results--leader .benchmark-metric-card__header, .airb__results--support .benchmark-metric-card__header, .airb__results--public .benchmark-metric-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.45rem;
}

.airb__results--teacher .benchmark-metric-card__title, .airb__results--student .benchmark-metric-card__title, .airb__results--parent .benchmark-metric-card__title, .airb__results--leader .benchmark-metric-card__title, .airb__results--support .benchmark-metric-card__title, .airb__results--public .benchmark-metric-card__title {
	margin: 0;
	min-width: 0;
	font-size: 0.82rem;
	font-weight: 650;
	line-height: 1.15;
	color: #020617;
}

.airb__results--teacher .benchmark-metric-card__badge, .airb__results--student .benchmark-metric-card__badge, .airb__results--parent .benchmark-metric-card__badge, .airb__results--leader .benchmark-metric-card__badge, .airb__results--support .benchmark-metric-card__badge, .airb__results--public .benchmark-metric-card__badge {
	width: fit-content;
	flex: none;
	border-radius: 0.35rem;
	padding: 0.12rem 0.42rem;
	font-size: 0.6rem;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.airb__results--teacher .benchmark-metric-card__body, .airb__results--student .benchmark-metric-card__body, .airb__results--parent .benchmark-metric-card__body, .airb__results--leader .benchmark-metric-card__body, .airb__results--support .benchmark-metric-card__body, .airb__results--public .benchmark-metric-card__body {
	display: block;
	margin-top: 1.25rem;
	padding-top: 0.65rem;
}

.airb__results--teacher .benchmark-metric-card__value, .airb__results--student .benchmark-metric-card__value, .airb__results--parent .benchmark-metric-card__value, .airb__results--leader .benchmark-metric-card__value, .airb__results--support .benchmark-metric-card__value, .airb__results--public .benchmark-metric-card__value {
	margin: 0;
	font-size: 1.55rem;
	font-weight: 650;
	line-height: 1;
	color: #020617;
	font-variant-numeric: tabular-nums;
}

.airb__results--teacher .benchmark-metric-card__value--below-threshold, .airb__results--student .benchmark-metric-card__value--below-threshold, .airb__results--parent .benchmark-metric-card__value--below-threshold, .airb__results--leader .benchmark-metric-card__value--below-threshold, .airb__results--support .benchmark-metric-card__value--below-threshold, .airb__results--public .benchmark-metric-card__value--below-threshold {
	color: #dc2626;
}

.airb__results--teacher .benchmark-metric-card--tone-secure .benchmark-metric-card__value, .airb__results--student .benchmark-metric-card--tone-secure .benchmark-metric-card__value, .airb__results--parent .benchmark-metric-card--tone-secure .benchmark-metric-card__value, .airb__results--leader .benchmark-metric-card--tone-secure .benchmark-metric-card__value, .airb__results--support .benchmark-metric-card--tone-secure .benchmark-metric-card__value, .airb__results--public .benchmark-metric-card--tone-secure .benchmark-metric-card__value {
	color: #15803d;
}

.airb__results--teacher .benchmark-metric-card--tone-practice .benchmark-metric-card__value, .airb__results--student .benchmark-metric-card--tone-practice .benchmark-metric-card__value, .airb__results--parent .benchmark-metric-card--tone-practice .benchmark-metric-card__value, .airb__results--leader .benchmark-metric-card--tone-practice .benchmark-metric-card__value, .airb__results--support .benchmark-metric-card--tone-practice .benchmark-metric-card__value, .airb__results--public .benchmark-metric-card--tone-practice .benchmark-metric-card__value {
	color: #b45309;
}

.airb__results--teacher .benchmark-metric-card--tone-attention .benchmark-metric-card__value, .airb__results--student .benchmark-metric-card--tone-attention .benchmark-metric-card__value, .airb__results--parent .benchmark-metric-card--tone-attention .benchmark-metric-card__value, .airb__results--leader .benchmark-metric-card--tone-attention .benchmark-metric-card__value, .airb__results--support .benchmark-metric-card--tone-attention .benchmark-metric-card__value, .airb__results--public .benchmark-metric-card--tone-attention .benchmark-metric-card__value {
	color: #dc2626;
}

.airb__results--teacher .benchmark-metric-card__badge--below-threshold, .airb__results--student .benchmark-metric-card__badge--below-threshold, .airb__results--parent .benchmark-metric-card__badge--below-threshold, .airb__results--leader .benchmark-metric-card__badge--below-threshold, .airb__results--support .benchmark-metric-card__badge--below-threshold, .airb__results--public .benchmark-metric-card__badge--below-threshold {
	color: #dc2626 !important;
	background: #fef2f2 !important;
}

.airb__results--teacher .benchmark-metric-card--below-threshold .airb__focus-guidance-accordion > summary, .airb__results--student .benchmark-metric-card--below-threshold .airb__focus-guidance-accordion > summary, .airb__results--parent .benchmark-metric-card--below-threshold .airb__focus-guidance-accordion > summary, .airb__results--leader .benchmark-metric-card--below-threshold .airb__focus-guidance-accordion > summary, .airb__results--support .benchmark-metric-card--below-threshold .airb__focus-guidance-accordion > summary, .airb__results--public .benchmark-metric-card--below-threshold .airb__focus-guidance-accordion > summary,
.airb__results--teacher .airb__focus-guidance-accordion--below-threshold > summary, .airb__results--student .airb__focus-guidance-accordion--below-threshold > summary, .airb__results--parent .airb__focus-guidance-accordion--below-threshold > summary, .airb__results--leader .airb__focus-guidance-accordion--below-threshold > summary, .airb__results--support .airb__focus-guidance-accordion--below-threshold > summary, .airb__results--public .airb__focus-guidance-accordion--below-threshold > summary {
	color: #dc2626;
}

.airb__results--teacher .airb__teacher-focus-impact--below-threshold, .airb__results--student .airb__teacher-focus-impact--below-threshold, .airb__results--parent .airb__teacher-focus-impact--below-threshold, .airb__results--leader .airb__teacher-focus-impact--below-threshold, .airb__results--support .airb__teacher-focus-impact--below-threshold, .airb__results--public .airb__teacher-focus-impact--below-threshold {
	color: #dc2626;
	font-weight: 600;
}

.airb__results--teacher .benchmark-metric-card--below-threshold .airb__focus-practice-title, .airb__results--student .benchmark-metric-card--below-threshold .airb__focus-practice-title, .airb__results--parent .benchmark-metric-card--below-threshold .airb__focus-practice-title, .airb__results--leader .benchmark-metric-card--below-threshold .airb__focus-practice-title, .airb__results--support .benchmark-metric-card--below-threshold .airb__focus-practice-title, .airb__results--public .benchmark-metric-card--below-threshold .airb__focus-practice-title {
	color: #dc2626;
}

.airb__results--teacher .airb__focus-card-score--below-threshold, .airb__results--student .airb__focus-card-score--below-threshold, .airb__results--parent .airb__focus-card-score--below-threshold, .airb__results--leader .airb__focus-card-score--below-threshold, .airb__results--support .airb__focus-card-score--below-threshold, .airb__results--public .airb__focus-card-score--below-threshold {
	color: #dc2626;
}

.airb__results--teacher .airb__focus-badge--below-threshold, .airb__results--student .airb__focus-badge--below-threshold, .airb__results--parent .airb__focus-badge--below-threshold, .airb__results--leader .airb__focus-badge--below-threshold, .airb__results--support .airb__focus-badge--below-threshold, .airb__results--public .airb__focus-badge--below-threshold,
.airb__results--teacher .airb__parent-metric-badge--below-threshold, .airb__results--student .airb__parent-metric-badge--below-threshold, .airb__results--parent .airb__parent-metric-badge--below-threshold, .airb__results--leader .airb__parent-metric-badge--below-threshold, .airb__results--support .airb__parent-metric-badge--below-threshold, .airb__results--public .airb__parent-metric-badge--below-threshold,
.airb__results--teacher .airb__student-skill-badge--below-threshold, .airb__results--student .airb__student-skill-badge--below-threshold, .airb__results--parent .airb__student-skill-badge--below-threshold, .airb__results--leader .airb__student-skill-badge--below-threshold, .airb__results--support .airb__student-skill-badge--below-threshold, .airb__results--public .airb__student-skill-badge--below-threshold {
	color: #dc2626 !important;
	background: #fef2f2 !important;
}

.airb__results--teacher .airb__focus-badge-core--below-threshold, .airb__results--student .airb__focus-badge-core--below-threshold, .airb__results--parent .airb__focus-badge-core--below-threshold, .airb__results--leader .airb__focus-badge-core--below-threshold, .airb__results--support .airb__focus-badge-core--below-threshold, .airb__results--public .airb__focus-badge-core--below-threshold,
.airb__results--teacher .airb__focus-badge-detail--below-threshold, .airb__results--student .airb__focus-badge-detail--below-threshold, .airb__results--parent .airb__focus-badge-detail--below-threshold, .airb__results--leader .airb__focus-badge-detail--below-threshold, .airb__results--support .airb__focus-badge-detail--below-threshold, .airb__results--public .airb__focus-badge-detail--below-threshold {
	color: #dc2626;
}

.airb__results--teacher .airb__focus-practice-title--below-threshold, .airb__results--student .airb__focus-practice-title--below-threshold, .airb__results--parent .airb__focus-practice-title--below-threshold, .airb__results--leader .airb__focus-practice-title--below-threshold, .airb__results--support .airb__focus-practice-title--below-threshold, .airb__results--public .airb__focus-practice-title--below-threshold {
	color: #dc2626;
}

.airb__results--teacher .airb__parent-topic-challenge-bullet--below-threshold, .airb__results--student .airb__parent-topic-challenge-bullet--below-threshold, .airb__results--parent .airb__parent-topic-challenge-bullet--below-threshold, .airb__results--leader .airb__parent-topic-challenge-bullet--below-threshold, .airb__results--support .airb__parent-topic-challenge-bullet--below-threshold, .airb__results--public .airb__parent-topic-challenge-bullet--below-threshold,
.airb__results--teacher .airb__focus-practice-list-item--below-threshold, .airb__results--student .airb__focus-practice-list-item--below-threshold, .airb__results--parent .airb__focus-practice-list-item--below-threshold, .airb__results--leader .airb__focus-practice-list-item--below-threshold, .airb__results--support .airb__focus-practice-list-item--below-threshold, .airb__results--public .airb__focus-practice-list-item--below-threshold {
	color: #dc2626;
	font-weight: 600;
}

.airb__results--teacher .benchmark-metric-card__prompt, .airb__results--student .benchmark-metric-card__prompt, .airb__results--parent .benchmark-metric-card__prompt, .airb__results--leader .benchmark-metric-card__prompt, .airb__results--support .benchmark-metric-card__prompt, .airb__results--public .benchmark-metric-card__prompt {
	margin: 0.35rem 0 0;
	max-width: none;
	text-align: left;
	font-size: 0.72rem;
	font-weight: 650;
	line-height: 1.18;
}

.airb__results--teacher .benchmark-metric-card__bar, .airb__results--student .benchmark-metric-card__bar, .airb__results--parent .benchmark-metric-card__bar, .airb__results--leader .benchmark-metric-card__bar, .airb__results--support .benchmark-metric-card__bar, .airb__results--public .benchmark-metric-card__bar {
	height: 0.3rem;
	margin-top: 0.65rem;
	overflow: hidden;
	border-radius: 999px;
	background: #f1f5f9;
}

.airb__results--teacher .benchmark-metric-card__bar > span, .airb__results--student .benchmark-metric-card__bar > span, .airb__results--parent .benchmark-metric-card__bar > span, .airb__results--leader .benchmark-metric-card__bar > span, .airb__results--support .benchmark-metric-card__bar > span, .airb__results--public .benchmark-metric-card__bar > span {
	display: block;
	height: 100%;
	border-radius: 999px;
}

.airb__results--teacher .benchmark-metric-card .airb__results-accordion, .airb__results--student .benchmark-metric-card .airb__results-accordion, .airb__results--parent .benchmark-metric-card .airb__results-accordion, .airb__results--leader .benchmark-metric-card .airb__results-accordion, .airb__results--support .benchmark-metric-card .airb__results-accordion, .airb__results--public .benchmark-metric-card .airb__results-accordion {
	margin: 0.75rem 0 0;
	border: 0;
	border-top: 1px solid #e2e8f0;
	border-radius: 0;
	background: transparent;
	overflow: hidden;
}

.airb__results--teacher .benchmark-metric-card .airb__results-accordion > summary, .airb__results--student .benchmark-metric-card .airb__results-accordion > summary, .airb__results--parent .benchmark-metric-card .airb__results-accordion > summary, .airb__results--leader .benchmark-metric-card .airb__results-accordion > summary, .airb__results--support .benchmark-metric-card .airb__results-accordion > summary, .airb__results--public .benchmark-metric-card .airb__results-accordion > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 2.4rem;
	gap: 0.5rem;
	padding: 0.45rem 0 0.2rem;
	font-weight: 700;
	font-size: 0.66rem;
	cursor: pointer;
	list-style: none;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.airb__results--teacher .benchmark-metric-card .airb__results-accordion > summary::after, .airb__results--student .benchmark-metric-card .airb__results-accordion > summary::after, .airb__results--parent .benchmark-metric-card .airb__results-accordion > summary::after, .airb__results--leader .benchmark-metric-card .airb__results-accordion > summary::after, .airb__results--support .benchmark-metric-card .airb__results-accordion > summary::after, .airb__results--public .benchmark-metric-card .airb__results-accordion > summary::after {
	content: '';
	display: block;
	flex: none;
	width: 1.125rem;
	height: 1.125rem;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	transform: rotate(0deg);
	transform-origin: center;
	opacity: 0.75;
	transition: transform 0.15s ease;
}

.airb__results--teacher .benchmark-metric-card .airb__results-accordion[open] > summary::after, .airb__results--student .benchmark-metric-card .airb__results-accordion[open] > summary::after, .airb__results--parent .benchmark-metric-card .airb__results-accordion[open] > summary::after, .airb__results--leader .benchmark-metric-card .airb__results-accordion[open] > summary::after, .airb__results--support .benchmark-metric-card .airb__results-accordion[open] > summary::after, .airb__results--public .benchmark-metric-card .airb__results-accordion[open] > summary::after {
	transform: rotate(180deg);
}

.airb__results--teacher .benchmark-metric-card .airb__results-accordion > summary::-webkit-details-marker, .airb__results--student .benchmark-metric-card .airb__results-accordion > summary::-webkit-details-marker, .airb__results--parent .benchmark-metric-card .airb__results-accordion > summary::-webkit-details-marker, .airb__results--leader .benchmark-metric-card .airb__results-accordion > summary::-webkit-details-marker, .airb__results--support .benchmark-metric-card .airb__results-accordion > summary::-webkit-details-marker, .airb__results--public .benchmark-metric-card .airb__results-accordion > summary::-webkit-details-marker {
	display: none;
}

.airb__results--teacher .benchmark-metric-card .airb__focus-guidance-body, .airb__results--student .benchmark-metric-card .airb__focus-guidance-body, .airb__results--parent .benchmark-metric-card .airb__focus-guidance-body, .airb__results--leader .benchmark-metric-card .airb__focus-guidance-body, .airb__results--support .benchmark-metric-card .airb__focus-guidance-body, .airb__results--public .benchmark-metric-card .airb__focus-guidance-body {
	padding: 0.45rem 0 0.15rem;
}

.airb__results--teacher .border-emerald-300,
.airb__results--student .border-emerald-300,
.airb__results--parent .border-emerald-300 { border-color: #86efac; }
.airb__results--teacher .border-amber-300,
.airb__results--student .border-amber-300,
.airb__results--parent .border-amber-300 { border-color: #fcd34d; }
.airb__results--teacher .border-rose-300,
.airb__results--student .border-rose-300,
.airb__results--parent .border-rose-300 { border-color: #fda4af; }
.airb__results--teacher .bg-emerald-50,
.airb__results--student .bg-emerald-50,
.airb__results--parent .bg-emerald-50 { background: #ecfdf5; }
.airb__results--teacher .bg-amber-50,
.airb__results--student .bg-amber-50,
.airb__results--parent .bg-amber-50 { background: #fffbeb; }
.airb__results--teacher .bg-rose-50,
.airb__results--student .bg-rose-50,
.airb__results--parent .bg-rose-50 { background: #fff1f2; }
.airb__results--teacher .text-emerald-800,
.airb__results--student .text-emerald-800,
.airb__results--parent .text-emerald-800 { color: #166534; }
.airb__results--teacher .text-amber-800,
.airb__results--student .text-amber-800,
.airb__results--parent .text-amber-800 { color: #92400e; }
.airb__results--teacher .text-rose-800,
.airb__results--student .text-rose-800,
.airb__results--parent .text-rose-800 { color: #9f1239; }

.airb__results--teacher .demo-airb .airb__leader-section-label, .airb__results--student .demo-airb .airb__leader-section-label, .airb__results--parent .demo-airb .airb__leader-section-label, .airb__results--leader .demo-airb .airb__leader-section-label, .airb__results--support .demo-airb .airb__leader-section-label, .airb__results--public .demo-airb .airb__leader-section-label {
	margin: 0 0 0.45rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--airb-border);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--airb-muted);
}

.airb__results--teacher .demo-airb .airb__focus-stack-intro, .airb__results--student .demo-airb .airb__focus-stack-intro, .airb__results--parent .demo-airb .airb__focus-stack-intro, .airb__results--leader .demo-airb .airb__focus-stack-intro, .airb__results--support .demo-airb .airb__focus-stack-intro, .airb__results--public .demo-airb .airb__focus-stack-intro {
	margin: 0 0 0.65rem;
	max-width: 58rem;
	font-size: 0.82rem;
	line-height: 1.4;
	color: var(--airb-muted);
}

.airb__results--teacher .demo-airb .airb__leader-focus-stack, .airb__results--student .demo-airb .airb__leader-focus-stack, .airb__results--parent .demo-airb .airb__leader-focus-stack, .airb__results--leader .demo-airb .airb__leader-focus-stack, .airb__results--support .demo-airb .airb__leader-focus-stack, .airb__results--public .demo-airb .airb__leader-focus-stack {
	display: grid;
	gap: 0.65rem;
}

.airb__results--teacher .demo-airb .airb__focus-card, .airb__results--student .demo-airb .airb__focus-card, .airb__results--parent .demo-airb .airb__focus-card, .airb__results--leader .demo-airb .airb__focus-card, .airb__results--support .demo-airb .airb__focus-card, .airb__results--public .demo-airb .airb__focus-card {
	background: var(--white);
	border: 1px solid var(--airb-border);
	border-radius: 8px;
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 0.75rem;
	margin-bottom: 0;
}

.airb__results--teacher .demo-airb .airb__teacher-focus-card, .airb__results--student .demo-airb .airb__teacher-focus-card, .airb__results--parent .demo-airb .airb__teacher-focus-card, .airb__results--leader .demo-airb .airb__teacher-focus-card, .airb__results--support .demo-airb .airb__teacher-focus-card, .airb__results--public .demo-airb .airb__teacher-focus-card {
	border-left: none;
}

.airb__results--teacher .demo-airb .airb__focus-card--critical, .airb__results--student .demo-airb .airb__focus-card--critical, .airb__results--parent .demo-airb .airb__focus-card--critical, .airb__results--leader .demo-airb .airb__focus-card--critical, .airb__results--support .demo-airb .airb__focus-card--critical, .airb__results--public .demo-airb .airb__focus-card--critical {
	border-color: #fda4af;
}

.airb__results--teacher .demo-airb .airb__focus-card--high, .airb__results--student .demo-airb .airb__focus-card--high, .airb__results--parent .demo-airb .airb__focus-card--high, .airb__results--leader .demo-airb .airb__focus-card--high, .airb__results--support .demo-airb .airb__focus-card--high, .airb__results--public .demo-airb .airb__focus-card--high {
	border-color: #fbbf24;
}

.airb__results--teacher .demo-airb .airb__focus-card--moderate, .airb__results--student .demo-airb .airb__focus-card--moderate, .airb__results--parent .demo-airb .airb__focus-card--moderate, .airb__results--leader .demo-airb .airb__focus-card--moderate, .airb__results--support .demo-airb .airb__focus-card--moderate, .airb__results--public .demo-airb .airb__focus-card--moderate {
	border-color: #cbd5e1;
}

.airb__results--teacher .demo-airb .airb__focus-card-header, .airb__results--student .demo-airb .airb__focus-card-header, .airb__results--parent .demo-airb .airb__focus-card-header, .airb__results--leader .demo-airb .airb__focus-card-header, .airb__results--support .demo-airb .airb__focus-card-header, .airb__results--public .demo-airb .airb__focus-card-header {
	margin-bottom: 0.25rem;
}

.airb__results--teacher .demo-airb .airb__focus-card-title, .airb__results--student .demo-airb .airb__focus-card-title, .airb__results--parent .demo-airb .airb__focus-card-title, .airb__results--leader .demo-airb .airb__focus-card-title, .airb__results--support .demo-airb .airb__focus-card-title, .airb__results--public .demo-airb .airb__focus-card-title {
	margin: 0;
	min-width: 0;
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.18;
	color: #0f172a;
}

.airb__results--teacher .demo-airb .airb__focus-badge, .airb__results--student .demo-airb .airb__focus-badge, .airb__results--parent .demo-airb .airb__focus-badge, .airb__results--leader .demo-airb .airb__focus-badge, .airb__results--support .demo-airb .airb__focus-badge, .airb__results--public .demo-airb .airb__focus-badge {
	display: inline-block;
	width: fit-content;
	font-size: 0.62rem;
	font-weight: 600;
	padding: 0.12rem 0.42rem;
	border-radius: 0.35rem;
	white-space: nowrap;
	flex: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.airb__results--teacher .demo-airb .airb__focus-score-row, .airb__results--student .demo-airb .airb__focus-score-row, .airb__results--parent .demo-airb .airb__focus-score-row, .airb__results--leader .demo-airb .airb__focus-score-row, .airb__results--support .demo-airb .airb__focus-score-row, .airb__results--public .demo-airb .airb__focus-score-row {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0.1rem 0 0.35rem;
}

.airb__results--teacher .demo-airb .airb__focus-card-score, .airb__results--student .demo-airb .airb__focus-card-score, .airb__results--parent .demo-airb .airb__focus-card-score, .airb__results--leader .demo-airb .airb__focus-card-score, .airb__results--support .demo-airb .airb__focus-card-score, .airb__results--public .demo-airb .airb__focus-card-score {
	margin: 0;
	font-size: 1.65rem;
	font-weight: 650;
	line-height: 1;
	color: #020617;
	font-variant-numeric: tabular-nums;
}

.airb__results--teacher .demo-airb .airb__focus-card-summary, .airb__results--student .demo-airb .airb__focus-card-summary, .airb__results--parent .demo-airb .airb__focus-card-summary, .airb__results--leader .demo-airb .airb__focus-card-summary, .airb__results--support .demo-airb .airb__focus-card-summary, .airb__results--public .demo-airb .airb__focus-card-summary {
	display: -webkit-box;
	margin: 0 0 0.55rem;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 0.76rem;
	line-height: 1.34;
	color: var(--airb-muted);
}

.airb__results--teacher .demo-airb .airb__focus-practice, .airb__results--student .demo-airb .airb__focus-practice, .airb__results--parent .demo-airb .airb__focus-practice, .airb__results--leader .demo-airb .airb__focus-practice, .airb__results--support .demo-airb .airb__focus-practice, .airb__results--public .demo-airb .airb__focus-practice {
	background: #faeeda;
	border-radius: 8px;
	padding: 0.45rem 0.5rem;
	margin-bottom: 0.35rem;
}

.airb__results--teacher .demo-airb .airb__focus-card--critical .airb__focus-practice, .airb__results--student .demo-airb .airb__focus-card--critical .airb__focus-practice, .airb__results--parent .demo-airb .airb__focus-card--critical .airb__focus-practice, .airb__results--leader .demo-airb .airb__focus-card--critical .airb__focus-practice, .airb__results--support .demo-airb .airb__focus-card--critical .airb__focus-practice, .airb__results--public .demo-airb .airb__focus-card--critical .airb__focus-practice {
	background: #fcebeb;
}

.airb__results--teacher .demo-airb .airb__focus-practice-title, .airb__results--student .demo-airb .airb__focus-practice-title, .airb__results--parent .demo-airb .airb__focus-practice-title, .airb__results--leader .demo-airb .airb__focus-practice-title, .airb__results--support .demo-airb .airb__focus-practice-title, .airb__results--public .demo-airb .airb__focus-practice-title {
	font-size: 0.62rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #854f0b;
	margin-bottom: 0.25rem;
}

.airb__results--teacher .demo-airb .airb__focus-card--critical .airb__focus-practice-title, .airb__results--student .demo-airb .airb__focus-card--critical .airb__focus-practice-title, .airb__results--parent .demo-airb .airb__focus-card--critical .airb__focus-practice-title, .airb__results--leader .demo-airb .airb__focus-card--critical .airb__focus-practice-title, .airb__results--support .demo-airb .airb__focus-card--critical .airb__focus-practice-title, .airb__results--public .demo-airb .airb__focus-card--critical .airb__focus-practice-title {
	color: #a32d2d;
}

.airb__results--teacher .demo-airb .airb__teacher-focus-impact, .airb__results--student .demo-airb .airb__teacher-focus-impact, .airb__results--parent .demo-airb .airb__teacher-focus-impact, .airb__results--leader .demo-airb .airb__teacher-focus-impact, .airb__results--support .demo-airb .airb__teacher-focus-impact, .airb__results--public .demo-airb .airb__teacher-focus-impact {
	font-size: 0.68rem;
	color: #633806;
	padding: 0.06rem 0 0.06rem 0.65rem;
	position: relative;
}

.airb__results--teacher .demo-airb .airb__focus-card--critical .airb__teacher-focus-impact, .airb__results--student .demo-airb .airb__focus-card--critical .airb__teacher-focus-impact, .airb__results--parent .demo-airb .airb__focus-card--critical .airb__teacher-focus-impact, .airb__results--leader .demo-airb .airb__focus-card--critical .airb__teacher-focus-impact, .airb__results--support .demo-airb .airb__focus-card--critical .airb__teacher-focus-impact, .airb__results--public .demo-airb .airb__focus-card--critical .airb__teacher-focus-impact {
	color: #791f1f;
}

.airb__results--teacher .demo-airb .airb__teacher-focus-impact::before, .airb__results--student .demo-airb .airb__teacher-focus-impact::before, .airb__results--parent .demo-airb .airb__teacher-focus-impact::before, .airb__results--leader .demo-airb .airb__teacher-focus-impact::before, .airb__results--support .demo-airb .airb__teacher-focus-impact::before, .airb__results--public .demo-airb .airb__teacher-focus-impact::before {
	content: '·';
	position: absolute;
	left: 0;
}

.airb__results--teacher .demo-airb .airb__teacher-action-row, .airb__results--student .demo-airb .airb__teacher-action-row, .airb__results--parent .demo-airb .airb__teacher-action-row, .airb__results--leader .demo-airb .airb__teacher-action-row, .airb__results--support .demo-airb .airb__teacher-action-row, .airb__results--public .demo-airb .airb__teacher-action-row {
	display: flex;
	align-items: flex-start;
	gap: 0.35rem;
	padding: 0.28rem 0;
	border-bottom: 1px solid var(--airb-border);
}

.airb__results--teacher .demo-airb .airb__teacher-action-row:last-child, .airb__results--student .demo-airb .airb__teacher-action-row:last-child, .airb__results--parent .demo-airb .airb__teacher-action-row:last-child, .airb__results--leader .demo-airb .airb__teacher-action-row:last-child, .airb__results--support .demo-airb .airb__teacher-action-row:last-child, .airb__results--public .demo-airb .airb__teacher-action-row:last-child {
	border-bottom: none;
}

.airb__results--teacher .demo-airb .airb__teacher-action-num, .airb__results--student .demo-airb .airb__teacher-action-num, .airb__results--parent .demo-airb .airb__teacher-action-num, .airb__results--leader .demo-airb .airb__teacher-action-num, .airb__results--support .demo-airb .airb__teacher-action-num, .airb__results--public .demo-airb .airb__teacher-action-num {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: #f1f5f9;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.58rem;
	font-weight: 600;
	color: var(--airb-muted);
	flex-shrink: 0;
}

.airb__results--teacher .demo-airb .airb__teacher-action-text, .airb__results--student .demo-airb .airb__teacher-action-text, .airb__results--parent .demo-airb .airb__teacher-action-text, .airb__results--leader .demo-airb .airb__teacher-action-text, .airb__results--support .demo-airb .airb__teacher-action-text, .airb__results--public .demo-airb .airb__teacher-action-text {
	font-size: 0.68rem;
	color: var(--airb-muted);
	line-height: 1.32;
}

.airb__results--teacher .demo-airb .airb__results-accordion, .airb__results--student .demo-airb .airb__results-accordion, .airb__results--parent .demo-airb .airb__results-accordion, .airb__results--leader .demo-airb .airb__results-accordion, .airb__results--support .demo-airb .airb__results-accordion, .airb__results--public .demo-airb .airb__results-accordion {
	margin: auto 0 0;
	border: 0;
	border-top: 1px solid var(--airb-border);
	border-radius: 0;
	background: transparent;
	overflow: hidden;
}

.airb__results--teacher .demo-airb .airb__results-accordion > summary, .airb__results--student .demo-airb .airb__results-accordion > summary, .airb__results--parent .demo-airb .airb__results-accordion > summary, .airb__results--leader .demo-airb .airb__results-accordion > summary, .airb__results--support .demo-airb .airb__results-accordion > summary, .airb__results--public .demo-airb .airb__results-accordion > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 2.4rem;
	gap: 0.5rem;
	padding: 0.45rem 0 0.2rem;
	font-weight: 700;
	font-size: 0.7rem;
	cursor: pointer;
	list-style: none;
	color: var(--airb-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.airb__results--teacher .demo-airb .airb__results-accordion > summary::after, .airb__results--student .demo-airb .airb__results-accordion > summary::after, .airb__results--parent .demo-airb .airb__results-accordion > summary::after, .airb__results--leader .demo-airb .airb__results-accordion > summary::after, .airb__results--support .demo-airb .airb__results-accordion > summary::after, .airb__results--public .demo-airb .airb__results-accordion > summary::after {
	content: '';
	display: block;
	flex: none;
	width: 1.125rem;
	height: 1.125rem;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	transform: rotate(0deg);
	transform-origin: center;
	opacity: 0.7;
	float: none;
	font-weight: inherit;
	color: inherit;
	transition: transform 0.15s ease;
}

.airb__results--teacher .demo-airb .airb__results-accordion[open] > summary::after, .airb__results--student .demo-airb .airb__results-accordion[open] > summary::after, .airb__results--parent .demo-airb .airb__results-accordion[open] > summary::after, .airb__results--leader .demo-airb .airb__results-accordion[open] > summary::after, .airb__results--support .demo-airb .airb__results-accordion[open] > summary::after, .airb__results--public .demo-airb .airb__results-accordion[open] > summary::after {
	content: '';
	transform: rotate(180deg);
}

.airb__results--teacher .demo-airb .airb__results-accordion > summary::-webkit-details-marker, .airb__results--student .demo-airb .airb__results-accordion > summary::-webkit-details-marker, .airb__results--parent .demo-airb .airb__results-accordion > summary::-webkit-details-marker, .airb__results--leader .demo-airb .airb__results-accordion > summary::-webkit-details-marker, .airb__results--support .demo-airb .airb__results-accordion > summary::-webkit-details-marker, .airb__results--public .demo-airb .airb__results-accordion > summary::-webkit-details-marker {
	display: none;
}

.airb__results--teacher .demo-airb .airb__focus-guidance-body, .airb__results--student .demo-airb .airb__focus-guidance-body, .airb__results--parent .demo-airb .airb__focus-guidance-body, .airb__results--leader .demo-airb .airb__focus-guidance-body, .airb__results--support .demo-airb .airb__focus-guidance-body, .airb__results--public .demo-airb .airb__focus-guidance-body {
	padding: 0.45rem 0 0.15rem;
}

.airb__results--teacher .demo-airb.airb__resources-panel,, .airb__results--student .demo-airb.airb__resources-panel,
.airb__results--teacher .demo-airb .airb__resources-panel, .airb__results--student .demo-airb .airb__resources-panel, .airb__results--parent .demo-airb .airb__resources-panel, .airb__results--leader .demo-airb .airb__resources-panel, .airb__results--support .demo-airb .airb__resources-panel, .airb__results--public .demo-airb .airb__resources-panel {
	display: grid;
	gap: 0.8rem;
}

.airb__results--teacher .demo-airb .airb__resources-header, .airb__results--student .demo-airb .airb__resources-header, .airb__results--parent .demo-airb .airb__resources-header, .airb__results--leader .demo-airb .airb__resources-header, .airb__results--support .demo-airb .airb__resources-header, .airb__results--public .demo-airb .airb__resources-header {
	display: grid;
	gap: 0.2rem;
}

.airb__results--teacher .demo-airb .airb__resources-intro, .airb__results--student .demo-airb .airb__resources-intro, .airb__results--parent .demo-airb .airb__resources-intro, .airb__results--leader .demo-airb .airb__resources-intro, .airb__results--support .demo-airb .airb__resources-intro, .airb__results--public .demo-airb .airb__resources-intro {
	margin: 0;
	color: #475569;
	font-size: 0.88rem;
	line-height: 1.45;
}

.airb__results--teacher .demo-airb .airb__leader-resource-links,, .airb__results--student .demo-airb .airb__leader-resource-links,
.airb__results--teacher .demo-airb .airb__results-resource-links, .airb__results--student .demo-airb .airb__results-resource-links, .airb__results--parent .demo-airb .airb__results-resource-links, .airb__results--leader .demo-airb .airb__results-resource-links, .airb__results--support .demo-airb .airb__results-resource-links, .airb__results--public .demo-airb .airb__results-resource-links {
	margin: 0.55rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: flex-start;
	gap: 0.7rem;
}

.airb__results--teacher .demo-airb .airb__results-resource-item, .airb__results--student .demo-airb .airb__results-resource-item, .airb__results--parent .demo-airb .airb__results-resource-item, .airb__results--leader .demo-airb .airb__results-resource-item, .airb__results--support .demo-airb .airb__results-resource-item, .airb__results--public .demo-airb .airb__results-resource-item {
	width: 100%;
}

.airb__results--teacher .demo-airb .airb__results-resource-links--cards .airb__results-resource-card, .airb__results--student .demo-airb .airb__results-resource-links--cards .airb__results-resource-card, .airb__results--parent .demo-airb .airb__results-resource-links--cards .airb__results-resource-card, .airb__results--leader .demo-airb .airb__results-resource-links--cards .airb__results-resource-card, .airb__results--support .demo-airb .airb__results-resource-links--cards .airb__results-resource-card, .airb__results--public .demo-airb .airb__results-resource-links--cards .airb__results-resource-card {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	width: 100%;
	min-height: 100%;
	padding: 0.65rem;
	border: 1px solid var(--airb-border);
	border-radius: 8px;
	background: var(--white);
	text-decoration: none;
	color: inherit;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.airb__results--teacher .demo-airb .airb__results-resource-card--featured, .airb__results--student .demo-airb .airb__results-resource-card--featured, .airb__results--parent .demo-airb .airb__results-resource-card--featured, .airb__results--leader .demo-airb .airb__results-resource-card--featured, .airb__results--support .demo-airb .airb__results-resource-card--featured, .airb__results--public .demo-airb .airb__results-resource-card--featured {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.7rem;
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #bfdbfe;
	border-radius: 8px;
	background: #eff6ff;
	color: inherit;
	text-decoration: none;
}

.airb__results--teacher .demo-airb .airb__results-resource-links--cards .airb__results-resource-card:hover,, .airb__results--student .demo-airb .airb__results-resource-links--cards .airb__results-resource-card:hover,
.airb__results--teacher .demo-airb .airb__results-resource-links--cards .airb__results-resource-card:focus-visible,, .airb__results--student .demo-airb .airb__results-resource-links--cards .airb__results-resource-card:focus-visible,
.airb__results--teacher .demo-airb .airb__results-resource-card--featured:hover,, .airb__results--student .demo-airb .airb__results-resource-card--featured:hover,
.airb__results--teacher .demo-airb .airb__results-resource-card--featured:focus-visible, .airb__results--student .demo-airb .airb__results-resource-card--featured:focus-visible, .airb__results--parent .demo-airb .airb__results-resource-card--featured:focus-visible, .airb__results--leader .demo-airb .airb__results-resource-card--featured:focus-visible, .airb__results--support .demo-airb .airb__results-resource-card--featured:focus-visible, .airb__results--public .demo-airb .airb__results-resource-card--featured:focus-visible {
	border-color: #2563eb;
	box-shadow: 0 4px 14px rgba(15, 24, 34, 0.08);
}

.airb__results--teacher .demo-airb .airb__resource-link-media, .airb__results--student .demo-airb .airb__resource-link-media, .airb__results--parent .demo-airb .airb__resource-link-media, .airb__results--leader .demo-airb .airb__resource-link-media, .airb__results--support .demo-airb .airb__resource-link-media, .airb__results--public .demo-airb .airb__resource-link-media {
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	overflow: hidden;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.airb__results--teacher .demo-airb .airb__resource-link-media--icon, .airb__results--student .demo-airb .airb__resource-link-media--icon, .airb__results--parent .demo-airb .airb__resource-link-media--icon, .airb__results--leader .demo-airb .airb__resource-link-media--icon, .airb__results--support .demo-airb .airb__resource-link-media--icon, .airb__results--public .demo-airb .airb__resource-link-media--icon {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	position: relative;
}

.airb__results--teacher .demo-airb .airb__resource-link-media--icon::before, .airb__results--student .demo-airb .airb__resource-link-media--icon::before, .airb__results--parent .demo-airb .airb__resource-link-media--icon::before, .airb__results--leader .demo-airb .airb__resource-link-media--icon::before, .airb__results--support .demo-airb .airb__resource-link-media--icon::before, .airb__results--public .demo-airb .airb__resource-link-media--icon::before {
	content: '';
	width: 22px;
	height: 26px;
	border-radius: 3px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(180, 83, 9, 0.25);
}

.airb__results--teacher .demo-airb .airb__resource-link-thumb, .airb__results--student .demo-airb .airb__resource-link-thumb, .airb__results--parent .demo-airb .airb__resource-link-thumb, .airb__results--leader .demo-airb .airb__resource-link-thumb, .airb__results--support .demo-airb .airb__resource-link-thumb, .airb__results--public .demo-airb .airb__resource-link-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.airb__results--teacher .demo-airb .airb__resource-link-body, .airb__results--student .demo-airb .airb__resource-link-body, .airb__results--parent .demo-airb .airb__resource-link-body, .airb__results--leader .demo-airb .airb__resource-link-body, .airb__results--support .demo-airb .airb__resource-link-body, .airb__results--public .demo-airb .airb__resource-link-body {
	min-width: 0;
	flex: 1;
	display: grid;
	gap: 0.18rem;
}

.airb__results--teacher .demo-airb .airb__resource-link-kicker, .airb__results--student .demo-airb .airb__resource-link-kicker, .airb__results--parent .demo-airb .airb__resource-link-kicker, .airb__results--leader .demo-airb .airb__resource-link-kicker, .airb__results--support .demo-airb .airb__resource-link-kicker, .airb__results--public .demo-airb .airb__resource-link-kicker {
	color: #2563eb;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.airb__results--teacher .demo-airb .airb__results-resource-links--cards .airb__resource-link-label,, .airb__results--student .demo-airb .airb__results-resource-links--cards .airb__resource-link-label,
.airb__results--teacher .demo-airb .airb__results-resource-card--featured .airb__resource-link-label, .airb__results--student .demo-airb .airb__results-resource-card--featured .airb__resource-link-label, .airb__results--parent .demo-airb .airb__results-resource-card--featured .airb__resource-link-label, .airb__results--leader .demo-airb .airb__results-resource-card--featured .airb__resource-link-label, .airb__results--support .demo-airb .airb__results-resource-card--featured .airb__resource-link-label, .airb__results--public .demo-airb .airb__results-resource-card--featured .airb__resource-link-label {
	font-size: 0.86rem;
	font-weight: 600;
	color: #0f172a;
	line-height: 1.28;
	text-decoration: none;
}

.airb__results--teacher .demo-airb .airb__resource-link-description, .airb__results--student .demo-airb .airb__resource-link-description, .airb__results--parent .demo-airb .airb__resource-link-description, .airb__results--leader .demo-airb .airb__resource-link-description, .airb__results--support .demo-airb .airb__resource-link-description, .airb__results--public .demo-airb .airb__resource-link-description {
	color: #475569;
	font-size: 0.76rem;
	font-weight: 500;
	line-height: 1.35;
}

.airb__results--teacher .demo-airb .airb__resource-link-arrow, .airb__results--student .demo-airb .airb__resource-link-arrow, .airb__results--parent .demo-airb .airb__resource-link-arrow, .airb__results--leader .demo-airb .airb__resource-link-arrow, .airb__results--support .demo-airb .airb__resource-link-arrow, .airb__results--public .demo-airb .airb__resource-link-arrow {
	flex: none;
	width: 1rem;
	height: 1rem;
	color: #2563eb;
	margin-top: 0.15rem;
}

.airb__results--teacher .demo-airb .airb__results-resource-links--cards .airb__results-resource-card:hover .airb__resource-link-label,, .airb__results--student .demo-airb .airb__results-resource-links--cards .airb__results-resource-card:hover .airb__resource-link-label,
.airb__results--teacher .demo-airb .airb__results-resource-links--cards .airb__results-resource-card:focus-visible .airb__resource-link-label,, .airb__results--student .demo-airb .airb__results-resource-links--cards .airb__results-resource-card:focus-visible .airb__resource-link-label,
.airb__results--teacher .demo-airb .airb__results-resource-card--featured:hover .airb__resource-link-label,, .airb__results--student .demo-airb .airb__results-resource-card--featured:hover .airb__resource-link-label,
.airb__results--teacher .demo-airb .airb__results-resource-card--featured:focus-visible .airb__resource-link-label, .airb__results--student .demo-airb .airb__results-resource-card--featured:focus-visible .airb__resource-link-label, .airb__results--parent .demo-airb .airb__results-resource-card--featured:focus-visible .airb__resource-link-label, .airb__results--leader .demo-airb .airb__results-resource-card--featured:focus-visible .airb__resource-link-label, .airb__results--support .demo-airb .airb__results-resource-card--featured:focus-visible .airb__resource-link-label, .airb__results--public .demo-airb .airb__results-resource-card--featured:focus-visible .airb__resource-link-label {
	color: #2563eb;
}

.airb__results--teacher .demo-airb .airb__breaking-resource, .airb__results--student .demo-airb .airb__breaking-resource, .airb__results--parent .demo-airb .airb__breaking-resource, .airb__results--leader .demo-airb .airb__breaking-resource, .airb__results--support .demo-airb .airb__breaking-resource, .airb__results--public .demo-airb .airb__breaking-resource {
	display: grid;
	gap: 0.45rem;
	padding-top: 0.2rem;
}

.airb__results--teacher .demo-airb .airb__teacher-strength-card, .airb__results--student .demo-airb .airb__teacher-strength-card, .airb__results--parent .demo-airb .airb__teacher-strength-card, .airb__results--leader .demo-airb .airb__teacher-strength-card, .airb__results--support .demo-airb .airb__teacher-strength-card, .airb__results--public .demo-airb .airb__teacher-strength-card {
	background: var(--white);
	border: 1px solid var(--airb-border);
	border-radius: 8px;
	padding: 0.75rem;
	margin-bottom: 0;
}

.airb__results--teacher .demo-airb .airb__benchmark-card-heading, .airb__results--student .demo-airb .airb__benchmark-card-heading, .airb__results--parent .demo-airb .airb__benchmark-card-heading, .airb__results--leader .demo-airb .airb__benchmark-card-heading, .airb__results--support .demo-airb .airb__benchmark-card-heading, .airb__results--public .demo-airb .airb__benchmark-card-heading {
	margin: 0 0 0.45rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--airb-border);
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--airb-muted);
}

.airb__results--teacher .demo-airb .airb__teacher-strength-grid, .airb__results--student .demo-airb .airb__teacher-strength-grid, .airb__results--parent .demo-airb .airb__teacher-strength-grid, .airb__results--leader .demo-airb .airb__teacher-strength-grid, .airb__results--support .demo-airb .airb__teacher-strength-grid, .airb__results--public .demo-airb .airb__teacher-strength-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
}

.airb__results--teacher .demo-airb .airb__teacher-strength-row, .airb__results--student .demo-airb .airb__teacher-strength-row, .airb__results--parent .demo-airb .airb__teacher-strength-row, .airb__results--leader .demo-airb .airb__teacher-strength-row, .airb__results--support .demo-airb .airb__teacher-strength-row, .airb__results--public .demo-airb .airb__teacher-strength-row {
	min-width: 0;
	border: 1px solid var(--airb-border);
	border-radius: 8px;
	background: #fff;
	padding: 0.7rem;
}

.airb__results--teacher .demo-airb .airb__teacher-strength-heading, .airb__results--student .demo-airb .airb__teacher-strength-heading, .airb__results--parent .demo-airb .airb__teacher-strength-heading, .airb__results--leader .demo-airb .airb__teacher-strength-heading, .airb__results--support .demo-airb .airb__teacher-strength-heading, .airb__results--public .demo-airb .airb__teacher-strength-heading {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.airb__results--teacher .demo-airb .airb__teacher-strength-tick, .airb__results--student .demo-airb .airb__teacher-strength-tick, .airb__results--parent .demo-airb .airb__teacher-strength-tick, .airb__results--leader .demo-airb .airb__teacher-strength-tick, .airb__results--support .demo-airb .airb__teacher-strength-tick, .airb__results--public .demo-airb .airb__teacher-strength-tick {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: #eaf3de;
	color: #3b6d11;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 700;
	flex-shrink: 0;
}

.airb__results--teacher .demo-airb .airb__teacher-strength-title, .airb__results--student .demo-airb .airb__teacher-strength-title, .airb__results--parent .demo-airb .airb__teacher-strength-title, .airb__results--leader .demo-airb .airb__teacher-strength-title, .airb__results--support .demo-airb .airb__teacher-strength-title, .airb__results--public .demo-airb .airb__teacher-strength-title {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.22;
	color: #0f172a;
}

.airb__results--teacher .demo-airb .airb__teacher-strength-score, .airb__results--student .demo-airb .airb__teacher-strength-score, .airb__results--parent .demo-airb .airb__teacher-strength-score, .airb__results--leader .demo-airb .airb__teacher-strength-score, .airb__results--support .demo-airb .airb__teacher-strength-score, .airb__results--public .demo-airb .airb__teacher-strength-score {
	margin-top: 0.65rem;
}

.airb__results--teacher .demo-airb .airb__teacher-strength-value, .airb__results--student .demo-airb .airb__teacher-strength-value, .airb__results--parent .demo-airb .airb__teacher-strength-value, .airb__results--leader .demo-airb .airb__teacher-strength-value, .airb__results--support .demo-airb .airb__teacher-strength-value, .airb__results--public .demo-airb .airb__teacher-strength-value {
	margin: 0;
	font-size: 1.45rem;
	font-weight: 650;
	line-height: 1;
	color: #020617;
	font-variant-numeric: tabular-nums;
}

.airb__results--teacher .demo-airb .airb__teacher-strength-detail, .airb__results--student .demo-airb .airb__teacher-strength-detail, .airb__results--parent .demo-airb .airb__teacher-strength-detail, .airb__results--leader .demo-airb .airb__teacher-strength-detail, .airb__results--support .demo-airb .airb__teacher-strength-detail, .airb__results--public .demo-airb .airb__teacher-strength-detail {
	margin: 0.35rem 0 0;
	font-size: 0.72rem;
	font-weight: 650;
	color: var(--airb-muted);
	line-height: 1.2;
	text-transform: lowercase;
}

.airb__results--teacher .airb__guidance-card .teacher-dash-domain-heading, .airb__results--student .airb__guidance-card .teacher-dash-domain-heading, .airb__results--parent .airb__guidance-card .teacher-dash-domain-heading, .airb__results--leader .airb__guidance-card .teacher-dash-domain-heading, .airb__results--support .airb__guidance-card .teacher-dash-domain-heading, .airb__results--public .airb__guidance-card .teacher-dash-domain-heading {
	margin-top: 0.35rem;
}

.airb__results--teacher .airb__guidance-card .airb__cert-progress, .airb__results--student .airb__guidance-card .airb__cert-progress, .airb__results--parent .airb__guidance-card .airb__cert-progress, .airb__results--leader .airb__guidance-card .airb__cert-progress, .airb__results--support .airb__guidance-card .airb__cert-progress, .airb__results--public .airb__guidance-card .airb__cert-progress {
	margin-top: 0.75rem;
}

.airb__results--teacher .airb__guidance-card .airb__cert-progress-bar, .airb__results--student .airb__guidance-card .airb__cert-progress-bar, .airb__results--parent .airb__guidance-card .airb__cert-progress-bar, .airb__results--leader .airb__guidance-card .airb__cert-progress-bar, .airb__results--support .airb__guidance-card .airb__cert-progress-bar, .airb__results--public .airb__guidance-card .airb__cert-progress-bar {
	margin-top: 0.75rem;
}

.airb__results--teacher .airb__guidance-card .airb__cert-progress-note, .airb__results--student .airb__guidance-card .airb__cert-progress-note, .airb__results--parent .airb__guidance-card .airb__cert-progress-note, .airb__results--leader .airb__guidance-card .airb__cert-progress-note, .airb__results--support .airb__guidance-card .airb__cert-progress-note, .airb__results--public .airb__guidance-card .airb__cert-progress-note {
	margin-top: 0.5rem;
}

.airb__results--teacher .airb__cert-progress--gap .airb__cert-progress-note, .airb__results--student .airb__cert-progress--gap .airb__cert-progress-note, .airb__results--parent .airb__cert-progress--gap .airb__cert-progress-note, .airb__results--leader .airb__cert-progress--gap .airb__cert-progress-note, .airb__results--support .airb__cert-progress--gap .airb__cert-progress-note, .airb__results--public .airb__cert-progress--gap .airb__cert-progress-note {
	color: #9a3412;
}

.airb__results--teacher .airb__cert-progress--met .airb__cert-progress-note, .airb__results--student .airb__cert-progress--met .airb__cert-progress-note, .airb__results--parent .airb__cert-progress--met .airb__cert-progress-note, .airb__results--leader .airb__cert-progress--met .airb__cert-progress-note, .airb__results--support .airb__cert-progress--met .airb__cert-progress-note, .airb__results--public .airb__cert-progress--met .airb__cert-progress-note {
	color: #166534;
}

.airb__results--teacher .airb__cert-progress--unlocked .airb__cert-progress-note, .airb__results--student .airb__cert-progress--unlocked .airb__cert-progress-note, .airb__results--parent .airb__cert-progress--unlocked .airb__cert-progress-note, .airb__results--leader .airb__cert-progress--unlocked .airb__cert-progress-note, .airb__results--support .airb__cert-progress--unlocked .airb__cert-progress-note, .airb__results--public .airb__cert-progress--unlocked .airb__cert-progress-note {
	color: #1e40af;
}

.airb__results--teacher .airb__guidance-focus-body, .airb__results--student .airb__guidance-focus-body, .airb__results--parent .airb__guidance-focus-body, .airb__results--leader .airb__guidance-focus-body, .airb__results--support .airb__guidance-focus-body, .airb__results--public .airb__guidance-focus-body {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	line-height: 1.45;
	color: #334155;
}

.airb__results--teacher .airb__guidance-support, .airb__results--student .airb__guidance-support, .airb__results--parent .airb__guidance-support, .airb__results--leader .airb__guidance-support, .airb__results--support .airb__guidance-support, .airb__results--public .airb__guidance-support {
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid #e2e8f0;
}

.airb__results--teacher .airb__guidance-support-label, .airb__results--student .airb__guidance-support-label, .airb__results--parent .airb__guidance-support-label, .airb__results--leader .airb__guidance-support-label, .airb__results--support .airb__guidance-support-label, .airb__results--public .airb__guidance-support-label {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.3;
	color: #0f172a;
}

.airb__results--teacher .airb__guidance-support-copy, .airb__results--student .airb__guidance-support-copy, .airb__results--parent .airb__guidance-support-copy, .airb__results--leader .airb__guidance-support-copy, .airb__results--support .airb__guidance-support-copy, .airb__results--public .airb__guidance-support-copy {
	margin: 0.25rem 0 0;
	font-size: 0.75rem;
	line-height: 1.4;
	color: #64748b;
}

.airb__results--teacher .airb__guidance-section-actions, .airb__results--student .airb__guidance-section-actions, .airb__results--parent .airb__guidance-section-actions, .airb__results--leader .airb__guidance-section-actions, .airb__results--support .airb__guidance-section-actions, .airb__results--public .airb__guidance-section-actions {
	margin-top: 1rem;
}

.airb__results--teacher .airb__guidance-section-actions .airb__guidance-btn, .airb__results--student .airb__guidance-section-actions .airb__guidance-btn, .airb__results--parent .airb__guidance-section-actions .airb__guidance-btn, .airb__results--leader .airb__guidance-section-actions .airb__guidance-btn, .airb__results--support .airb__guidance-section-actions .airb__guidance-btn, .airb__results--public .airb__guidance-section-actions .airb__guidance-btn {
	width: 100%;
	justify-content: center;
	margin-top: 0;
	min-height: 2.75rem;
}

.airb__results--teacher .demo-airb .airb__btn, .airb__results--student .demo-airb .airb__btn, .airb__results--parent .demo-airb .airb__btn, .airb__results--leader .demo-airb .airb__btn, .airb__results--support .demo-airb .airb__btn, .airb__results--public .demo-airb .airb__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.68rem 1rem;
	border-radius: 8px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	border: 2px solid transparent;
	text-decoration: none;
	font-family: inherit;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.airb__results--teacher .demo-airb .airb__btn--premium, .airb__results--student .demo-airb .airb__btn--premium, .airb__results--parent .demo-airb .airb__btn--premium, .airb__results--leader .demo-airb .airb__btn--premium, .airb__results--support .demo-airb .airb__btn--premium, .airb__results--public .demo-airb .airb__btn--premium {
	background: #3b6d11;
	border-color: #3b6d11;
	color: #fff;
}

.airb__results--teacher .demo-airb .airb__btn--premium:hover, .airb__results--student .demo-airb .airb__btn--premium:hover, .airb__results--parent .demo-airb .airb__btn--premium:hover, .airb__results--leader .demo-airb .airb__btn--premium:hover, .airb__results--support .demo-airb .airb__btn--premium:hover, .airb__results--public .demo-airb .airb__btn--premium:hover {
	background: #2d5010;
	border-color: #2d5010;
	color: #fff;
}

/* ── Core summary (demo CoreSummary) ── */
.airb__results--teacher .teacher-dash-core, .airb__results--student .teacher-dash-core, .airb__results--parent .teacher-dash-core, .airb__results--leader .teacher-dash-core, .airb__results--support .teacher-dash-core, .airb__results--public .teacher-dash-core {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #fff;
	padding: 1rem 1rem 1.25rem;
	padding-top: 1.25rem;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
	margin-bottom: 0.75rem;
}

.airb__results--teacher .teacher-dash-core__stripe, .airb__results--student .teacher-dash-core__stripe, .airb__results--parent .teacher-dash-core__stripe, .airb__results--leader .teacher-dash-core__stripe, .airb__results--support .teacher-dash-core__stripe, .airb__results--public .teacher-dash-core__stripe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(90deg, #dc2626 0%, #f59e0b 25%, #eab308 50%, #22c55e 75%, #16a34a 100%);
}

.airb__results--teacher .teacher-dash-core__body, .airb__results--student .teacher-dash-core__body, .airb__results--parent .teacher-dash-core__body, .airb__results--leader .teacher-dash-core__body, .airb__results--support .teacher-dash-core__body, .airb__results--public .teacher-dash-core__body {
	margin-top: 0.25rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

.airb__results--teacher .teacher-dash-core__eyebrow, .airb__results--student .teacher-dash-core__eyebrow, .airb__results--parent .teacher-dash-core__eyebrow, .airb__results--leader .teacher-dash-core__eyebrow, .airb__results--support .teacher-dash-core__eyebrow, .airb__results--public .teacher-dash-core__eyebrow {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--teacher-dash-accent);
}

.airb__results--teacher .teacher-dash-core__score-row, .airb__results--student .teacher-dash-core__score-row, .airb__results--parent .teacher-dash-core__score-row, .airb__results--leader .teacher-dash-core__score-row, .airb__results--support .teacher-dash-core__score-row, .airb__results--public .teacher-dash-core__score-row {
	margin-top: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0.35rem 0.75rem;
}

.airb__results--teacher .teacher-dash-core__score-label, .airb__results--student .teacher-dash-core__score-label, .airb__results--parent .teacher-dash-core__score-label, .airb__results--leader .teacher-dash-core__score-label, .airb__results--support .teacher-dash-core__score-label, .airb__results--public .teacher-dash-core__score-label {
	width: 100%;
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--teacher-dash-accent);
}

@media (min-width: 640px) {
	.airb__results--teacher .teacher-dash-core__score-label, .airb__results--student .teacher-dash-core__score-label, .airb__results--parent .teacher-dash-core__score-label, .airb__results--leader .teacher-dash-core__score-label, .airb__results--support .teacher-dash-core__score-label, .airb__results--public .teacher-dash-core__score-label {
		width: auto;
	}
}

.airb__results--teacher .teacher-dash-core__score, .airb__results--student .teacher-dash-core__score, .airb__results--parent .teacher-dash-core__score, .airb__results--leader .teacher-dash-core__score, .airb__results--support .teacher-dash-core__score, .airb__results--public .teacher-dash-core__score {
	margin: 0;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.airb__results--teacher .teacher-dash-core__denom, .airb__results--student .teacher-dash-core__denom, .airb__results--parent .teacher-dash-core__denom, .airb__results--leader .teacher-dash-core__denom, .airb__results--support .teacher-dash-core__denom, .airb__results--public .teacher-dash-core__denom {
	margin: 0 0 0.15rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #64748b;
}

.airb__results--teacher .teacher-dash-core__band, .airb__results--student .teacher-dash-core__band, .airb__results--parent .teacher-dash-core__band, .airb__results--leader .teacher-dash-core__band, .airb__results--support .teacher-dash-core__band, .airb__results--public .teacher-dash-core__band {
	margin: 0 0 0.15rem;
	font-size: 1.4625rem;
	font-weight: 600;
	line-height: 1.15;
}

.airb__results--teacher .teacher-dash-core__risk, .airb__results--student .teacher-dash-core__risk, .airb__results--parent .teacher-dash-core__risk, .airb__results--leader .teacher-dash-core__risk, .airb__results--support .teacher-dash-core__risk, .airb__results--public .teacher-dash-core__risk {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--teacher-dash-ink);
}

.airb__results--teacher .teacher-dash-core__risk strong, .airb__results--student .teacher-dash-core__risk strong, .airb__results--parent .teacher-dash-core__risk strong, .airb__results--leader .teacher-dash-core__risk strong, .airb__results--support .teacher-dash-core__risk strong, .airb__results--public .teacher-dash-core__risk strong {
	font-variant-numeric: tabular-nums;
}

.airb__results--teacher .teacher-dash-core__icon, .airb__results--student .teacher-dash-core__icon, .airb__results--parent .teacher-dash-core__icon, .airb__results--leader .teacher-dash-core__icon, .airb__results--support .teacher-dash-core__icon, .airb__results--public .teacher-dash-core__icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 8px;
	background: var(--teacher-dash-accent);
	color: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
	font-size: 1.25rem;
	font-weight: 700;
}

.airb__results--teacher .teacher-dash-core__motif, .airb__results--student .teacher-dash-core__motif, .airb__results--parent .teacher-dash-core__motif, .airb__results--leader .teacher-dash-core__motif, .airb__results--support .teacher-dash-core__motif, .airb__results--public .teacher-dash-core__motif {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	border: 1px solid rgba(226, 232, 240, 0.8);
	background: var(--teacher-dash-soft);
}

.airb__results--teacher .teacher-dash-core__motif p, .airb__results--student .teacher-dash-core__motif p, .airb__results--parent .teacher-dash-core__motif p, .airb__results--leader .teacher-dash-core__motif p, .airb__results--support .teacher-dash-core__motif p, .airb__results--public .teacher-dash-core__motif p {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--teacher-dash-ink);
}

.airb__results--teacher .teacher-dash-readiness, .airb__results--student .teacher-dash-readiness, .airb__results--parent .teacher-dash-readiness, .airb__results--leader .teacher-dash-readiness, .airb__results--support .teacher-dash-readiness, .airb__results--public .teacher-dash-readiness {
	margin-top: 1rem;
}

.airb__results--teacher .teacher-dash-readiness__track, .airb__results--student .teacher-dash-readiness__track, .airb__results--parent .teacher-dash-readiness__track, .airb__results--leader .teacher-dash-readiness__track, .airb__results--support .teacher-dash-readiness__track, .airb__results--public .teacher-dash-readiness__track {
	display: flex;
	gap: 0.25rem;
}

.airb__results--teacher .teacher-dash-readiness__seg, .airb__results--student .teacher-dash-readiness__seg, .airb__results--parent .teacher-dash-readiness__seg, .airb__results--leader .teacher-dash-readiness__seg, .airb__results--support .teacher-dash-readiness__seg, .airb__results--public .teacher-dash-readiness__seg {
	height: 0.75rem;
	flex: 1;
	border-radius: 2px;
	opacity: 0.22;
}

.airb__results--teacher .teacher-dash-readiness__seg.is-active, .airb__results--student .teacher-dash-readiness__seg.is-active, .airb__results--parent .teacher-dash-readiness__seg.is-active, .airb__results--leader .teacher-dash-readiness__seg.is-active, .airb__results--support .teacher-dash-readiness__seg.is-active, .airb__results--public .teacher-dash-readiness__seg.is-active {
	opacity: 1;
}

.airb__results--teacher .teacher-dash-readiness__labels, .airb__results--student .teacher-dash-readiness__labels, .airb__results--parent .teacher-dash-readiness__labels, .airb__results--leader .teacher-dash-readiness__labels, .airb__results--support .teacher-dash-readiness__labels, .airb__results--public .teacher-dash-readiness__labels {
	margin-top: 0.375rem;
	display: flex;
	justify-content: space-between;
	gap: 0.25rem;
	font-size: 0.62rem;
	line-height: 1.15;
	font-weight: 600;
}

.airb__results--teacher .teacher-dash-readiness__labels span, .airb__results--student .teacher-dash-readiness__labels span, .airb__results--parent .teacher-dash-readiness__labels span, .airb__results--leader .teacher-dash-readiness__labels span, .airb__results--support .teacher-dash-readiness__labels span, .airb__results--public .teacher-dash-readiness__labels span {
	flex: 1;
	text-align: center;
}

/* ── Peer comparison (demo PeerComparisonBar) ── */
.airb__results--teacher .teacher-dash-peer, .airb__results--student .teacher-dash-peer, .airb__results--parent .teacher-dash-peer, .airb__results--leader .teacher-dash-peer, .airb__results--support .teacher-dash-peer, .airb__results--public .teacher-dash-peer {
	margin-top: 0.75rem;
	padding: 0.65rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
}

.airb__results--teacher .teacher-dash-peer__head, .airb__results--student .teacher-dash-peer__head, .airb__results--parent .teacher-dash-peer__head, .airb__results--leader .teacher-dash-peer__head, .airb__results--support .teacher-dash-peer__head, .airb__results--public .teacher-dash-peer__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.25rem 0.5rem;
}

.airb__results--teacher .teacher-dash-peer__label, .airb__results--student .teacher-dash-peer__label, .airb__results--parent .teacher-dash-peer__label, .airb__results--leader .teacher-dash-peer__label, .airb__results--support .teacher-dash-peer__label, .airb__results--public .teacher-dash-peer__label {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
}

.airb__results--teacher .teacher-dash-peer__gaps, .airb__results--student .teacher-dash-peer__gaps, .airb__results--parent .teacher-dash-peer__gaps, .airb__results--leader .teacher-dash-peer__gaps, .airb__results--support .teacher-dash-peer__gaps, .airb__results--public .teacher-dash-peer__gaps {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 500;
	line-height: 1.2;
	color: #475569;
}

.airb__results--teacher .teacher-dash-peer__grid, .airb__results--student .teacher-dash-peer__grid, .airb__results--parent .teacher-dash-peer__grid, .airb__results--leader .teacher-dash-peer__grid, .airb__results--support .teacher-dash-peer__grid, .airb__results--public .teacher-dash-peer__grid {
	margin-top: 0.5rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.4rem;
}

.airb__results--teacher .teacher-dash-peer__stat, .airb__results--student .teacher-dash-peer__stat, .airb__results--parent .teacher-dash-peer__stat, .airb__results--leader .teacher-dash-peer__stat, .airb__results--support .teacher-dash-peer__stat, .airb__results--public .teacher-dash-peer__stat {
	min-width: 0;
	padding: 0.42rem 0.5rem;
	border-radius: 6px;
	background: #fff;
	box-shadow: inset 0 0 0 1px #e2e8f0;
}

.airb__results--teacher .teacher-dash-peer__stat-label, .airb__results--student .teacher-dash-peer__stat-label, .airb__results--parent .teacher-dash-peer__stat-label, .airb__results--leader .teacher-dash-peer__stat-label, .airb__results--support .teacher-dash-peer__stat-label, .airb__results--public .teacher-dash-peer__stat-label {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.66rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
}

.airb__results--teacher .teacher-dash-peer__stat-value, .airb__results--student .teacher-dash-peer__stat-value, .airb__results--parent .teacher-dash-peer__stat-value, .airb__results--leader .teacher-dash-peer__stat-value, .airb__results--support .teacher-dash-peer__stat-value, .airb__results--public .teacher-dash-peer__stat-value {
	margin: 0.2rem 0 0;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.airb__results--teacher .teacher-dash-peer__bar, .airb__results--student .teacher-dash-peer__bar, .airb__results--parent .teacher-dash-peer__bar, .airb__results--leader .teacher-dash-peer__bar, .airb__results--support .teacher-dash-peer__bar, .airb__results--public .teacher-dash-peer__bar {
	position: relative;
	margin-top: 0.5rem;
	height: 0.38rem;
	border-radius: 999px;
	background: #e2e8f0;
}

.airb__results--teacher .teacher-dash-peer__bar-fill, .airb__results--student .teacher-dash-peer__bar-fill, .airb__results--parent .teacher-dash-peer__bar-fill, .airb__results--leader .teacher-dash-peer__bar-fill, .airb__results--support .teacher-dash-peer__bar-fill, .airb__results--public .teacher-dash-peer__bar-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	border-radius: 999px;
}

.airb__results--teacher .teacher-dash-peer__bar-mark, .airb__results--student .teacher-dash-peer__bar-mark, .airb__results--parent .teacher-dash-peer__bar-mark, .airb__results--leader .teacher-dash-peer__bar-mark, .airb__results--support .teacher-dash-peer__bar-mark, .airb__results--public .teacher-dash-peer__bar-mark {
	position: absolute;
	top: 50%;
	width: 1px;
	height: 0.75rem;
	transform: translateY(-50%);
	background: #64748b;
}

.airb__results--teacher .teacher-dash-peer__bar-mark--top, .airb__results--student .teacher-dash-peer__bar-mark--top, .airb__results--parent .teacher-dash-peer__bar-mark--top, .airb__results--leader .teacher-dash-peer__bar-mark--top, .airb__results--support .teacher-dash-peer__bar-mark--top, .airb__results--public .teacher-dash-peer__bar-mark--top {
	background: #16a34a;
}

.airb__results--teacher .teacher-dash-peer__scale, .airb__results--student .teacher-dash-peer__scale, .airb__results--parent .teacher-dash-peer__scale, .airb__results--leader .teacher-dash-peer__scale, .airb__results--support .teacher-dash-peer__scale, .airb__results--public .teacher-dash-peer__scale {
	margin-top: 0.25rem;
	display: flex;
	justify-content: space-between;
	font-size: 0.6rem;
	font-weight: 600;
	color: #64748b;
}

/* ── Dashboard shell (tabs + panels) ── */
.airb__results--teacher .teacher-dash-section, .airb__results--student .teacher-dash-section, .airb__results--parent .teacher-dash-section, .airb__results--leader .teacher-dash-section, .airb__results--support .teacher-dash-section, .airb__results--public .teacher-dash-section {
	margin-top: 0.35rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #fff;
}

.airb__results--teacher .teacher-dash-tabs, .airb__results--student .teacher-dash-tabs, .airb__results--parent .teacher-dash-tabs, .airb__results--leader .teacher-dash-tabs, .airb__results--support .teacher-dash-tabs, .airb__results--public .teacher-dash-tabs {
	display: flex;
	gap: 0.25rem;
	overflow-x: auto;
	padding: 0.75rem 1rem 0;
	border-bottom: 1px solid #e2e8f0;
	scrollbar-width: none;
}

.airb__results--teacher .teacher-dash-tabs::-webkit-scrollbar, .airb__results--student .teacher-dash-tabs::-webkit-scrollbar, .airb__results--parent .teacher-dash-tabs::-webkit-scrollbar, .airb__results--leader .teacher-dash-tabs::-webkit-scrollbar, .airb__results--support .teacher-dash-tabs::-webkit-scrollbar, .airb__results--public .teacher-dash-tabs::-webkit-scrollbar {
	display: none;
}

.airb__results--teacher .teacher-dash-tab, .airb__results--student .teacher-dash-tab, .airb__results--parent .teacher-dash-tab, .airb__results--leader .teacher-dash-tab, .airb__results--support .teacher-dash-tab, .airb__results--public .teacher-dash-tab {
	flex: none;
	min-height: 3rem;
	padding: 0.625rem 1rem;
	border: none;
	border-bottom: 2px solid transparent;
	background: transparent;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
}

.airb__results--teacher .teacher-dash-tab.is-active, .airb__results--student .teacher-dash-tab.is-active, .airb__results--parent .teacher-dash-tab.is-active, .airb__results--leader .teacher-dash-tab.is-active, .airb__results--support .teacher-dash-tab.is-active, .airb__results--public .teacher-dash-tab.is-active {
	border-bottom-color: #020617;
	color: #020617;
}

.airb__results--teacher .teacher-dash-tab:hover, .airb__results--student .teacher-dash-tab:hover, .airb__results--parent .teacher-dash-tab:hover, .airb__results--leader .teacher-dash-tab:hover, .airb__results--support .teacher-dash-tab:hover, .airb__results--public .teacher-dash-tab:hover {
	color: #1e293b;
}

.airb__results--teacher .teacher-dash-panels, .airb__results--student .teacher-dash-panels, .airb__results--parent .teacher-dash-panels, .airb__results--leader .teacher-dash-panels, .airb__results--support .teacher-dash-panels, .airb__results--public .teacher-dash-panels {
	padding: 1rem;
}

.airb__results--teacher .teacher-dash-stack, .airb__results--student .teacher-dash-stack, .airb__results--parent .teacher-dash-stack, .airb__results--leader .teacher-dash-stack, .airb__results--support .teacher-dash-stack, .airb__results--public .teacher-dash-stack {
	display: grid;
	gap: 1rem;
}

.airb__results--teacher .teacher-dash-card, .airb__results--student .teacher-dash-card, .airb__results--parent .teacher-dash-card, .airb__results--leader .teacher-dash-card, .airb__results--support .teacher-dash-card, .airb__results--public .teacher-dash-card {
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #fff;
	padding: 1rem;
}

.airb__results--teacher .teacher-dash-scene, .airb__results--student .teacher-dash-scene, .airb__results--parent .teacher-dash-scene, .airb__results--leader .teacher-dash-scene, .airb__results--support .teacher-dash-scene, .airb__results--public .teacher-dash-scene {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--teacher-dash-accent);
}

.airb__results--teacher .teacher-dash-headline, .airb__results--student .teacher-dash-headline, .airb__results--parent .teacher-dash-headline, .airb__results--leader .teacher-dash-headline, .airb__results--support .teacher-dash-headline, .airb__results--public .teacher-dash-headline {
	margin: 0.5rem 0 0;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.25;
	color: #020617;
}

@media (min-width: 640px) {
	.airb__results--teacher .teacher-dash-headline, .airb__results--student .teacher-dash-headline, .airb__results--parent .teacher-dash-headline, .airb__results--leader .teacher-dash-headline, .airb__results--support .teacher-dash-headline, .airb__results--public .teacher-dash-headline {
		font-size: 1.5rem;
	}
}

.airb__results--teacher .teacher-dash-metric, .airb__results--student .teacher-dash-metric, .airb__results--parent .teacher-dash-metric, .airb__results--leader .teacher-dash-metric, .airb__results--support .teacher-dash-metric, .airb__results--public .teacher-dash-metric {
	margin-top: 1rem;
	padding: 0.75rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
}

.airb__results--teacher .teacher-dash-metric-row, .airb__results--student .teacher-dash-metric-row, .airb__results--parent .teacher-dash-metric-row, .airb__results--leader .teacher-dash-metric-row, .airb__results--support .teacher-dash-metric-row, .airb__results--public .teacher-dash-metric-row {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.airb__results--teacher .teacher-dash-metric-row .teacher-dash-metric, .airb__results--student .teacher-dash-metric-row .teacher-dash-metric, .airb__results--parent .teacher-dash-metric-row .teacher-dash-metric, .airb__results--leader .teacher-dash-metric-row .teacher-dash-metric, .airb__results--support .teacher-dash-metric-row .teacher-dash-metric, .airb__results--public .teacher-dash-metric-row .teacher-dash-metric {
	margin-top: 0;
}

@media (min-width: 640px) {
	.airb__results--teacher .teacher-dash-metric-row, .airb__results--student .teacher-dash-metric-row, .airb__results--parent .teacher-dash-metric-row, .airb__results--leader .teacher-dash-metric-row, .airb__results--support .teacher-dash-metric-row, .airb__results--public .teacher-dash-metric-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.airb__results--teacher .teacher-dash-metric__label, .airb__results--student .teacher-dash-metric__label, .airb__results--parent .teacher-dash-metric__label, .airb__results--leader .teacher-dash-metric__label, .airb__results--support .teacher-dash-metric__label, .airb__results--public .teacher-dash-metric__label {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
}

.airb__results--teacher .teacher-dash-metric__value, .airb__results--student .teacher-dash-metric__value, .airb__results--parent .teacher-dash-metric__value, .airb__results--leader .teacher-dash-metric__value, .airb__results--support .teacher-dash-metric__value, .airb__results--public .teacher-dash-metric__value {
	margin: 0.25rem 0 0;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
	.airb__results--teacher .teacher-dash-metric__value, .airb__results--student .teacher-dash-metric__value, .airb__results--parent .teacher-dash-metric__value, .airb__results--leader .teacher-dash-metric__value, .airb__results--support .teacher-dash-metric__value, .airb__results--public .teacher-dash-metric__value {
		font-size: 2.5rem;
	}
}

.airb__results--teacher .teacher-dash-metric__note, .airb__results--student .teacher-dash-metric__note, .airb__results--parent .teacher-dash-metric__note, .airb__results--leader .teacher-dash-metric__note, .airb__results--support .teacher-dash-metric__note, .airb__results--public .teacher-dash-metric__note {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #475569;
}

.airb__results--teacher .teacher-dash-dependency-scale, .airb__results--student .teacher-dash-dependency-scale, .airb__results--parent .teacher-dash-dependency-scale, .airb__results--leader .teacher-dash-dependency-scale, .airb__results--support .teacher-dash-dependency-scale, .airb__results--public .teacher-dash-dependency-scale {
	margin-top: 0.75rem;
}

.airb__results--teacher .teacher-dash-dependency-scale__track, .airb__results--student .teacher-dash-dependency-scale__track, .airb__results--parent .teacher-dash-dependency-scale__track, .airb__results--leader .teacher-dash-dependency-scale__track, .airb__results--support .teacher-dash-dependency-scale__track, .airb__results--public .teacher-dash-dependency-scale__track {
	position: relative;
	height: 0.75rem;
	overflow: visible;
	border-radius: 999px;
	background: linear-gradient(90deg, #16a34a 0%, #eab308 50%, #dc2626 100%);
}

.airb__results--teacher .teacher-dash-dependency-scale__marker, .airb__results--student .teacher-dash-dependency-scale__marker, .airb__results--parent .teacher-dash-dependency-scale__marker, .airb__results--leader .teacher-dash-dependency-scale__marker, .airb__results--support .teacher-dash-dependency-scale__marker, .airb__results--public .teacher-dash-dependency-scale__marker {
	position: absolute;
	top: 50%;
	width: 0.875rem;
	height: 0.875rem;
	border-radius: 50%;
	border: 2px solid #fff;
	background: #0f172a;
	transform: translate(-50%, -50%);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
}

.airb__results--teacher .teacher-dash-dependency-scale__labels, .airb__results--student .teacher-dash-dependency-scale__labels, .airb__results--parent .teacher-dash-dependency-scale__labels, .airb__results--leader .teacher-dash-dependency-scale__labels, .airb__results--support .teacher-dash-dependency-scale__labels, .airb__results--public .teacher-dash-dependency-scale__labels {
	margin-top: 0.375rem;
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	font-size: 0.65rem;
	font-weight: 600;
	line-height: 1.2;
}

.airb__results--teacher .teacher-dash-dependency-scale__labels span:first-child, .airb__results--student .teacher-dash-dependency-scale__labels span:first-child, .airb__results--parent .teacher-dash-dependency-scale__labels span:first-child, .airb__results--leader .teacher-dash-dependency-scale__labels span:first-child, .airb__results--support .teacher-dash-dependency-scale__labels span:first-child, .airb__results--public .teacher-dash-dependency-scale__labels span:first-child {
	color: #15803d;
}

.airb__results--teacher .teacher-dash-dependency-scale__labels span:last-child, .airb__results--student .teacher-dash-dependency-scale__labels span:last-child, .airb__results--parent .teacher-dash-dependency-scale__labels span:last-child, .airb__results--leader .teacher-dash-dependency-scale__labels span:last-child, .airb__results--support .teacher-dash-dependency-scale__labels span:last-child, .airb__results--public .teacher-dash-dependency-scale__labels span:last-child {
	color: #b91c1c;
}

.airb__results--teacher .teacher-dash-domain-heading, .airb__results--student .teacher-dash-domain-heading, .airb__results--parent .teacher-dash-domain-heading, .airb__results--leader .teacher-dash-domain-heading, .airb__results--support .teacher-dash-domain-heading, .airb__results--public .teacher-dash-domain-heading {
	margin: 1rem 0 0;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
}

.airb__results--teacher .teacher-dash-domain-grid-wrap, .airb__results--student .teacher-dash-domain-grid-wrap, .airb__results--parent .teacher-dash-domain-grid-wrap, .airb__results--leader .teacher-dash-domain-grid-wrap, .airb__results--support .teacher-dash-domain-grid-wrap, .airb__results--public .teacher-dash-domain-grid-wrap {
	margin-top: 0.75rem;
}

.airb__results--teacher .teacher-dash-focus-wrap, .airb__results--student .teacher-dash-focus-wrap, .airb__results--parent .teacher-dash-focus-wrap, .airb__results--leader .teacher-dash-focus-wrap, .airb__results--support .teacher-dash-focus-wrap, .airb__results--public .teacher-dash-focus-wrap {
	margin-top: 1rem;
}

.airb__results--teacher .airb__dashboard-share, .airb__results--student .airb__dashboard-share, .airb__results--parent .airb__dashboard-share, .airb__results--leader .airb__dashboard-share, .airb__results--support .airb__dashboard-share, .airb__results--public .airb__dashboard-share {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid #dbe7f5;
	border-radius: 8px;
	background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.airb__results--teacher .airb__dashboard-share-title, .airb__results--student .airb__dashboard-share-title, .airb__results--parent .airb__dashboard-share-title, .airb__results--leader .airb__dashboard-share-title, .airb__results--support .airb__dashboard-share-title, .airb__results--public .airb__dashboard-share-title {
	margin: 0.2rem 0 0;
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.25;
	color: #020617;
}

.airb__results--teacher .airb__dashboard-share-body, .airb__results--student .airb__dashboard-share-body, .airb__results--parent .airb__dashboard-share-body, .airb__results--leader .airb__dashboard-share-body, .airb__results--support .airb__dashboard-share-body, .airb__results--public .airb__dashboard-share-body,
.airb__results--teacher .airb__dashboard-share-action, .airb__results--student .airb__dashboard-share-action, .airb__results--parent .airb__dashboard-share-action, .airb__results--leader .airb__dashboard-share-action, .airb__results--support .airb__dashboard-share-action, .airb__results--public .airb__dashboard-share-action {
	margin: 0.4rem 0 0;
	font-size: 0.86rem;
	line-height: 1.45;
	color: #475569;
}

.airb__results--teacher .airb__dashboard-share-action strong, .airb__results--student .airb__dashboard-share-action strong, .airb__results--parent .airb__dashboard-share-action strong, .airb__results--leader .airb__dashboard-share-action strong, .airb__results--support .airb__dashboard-share-action strong, .airb__results--public .airb__dashboard-share-action strong {
	color: var(--teacher-dash-ink);
}

.airb__results--teacher .airb__dashboard-share-actions, .airb__results--student .airb__dashboard-share-actions, .airb__results--parent .airb__dashboard-share-actions, .airb__results--leader .airb__dashboard-share-actions, .airb__results--support .airb__dashboard-share-actions, .airb__results--public .airb__dashboard-share-actions {
	display: grid;
	justify-items: end;
	gap: 0.4rem;
}

.airb__results--teacher .airb__dashboard-share-status, .airb__results--student .airb__dashboard-share-status, .airb__results--parent .airb__dashboard-share-status, .airb__results--leader .airb__dashboard-share-status, .airb__results--support .airb__dashboard-share-status, .airb__results--public .airb__dashboard-share-status {
	margin: 0;
	font-size: 0.75rem;
}

/* ── Progress passport + certificate (certificate.css) ── */
.airb__results--teacher .benchmark-passport-grid, .airb__results--student .benchmark-passport-grid, .airb__results--parent .benchmark-passport-grid, .airb__results--leader .benchmark-passport-grid, .airb__results--support .benchmark-passport-grid, .airb__results--public .benchmark-passport-grid {
	display: grid;
	gap: 0.5rem;
}

.airb__results--teacher .teacher-dash-progress-head, .airb__results--student .teacher-dash-progress-head, .airb__results--parent .teacher-dash-progress-head, .airb__results--leader .teacher-dash-progress-head, .airb__results--support .teacher-dash-progress-head, .airb__results--public .teacher-dash-progress-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.75rem;
}

.airb__results--teacher .teacher-dash-progress-title, .airb__results--student .teacher-dash-progress-title, .airb__results--parent .teacher-dash-progress-title, .airb__results--leader .teacher-dash-progress-title, .airb__results--support .teacher-dash-progress-title, .airb__results--public .teacher-dash-progress-title {
	margin: 0.25rem 0 0;
	font-size: 1.125rem;
	font-weight: 600;
	color: #020617;
}

.airb__results--teacher .teacher-dash-progress-stamp, .airb__results--student .teacher-dash-progress-stamp, .airb__results--parent .teacher-dash-progress-stamp, .airb__results--leader .teacher-dash-progress-stamp, .airb__results--support .teacher-dash-progress-stamp, .airb__results--public .teacher-dash-progress-stamp {
	margin: 0;
	padding: 0.25rem 0.625rem;
	border-radius: 6px;
	background: #f8fafc;
	box-shadow: inset 0 0 0 1px #e2e8f0;
	font-size: 0.75rem;
	font-weight: 600;
	color: #475569;
}

.airb__results--teacher .teacher-dash-progress-bar, .airb__results--student .teacher-dash-progress-bar, .airb__results--parent .teacher-dash-progress-bar, .airb__results--leader .teacher-dash-progress-bar, .airb__results--support .teacher-dash-progress-bar, .airb__results--public .teacher-dash-progress-bar {
	margin-top: 1rem;
	height: 0.5rem;
	overflow: hidden;
	border-radius: 999px;
	background: #f1f5f9;
}

.airb__results--teacher .teacher-dash-progress-bar > span, .airb__results--student .teacher-dash-progress-bar > span, .airb__results--parent .teacher-dash-progress-bar > span, .airb__results--leader .teacher-dash-progress-bar > span, .airb__results--support .teacher-dash-progress-bar > span, .airb__results--public .teacher-dash-progress-bar > span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--teacher-dash-accent);
}

.airb__results--teacher .teacher-dash-passport-step, .airb__results--student .teacher-dash-passport-step, .airb__results--parent .teacher-dash-passport-step, .airb__results--leader .teacher-dash-passport-step, .airb__results--support .teacher-dash-passport-step, .airb__results--public .teacher-dash-passport-step {
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	padding: 0.75rem;
}

.airb__results--teacher .teacher-dash-passport-step__head, .airb__results--student .teacher-dash-passport-step__head, .airb__results--parent .teacher-dash-passport-step__head, .airb__results--leader .teacher-dash-passport-step__head, .airb__results--support .teacher-dash-passport-step__head, .airb__results--public .teacher-dash-passport-step__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.airb__results--teacher .teacher-dash-passport-step__icon, .airb__results--student .teacher-dash-passport-step__icon, .airb__results--parent .teacher-dash-passport-step__icon, .airb__results--leader .teacher-dash-passport-step__icon, .airb__results--support .teacher-dash-passport-step__icon, .airb__results--public .teacher-dash-passport-step__icon {
	display: grid;
	place-items: center;
	width: 1.75rem;
	height: 1.75rem;
	flex-shrink: 0;
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 600;
}

.airb__results--teacher .teacher-dash-passport-step__status, .airb__results--student .teacher-dash-passport-step__status, .airb__results--parent .teacher-dash-passport-step__status, .airb__results--leader .teacher-dash-passport-step__status, .airb__results--support .teacher-dash-passport-step__status, .airb__results--public .teacher-dash-passport-step__status {
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
}

.airb__results--teacher .teacher-dash-passport-step h4, .airb__results--student .teacher-dash-passport-step h4, .airb__results--parent .teacher-dash-passport-step h4, .airb__results--leader .teacher-dash-passport-step h4, .airb__results--support .teacher-dash-passport-step h4, .airb__results--public .teacher-dash-passport-step h4 {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	color: #020617;
}

.airb__results--teacher .teacher-dash-passport-step p, .airb__results--student .teacher-dash-passport-step p, .airb__results--parent .teacher-dash-passport-step p, .airb__results--leader .teacher-dash-passport-step p, .airb__results--support .teacher-dash-passport-step p, .airb__results--public .teacher-dash-passport-step p {
	margin: 0.25rem 0 0;
	font-size: 0.75rem;
	line-height: 1.45;
	color: #475569;
}

.airb__results--teacher .benchmark-certificate-layout, .airb__results--student .benchmark-certificate-layout, .airb__results--parent .benchmark-certificate-layout, .airb__results--leader .benchmark-certificate-layout, .airb__results--support .benchmark-certificate-layout, .airb__results--public .benchmark-certificate-layout {
	display: grid;
	gap: 1rem;
}

.airb__results--teacher .benchmark-certificate-stats, .airb__results--student .benchmark-certificate-stats, .airb__results--parent .benchmark-certificate-stats, .airb__results--leader .benchmark-certificate-stats, .airb__results--support .benchmark-certificate-stats, .airb__results--public .benchmark-certificate-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
}

.airb__results--teacher .benchmark-certificate-stats > div, .airb__results--student .benchmark-certificate-stats > div, .airb__results--parent .benchmark-certificate-stats > div, .airb__results--leader .benchmark-certificate-stats > div, .airb__results--support .benchmark-certificate-stats > div, .airb__results--public .benchmark-certificate-stats > div {
	padding: 0.625rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #fff;
}

.airb__results--teacher .benchmark-certificate-stats span, .airb__results--student .benchmark-certificate-stats span, .airb__results--parent .benchmark-certificate-stats span, .airb__results--leader .benchmark-certificate-stats span, .airb__results--support .benchmark-certificate-stats span, .airb__results--public .benchmark-certificate-stats span {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
}

.airb__results--teacher .benchmark-certificate-stats strong, .airb__results--student .benchmark-certificate-stats strong, .airb__results--parent .benchmark-certificate-stats strong, .airb__results--leader .benchmark-certificate-stats strong, .airb__results--support .benchmark-certificate-stats strong, .airb__results--public .benchmark-certificate-stats strong {
	display: block;
	margin-top: 0.25rem;
	font-size: 1.25rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: #020617;
}

.airb__results--teacher .teacher-dash-cert-note, .airb__results--student .teacher-dash-cert-note, .airb__results--parent .teacher-dash-cert-note, .airb__results--leader .teacher-dash-cert-note, .airb__results--support .teacher-dash-cert-note, .airb__results--public .teacher-dash-cert-note {
	margin: 0.25rem 0 0;
	font-size: 0.75rem;
	line-height: 1.45;
	color: #64748b;
}

.airb__results--teacher .teacher-dash-cert-lock, .airb__results--student .teacher-dash-cert-lock, .airb__results--parent .teacher-dash-cert-lock, .airb__results--leader .teacher-dash-cert-lock, .airb__results--support .teacher-dash-cert-lock, .airb__results--public .teacher-dash-cert-lock {
	margin-top: 0.5rem;
	width: 100%;
	opacity: 0.7;
}

.benchmark-certificate-summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
}

.benchmark-certificate-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.benchmark-certificate-form {
	display: grid;
	gap: 0.75rem;
	min-width: 0;
}

.benchmark-certificate-form label {
	display: grid;
	gap: 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #334155;
}

.benchmark-certificate-form input[type="text"] {
	width: 100%;
	min-height: 2.75rem;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 0.65rem 0.75rem;
	background: #fff;
	color: #020617;
	font: inherit;
}

.benchmark-certificate-check {
	display: flex !important;
	grid-template-columns: none !important;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem !important;
	padding: 0.7rem 0.75rem;
	border: 1px solid #dbe3ee;
	border-radius: 8px;
	background: #f8fafc;
}

.benchmark-certificate-check input {
	width: 1rem;
	height: 1rem;
}

.benchmark-certificate-status {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.45;
	color: #64748b;
}

.benchmark-certificate-status.is-error {
	color: #b91c1c;
}

.benchmark-certificate-gate {
	margin: 0 0 0.85rem;
	padding: 0.65rem 0.75rem;
	border-radius: 8px;
	font-size: 0.78rem;
	line-height: 1.45;
}

.benchmark-certificate-gate.is-open {
	background: #ecfdf5;
	border: 1px solid #bbf7d0;
	color: #166534;
}

.benchmark-certificate-gate.is-blocked {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	color: #9a3412;
}

.benchmark-certificate-themes {
	margin: 0 0 0.85rem;
	padding: 0;
	border: 0;
}

.benchmark-certificate-themes legend {
	margin-bottom: 0.45rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #334155;
}

.benchmark-certificate-theme-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem;
}

.benchmark-certificate-theme-option {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.65rem;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	font-size: 0.78rem;
	font-weight: 600;
	color: #0f172a;
	cursor: pointer;
}

.benchmark-certificate-theme-option:has(input:checked) {
	border-color: #2563eb;
	background: #eff6ff;
}

.benchmark-certificate-reflection textarea,
.benchmark-certificate-reflection input[type="url"],
.benchmark-certificate-reflection input[type="email"] {
	width: 100%;
	margin-top: 0.35rem;
	padding: 0.55rem 0.65rem;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font: inherit;
	font-size: 0.82rem;
	line-height: 1.45;
	color: #0f172a;
	background: #fff;
}

.benchmark-certificate-reflection-hint {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.72rem;
	line-height: 1.4;
	color: #64748b;
}

.benchmark-certificate-reflection textarea {
	min-height: 4.5rem;
	resize: vertical;
}

.benchmark-certificate-quality {
	margin: 0.85rem 0 0;
	padding: 0.75rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #fff;
}

.benchmark-certificate-quality__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.65rem;
}

.benchmark-certificate-quality__label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #64748b;
}

.benchmark-certificate-quality__score {
	font-size: 0.95rem;
	color: #0f172a;
}

.benchmark-certificate-quality__tier {
	margin-left: auto;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.2rem 0.45rem;
	border-radius: 999px;
}

.benchmark-certificate-quality.is-weak {
	border-color: #fecaca;
	background: #fef2f2;
}

.benchmark-certificate-quality.is-weak .benchmark-certificate-quality__tier {
	background: #fee2e2;
	color: #991b1b;
}

.benchmark-certificate-quality.is-valid {
	border-color: #bbf7d0;
	background: #f0fdf4;
}

.benchmark-certificate-quality.is-valid .benchmark-certificate-quality__tier {
	background: #dcfce7;
	color: #166534;
}

.benchmark-certificate-quality.is-strong {
	border-color: #86efac;
	background: #ecfdf5;
}

.benchmark-certificate-quality.is-strong .benchmark-certificate-quality__tier {
	background: #bbf7d0;
	color: #14532d;
}

.benchmark-certificate-quality.is-review {
	border-color: #fde68a;
	background: #fffbeb;
}

.benchmark-certificate-quality.is-review .benchmark-certificate-quality__tier {
	background: #fef3c7;
	color: #92400e;
}

.benchmark-certificate-quality__messages {
	margin: 0.55rem 0 0;
	padding-left: 1rem;
	font-size: 0.76rem;
	line-height: 1.45;
	color: #475569;
}

.benchmark-certificate-pathways {
	margin: 0.65rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.45rem;
}

.benchmark-certificate-pathways__item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.55rem;
	align-items: start;
	padding: 0.55rem 0.65rem;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #f8fafc;
	font-size: 0.76rem;
	line-height: 1.4;
	color: #475569;
}

.benchmark-certificate-pathways__item.is-met {
	border-color: #bbf7d0;
	background: #f0fdf4;
	color: #166534;
}

.benchmark-certificate-pathways__status {
	font-weight: 700;
}

.benchmark-certificate-pathways__hint {
	color: inherit;
	opacity: 0.85;
}

.benchmark-certificate-preview-wrap {
	overflow: hidden;
	min-width: 0;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #f8fafc;
	padding: 0.75rem;
}

.certificate-preview {
	width: 100%;
	background: #fff;
	color: #020617;
}

.certificate-preview__frame {
	border: 4px solid #166534;
	padding: 1.25rem;
	background: #fff;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.certificate-preview__logos {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1.25rem;
}

.certificate-preview__logo-slot {
	display: grid;
	place-items: center;
	min-height: 3rem;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	color: #64748b;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.certificate-preview__logo-divider {
	width: 1px;
	height: 3.5rem;
	background: #e2e8f0;
}

.certificate-preview__content,
.certificate-preview__lead,
.certificate-preview__name,
.certificate-preview__school,
.certificate-preview__body {
	text-align: center;
}

.certificate-preview__focus {
	margin: -0.25rem auto 0.75rem;
	max-width: 28em;
	font-size: 0.75rem;
	line-height: 1.45;
	color: #64748b;
	text-align: center;
}

.certificate-preview__headline {
	margin: 0;
	font-size: clamp(1.35rem, 3vw, 2.1rem);
	line-height: 1.1;
	letter-spacing: 0;
	text-align: center;
}

.certificate-preview__headline-primary,
.certificate-preview__headline-secondary {
	display: block;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
}

.certificate-preview__headline-primary {
	font-size: clamp(1.05rem, 2.35vw, 2.1rem);
}

.certificate-preview__headline-secondary {
	margin-top: 0.15rem;
	font-size: clamp(1rem, 2.1vw, 1.85rem);
}

.certificate-preview__type {
	margin: 0.35rem 0 1rem;
	color: #166534;
	font-weight: 700;
}

.certificate-preview__lead,
.certificate-preview__school,
.certificate-preview__body,
.certificate-preview__recognition {
	margin: 0.75rem auto 0;
	max-width: 42rem;
	color: #475569;
	line-height: 1.45;
}

.certificate-preview__themes {
	margin: 1rem auto 0;
	max-width: 42rem;
	text-align: center;
	color: #334155;
}

.certificate-preview__themes p {
	margin: 0;
	font-weight: 700;
}

.certificate-preview__themes ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	margin: 0.6rem 0 0;
	padding: 0;
	list-style: none;
}

.certificate-preview__themes li {
	padding: 0.3rem 0.55rem;
	border: 1px solid #dbe3ee;
	border-radius: 999px;
	background: #f8fafc;
	font-size: 0.72rem;
	font-weight: 800;
}

.certificate-preview__name {
	margin: 0.5rem 0 0;
	font-size: clamp(1.5rem, 4vw, 2.4rem);
	line-height: 1.05;
	font-weight: 800;
	color: #166534;
	letter-spacing: 0;
}

.certificate-preview__date {
	margin: 1rem 0 0;
	font-weight: 700;
}

.certificate-preview__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 1rem;
	padding-top: 0.75rem;
	border-top: 1px solid #e2e8f0;
	color: #64748b;
	font-size: 0.72rem;
	font-weight: 700;
}

@media (max-width: 820px) {
	.benchmark-certificate-summary,
	.benchmark-certificate-grid {
		grid-template-columns: 1fr;
	}
}

/* Hide legacy profile chrome when demo dashboard is active */
.airb__results--teacher.airb__results--teacher-dash .airb__res-eyebrow,
.airb__results--student.airb__results--student-dash .airb__res-eyebrow,
.airb__results--parent.airb__results--parent-dash .airb__res-eyebrow,
.airb__results--leader.airb__results--leader-dash .airb__res-eyebrow,
.airb__results--support.airb__results--support-dash .airb__res-eyebrow,
.airb__results--teacher.airb__results--teacher-dash .airb__res-shead,
.airb__results--student.airb__results--student-dash .airb__res-shead,
.airb__results--parent.airb__results--parent-dash .airb__res-shead,
.airb__results--leader.airb__results--leader-dash .airb__res-shead,
.airb__results--support.airb__results--support-dash .airb__res-shead,
.airb__results--teacher.airb__results--teacher-dash .airb__leader-hero,
.airb__results--student.airb__results--student-dash .airb__leader-hero,
.airb__results--parent.airb__results--parent-dash .airb__leader-hero,
.airb__results--leader.airb__results--leader-dash .airb__leader-hero,
.airb__results--support.airb__results--support-dash .airb__leader-hero,
.airb__results--teacher.airb__results--teacher-dash .airb__leader-peer,
.airb__results--student.airb__results--student-dash .airb__leader-peer,
.airb__results--parent.airb__results--parent-dash .airb__leader-peer,
.airb__results--leader.airb__results--leader-dash .airb__leader-peer,
.airb__results--support.airb__results--support-dash .airb__leader-peer,
.airb__results--student.airb__results--student-dash .airb__student-hero,
.airb__results--student.airb__results--student-dash .airb__student-skills-card,
.airb__results--parent.airb__results--parent-dash .airb__parent-hero,
.airb__results--parent.airb__results--parent-dash .airb__parent-metrics-card,
.airb__results--parent.airb__results--parent-dash .airb__parent-topic-stack,
.airb__results--leader.airb__results--leader-dash .airb__leader-support-grid,
.airb__results--leader.airb__results--leader-dash .airb__leader-urgent,
.airb__results--support.airb__results--support-dash .airb__support-hero,
.airb__results--support.airb__results--support-dash .airb__support-metric-grid,
.airb__results--support.airb__results--support-dash .airb__benchmark-oversight-section,
.airb__results--support.airb__results--support-dash .airb__support-domain-card,
.airb__results--support.airb__results--support-dash .airb__support-strength-card,
.airb__results--public.airb__results--public-dash .airb__res-eyebrow,
.airb__results--public.airb__results--public-dash .airb__res-shead,
.airb__results--public.airb__results--public-dash .airb__leader-hero,
.airb__results--public.airb__results--public-dash .airb__leader-peer,
.airb__results--public.airb__results--public-dash .airb__public-metric-grid,
.airb__results--public.airb__results--public-dash .airb__public-domain-card {
	display: none;
}

.airb__results--teacher.airb__results--teacher-dash .airb__res-profile,
.airb__results--student.airb__results--student-dash .airb__res-profile,
.airb__results--parent.airb__results--parent-dash .airb__res-profile,
.airb__results--leader.airb__results--leader-dash .airb__res-profile,
.airb__results--support.airb__results--support-dash .airb__res-profile,
.airb__results--public.airb__results--public-dash .airb__res-profile {
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}

/* Full-width bleed — fill benchmark container (no airb__body / screen gutters) */
.airb:has(.airb__results--teacher-dash) .airb__body,
.airb:has(.airb__results--student-dash) .airb__body,
.airb:has(.airb__results--parent-dash) .airb__body,
.airb:has(.airb__results--leader-dash) .airb__body,
.airb:has(.airb__results--support-dash) .airb__body,
.airb:has(.airb__results--public-dash) .airb__body {
	padding-left: 0;
	padding-right: 0;
}

.airb:has(.airb__results--teacher-dash) #airb-screen-results,
.airb:has(.airb__results--student-dash) #airb-screen-results,
.airb:has(.airb__results--parent-dash) #airb-screen-results,
.airb:has(.airb__results--leader-dash) #airb-screen-results,
.airb:has(.airb__results--support-dash) #airb-screen-results,
.airb:has(.airb__results--public-dash) #airb-screen-results {
	padding-left: 0;
	padding-right: 0;
}

.airb.airb--mobile-flow:has(.airb__results--teacher-dash) #airb-screen-results,
.airb.airb--mobile-flow:has(.airb__results--student-dash) #airb-screen-results,
.airb.airb--mobile-flow:has(.airb__results--parent-dash) #airb-screen-results,
.airb.airb--mobile-flow:has(.airb__results--leader-dash) #airb-screen-results,
.airb.airb--mobile-flow:has(.airb__results--support-dash) #airb-screen-results,
.airb.airb--mobile-flow:has(.airb__results--public-dash) #airb-screen-results {
	padding-left: 0;
	padding-right: 0;
}

.airb__results--teacher.airb__results--teacher-dash,
.airb__results--student.airb__results--student-dash,
.airb__results--parent.airb__results--parent-dash,
.airb__results--leader.airb__results--leader-dash,
.airb__results--support.airb__results--support-dash,
.airb__results--public.airb__results--public-dash {
	gap: 0;
	width: 100%;
	max-width: none;
}

.airb__results--teacher.airb__results--teacher-dash .teacher-dash-core,
.airb__results--student.airb__results--student-dash .teacher-dash-core,
.airb__results--parent.airb__results--parent-dash .teacher-dash-core,
.airb__results--leader.airb__results--leader-dash .teacher-dash-core,
.airb__results--support.airb__results--support-dash .teacher-dash-core,
.airb__results--public.airb__results--public-dash .teacher-dash-core {
	border-radius: 0;
	border-left: none;
	border-right: none;
	margin-bottom: 0;
	box-shadow: none;
}

.airb__results--teacher.airb__results--teacher-dash .teacher-dash-section,
.airb__results--student.airb__results--student-dash .teacher-dash-section,
.airb__results--parent.airb__results--parent-dash .teacher-dash-section,
.airb__results--leader.airb__results--leader-dash .teacher-dash-section,
.airb__results--support.airb__results--support-dash .teacher-dash-section,
.airb__results--public.airb__results--public-dash .teacher-dash-section {
	margin-top: 0;
	border-radius: 0;
	border-left: none;
	border-right: none;
}

/* Follow-up form — demo FollowUpForm light card (replaces dark interest band) */
.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up,
.airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up,
.airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up,
.airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up,
.airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up {
	--airb-interest-bg: #fff;
	--airb-interest-surface: #f8fafc;
	--airb-interest-surface-2: #f1f5f9;
	--airb-interest-text: #0f172a;
	--airb-interest-muted: #64748b;
	--airb-interest-border: #e2e8f0;
	--airb-interest-accent: #2563eb;

	margin-top: 1rem;
	padding: 1rem 1.25rem;
	border: 1px solid var(--airb-interest-border);
	border-radius: 8px;
	background: var(--airb-interest-bg);
	color: var(--airb-interest-text);
	color-scheme: light;
	box-shadow: none;
}

.airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up {
	--airb-interest-accent: #0f766e;
}

.airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up {
	--airb-interest-accent: #9333ea;
}

.airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up {
	--airb-interest-accent: #475569;
}

.airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up {
	--airb-interest-accent: #b45309;
}

.airb__results--teacher-dash .airb__sr-only, .airb__results--student-dash .airb__sr-only, .airb__results--parent-dash .airb__sr-only, .airb__results--leader-dash .airb__sr-only, .airb__results--support-dash .airb__sr-only, .airb__results--public-dash .airb__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-head, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-head, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-head, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-head, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-head, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-head {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon {
	flex: none;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.15rem;
	color: var(--airb-interest-accent);
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon svg, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon svg, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon svg, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon svg, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon svg, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-copy, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-copy, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-copy, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-copy, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-copy, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-copy {
	min-width: 0;
	flex: 1;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-eyebrow, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-eyebrow, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-eyebrow, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-eyebrow, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-eyebrow, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-eyebrow {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--airb-interest-accent);
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-heading, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-heading, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-heading, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-heading, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-heading, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-heading {
	margin: 0.25rem 0 0;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.25;
	color: #020617;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-intro, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-intro, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-intro, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-intro, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-intro, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-intro {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	line-height: 1.625;
	color: #475569;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-form, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-form, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-form, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-form, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-form, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-form {
	margin-top: 1rem;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-options, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-options, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-options, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-options, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-options, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-options {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	border: none;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-legend, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-legend, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-legend, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-legend, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-legend, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-legend {
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	min-height: 3rem;
	padding: 0.75rem;
	border: 1px solid var(--airb-interest-border);
	border-radius: 8px;
	background: var(--airb-interest-surface);
	color: inherit;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option:has(input:checked), .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option:has(input:checked), .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option:has(input:checked), .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option:has(input:checked), .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option:has(input:checked), .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option:has(input:checked) {
	border-color: var(--airb-interest-accent);
	background: #eff6ff;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option input[type="checkbox"],
.airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option input[type="checkbox"],
.airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option input[type="checkbox"],
.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option input[type="radio"],
.airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option input[type="radio"],
.airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option input[type="radio"] {
	margin-top: 0.15rem;
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	accent-color: var(--airb-interest-accent);
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-text, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-text, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-text, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-text, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-text, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-text {
	display: block;
	min-width: 0;
	flex: 1;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-label, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-label, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-label, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-label, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-label, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	color: #020617;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-desc, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-desc, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-desc, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-desc, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-desc, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__interest-option-desc {
	display: block;
	margin-top: 0.125rem;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.625;
	color: #475569;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
	margin: 1rem 0 0;
	border: none;
	padding: 0;
}

@media (min-width: 640px) {
	.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-legend, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-legend, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-legend, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-legend, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-legend, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-legend {
	grid-column: 1 / -1;
	margin: 0 0 0.25rem;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio {
	align-items: center;
	min-height: 3rem;
	padding: 0.5rem 0.75rem;
	width: auto;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio input, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio input, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio input, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio input, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio input, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-stakeholder .airb__interest-option--radio input {
	margin-top: 0;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin-top: 1rem;
}

@media (min-width: 640px) {
	.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields .airb__field--full, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields .airb__field--full, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields .airb__field--full, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields .airb__field--full, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields .airb__field--full, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-fields .airb__field--full {
	grid-column: 1 / -1;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__field, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__field, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__field, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__field, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__field, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__field {
	display: block;
	margin: 0;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__input,
.airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__input,
.airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__input,
.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea,
.airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea,
.airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea {
	width: 100%;
	margin-top: 0.25rem;
	min-height: 3rem;
	border: 1px solid var(--airb-interest-border);
	border-radius: 8px;
	background: var(--airb-interest-surface);
	color: #334155;
	font-size: 0.875rem;
	font-weight: 400;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea {
	min-height: 5rem;
	resize: vertical;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__input:focus,
.airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__input:focus,
.airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__input:focus,
.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea:focus,
.airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea:focus,
.airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__textarea:focus {
	border-color: var(--airb-interest-accent);
	background: #fff;
	outline: none;
	box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__label, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__label, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__label, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__label, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__label, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	min-height: 3rem;
	margin-top: 1rem;
	padding: 0.625rem 1rem;
	border: 2px solid var(--airb-interest-accent);
	border-radius: 8px;
	background: transparent;
	color: var(--airb-interest-accent);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: normal;
	text-transform: none;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit:hover, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit:hover, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit:hover, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit:hover, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit:hover, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit:hover {
	background: #eff6ff;
}

.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit-icon, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit-icon, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit-icon, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit-icon, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit-icon, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up .airb__teacher-follow-up-submit-icon {
	width: 1rem;
	height: 1rem;
	flex: none;
}

@media (min-width: 640px) {
	.airb__results--teacher-dash #airb-interest.airb__teacher-dash-follow-up, .airb__results--student-dash #airb-interest.airb__teacher-dash-follow-up, .airb__results--parent-dash #airb-interest.airb__teacher-dash-follow-up, .airb__results--leader-dash #airb-interest.airb__teacher-dash-follow-up, .airb__results--support-dash #airb-interest.airb__teacher-dash-follow-up, .airb__results--public-dash #airb-interest.airb__teacher-dash-follow-up {
		padding: 1.25rem;
	}
}

@media (min-width: 768px) {
	.airb__results--teacher .demo-airb .airb__leader-focus-stack, .airb__results--student .demo-airb .airb__leader-focus-stack, .airb__results--parent .demo-airb .airb__leader-focus-stack, .airb__results--leader .demo-airb .airb__leader-focus-stack, .airb__results--support .demo-airb .airb__leader-focus-stack, .airb__results--public .demo-airb .airb__leader-focus-stack {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.airb__results--teacher .benchmark-passport-grid, .airb__results--student .benchmark-passport-grid, .airb__results--parent .benchmark-passport-grid, .airb__results--leader .benchmark-passport-grid, .airb__results--support .benchmark-passport-grid, .airb__results--public .benchmark-passport-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 920px) {
	.benchmark-certificate-summary {
		grid-template-columns: minmax(18rem, 1fr) minmax(18rem, 0.9fr);
	}
}

@media (max-width: 1120px) {
	.benchmark-certificate-preview-wrap {
		padding: 0.65rem;
	}
}

@media (max-width: 760px) {
	.airb__results--teacher .demo-airb .airb__leader-resource-links, .airb__results--student .demo-airb .airb__leader-resource-links,
	.airb__results--teacher .demo-airb .airb__results-resource-links, .airb__results--student .demo-airb .airb__results-resource-links, .airb__results--parent .demo-airb .airb__results-resource-links, .airb__results--leader .demo-airb .airb__results-resource-links, .airb__results--support .demo-airb .airb__results-resource-links, .airb__results--public .demo-airb .airb__results-resource-links {
		grid-template-columns: 1fr;
	}

	.airb__results--teacher .airb__dashboard-share, .airb__results--student .airb__dashboard-share, .airb__results--parent .airb__dashboard-share, .airb__results--leader .airb__dashboard-share, .airb__results--support .airb__dashboard-share, .airb__results--public .airb__dashboard-share {
		grid-template-columns: 1fr;
		padding: 0.85rem;
	}

	.airb__results--teacher .airb__dashboard-share-actions, .airb__results--student .airb__dashboard-share-actions, .airb__results--parent .airb__dashboard-share-actions, .airb__results--leader .airb__dashboard-share-actions, .airb__results--support .airb__dashboard-share-actions, .airb__results--public .airb__dashboard-share-actions {
		justify-items: stretch;
	}
}

@media (max-width: 560px) {
	.benchmark-certificate-layout {
		gap: 0.75rem;
	}

	.benchmark-certificate-grid,
	.benchmark-certificate-preview-wrap {
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
	}

	.benchmark-certificate-preview-wrap {
		padding: 0.45rem;
		overflow: visible;
	}

	.certificate-preview {
		min-width: 0;
	}

	.certificate-preview__frame {
		border-width: 3px;
		padding: 0.8rem 0.75rem;
		box-shadow: none;
	}

	.certificate-preview__headline {
		font-size: 1rem;
		line-height: 1.18;
	}

	.certificate-preview__headline-primary,
	.certificate-preview__headline-secondary {
		display: block;
		white-space: normal;
		overflow-wrap: anywhere;
		font-size: 1rem;
	}

	.certificate-preview__headline-secondary {
		margin-top: 0.1rem;
	}

	.certificate-preview__lead,
	.certificate-preview__school,
	.certificate-preview__body,
	.certificate-preview__recognition {
		margin-top: 0.55rem;
		max-width: 100%;
		font-size: 0.86rem;
		line-height: 1.35;
	}

	.certificate-preview__name {
		font-size: 1.4rem;
		overflow-wrap: anywhere;
	}

	.certificate-preview__date {
		margin-top: 0.75rem;
		font-size: 0.9rem;
	}

	.certificate-preview__footer {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.45rem;
		margin-top: 0.75rem;
		padding-top: 0.65rem;
		font-size: 0.68rem;
		overflow-wrap: anywhere;
	}

	.airb__results--teacher .teacher-dash-core, .airb__results--student .teacher-dash-core, .airb__results--parent .teacher-dash-core, .airb__results--leader .teacher-dash-core, .airb__results--support .teacher-dash-core, .airb__results--public .teacher-dash-core {
		padding: 0.8rem 0.75rem 0.9rem;
	}

	.airb__results--teacher .teacher-dash-core__body, .airb__results--student .teacher-dash-core__body, .airb__results--parent .teacher-dash-core__body, .airb__results--leader .teacher-dash-core__body, .airb__results--support .teacher-dash-core__body, .airb__results--public .teacher-dash-core__body {
		display: block;
	}

	.airb__results--teacher .teacher-dash-core__icon, .airb__results--student .teacher-dash-core__icon, .airb__results--parent .teacher-dash-core__icon, .airb__results--leader .teacher-dash-core__icon, .airb__results--support .teacher-dash-core__icon, .airb__results--public .teacher-dash-core__icon {
		display: none;
	}

	.airb__results--teacher .teacher-dash-core__score-row, .airb__results--student .teacher-dash-core__score-row, .airb__results--parent .teacher-dash-core__score-row, .airb__results--leader .teacher-dash-core__score-row, .airb__results--support .teacher-dash-core__score-row, .airb__results--public .teacher-dash-core__score-row {
		margin-top: 0.35rem;
		gap: 0.2rem 0.45rem;
	}

	.airb__results--teacher .teacher-dash-core__score, .airb__results--student .teacher-dash-core__score, .airb__results--parent .teacher-dash-core__score, .airb__results--leader .teacher-dash-core__score, .airb__results--support .teacher-dash-core__score, .airb__results--public .teacher-dash-core__score {
		font-size: 2.5rem;
	}

	.airb__results--teacher .teacher-dash-core__band, .airb__results--student .teacher-dash-core__band, .airb__results--parent .teacher-dash-core__band, .airb__results--leader .teacher-dash-core__band, .airb__results--support .teacher-dash-core__band, .airb__results--public .teacher-dash-core__band {
		font-size: 1.35rem;
	}

	.airb__results--teacher .teacher-dash-core__motif, .airb__results--student .teacher-dash-core__motif, .airb__results--parent .teacher-dash-core__motif, .airb__results--leader .teacher-dash-core__motif, .airb__results--support .teacher-dash-core__motif, .airb__results--public .teacher-dash-core__motif {
		margin-top: 0.6rem;
		padding: 0.6rem 0.7rem;
	}

	.airb__results--teacher .teacher-dash-peer, .airb__results--student .teacher-dash-peer, .airb__results--parent .teacher-dash-peer, .airb__results--leader .teacher-dash-peer, .airb__results--support .teacher-dash-peer, .airb__results--public .teacher-dash-peer {
		margin-top: 0.55rem;
		padding: 0.55rem;
	}

	.airb__results--teacher .teacher-dash-peer__grid, .airb__results--student .teacher-dash-peer__grid, .airb__results--parent .teacher-dash-peer__grid, .airb__results--leader .teacher-dash-peer__grid, .airb__results--support .teacher-dash-peer__grid, .airb__results--public .teacher-dash-peer__grid {
		gap: 0.3rem;
	}

	.airb__results--teacher .teacher-dash-peer__stat, .airb__results--student .teacher-dash-peer__stat, .airb__results--parent .teacher-dash-peer__stat, .airb__results--leader .teacher-dash-peer__stat, .airb__results--support .teacher-dash-peer__stat, .airb__results--public .teacher-dash-peer__stat {
		padding: 0.35rem 0.4rem;
	}

	.airb__results--teacher .benchmark-domain-grid, .airb__results--student .benchmark-domain-grid, .airb__results--parent .benchmark-domain-grid, .airb__results--leader .benchmark-domain-grid, .airb__results--support .benchmark-domain-grid, .airb__results--public .benchmark-domain-grid {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}

	.airb__results--teacher .benchmark-metric-card, .airb__results--student .benchmark-metric-card, .airb__results--parent .benchmark-metric-card, .airb__results--leader .benchmark-metric-card, .airb__results--support .benchmark-metric-card, .airb__results--public .benchmark-metric-card {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.35rem 0.65rem;
		min-height: 0;
		padding: 0.55rem 0.65rem;
	}

	.airb__results--teacher .benchmark-metric-card__header, .airb__results--student .benchmark-metric-card__header, .airb__results--parent .benchmark-metric-card__header, .airb__results--leader .benchmark-metric-card__header, .airb__results--support .benchmark-metric-card__header, .airb__results--public .benchmark-metric-card__header {
		display: contents;
	}

	.airb__results--teacher .benchmark-metric-card__title, .airb__results--student .benchmark-metric-card__title, .airb__results--parent .benchmark-metric-card__title, .airb__results--leader .benchmark-metric-card__title, .airb__results--support .benchmark-metric-card__title, .airb__results--public .benchmark-metric-card__title {
		font-size: 0.82rem;
		line-height: 1.2;
	}

	.airb__results--teacher .benchmark-metric-card__badge, .airb__results--student .benchmark-metric-card__badge, .airb__results--parent .benchmark-metric-card__badge, .airb__results--leader .benchmark-metric-card__badge, .airb__results--support .benchmark-metric-card__badge, .airb__results--public .benchmark-metric-card__badge {
		justify-self: end;
		align-self: start;
	}

	.airb__results--teacher .benchmark-metric-card__body, .airb__results--student .benchmark-metric-card__body, .airb__results--parent .benchmark-metric-card__body, .airb__results--leader .benchmark-metric-card__body, .airb__results--support .benchmark-metric-card__body, .airb__results--public .benchmark-metric-card__body {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		gap: 0.45rem;
		align-items: baseline;
		margin: 0;
		padding: 0;
	}

	.airb__results--teacher .benchmark-metric-card__value, .airb__results--student .benchmark-metric-card__value, .airb__results--parent .benchmark-metric-card__value, .airb__results--leader .benchmark-metric-card__value, .airb__results--support .benchmark-metric-card__value, .airb__results--public .benchmark-metric-card__value {
		font-size: 1.35rem;
	}

	.airb__results--teacher .benchmark-metric-card__prompt, .airb__results--student .benchmark-metric-card__prompt, .airb__results--parent .benchmark-metric-card__prompt, .airb__results--leader .benchmark-metric-card__prompt, .airb__results--support .benchmark-metric-card__prompt, .airb__results--public .benchmark-metric-card__prompt {
		margin: 0;
		font-size: 0.7rem;
	}

	.airb__results--teacher .benchmark-metric-card__bar, .airb__results--student .benchmark-metric-card__bar, .airb__results--parent .benchmark-metric-card__bar, .airb__results--leader .benchmark-metric-card__bar, .airb__results--support .benchmark-metric-card__bar, .airb__results--public .benchmark-metric-card__bar {
		grid-column: 1 / -1;
		height: 0.22rem;
		margin-top: 0;
	}

	.airb__results--teacher .benchmark-metric-card .airb__results-accordion, .airb__results--student .benchmark-metric-card .airb__results-accordion, .airb__results--parent .benchmark-metric-card .airb__results-accordion, .airb__results--leader .benchmark-metric-card .airb__results-accordion, .airb__results--support .benchmark-metric-card .airb__results-accordion, .airb__results--public .benchmark-metric-card .airb__results-accordion {
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
		margin-top: 0.35rem;
	}

		.airb__results--teacher .benchmark-metric-card .airb__results-accordion > summary, .airb__results--student .benchmark-metric-card .airb__results-accordion > summary, .airb__results--parent .benchmark-metric-card .airb__results-accordion > summary, .airb__results--leader .benchmark-metric-card .airb__results-accordion > summary, .airb__results--support .benchmark-metric-card .airb__results-accordion > summary, .airb__results--public .benchmark-metric-card .airb__results-accordion > summary {
			width: 100%;
			min-height: 2.75rem;
			box-sizing: border-box;
		}

	.airb__results--teacher .benchmark-metric-card .airb__focus-guidance-body, .airb__results--student .benchmark-metric-card .airb__focus-guidance-body, .airb__results--parent .benchmark-metric-card .airb__focus-guidance-body, .airb__results--leader .benchmark-metric-card .airb__focus-guidance-body, .airb__results--support .benchmark-metric-card .airb__focus-guidance-body, .airb__results--public .benchmark-metric-card .airb__focus-guidance-body {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.airb__results--teacher .benchmark-metric-card .airb__focus-practice, .airb__results--student .benchmark-metric-card .airb__focus-practice, .airb__results--parent .benchmark-metric-card .airb__focus-practice, .airb__results--leader .benchmark-metric-card .airb__focus-practice, .airb__results--support .benchmark-metric-card .airb__focus-practice, .airb__results--public .benchmark-metric-card .airb__focus-practice {
		width: 100%;
	}

	.airb__results--teacher .demo-airb .airb__teacher-strength-grid, .airb__results--student .demo-airb .airb__teacher-strength-grid, .airb__results--parent .demo-airb .airb__teacher-strength-grid, .airb__results--leader .demo-airb .airb__teacher-strength-grid, .airb__results--support .demo-airb .airb__teacher-strength-grid, .airb__results--public .demo-airb .airb__teacher-strength-grid {
		grid-template-columns: 1fr;
	}
}

/* Student retake / share — progress tab */
.airb__results--student .teacher-dash-retake {
	padding-top: 0;
}

.airb__results--student-dash .teacher-dash-retake .airb__student-retake-card {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}

.airb__results--student-dash .teacher-dash-retake .airb__student-retake-heading {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: #0f172a;
}

.airb__results--student-dash .teacher-dash-retake .airb__student-retake-body {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #475569;
}

.airb__results--student-dash .teacher-dash-retake .airb__student-share-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Parent conversation + share — progress tab */
.airb__results--parent .teacher-dash-conversation,
.airb__results--parent .teacher-dash-share {
	padding-top: 0;
}

.airb__results--parent-dash .teacher-dash-conversation .airb__parent-convo-card,
.airb__results--parent-dash .teacher-dash-share .airb__parent-share-card {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}

.airb__results--parent-dash .teacher-dash-share .airb__parent-share-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Leader heatmap / rollout / governance CTA — progress tab */
.airb__results--leader-dash .teacher-dash-heatmap .airb__leader-section-divider,
.airb__results--leader-dash .teacher-dash-rollout .airb__leader-section-divider,
.airb__results--leader-dash .teacher-dash-governance-cta .airb__leader-cta-card {
	margin-top: 0;
}

.airb__results--leader-dash .teacher-dash-heatmap .airb__leader-heatmap-card,
.airb__results--leader-dash .teacher-dash-rollout .airb__leader-rollout-card {
	margin: 0;
	border: none;
	box-shadow: none;
}

/* Support rollout / workflow CTA — progress tab */
.airb__results--support-dash .teacher-dash-rollout .airb__leader-section-divider,
.airb__results--support-dash .teacher-dash-support-cta .airb__support-cta-card {
	margin-top: 0;
}

.airb__results--support-dash .teacher-dash-rollout .airb__leader-rollout-card {
	margin: 0;
	border: none;
	box-shadow: none;
}

/* Public share card — progress tab */
.airb__results--public-dash .teacher-dash-share .airb__public-share-card {
	margin: 0;
	border: none;
	box-shadow: none;
}
