/* psy-help.ee custom diagnostic quizzes — Kit #15 tokens */
.psy-quiz {
	--psy-accent: #8ab332;
	--psy-accent-dark: #6b9b2b;
	--psy-text: #2b2b2b;
	--psy-muted: #747474;
	--psy-bg: #ffffff;
	--psy-border: #dedede;
	--psy-radius: 12px;
	--psy-shadow: 0 4px 24px rgba(43, 43, 43, 0.08);
	font-family: "Open Sans", system-ui, sans-serif;
	color: var(--psy-text);
	max-width: min(100%, 1140px);
	margin: 0 auto;
	line-height: 1.6;
}

.psy-quiz *,
.psy-quiz *::before,
.psy-quiz *::after {
	box-sizing: border-box;
}

.psy-quiz__panel {
	background: var(--psy-bg);
	border: 1px solid var(--psy-border);
	border-radius: var(--psy-radius);
	padding: 1.5rem;
	box-shadow: var(--psy-shadow);
}

@media (min-width: 640px) {
	.psy-quiz__panel {
		padding: 2rem 2.25rem;
	}
}

.psy-quiz__title {
	font-family: "Alegreya SC", Georgia, serif;
	font-size: clamp(1.5rem, 4vw, 2rem);
	line-height: 1.25;
	margin: 0 0 0.75rem;
}

.psy-quiz__intro,
.psy-quiz__body {
	color: var(--psy-muted);
	font-size: 1.05rem;
	margin: 0 0 1.25rem;
}

.psy-quiz__meta {
	font-size: 0.875rem;
	color: var(--psy-muted);
	margin-bottom: 1rem;
}

.psy-quiz__progress {
	height: 6px;
	background: var(--psy-border);
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.psy-quiz__progress-bar {
	height: 100%;
	background: var(--psy-accent);
	border-radius: 999px;
	transition: width 0.25s ease;
	width: 0;
}

.psy-quiz__progress-label {
	font-size: 0.8125rem;
	color: var(--psy-muted);
	margin-bottom: 1.25rem;
}

.psy-quiz__question {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 1rem;
}

.psy-quiz__options {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.psy-quiz__option {
	position: relative;
}

.psy-quiz__option input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.psy-quiz__option label {
	display: block;
	min-height: 44px;
	padding: 0.875rem 1rem;
	border: 2px solid var(--psy-border);
	border-radius: var(--psy-radius);
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
	font-size: 1rem;
}

.psy-quiz__option input:focus-visible + label {
	outline: 2px solid var(--psy-accent);
	outline-offset: 2px;
}

.psy-quiz__option input:checked + label {
	border-color: var(--psy-accent);
	background: rgba(138, 179, 50, 0.08);
	color: var(--psy-text);
	font-weight: 600;
}

.psy-quiz__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.psy-quiz__actions--center {
	justify-content: center;
}

.psy-quiz__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.625rem 1.25rem;
	border-radius: var(--psy-radius);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.psy-quiz__btn--primary {
	background: var(--psy-accent);
	color: #fff;
}

.psy-quiz__btn--primary:hover,
.psy-quiz__btn--primary:focus-visible {
	background: var(--psy-accent-dark);
}

.psy-quiz__btn--ghost {
	background: transparent;
	color: var(--psy-muted);
	border: 1px solid var(--psy-border);
}

.psy-quiz__btn--ghost:hover,
.psy-quiz__btn--ghost:focus-visible {
	border-color: var(--psy-accent);
	color: var(--psy-text);
}

.psy-quiz__btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.psy-quiz__result-title {
	font-family: "Comfortaa", "Open Sans", sans-serif;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--psy-accent-dark);
	margin: 0 0 0.5rem;
}

.psy-quiz__result-level {
	font-family: "Alegreya SC", Georgia, serif;
	font-size: clamp(1.35rem, 3.5vw, 1.75rem);
	margin: 0 0 1rem;
}

.psy-quiz__result-lead {
	font-weight: 600;
	color: var(--psy-text);
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	line-height: 1.55;
}

.psy-quiz__result-body {
	color: var(--psy-muted);
	margin: 0 0 0.875rem;
}

.psy-quiz__result-body:last-child {
	margin-bottom: 0;
}

.psy-quiz__mechanism {
	background: rgba(43, 43, 43, 0.04);
	border-radius: var(--psy-radius);
	padding: 0.875rem 1rem;
	margin: 1rem 0 0;
}

.psy-quiz__mechanism-title {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--psy-text);
	margin: 0 0 0.5rem;
}

.psy-quiz__mechanism-body {
	font-size: 0.9375rem;
	color: var(--psy-muted);
	margin: 0 0 0.65rem;
}

.psy-quiz__mechanism-body:last-child {
	margin-bottom: 0;
}

.psy-quiz__step {
	background: rgba(138, 179, 50, 0.1);
	border-left: 4px solid var(--psy-accent);
	padding: 0.875rem 1rem;
	border-radius: 0 var(--psy-radius) var(--psy-radius) 0;
	margin: 1.25rem 0;
	font-size: 1rem;
}

.psy-quiz__step strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--psy-text);
}

.psy-quiz__scales {
	display: grid;
	gap: 0.75rem;
	margin: 1.25rem 0;
}

.psy-quiz__scale {
	border: 1px solid var(--psy-border);
	border-radius: var(--psy-radius);
	padding: 0.875rem 1rem;
}

.psy-quiz__scale-name {
	font-weight: 600;
	margin: 0 0 0.25rem;
	font-size: 0.9375rem;
}

.psy-quiz__scale-level {
	font-size: 0.875rem;
	color: var(--psy-accent-dark);
	font-weight: 600;
	margin: 0 0 0.35rem;
}

.psy-quiz__scale-note {
	font-size: 0.875rem;
	color: var(--psy-muted);
	margin: 0;
}

.psy-quiz__scale-note .psy-quiz__result-lead {
	font-size: 0.9375rem;
}

.psy-quiz__scale-note .psy-quiz__mechanism {
	margin-top: 0.65rem;
	padding: 0.65rem 0.75rem;
}

.psy-quiz__overall {
	margin: 0 0 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--psy-border);
}

.psy-quiz__overall-label,
.psy-quiz__scales-heading,
.psy-quiz__dominant-label {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--psy-text);
	margin: 0 0 0.5rem;
}

.psy-quiz__scales-heading {
	margin-top: 0.5rem;
}

.psy-quiz__chart {
	display: grid;
	gap: 0.75rem;
	margin: 1rem 0 1.5rem;
}

.psy-quiz__chart-row {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr) auto;
	gap: 0.65rem;
	align-items: center;
}

@media (max-width: 520px) {
	.psy-quiz__chart-row {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}
}

.psy-quiz__chart-label {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
}

.psy-quiz__chart-track {
	height: 12px;
	background: var(--psy-border);
	border-radius: 999px;
	overflow: hidden;
}

.psy-quiz__chart-fill {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #a8c956, var(--psy-accent));
	border-radius: 999px;
	transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.psy-quiz__chart-pct {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--psy-accent-dark);
	min-width: 2.5rem;
	text-align: right;
}

.psy-quiz__dominant {
	margin: 1.25rem 0;
	padding: 1rem 1.1rem;
	background: rgba(138, 179, 50, 0.08);
	border-radius: var(--psy-radius);
	border-left: 4px solid var(--psy-accent);
}

.psy-quiz__cta {
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--psy-border);
}

.psy-quiz__cta-lead {
	margin: 0 0 0.85rem;
	font-size: 1rem;
	line-height: 1.55;
}

.psy-quiz__phone-link {
	color: var(--psy-accent-dark);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.psy-quiz__phone-link:hover,
.psy-quiz__phone-link:focus-visible {
	text-decoration: underline;
}

.psy-quiz__cta-call {
	margin: 0 0 1.15rem;
	text-align: center;
}

.psy-quiz__cta-body {
	color: var(--psy-text);
	margin: 0 0 2rem;
	font-size: 0.975rem;
	line-height: 1.55;
}

.psy-quiz__btn--phone {
	background: #fff;
	color: var(--psy-accent-dark);
	border: 2px solid var(--psy-accent);
	min-width: 11rem;
}

.psy-quiz__btn--phone:hover,
.psy-quiz__btn--phone:focus-visible {
	background: rgba(138, 179, 50, 0.08);
	color: var(--psy-text);
}

.psy-quiz__disclaimer {
	font-size: 0.8125rem;
	color: var(--psy-muted);
	margin-top: 1.5rem;
	line-height: 1.5;
}

.psy-quiz__error {
	color: #b42318;
	padding: 1rem;
	border: 1px solid #fecdca;
	background: #fef3f2;
	border-radius: var(--psy-radius);
}

.psy-quiz__loading {
	text-align: center;
	padding: 2rem;
	color: var(--psy-muted);
}

.psy-quiz [hidden] {
	display: none !important;
}

.psy-quiz__benchmark {
	margin: 1.75rem 0 1.5rem;
	padding: 1.25rem 1rem;
	background: rgba(43, 43, 43, 0.03);
	border-radius: var(--psy-radius);
	border: 1px solid var(--psy-border);
}

.psy-quiz__benchmark-title {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 0.35rem;
}

.psy-quiz__benchmark-intro,
.psy-quiz__bench-sample,
.psy-quiz__bench-loading,
.psy-quiz__bench-empty {
	font-size: 0.9375rem;
	color: var(--psy-muted);
	margin: 0 0 1rem;
	line-height: 1.5;
}

.psy-quiz__bench-scales {
	display: grid;
	gap: 1.25rem;
}

.psy-quiz__bench-row {
	display: grid;
	gap: 0.45rem;
}

.psy-quiz__bench-name {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
}

.psy-quiz__bench-track {
	position: relative;
	height: 44px;
	margin: 0.25rem 0 0.15rem;
}

.psy-quiz__bench-hist {
	display: flex;
	align-items: flex-end;
	height: 28px;
	gap: 2px;
	border-radius: 6px;
	overflow: hidden;
	background: rgba(222, 222, 222, 0.35);
}

.psy-quiz__bench-bucket {
	min-width: 4px;
	background: rgba(138, 179, 50, 0.35);
	border-radius: 2px 2px 0 0;
	transition: flex 0.8s ease;
}

.psy-quiz__bench-marker {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 2;
}

.psy-quiz__bench-marker-dot {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	background: var(--psy-accent-dark);
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(43, 43, 43, 0.25);
}

.psy-quiz__bench-marker-label {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--psy-accent-dark);
	white-space: nowrap;
}

.psy-quiz__bench-pctile {
	margin: 0.5rem 0 0;
	font-size: 0.8125rem;
	color: var(--psy-muted);
}

/* Vertical histogram — fine gradient bars, marker line, 0–100 axis */
.psy-quiz__vhist {
	position: relative;
	margin: 0.75rem 0 0.25rem;
}

.psy-quiz__vhist-chart {
	position: relative;
	padding-top: 2.15rem;
	padding-bottom: 0.35rem;
}

.psy-quiz__vhist-bars {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	height: 148px;
	padding: 8px 0 6px;
	border-radius: 12px;
	background: linear-gradient(
		180deg,
		#fafbf8 0%,
		#f0f4ec 100%
	);
	border: 1px solid rgba(67, 160, 71, 0.12);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		0 4px 16px rgba(43, 43, 43, 0.05);
}

.psy-quiz__vhist-bar {
	flex: 1 1 0;
	display: flex;
	align-items: flex-end;
	min-width: 3px;
	height: 100%;
}

.psy-quiz__vhist-bar-fill {
	display: block;
	width: 100%;
	height: 0;
	min-height: 0;
	border-radius: 5px 5px 2px 2px;
	background: linear-gradient(
		180deg,
		var(--hist-hi, #9bc894) 0%,
		var(--hist-mid, #85b86f) 48%,
		var(--hist-lo, #739e6e) 100%
	);
	box-shadow:
		0 2px 5px rgba(43, 43, 43, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	filter: saturate(0.94) contrast(1.01);
	will-change: height, opacity, transform;
}

.psy-quiz__vhist-axis {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 0.55rem;
	padding: 0;
	font-size: 0.6875rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--psy-muted);
	line-height: 1.2;
}

.psy-quiz__vhist-axis span {
	flex: 0 0 auto;
}

.psy-quiz__vhist-axis span:first-child {
	text-align: left;
}

.psy-quiz__vhist-axis span:last-child {
	text-align: right;
}

.psy-quiz__vhist-axis span::after {
	content: '%';
	font-weight: 500;
	opacity: 0.75;
}

.psy-quiz__vhist-marker {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: calc(2.15rem + 148px + 0.35rem);
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 4;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.psy-quiz__vhist-marker.is-active {
	opacity: 1;
}

.psy-quiz__vhist-marker-label {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.625rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
	white-space: nowrap;
	padding: 0.28rem 0.55rem;
	background: linear-gradient(135deg, #3d3d3d 0%, #2b2b2b 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(43, 43, 43, 0.28);
}

.psy-quiz__vhist-marker-line {
	position: absolute;
	top: 1.85rem;
	bottom: 0.2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	border-radius: 999px;
	opacity: 0;
	background: linear-gradient(
		180deg,
		rgba(43, 43, 43, 0.95) 0%,
		rgba(43, 43, 43, 0.55) 55%,
		rgba(138, 179, 50, 0.45) 100%
	);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.55),
		0 0 12px rgba(43, 43, 43, 0.15);
}

.psy-quiz__vhist-marker-arrow {
	position: absolute;
	bottom: 0.15rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 11px solid #2b2b2b;
	filter: drop-shadow(0 2px 4px rgba(43, 43, 43, 0.22));
}

.psy-quiz__vhist-marker-pct {
	position: absolute;
	bottom: -0.15rem;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	min-width: 2.75rem;
	padding: 0.2rem 0.35rem;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: #2b2b2b;
	line-height: 1;
	background: #fff;
	border: 2px solid var(--psy-accent-dark);
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(43, 43, 43, 0.12);
}

.psy-quiz__vhist.is-marker-done .psy-quiz__vhist-marker-line,
.psy-quiz__vhist.is-marker-done .psy-quiz__vhist-marker-arrow {
	animation: psy-quiz-marker-glow 1.8s ease-in-out 1;
}

@keyframes psy-quiz-marker-glow {
	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(138, 179, 50, 0));
		opacity: 1;
	}
	50% {
		filter: drop-shadow(0 0 6px rgba(138, 179, 50, 0.55));
		opacity: 1;
	}
}

.psy-quiz__category,
.psy-quiz__overall {
	margin: 2rem 0 0;
	padding: 1.25rem 1rem;
	background: rgba(43, 43, 43, 0.02);
	border: 1px solid var(--psy-border);
	border-radius: var(--psy-radius);
}

.psy-quiz__category-name {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
}

.psy-quiz__category-pct {
	color: var(--psy-accent-dark);
}

.psy-quiz__cat-block {
	margin: 0 0 1rem;
}

.psy-quiz__cat-block-title {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--psy-muted);
}

.psy-quiz__cat-block-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.psy-quiz__category-result,
.psy-quiz__category-compare,
.psy-quiz__overall-compare {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--psy-border);
}

.psy-quiz__compare-block--lead {
	margin-top: 0.85rem;
	padding-top: 0;
	border-top: none;
}

.psy-quiz__category-intro,
.psy-quiz__overall-body {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--psy-border);
}

.psy-quiz__compare-heading {
	margin: 0 0 0.35rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.psy-quiz__overall-score {
	margin: 0.75rem 0 0;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--psy-muted);
}

.psy-quiz__conclusion {
	margin: 2rem 0 0;
	padding: 1.25rem 1rem;
	background: rgba(138, 179, 50, 0.06);
	border: 1px solid rgba(138, 179, 50, 0.25);
	border-radius: var(--psy-radius);
}

.psy-quiz__conclusion-title {
	margin: 0 0 0.75rem;
	font-size: 1.0625rem;
	font-weight: 700;
}

.psy-quiz__demo-banner {
	margin: 0 0 1.25rem;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: #5a4a00;
	background: rgba(212, 184, 74, 0.18);
	border: 1px solid rgba(212, 184, 74, 0.45);
	border-radius: var(--psy-radius);
}

.psy-quiz__email {
	margin: 1.5rem 0 0.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--psy-border);
	text-align: center;
}

.psy-quiz__email-form {
	margin-top: 1rem;
	display: grid;
	gap: 0.65rem;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.psy-quiz__email-label {
	font-size: 0.875rem;
	font-weight: 600;
}

.psy-quiz__email-input {
	width: 100%;
	min-height: 44px;
	padding: 0.625rem 0.875rem;
	border: 2px solid var(--psy-border);
	border-radius: var(--psy-radius);
	font-size: 1rem;
	font-family: inherit;
}

.psy-quiz__email-input:focus {
	outline: none;
	border-color: var(--psy-accent);
}

.psy-quiz__email-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
}

.psy-quiz__email-privacy {
	margin: 0;
	font-size: 0.75rem;
	color: var(--psy-muted);
	line-height: 1.45;
}

.psy-quiz__email-msg {
	margin: 0.75rem 0 0;
	font-size: 0.9375rem;
}

.psy-quiz__email-msg--ok {
	color: var(--psy-accent-dark);
}

.psy-quiz__email-msg--err {
	color: #b42318;
}

/* --- Public stats dashboard (landing) --- */
.psy-quiz-dashboard {
	max-width: 960px;
	margin: 0 auto;
}

.psy-dash {
	font-family: "Open Sans", system-ui, sans-serif;
	color: var(--psy-text, #2b2b2b);
}

.psy-dash__header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.psy-dash__title {
	font-family: "Alegreya SC", Georgia, serif;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	margin: 0 0 0.5rem;
}

.psy-dash__sub {
	margin: 0;
	color: var(--psy-muted, #747474);
	font-size: 0.975rem;
	line-height: 1.55;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.psy-dash__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.psy-dash__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.psy-dash__card {
	background: #fff;
	border: 1px solid var(--psy-border, #dedede);
	border-radius: var(--psy-radius, 12px);
	padding: 1.1rem 1.15rem;
	box-shadow: var(--psy-shadow, 0 4px 24px rgba(43, 43, 43, 0.08));
}

.psy-dash__card--hero {
	text-align: center;
	background: linear-gradient(135deg, rgba(107, 155, 43, 0.08), rgba(138, 179, 50, 0.14));
	border-color: rgba(138, 179, 50, 0.35);
}

.psy-dash__card--wide {
	grid-column: 1 / -1;
}

.psy-dash__kpi-label {
	margin: 0 0 0.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--psy-muted, #747474);
}

.psy-dash__kpi-value {
	margin: 0;
	font-family: "Comfortaa", "Open Sans", sans-serif;
	font-size: clamp(2rem, 6vw, 2.75rem);
	font-weight: 700;
	color: var(--psy-accent-dark, #6b9b2b);
	line-height: 1.1;
}

.psy-dash__card-title {
	margin: 0 0 0.85rem;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.psy-dash__bar-row + .psy-dash__bar-row {
	margin-top: 0.65rem;
}

.psy-dash__bar-meta {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	font-size: 0.8125rem;
	margin-bottom: 0.25rem;
}

.psy-dash__bar-label {
	font-weight: 600;
}

.psy-dash__bar-val {
	color: var(--psy-muted, #747474);
	white-space: nowrap;
}

.psy-dash__bar-track {
	height: 8px;
	background: var(--psy-border, #dedede);
	border-radius: 999px;
	overflow: hidden;
}

.psy-dash__bar-track--accent {
	height: 10px;
}

.psy-dash__bar-fill {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #a8c956, var(--psy-accent, #8ab332));
	border-radius: 999px;
	transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.psy-dash__scales {
	display: grid;
	gap: 0.85rem;
}

@media (min-width: 640px) {
	.psy-dash__scales {
		grid-template-columns: 1fr 1fr;
	}
}

.psy-dash__scale-head {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	font-size: 0.875rem;
	margin-bottom: 0.35rem;
}

.psy-dash__scale-head strong {
	color: var(--psy-accent-dark, #6b9b2b);
}
