.dash-hero {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(132deg, var(--hl-paper) 0%, var(--hl-bg) 58%, var(--hl-brand-soft) 100%);
	border: 1px solid var(--hl-line);
	box-shadow: 0 12px 34px rgba(10, 40, 36, 0.08);
}

.dash-hero::after {
	content: "";
	position: absolute;
	right: -40px;
	top: -52px;
	width: 180px;
	height: 180px;
	border-radius: 999px;
	background: linear-gradient(145deg, var(--hl-brand), var(--hl-brand-strong));
	opacity: 0.18;
	pointer-events: none;
}

.dash-hero .card-body {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
}

.dash-hero .card-body.p-4.p-lg-5 {
	background: transparent;
	color: var(--hl-text);
}

.dash-hero__content {
	max-width: 760px;
}

.dash-hero__eyebrow {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hl-brand-strong);
}

.dash-hero__title {
	font-size: clamp(1.25rem, 2.4vw, 1.8rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--hl-text);
}

.dash-hero__subtitle {
	max-width: 640px;
	color: var(--hl-muted);
}

.dash-hero__status {
	min-width: 148px;
	display: grid;
	gap: 2px;
	justify-items: end;
	text-align: right;
}

.dash-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 999px;
	padding: 5px 10px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--hl-brand-strong);
	background: var(--hl-brand-soft);
}

.dash-hero__score {
	font-size: 2rem;
	line-height: 1;
	color: var(--hl-brand);
}

.dash-kpi {
	border: 1px solid #dbe9e4;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(9, 42, 38, 0.05);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dash-kpi:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(9, 42, 38, 0.09);
}

.dash-kpi__label {
	font-size: 0.82rem;
	color: #5a7570;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.dash-kpi__value {
	font-size: clamp(1.7rem, 3vw, 2.15rem);
	font-weight: 800;
	line-height: 1;
	color: #173a35;
}

.dash-kpi__meta {
	font-size: 0.8rem;
	color: #67807b;
}

.dash-panel {
	border: 1px solid #dfece7;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(6, 22, 20, 0.04);
}

.dash-progress-list {
	display: grid;
	gap: 14px;
}

.dash-progress-item span {
	font-weight: 600;
	color: #31534d;
}

.dash-progress-item strong {
	font-size: 0.88rem;
	color: var(--hl-brand);
}

.dash-progress-item .progress {
	height: 8px;
	background: var(--hl-brand-soft);
	border-radius: 999px;
}

.dash-progress-item .progress .progress-bar {
	background: linear-gradient(90deg, var(--hl-brand), var(--hl-brand-strong));
}

.dash-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dash-facts {
	display: grid;
	gap: 8px;
}

.dash-facts li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	padding: 8px 10px;
	background: #f6fbf9;
	border: 1px solid #e2eeea;
}

.dash-facts li span {
	font-size: 0.81rem;
	color: #56716c;
}

.dash-facts li strong {
	font-size: 0.84rem;
	color: #163a35;
	font-weight: 700;
	text-align: right;
	word-break: break-word;
}

@media (max-width: 991.98px) {
	.dash-hero .card-body {
		flex-direction: column;
		align-items: flex-start;
	}

	.dash-hero__status {
		justify-items: start;
		text-align: left;
	}
}
