.validation-report {
	font-family: inherit;
	max-width: var(--container-max);
	margin: 0 auto;
	color: var(--text);
}

.val-header h2 {
	font-size: 3rem;
	margin-bottom: 2.5rem;
	color: var(--primary-dark);
	font-family: "Poppins", sans-serif;
	font-weight: 800;
}

.score-hero {
	display: flex;
	gap: 3rem;
	align-items: center;
	padding: 3.5rem;
	background: var(--bg-white);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	margin-bottom: 5rem;
	box-shadow: var(--shadow);
}

.total-score-box {
	background: var(--bg);
	padding: 2.5rem;
	border-radius: var(--radius);
	text-align: center;
	min-width: 240px;
	border: 1px solid var(--border-light);
}

.score-number {
	font-size: 5rem;
	font-weight: 800;
	color: var(--primary-dark);
	line-height: 1;
	font-family: "Poppins", sans-serif;
}

.score-out-off {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-muted);
}

.score-percent {
	margin-top: 1rem;
	font-size: 0.9375rem;
	font-weight: 800;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.score-summary-text {
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--text-muted);
}

.score-summary-text p {
	margin: 0 0 1.5rem 0;
}

.scores-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	background: var(--bg-white);
	padding: 3.5rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.score-row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.score-info {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.score-label {
	font-weight: 700;
	color: var(--primary-dark);
	font-size: 1.125rem;
}

.score-value {
	font-weight: 800;
	color: var(--primary);
	font-size: 1rem;
}

.score-bar-bg {
	height: 14px;
	background: var(--bg);
	border-radius: 999px;
	overflow: hidden;
	border: 1px solid var(--border-light);
}

.score-bar-fill {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		var(--primary) 0%,
		var(--primary-light) 100%
	);
	transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.score-explanation {
	margin: 0.5rem 0 0 0;
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.6;
}

@media (max-width: 768px) {
	.score-hero {
		flex-direction: column;
		padding: 2.5rem;
		gap: 2.5rem;
	}
	.total-score-box {
		width: 100%;
	}
	.score-number {
		font-size: 4rem;
	}
	.scores-grid {
		padding: 2rem;
	}
}
