/* =========================================================================
   Anchor Wellness Check
   Full-bleed, single-screen-at-a-time assessment with smooth transitions.
   ========================================================================= */

/* This page has no dark hero, so force the header into its dark-text state
   so the logo, nav and phone remain legible against the light surface. */
body.page-template-page-wellness-check .site-header,
body.page-template-page-wellness-check .site-header:not(.is-scrolled) {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(82, 48, 88, 0.08);
}
body.page-template-page-wellness-check .site-header:not(.is-scrolled) .site-header__brand img {
	filter: none;
}
body.page-template-page-wellness-check .site-header:not(.is-scrolled) .site-header__nav > a,
body.page-template-page-wellness-check .site-header:not(.is-scrolled) .mega__trigger,
body.page-template-page-wellness-check .site-header:not(.is-scrolled) .site-header__phone {
	color: var(--brand-primary);
	text-shadow: none;
}
body.page-template-page-wellness-check .site-header:not(.is-scrolled) .site-header__toggle {
	color: var(--brand-primary);
}

.wcheck-main { background: var(--surface-cream, #f5f1ec); }

.wcheck {
	position: relative;
	min-height: 100vh;
	padding: clamp(80px, 10vw, 130px) 0 clamp(48px, 6vw, 80px);
	overflow: hidden;
	isolation: isolate;
}

.wcheck__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: 0.10;
}
.wcheck__bg img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: 70% center;
	filter: saturate(0.4) blur(3px);
}
/* Multi-layer atmospheric wash so the page never reads as flat white. */
.wcheck::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 12% 18%, rgba(82, 48, 88, 0.09) 0%, transparent 45%),
		radial-gradient(circle at 88% 78%, rgba(201, 86, 28, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(97, 206, 112, 0.04) 0%, transparent 65%),
		linear-gradient(170deg, #ffffff 0%, #faf6f1 40%, #f4ece2 100%);
}
/* Decorative oversize ring drifting in the background */
.wcheck::after {
	content: "";
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	border: 1px dashed rgba(82, 48, 88, 0.12);
	bottom: -200px;
	left: -160px;
	z-index: -1;
	animation: wcheck-drift 28s linear infinite;
}
@keyframes wcheck-drift {
	to { transform: rotate(360deg); }
}

.wcheck__shell {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 48px);
	position: relative;
}

/* ---------- Screen mechanics ---------- */

.wcheck__screen {
	display: none;
	opacity: 0;
	transform: translateY(14px);
	animation: wcheck-enter 320ms var(--ease) forwards;
}
.wcheck__screen.is-active { display: block; }
.wcheck__screen.is-leaving { animation: wcheck-leave 220ms var(--ease) forwards; }

@keyframes wcheck-enter {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes wcheck-leave {
	from { opacity: 1; transform: translateY(0); }
	to   { opacity: 0; transform: translateY(-10px); }
}

.wcheck__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(32px, 5vw, 56px) 0;
}
.wcheck__inner--center { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; }

/* ---------- Common type ---------- */

.wcheck__eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--brand-secondary);
	margin: 0 0 14px;
}

.wcheck__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 5.4vw, 56px);
	line-height: 1.08;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0 0 18px;
}
.wcheck__title em {
	font-style: normal;
	color: var(--brand-secondary);
}

.wcheck__lede {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--brand-text);
	font-weight: 300;
	margin: 0 0 30px;
	max-width: 580px;
}

.wcheck__hint {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--brand-text);
	margin: 0 0 28px;
	font-style: italic;
	opacity: 0.85;
}

.wcheck__fineprint {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--brand-text);
	line-height: 1.55;
	margin: 32px 0 0;
	opacity: 0.75;
}

/* ---------- Intro screen ---------- */

.wcheck__intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(36px, 6vw, 72px);
	align-items: center;
	padding: clamp(20px, 4vw, 40px) 0;
}
@media (min-width: 880px) {
	.wcheck__intro { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

.wcheck__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
}
.wcheck__meta li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(82, 48, 88, 0.10);
	border-radius: var(--radius-md);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.wcheck__meta li:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(82, 48, 88, 0.10);
}
.wcheck__meta-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(201, 86, 28, 0.16), rgba(82, 48, 88, 0.10));
	color: var(--brand-secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.wcheck__meta-icon svg { width: 18px; height: 18px; }
.wcheck__meta-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-family: var(--font-body);
	font-size: 12.5px;
	color: var(--brand-text);
	line-height: 1.4;
	letter-spacing: 0.01em;
}
.wcheck__meta-body strong {
	color: var(--brand-primary);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0;
}

.wcheck__intro-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin: 0 0 8px;
}

/* ---------- Intro visual: breathing rings + category chips ---------- */

.wcheck__intro-visual {
	position: relative;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
}

.wcheck__breath {
	position: relative;
	width: 280px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wcheck__breath-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1.5px solid rgba(82, 48, 88, 0.18);
	animation: wcheck-breathe 5s ease-in-out infinite;
}
.wcheck__breath-ring--outer {
	border-color: rgba(201, 86, 28, 0.25);
	animation-delay: 0s;
}
.wcheck__breath-ring--mid {
	inset: 24px;
	border-color: rgba(82, 48, 88, 0.20);
	animation-delay: 0.6s;
}
.wcheck__breath-ring--inner {
	inset: 56px;
	border-color: rgba(82, 48, 88, 0.35);
	animation-delay: 1.2s;
}
@keyframes wcheck-breathe {
	0%, 100% { transform: scale(1); opacity: 0.7; }
	50%      { transform: scale(1.06); opacity: 1; }
}

.wcheck__breath-center {
	position: relative;
	z-index: 2;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 32px rgba(82, 48, 88, 0.18);
	color: var(--brand-secondary);
}
.wcheck__breath-center svg { width: 36px; height: 36px; }

.wcheck__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	max-width: 320px;
}
.wcheck__chip {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brand-primary);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(82, 48, 88, 0.12);
	border-radius: 999px;
	padding: 7px 14px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

/* ---------- Buttons ---------- */

.wcheck__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1.5px solid var(--brand-secondary);
	cursor: pointer;
	transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
	text-decoration: none;
}
.wcheck__btn svg { width: 16px; height: 16px; }

.wcheck__btn--primary {
	background: var(--brand-secondary);
	color: #fff;
}
.wcheck__btn--primary:hover {
	background: var(--brand-primary);
	border-color: var(--brand-primary);
	color: #fff;
	transform: translateY(-1px);
}

.wcheck__btn--ghost {
	background: transparent;
	color: var(--brand-primary);
	border-color: var(--brand-primary);
}
.wcheck__btn--ghost:hover {
	background: var(--brand-primary);
	color: #fff;
}

/* ---------- Email-capture form on result screen ---------- */

.wcheck__capture {
	margin: 0 0 28px;
	padding: 28px;
	background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
	border: 1px solid rgba(82, 48, 88, 0.10);
	border-radius: var(--radius-lg);
	box-shadow: 0 14px 36px rgba(82, 48, 88, 0.08);
}
.wcheck__capture-head {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin: 0 0 20px;
}
.wcheck__capture-head > svg {
	width: 44px;
	height: 44px;
	color: var(--brand-secondary);
	flex-shrink: 0;
	padding: 10px;
	background: rgba(201, 86, 28, 0.10);
	border-radius: 12px;
	box-sizing: content-box;
}
.wcheck__capture-title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0 0 6px;
	line-height: 1.25;
}
.wcheck__capture-lede {
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.55;
	color: var(--brand-text);
	font-weight: 300;
	margin: 0;
}

.wcheck__form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}
@media (min-width: 560px) {
	.wcheck__form { grid-template-columns: 1fr 1fr; }
	.wcheck__form-submit { grid-column: 1 / -1; justify-self: start; }
	.wcheck__capture-fine { grid-column: 1 / -1; }
}

.wcheck__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.wcheck__field span {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brand-secondary);
}
.wcheck__field input {
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--brand-primary);
	background: #fff;
	border: 1.5px solid rgba(82, 48, 88, 0.18);
	border-radius: var(--radius-md);
	padding: 12px 14px;
	transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.wcheck__field input::placeholder {
	color: rgba(82, 48, 88, 0.35);
	font-weight: 300;
}
.wcheck__field input:focus {
	outline: none;
	border-color: var(--brand-secondary);
	box-shadow: 0 0 0 3px rgba(201, 86, 28, 0.15);
}

.wcheck__form-submit { margin-top: 4px; }
.wcheck__form.is-submitting .wcheck__form-submit {
	opacity: 0.7;
	pointer-events: none;
}

.wcheck__capture-fine {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--brand-text);
	font-weight: 300;
	margin: 4px 0 0;
	line-height: 1.5;
	opacity: 0.85;
}

/* ---------- Success state ---------- */

.wcheck__success {
	margin: 0 0 28px;
	padding: 36px 32px;
	background: linear-gradient(135deg, rgba(97, 206, 112, 0.10), rgba(255, 255, 255, 0.95));
	border: 1px solid rgba(97, 206, 112, 0.40);
	border-radius: var(--radius-lg);
	text-align: center;
}
.wcheck__success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--brand-accent, #61CE70);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	box-shadow: 0 10px 24px rgba(97, 206, 112, 0.30);
	animation: wcheck-pop 420ms var(--ease-spring, cubic-bezier(0.34,1.56,0.64,1)) both;
}
@keyframes wcheck-pop {
	0%   { transform: scale(0.4); opacity: 0; }
	100% { transform: scale(1);   opacity: 1; }
}
.wcheck__success-icon svg { width: 32px; height: 32px; }
.wcheck__success-title {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0 0 10px;
	line-height: 1.2;
}
.wcheck__success-body {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.65;
	color: var(--brand-text);
	font-weight: 300;
	margin: 0 auto 24px;
	max-width: 480px;
}
.wcheck__success-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.wcheck__btn-text {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--brand-text);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.wcheck__btn-text:hover { color: var(--brand-primary); }

/* ---------- Question screen ---------- */

.wcheck__progress {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 36px;
}

.wcheck__back {
	background: transparent;
	border: 1px solid rgba(82, 48, 88, 0.20);
	color: var(--brand-primary);
	border-radius: 999px;
	padding: 8px 14px 8px 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}
.wcheck__back svg { width: 14px; height: 14px; }
.wcheck__back:hover { background: var(--brand-primary); color: #fff; }
.wcheck__back:disabled { opacity: 0; pointer-events: none; }

.wcheck__progress-meter {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 14px;
}
.wcheck__progress-track {
	flex: 1;
	height: 4px;
	background: rgba(82, 48, 88, 0.10);
	border-radius: 999px;
	overflow: hidden;
}
.wcheck__progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
	border-radius: 999px;
	transition: width 480ms var(--ease);
}
.wcheck__progress-text {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand-secondary);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.wcheck__category {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--brand-secondary);
	margin: 0 0 14px;
}

.wcheck__question {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 500;
	line-height: 1.25;
	color: var(--brand-primary);
	margin: 0 0 8px;
}

.wcheck__options {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 12px;
	margin: 0 0 24px;
}
@media (min-width: 540px) {
	.wcheck__options { grid-template-columns: repeat(2, 1fr); }
}

.wcheck__opt {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 22px;
	border: 1.5px solid rgba(82, 48, 88, 0.15);
	border-radius: var(--radius-lg);
	background: #fff;
	cursor: pointer;
	font-family: var(--font-body);
	text-align: left;
	transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
	position: relative;
	overflow: hidden;
}
.wcheck__opt::before {
	content: "";
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 4px;
	background: var(--brand-secondary);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 240ms var(--ease);
}
.wcheck__opt:hover {
	border-color: var(--brand-secondary);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(82, 48, 88, 0.08);
}
.wcheck__opt:hover::before { transform: scaleY(1); }

.wcheck__opt.is-selected {
	border-color: var(--brand-secondary);
	background: rgba(201, 86, 28, 0.05);
}
.wcheck__opt.is-selected::before { transform: scaleY(1); }
.wcheck__opt.is-selected .wcheck__opt-dot { background: var(--brand-secondary); border-color: var(--brand-secondary); }
.wcheck__opt.is-selected .wcheck__opt-dot::after {
	transform: scale(1);
	opacity: 1;
}

.wcheck__opt-dot {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid rgba(82, 48, 88, 0.30);
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
	position: relative;
}
.wcheck__opt-dot::after {
	content: "";
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	transform: scale(0);
	opacity: 0;
	transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

.wcheck__opt-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.wcheck__opt-label {
	font-size: 16px;
	font-weight: 600;
	color: var(--brand-primary);
	line-height: 1.2;
}
.wcheck__opt-desc {
	font-size: 12px;
	color: var(--brand-text);
	letter-spacing: 0.02em;
}

/* ---------- Loading screen ---------- */

.wcheck__pulse {
	display: inline-flex;
	gap: 10px;
	margin-bottom: 22px;
}
.wcheck__pulse span {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--brand-secondary);
	opacity: 0.4;
	animation: wcheck-pulse 1.2s ease-in-out infinite;
}
.wcheck__pulse span:nth-child(2) { animation-delay: 0.18s; }
.wcheck__pulse span:nth-child(3) { animation-delay: 0.36s; }

@keyframes wcheck-pulse {
	0%, 80%, 100% { opacity: 0.3; transform: scale(0.75); }
	40% { opacity: 1; transform: scale(1.15); }
}

.wcheck__loading-text {
	font-family: var(--font-display);
	font-size: 20px;
	color: var(--brand-primary);
	font-weight: 400;
	font-style: italic;
}

/* ---------- Result screen ---------- */

.wcheck__band-title {
	font-family: var(--font-display);
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.05;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0 0 12px;
}

.wcheck__band-lede {
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.55;
	color: var(--brand-text);
	font-weight: 300;
	margin: 0 0 32px;
	max-width: 540px;
}

.wcheck__score-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
	margin: 0 0 32px;
	padding: 28px;
	background: #fff;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(82, 48, 88, 0.08);
	box-shadow: 0 8px 24px rgba(82, 48, 88, 0.06);
}
@media (min-width: 560px) {
	.wcheck__score-row { grid-template-columns: 180px 1fr; }
}

.wcheck__score-circle {
	position: relative;
	width: 160px;
	height: 160px;
	margin: 0 auto;
}
.wcheck__score-circle svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
.wcheck__score-bg {
	fill: none;
	stroke: rgba(82, 48, 88, 0.10);
	stroke-width: 9;
}
.wcheck__score-fg {
	fill: none;
	stroke: var(--brand-secondary);
	stroke-width: 9;
	stroke-linecap: round;
	stroke-dasharray: 326.7;
	stroke-dashoffset: 326.7;
	transition: stroke-dashoffset 1.2s var(--ease);
}
.wcheck__score-num {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
}
.wcheck__score-num strong {
	font-size: 44px;
	font-weight: 500;
	color: var(--brand-primary);
	line-height: 1;
}
.wcheck__score-num span {
	font-size: 12px;
	color: var(--brand-text);
	letter-spacing: 0.10em;
	margin-top: 4px;
}

.wcheck__breakdown {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.wcheck__bd-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 4px 12px;
	align-items: center;
}
.wcheck__bd-name {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--brand-primary);
}
.wcheck__bd-score {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--brand-text);
	font-variant-numeric: tabular-nums;
}
.wcheck__bd-bar {
	grid-column: 1 / -1;
	height: 6px;
	background: rgba(82, 48, 88, 0.08);
	border-radius: 999px;
	overflow: hidden;
}
.wcheck__bd-fill {
	height: 100%;
	width: 0;
	border-radius: 999px;
	transition: width 1s var(--ease);
}

/* Color the fill by intensity */
.wcheck__bd-fill[data-intensity="low"]    { background: var(--brand-accent, #61CE70); }
.wcheck__bd-fill[data-intensity="medium"] { background: var(--brand-secondary); }
.wcheck__bd-fill[data-intensity="high"]   { background: #c92626; }

.wcheck__recommend {
	background: rgba(82, 48, 88, 0.04);
	border-left: 3px solid var(--brand-secondary);
	padding: 24px 28px;
	border-radius: var(--radius-md);
	margin: 0 0 32px;
}
.wcheck__recommend-title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0 0 8px;
}
.wcheck__recommend-body {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.65;
	color: var(--brand-text);
	margin: 0;
	font-weight: 300;
}

.wcheck__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 8px;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
	.wcheck__screen,
	.wcheck__progress-bar,
	.wcheck__score-fg,
	.wcheck__bd-fill,
	.wcheck__pulse span { animation: none !important; transition: none !important; }
	.wcheck__screen { opacity: 1; transform: none; }
}
