/**
 * Relationship Health / Self Assessment: aligned with theme (Tailwind tokens: dark_blue, accent_blue, etc.)
 */

.site-main--self-assessment,
.site-main--rh-landing {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

/* Theme palette (see tailwind.config.js) */
.self-assessment {
	--as-dark-blue: #003049;
	--as-accent-blue: #2176ff;
	--as-accent-blue-rgb: 33, 118, 255;
	--as-bg-beige: #fbfbf7;
	--as-light-beige: #f9f7f1;
	--as-dark-beige: #f6eee3;
	--as-light-blue: #d4e6f0;
	--as-muted: rgba(0, 48, 73, 0.72);
	--as-border: rgba(0, 48, 73, 0.14);
	padding: 2rem 0 4rem;
	background: var(--as-bg-beige);
	font-family: inherit;
}

/* Relationship Health marketing landing (Step1 design) */
.site-main--rh-landing {
	background: #d4e6f0;
}

.rh-landing {
	--rh-ink: #231f20;
	--rh-blue: #d4e6f0;
	--rh-button: #0080ff;
	position: relative;
	overflow: hidden;
	min-height: 60vh;
	padding: 1rem 0 8rem;
	background: var(--rh-blue);
	color: var(--rh-ink);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Dashed wavy line motif (reuses existing theme asset) */
.rh-landing__decoration {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: none;
	background-image: url("src/images/assessment-waves.svg");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: min(100%, 1323px) auto;
	opacity: 0.5;
}

.rh-landing__inner {
	position: relative;
	z-index: 1;
}

.rh-landing__title {
	max-width: 56rem;
	margin: 0 0 1.5rem;
	font-size: clamp(2rem, 4vw, 2.625rem);
	font-weight: 400;
	line-height: 1.12;
	color: var(--rh-ink);
}

.rh-landing__intro {
	max-width: 52rem;
	margin: 0 0 2.5rem;
	font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
	line-height: 1.5;
	color: var(--rh-ink);
}

.rh-landing__h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.625rem, 2.6vw, 2.25rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--rh-ink);
}

.rh-landing__copy {
	max-width: 52rem;
	margin: 0 0 1.25rem;
	font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
	line-height: 1.5;
	color: var(--rh-ink);
}

.rh-landing__copy strong {
	font-weight: 700;
}

.rh-landing__steps {
	max-width: 52rem;
	margin: 0 0 1.5rem;
	padding-left: 2.75rem;
	list-style: decimal;
	font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
	line-height: 1.5;
	color: var(--rh-ink);
}

.rh-landing__steps li {
	margin-bottom: 0.4rem;
	padding-left: 0.4rem;
}

.rh-landing__actions {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.rh-landing__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 2.25rem;
	font-size: clamp(1.25rem, 2vw, 1.875rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	background: var(--rh-button);
	border: 2px solid var(--rh-button);
	border-radius: 0.375rem;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.rh-landing__cta-btn:hover,
.rh-landing__cta-btn:focus-visible {
	background: #006ad6;
	border-color: #006ad6;
	color: #fff;
}

.self-assessment__header--compact {
	margin-bottom: 1.75rem;
}

.self-assessment__eyebrow--pill {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.5rem 1.75rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.938rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	background: var(--as-dark-blue);
	border-radius: 1.5rem;
}

/* Title / lede: sizing comes from Tailwind utilities on templates */
.self-assessment__title {
	margin: 0 0 1rem;
}

.self-assessment__lede {
	margin: 0 0 2rem;
}

.self-assessment__lede--compact {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.75rem;
}

.self-assessment__back-to-landing {
	font-weight: 600;
	font-size: 0.938rem;
	white-space: nowrap;
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.self-assessment__back-to-landing:hover {
	opacity: 0.85;
	text-decoration: underline;
}

/**
 * Theme global `input { @apply w-full ... }` breaks radio/checkbox flex rows.
 */
.self-assessment input[type='radio'],
.self-assessment input[type='checkbox'] {
	width: auto;
	max-width: none;
	height: auto;
	min-height: 0;
	border: 0;
	border-bottom: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	vertical-align: middle;
}

.self-assessment__inner {
	margin: 0 auto;
}

.self-assessment__eyebrow:not(.self-assessment__eyebrow--pill) {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--as-muted);
	margin: 0 0 0.5rem;
}

.self-assessment__progress {
	height: 4px;
	background: var(--as-light-blue);
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.self-assessment__progress-bar {
	height: 100%;
	width: 10%;
	background: var(--as-accent-blue);
	border-radius: 999px;
	transition: width 0.25s ease;
}

.self-assessment__step-label {
	font-size: 0.875rem;
	color: var(--as-muted);
	margin: 0 0 1.75rem;
}

.self-assessment__panel {
	padding: 1.5rem;
	border: 1px solid var(--as-border);
	border-radius: 0.375rem;
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
}

.self-assessment__panel[hidden] {
	display: none !important;
}

.self-assessment__panel-title {
	font-size: 1.438rem;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 0.75rem;
	color: var(--as-dark-blue);
}

@media (min-width: 768px) {
	.self-assessment__panel-title {
		font-size: 1.75rem;
	}
}

.self-assessment__panel-copy {
	margin: 0 0 1rem;
	line-height: 1.55;
	color: var(--as-dark-blue);
	font-size: 0.938rem;
}

@media (min-width: 768px) {
	.self-assessment__panel-copy {
		font-size: 1.063rem;
	}
}

.self-assessment__panel-copy--muted {
	color: var(--as-muted);
}

.self-assessment__scale-legend {
	margin: 0 0 1.5rem;
	padding: 0;
}

.self-assessment__scale-row {
	display: grid;
	grid-template-columns: minmax(0, 11rem) 1fr;
	gap: 0.75rem 1rem;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--as-border);
	font-size: 0.9rem;
	line-height: 1.45;
}

.self-assessment__scale-row:last-child {
	border-bottom: 0;
}

.self-assessment__scale-row dt {
	margin: 0;
	font-weight: 600;
	color: var(--as-dark-blue);
}

.self-assessment__scale-row dd {
	margin: 0;
	color: var(--as-muted);
}

@media (max-width: 520px) {
	.self-assessment__scale-row {
		grid-template-columns: 1fr;
	}
}

.self-assessment__subhead {
	font-size: 1.438rem;
	font-weight: 600;
	line-height: 1.25;
	margin: 1.25rem 0 0.65rem;
	color: var(--as-dark-blue);
}

.self-assessment__subhead:first-child {
	margin-top: 0;
}

.self-assessment__measures {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0 0 1.25rem;
}

.self-assessment__measure {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--as-border);
}

.self-assessment__measure:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.self-assessment__measure-title {
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
	color: var(--as-dark-blue);
}

.self-assessment__measure-desc {
	font-size: 0.9rem;
	line-height: 1.55;
	margin: 0;
	color: var(--as-muted);
}

.self-assessment__worksheet {
	margin: 0 0 0.5rem;
}

.self-assessment__worksheet .self-assessment__field {
	margin: 0 0 1rem;
}

.self-assessment__worksheet label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
	color: var(--as-dark-blue);
}

.self-assessment__worksheet input[type='text'] {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--as-border);
	border-radius: 0.375rem;
	font: inherit;
	background: #fff;
	color: var(--as-dark-blue);
}

.self-assessment__fieldset--role {
	margin-top: 0.5rem;
}

.self-assessment__fieldset-legend {
	padding: 0;
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--as-dark-blue);
}

.self-assessment__bullets {
	margin: 0 0 1.5rem 1.1rem;
	padding: 0;
	line-height: 1.55;
	color: var(--as-dark-blue);
}

.self-assessment__fieldset {
	border: 0;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.self-assessment__choice {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1rem;
	border: 1px solid var(--as-border);
	border-radius: 0.375rem;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.self-assessment__choice:has(input:checked) {
	border-color: var(--as-accent-blue);
	background: rgba(var(--as-accent-blue-rgb), 0.08);
}

.self-assessment__choice input[type='radio'] {
	flex: 0 0 auto;
	width: 1.125rem;
	height: 1.125rem;
	min-width: 1.125rem;
	margin: 0;
	accent-color: var(--as-accent-blue);
}

.self-assessment__choice-text {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.self-assessment__choice-label {
	font-size: 0.95rem;
	color: var(--as-dark-blue);
}

.self-assessment__choice-desc {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--as-muted);
}

.self-assessment__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.self-assessment__actions--form {
	margin-top: 0.5rem;
}

/* Mirrors src/styles/base/_buttons.scss .button */
.self-assessment__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 2.5rem;
	font: inherit;
	font-weight: 600;
	font-size: 0.938rem;
	line-height: 1.25;
	border-radius: 0.375rem;
	border: 1px solid var(--as-border);
	background: #fff;
	color: var(--as-dark-blue);
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.self-assessment__btn:hover:not(:disabled) {
	background: var(--as-light-beige);
}

.self-assessment__btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.self-assessment__btn--primary {
	background: var(--as-accent-blue);
	border-color: var(--as-accent-blue);
	color: #fff;
}

.self-assessment__btn--primary:hover:not(:disabled) {
	background: transparent;
	color: var(--as-accent-blue);
	border-color: var(--as-accent-blue);
}

.self-assessment__total-label {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--as-muted);
	margin: 0 0 0.35rem;
}

.self-assessment__score {
	font-size: clamp(2.5rem, 8vw, 3.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
	color: var(--as-dark-blue);
}

.self-assessment__score--total {
	margin-bottom: 0.75rem;
}

.self-assessment__band-key {
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--as-muted);
	margin: 0 0 1.25rem;
	max-width: 36rem;
}

.self-assessment__tier-badge {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--as-dark-blue);
	margin: 0 0 1rem;
	padding: 0.5rem 0.85rem;
	background: rgba(var(--as-accent-blue-rgb), 0.1);
	border-radius: 0.375rem;
	min-height: 1.5em;
}

.self-assessment__results {
	margin-bottom: 0.5rem;
}

.self-assessment__tier-detail[hidden] {
	display: none !important;
}

.self-assessment__tier-name {
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
	color: var(--as-dark-blue);
}

.self-assessment__tier-intro {
	margin: 0 0 0.75rem;
	line-height: 1.55;
	color: var(--as-dark-blue);
	font-size: 0.95rem;
}

.self-assessment__tier-actions-head {
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	color: var(--as-dark-blue);
}

.self-assessment__tier-list {
	margin: 0 0 0.5rem;
	padding-left: 1.2rem;
	line-height: 1.55;
	color: var(--as-dark-blue);
	font-size: 0.925rem;
}

.self-assessment__tier-list li {
	margin-bottom: 0.45rem;
}

.self-assessment__score-suffix {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--as-muted);
}

.self-assessment__form-error {
	margin: 0 0 0.75rem;
	padding: 0.65rem 0.75rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #b91c1c;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 0.375rem;
}

.self-assessment__form .self-assessment__field {
	margin: 0 0 1rem;
}

.self-assessment__form label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
	color: var(--as-dark-blue);
}

.self-assessment__form input[type='email'] {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--as-border);
	border-radius: 0.375rem;
	font: inherit;
	color: var(--as-dark-blue);
}

.self-assessment__field--checkbox label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-weight: 400;
	cursor: pointer;
	color: var(--as-dark-blue);
}

.self-assessment__field--checkbox input[type='checkbox'] {
	width: 1.125rem;
	height: 1.125rem;
	min-width: 1.125rem;
	margin-top: 0.2rem;
	flex-shrink: 0;
	accent-color: var(--as-accent-blue);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

/* ============================================================
   Self Assessment input page (Step 2 design)
   ============================================================ */
.site-main--self-assessment {
	background: #fbfbf7;
}

.sa2 {
	position: relative;
	overflow: hidden;
	padding-bottom: 7rem;
	color: #231f20;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Dashed wavy line motif (reuses existing theme asset) */
.sa2__decoration {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: none;
	background-image: url("src/images/assessment-waves.svg");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: min(100%, 1323px) auto;
	opacity: 0.5;
}

.sa2__form {
	position: relative;
	z-index: 1;
}

.sa2__intro-block {
	margin-bottom: 2rem;
}

.sa2__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 3vw, 2.3rem);
	font-weight: 400;
	line-height: 1.15;
	color: #003049;
}

.sa2__intro {
	max-width: 60rem;
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.5;
	color: #231f20;
}

.sa2__field {
	margin-bottom: 2rem;
}

.sa2__label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: clamp(1.125rem, 1.8vw, 1.625rem);
	font-weight: 400;
	color: #003049;
}

.sa2__input {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.85rem 1rem;
	font: inherit;
	color: #003049;
	background: #fff;
	border: 1px solid #9cbcd0;
	border-radius: 0.375rem;
	box-shadow: inset 0 1px 2px rgba(0, 48, 73, 0.08);
}

.sa2__input::placeholder {
	color: #7e98a8;
	opacity: 1;
}

.sa2__input:focus {
	outline: none;
	border-color: #0080ff;
	box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.2);
}

.sa2__heading {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 2.6vw, 2.3rem);
	font-weight: 700;
	line-height: 1.15;
	color: #003049;
}

.sa2__subcopy {
	margin: 0 0 1.5rem;
	font-size: clamp(0.9rem, 1.2vw, 1rem);
	color: #231f20;
}

.sa2__error {
	margin: 0 0 1.25rem;
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	line-height: 1.45;
	color: #b91c1c;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 0.375rem;
}

.sa2__error[hidden] {
	display: none;
}

.sa2__factor {
	margin: 0 0 2rem;
	padding: 0;
	border: 0;
}

.sa2__factor-bar {
	margin: 0 0 1.25rem;
	padding: 0.6rem 1.25rem;
	font-size: clamp(1.05rem, 1.6vw, 1.55rem);
	font-weight: 600;
	color: #fff;
	background: #003049;
	text-align: center;
	border-radius: 0.25rem;
}

.sa2__factor-num {
	margin-right: 0.2rem;
}

.sa2__scale {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(4, auto);
	column-gap: 0.75rem;
	row-gap: 0.4rem;
	align-items: start;
}

/* Each rating (number, anchor, circle, description) is a self-contained cell.
   Subgrid keeps the four rows aligned across all five columns on desktop. */
.sa2__option {
	display: grid;
	grid-row: 1 / -1;
	grid-template-rows: subgrid;
	row-gap: 0.4rem;
	justify-items: center;
	text-align: center;
}

.sa2__num {
	font-size: clamp(1rem, 1.6vw, 1.55rem);
	font-weight: 700;
	line-height: 1.1;
	color: #003049;
}

.sa2__anchor {
	min-height: 1.2em;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(0.7rem, 1vw, 0.875rem);
	line-height: 1.2;
	color: #231f20;
}

.sa2__radio {
	position: relative;
	display: inline-flex;
	margin: 0.4rem 0 0.6rem;
	cursor: pointer;
}

.sa2 .sa2__radio input[type='radio'] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.sa2__circle {
	display: block;
	width: clamp(1.25rem, 2.2vw, 1.75rem);
	height: clamp(1.25rem, 2.2vw, 1.75rem);
	border: 2px solid #003049;
	border-radius: 50%;
	background: transparent;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.sa2__radio input:hover + .sa2__circle {
	border-color: #0080ff;
}

.sa2__radio input:focus-visible + .sa2__circle {
	box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.35);
}

.sa2__radio input:checked + .sa2__circle {
	border-color: #0080ff;
	background: #0080ff;
	box-shadow: inset 0 0 0 3px #fff;
}

.sa2__desc {
	font-size: clamp(0.7rem, 0.95vw, 0.85rem);
	line-height: 1.35;
	color: #231f20;
}

.sa2__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-top: 3.5rem;
}

.sa2__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 2.25rem;
	font: inherit;
	font-size: clamp(1.125rem, 1.8vw, 1.55rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	background: #0080ff;
	border: 2px solid #0080ff;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.sa2__cta:hover,
.sa2__cta:focus-visible {
	background: #006ad6;
	border-color: #006ad6;
}

.sa2__back-link {
	font-size: 0.938rem;
	font-weight: 600;
	color: #2176ff;
	text-decoration: none;
}

.sa2__back-link:hover {
	text-decoration: underline;
}

@media (max-width: 600px) {
	/* Stack the five ratings vertically; each becomes its own row. */
	.sa2__scale {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		row-gap: 1.5rem;
		column-gap: 0;
	}

	.sa2__option {
		grid-row: auto;
		grid-template-columns: auto auto 1fr;
		grid-template-rows: auto auto;
		grid-template-areas:
			"num circle anchor"
			"num circle desc";
		column-gap: 0.85rem;
		row-gap: 0.15rem;
		align-items: center;
		justify-items: start;
		text-align: left;
	}

	.sa2__num {
		grid-area: num;
		align-self: center;
	}

	.sa2__radio {
		grid-area: circle;
		margin: 0;
		align-self: center;
	}

	.sa2__anchor {
		grid-area: anchor;
		align-self: end;
		min-height: 0;
	}

	.sa2__desc {
		grid-area: desc;
		align-self: start;
	}

	/* Hide empty anchor/description rows (ratings 2 and 4) so spacing stays tight. */
	.sa2__anchor:empty,
	.sa2__desc:empty {
		display: none;
	}
}

/* ============================================================
   Results Summary page (Step 3 design)
   ============================================================ */
.site-main--rh-results {
	background: #d4e6f0;
}

.rh-results {
	position: relative;
	overflow: hidden;
	min-height: 60vh;
	padding: 1rem 0 8rem;
	background: #d4e6f0;
	color: #231f20;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rh-results__decoration {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: none;
	background-image: url("src/images/assessment-waves.svg");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	opacity: 0.5;
}

.rh-results__inner {
	position: relative;
	z-index: 1;
}

.rh-results__page-title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.5rem, 2.6vw, 2.15rem);
	font-weight: 600;
	color: #003049;
}

.rh-results__missing {
	max-width: 36rem;
	padding: 2rem;
	background: #faf7f1;
	border-radius: 0.75rem;
}

.rh-results__missing[hidden],
.rh-results__card[hidden],
.rh-results__report[hidden],
.rh-results__summary[hidden] {
	display: none;
}

.rh-results__missing-text {
	margin: 0 0 1.25rem;
	font-size: 1.0625rem;
	color: #231f20;
}

.rh-results__card {
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: #faf7f1;
	border-radius: 0.75rem;
	box-shadow: 0 10px 30px rgba(0, 48, 73, 0.06);
}

.rh-results__headline {
	margin: 0 0 1.25rem;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 400;
	line-height: 1.15;
	color: #003049;
}

.rh-results__headline-tier strong {
	font-weight: 700;
}

.rh-results__client-label {
	margin: 0 0 0.5rem;
	font-size: clamp(1.125rem, 1.8vw, 1.375rem);
	color: #003049;
}

.rh-results__client-initials {
	display: inline-block;
	margin: 0 0 1.25rem;
	padding: 0.35rem 0.85rem;
	font-size: 1rem;
	font-weight: 600;
	color: #003049;
	background: #d4e6f0;
	border-radius: 0.375rem;
}

.rh-results__score-line {
	margin: 0 0 1.75rem;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.5;
	color: #231f20;
}

.rh-results__panel {
	padding: clamp(1.25rem, 2.5vw, 2rem);
	background: #fbfcf8;
	border-radius: 0.75rem;
}

/* Score gauge (chevron band) */
.rh-results__gauge {
	max-width: 46rem;
	margin: 0 auto 2rem;
}

.rh-results__gauge-ends {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.rh-results__gauge-end {
	max-width: 7rem;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(0.8rem, 1.2vw, 1rem);
	line-height: 1.2;
	color: #231f20;
}

.rh-results__gauge-end--right {
	text-align: right;
}

.rh-results__axis {
	position: relative;
	padding-bottom: 5.75rem;
}

/* Numbers 1-5 + tick marks */
.rh-results__nums {
	position: relative;
	height: 2.75rem;
}

.rh-results__num {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateX(-50%);
}

.rh-results__num-val {
	font-size: clamp(0.95rem, 1.4vw, 1.25rem);
	font-weight: 700;
	color: #003049;
}

.rh-results__num-tick {
	width: 2px;
	height: 0.85rem;
	margin-top: 0.4rem;
	background: #003049;
}

/* Chevron tier band */
.rh-results__band {
	display: flex;
	gap: 0;
	margin-top: 0.85rem;
}

.rh-results__seg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 2.85rem;
	background: #d4e6ef;
	color: #003049;
	font-weight: 600;
	font-size: clamp(0.75rem, 1.25vw, 1.0625rem);
	white-space: nowrap;
}

.rh-results__seg--emerging {
	flex: 0 0 31%;
	padding-right: 1rem;
	clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
}

.rh-results__seg--developing {
	flex: 1 1 auto;
	margin-left: -15px;
	padding: 0 1rem 0 2rem;
	clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%, 22px 50%);
}

.rh-results__seg--thriving {
	flex: 0 0 29%;
	margin-left: -15px;
	padding: 0 1rem 0 2rem;
	clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%, 22px 50%);
}

/* Pointer line + score value below the band */
.rh-results__pointer {
	position: absolute;
	left: 0;
	top: 5.85rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateX(-50%);
}

.rh-results__pointer-line {
	width: 2px;
	height: 2.5rem;
	background: #003049;
}

.rh-results__gauge-value {
	margin-top: 0.35rem;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 700;
	color: #003049;
	white-space: nowrap;
}

.rh-results__summary-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.375rem, 2.2vw, 1.875rem);
	font-weight: 600;
	color: #003049;
}

.rh-results__summary {
	margin: 0;
	font-size: clamp(0.9rem, 1.25vw, 1.0625rem);
	line-height: 1.55;
	color: #231f20;
}

.rh-results__summary em {
	font-style: italic;
}

/* Get Your Full Report */
.rh-results__report {
	margin-top: 2.5rem;
}

.rh-results__report-title {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 400;
	color: #003049;
}

.rh-results__report-copy {
	max-width: 46rem;
	margin: 0 0 1rem;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.55;
	color: #231f20;
}

.rh-results__report-list {
	max-width: 46rem;
	margin: 0 0 2rem 1.25rem;
	padding: 0;
	list-style: disc;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.55;
	color: #231f20;
}

.rh-results__report-list li {
	margin-bottom: 0.4rem;
	padding-left: 0.35rem;
}

.rh-results__form {
	max-width: 33rem;
	margin: 0 auto;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	background: #faf7f1;
	border-radius: 0.75rem;
	box-shadow: 0 10px 30px rgba(0, 48, 73, 0.06);
}

.rh-results__form-title {
	margin: 0 0 1rem;
	font-size: clamp(1.125rem, 1.8vw, 1.375rem);
	font-weight: 700;
	color: #003049;
}

.rh-results__form-error {
	margin: 0 0 1rem;
	padding: 0.65rem 0.85rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #b91c1c;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 0.375rem;
}

.rh-results__form-error[hidden] {
	display: none;
}

.rh-results__field {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 0.85rem;
}

.rh-results__field-label {
	flex: 0 0 5.5rem;
	font-size: 0.95rem;
	color: #231f20;
}

.rh-results__input {
	flex: 1 1 auto;
	width: 100%;
	box-sizing: border-box;
	padding: 0.6rem 0.75rem;
	font: inherit;
	color: #003049;
	background: #d4e6f0;
	border: 1px solid transparent;
	border-radius: 0.375rem;
}

.rh-results__input:focus {
	outline: none;
	border-color: #0080ff;
}

.rh-results__form-actions {
	display: flex;
	justify-content: center;
	margin-top: 1.25rem;
}

.rh-results__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	font: inherit;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	background: #0080ff;
	border: 2px solid #0080ff;
	border-radius: 0.375rem;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.rh-results__cta:hover,
.rh-results__cta:focus-visible {
	background: #006ad6;
	border-color: #006ad6;
	color: #fff;
}

@media (max-width: 600px) {
	.rh-results__field {
		flex-direction: column;
		align-items: stretch;
		gap: 0.35rem;
	}
	.rh-results__field-label {
		flex-basis: auto;
	}
}

/* ============================================================
   Full Report page (Step 4 design)
   ============================================================ */
.site-main--rh-report {
	background: #faf7f1;
}

.rh-report {
	position: relative;
	overflow: hidden;
	padding: 1rem 0 8rem;
	background: #faf7f1;
	color: #231f20;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rh-report__decoration {
	display: none;
}

.rh-report__inner {
	position: relative;
	z-index: 1;
}

.rh-report__missing {
	max-width: 36rem;
	padding: 2rem;
	background: #faf7f1;
	border-radius: 0.75rem;
}

.rh-report__missing[hidden],
.rh-report__body[hidden],
.rh-report__means[hidden],
.rh-report__recs[hidden] {
	display: none;
}

.rh-report__missing-text {
	margin: 0 0 1.25rem;
	font-size: 1.0625rem;
}

.rh-report__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	font-weight: 700;
	color: #fff;
	background: #0080ff;
	border-radius: 0.375rem;
	text-decoration: none;
}

.rh-report__btn:hover {
	background: #006ad6;
	color: #fff;
}

.rh-report__body {
	margin: 0 auto;
}

/* Masthead */
.rh-report__title {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 600;
	color: #003049;
}

.rh-report__lede {
	margin: 0 0 0.5rem;
	font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.rh-report__toc {
	margin: 0;
	padding-left: 1.5rem;
	list-style: decimal;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.6;
}

/* Sections */
.rh-report__section {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 48, 73, 0.1);
}

.rh-report__section:first-of-type {
	margin-top: 1.5rem;
	padding-top: 0;
	border-top: 0;
}

.rh-report__h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.375rem, 2.4vw, 1.875rem);
	font-weight: 400;
	color: #003049;
}

.rh-report__h3 {
	margin: 2rem 0 0.75rem;
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 400;
	color: #003049;
}

.rh-report__h3--underline {
	font-weight: 400;
	color: #0080ff;
	text-decoration: underline;
}

.rh-report__copy {
	max-width: 52rem;
	margin: 0 0 1rem;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.6;
}

.rh-report__copy--wide .rh-report__copy {
	max-width: none;
}

.rh-report__copy a {
	color: #0080ff;
	text-decoration: underline;
}

.rh-report__copy a:hover {
	color: #006ad6;
}

.rh-report__tier {
	font-weight: 700;
}

.rh-report__client-label {
	margin: 0 0 0.5rem;
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	color: #003049;
}

.rh-report__client-initials {
	display: inline-block;
	margin: 0 0 1.25rem;
	padding: 0.35rem 0.85rem;
	font-weight: 600;
	color: #003049;
	background: #d4e6ef;
	border-radius: 0.375rem;
}

.rh-report__score-line {
	max-width: 52rem;
	margin: 0 0 1.5rem;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.5;
}

.rh-report__gauge {
	margin: 1.5rem auto 2rem;
}

.rh-report__chart-intro {
	margin: 1.5rem 0 2.5rem;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	font-weight: 600;
	color: #003049;
}

/* Six-factor bar chart */
.rh-report__chart {
	--rh-chart-h: 16rem;
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 0.75rem;
	max-width: 46rem;
	margin-left: auto;
	margin-right: auto;
}

.rh-report__y {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	height: var(--rh-chart-h);
	min-width: 5.5rem;
}

.rh-report__y-row {
	position: absolute;
	right: 0;
	display: flex;
	flex-direction: row-reverse;
	align-items: baseline;
	gap: 0.75rem;
	transform: translateY(50%);
	white-space: nowrap;
	color: #003049;
}

.rh-report__y-num {
	font-weight: 700;
	font-size: 0.95rem;
}

.rh-report__y-anchor {
	font-size: 0.7rem;
	font-style: italic;
	line-height: 1.1;
	text-align: right;
}

.rh-report__plot {
	position: relative;
	grid-column: 2;
	grid-row: 1;
	height: var(--rh-chart-h);
	border-left: 2px solid #003049;
	border-bottom: 2px solid #003049;
}

.rh-report__grid {
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(0, 48, 73, 0.1);
}

.rh-report__bars {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
}

.rh-report__col {
	position: relative;
	flex: 1 1 0;
	height: 100%;
}

.rh-report__bar {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 55%;
	max-width: 3.5rem;
	height: 0;
	background: #003049;
	border-radius: 3px 3px 0 0;
	transition: height 0.4s ease;
}

.rh-report__bar-num {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 700;
	font-size: 0.85rem;
	color: #003049;
}

.rh-report__x {
	grid-column: 2;
	grid-row: 2;
	display: flex;
	margin-top: 0.5rem;
}

.rh-report__x-label {
	flex: 1 1 0;
	padding: 0 0.15rem;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
	color: #003049;
}

.rh-report__chart-note {
	margin: 0.75rem 0 0;
	font-size: 0.8rem;
	font-style: italic;
	text-align: center;
	color: #231f20;
}

/* What {tier} Means */
.rh-report__means {
	margin-top: 1.75rem;
	padding: clamp(1.25rem, 2.5vw, 2rem);
	background: #fff;
	border-radius: 0.75rem;
}

.rh-report__means-title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 700;
	color: #003049;
}

.rh-report__means-intro {
	margin: 0 0 1.25rem;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.6;
}

.rh-report__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.rh-report__col-head {
	margin: 0 0 0.5rem;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	font-weight: 700;
	color: #003049;
}

.rh-report__col-item p {
	margin: 0;
	font-size: clamp(0.9rem, 1.25vw, 1rem);
	line-height: 1.55;
}

.rh-report__placeholder-note {
	margin: 0;
	padding: 1rem 1.25rem;
	font-style: italic;
	color: #003049;
	background: #d4e6ef;
	border-radius: 0.5rem;
}

/* Recommendations */
.rh-report__rec-list {
	margin: 0 0 1.25rem;
	padding-left: 1.5rem;
	list-style: decimal;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.6;
}

.rh-report__rec-list > li {
	margin-bottom: 1rem;
}

.rh-report__rec-sublist {
	margin: 0.5rem 0 0;
	padding-left: 1.25rem;
	list-style: lower-alpha;
}

.rh-report__rec-sublist li {
	margin-bottom: 0.35rem;
}

.rh-report__quotes {
	margin: 0.5rem 0 0;
	padding-left: 1.25rem;
	list-style: disc;
}

.rh-report__quotes li {
	margin-bottom: 0.35rem;
	font-style: italic;
}

.rh-report__rec-closing {
	margin: 0;
	font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
	line-height: 1.6;
}

/* Secondary paragraphs nested inside a recommendation list item. */
.rh-report__rec-list > li > p {
	margin: 0.5rem 0 0;
}

/* Bullet list nested inside a recommendation list item (e.g. Thriving "client experience"). */
.rh-report__rec-bullets {
	margin: 0.5rem 0 0;
	padding-left: 1.25rem;
	list-style: disc;
}

.rh-report__rec-bullets li {
	margin-bottom: 0.35rem;
}

/* Pull quote inside a recommendation (e.g. the "elevation" conversation example). */
.rh-report__rec-quote {
	margin: 0.75rem 0 0;
	padding: 0.75rem 0 0.75rem 1.25rem;
	border-left: 3px solid #0080ff;
	font-style: italic;
	color: #003049;
}

/* Sub-heading for the Developing/Thriving resource lists. */
.rh-report__catalyst-title {
	margin: 1.5rem 0 0.75rem;
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 700;
	color: #003049;
}

/* What's Next: three areas */
.rh-report__areas {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 3.75rem;
	margin: 1.5rem 0;
}

.rh-report__area {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	flex: 0 1 12rem;
	max-width: 14rem;
	padding: 1.1rem 1rem;
	text-align: center;
	font-weight: 700;
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	line-height: 1.2;
	color: #fff;
	background: #003049;
	border-radius: 1rem;
}

/* Light-blue arrow flowing to the next area */
.rh-report__area:not(:last-child)::after {
	content: "";
	position: absolute;
	left: calc(100% + 1.875rem);
	top: 50%;
	width: 3rem;
	height: 2.5rem;
	transform: translate(-50%, -50%);
	background: #d4e6ef;
	clip-path: polygon(0 26%, 60% 26%, 60% 0, 100% 50%, 60% 100%, 60% 74%, 0 74%);
}

.rh-report__area small {
	display: block;
	font-size: 1em;
	font-weight: 700;
}

/* Where do you stand */
.rh-report__stand {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 22rem));
	grid-template-rows: auto 1fr auto;
	justify-content: center;
	column-gap: 4.5rem;
	row-gap: 0;
	margin: 1.5rem 0;
}

.rh-report__stand-col {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
}

.rh-report__stand-title {
	margin: 0 0 0.75rem;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	font-weight: 700;
	color: #003049;
}

/* White card holds just the bullet list */
.rh-report__stand-card {
	position: relative;
	padding: 1.5rem;
	background: #fff;
	border: 2px solid #003049;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgba(0, 48, 73, 0.08);
}

/* Double-headed arrow flowing between the two cards, centered in the gap */
.rh-report__stand-col--alt .rh-report__stand-card::before {
	content: "";
	position: absolute;
	right: 100%;
	top: 50%;
	width: 3.5rem;
	height: 2.4rem;
	margin-right: 0.5rem;
	transform: translateY(-50%);
	background: #d4e6ef;
	clip-path: polygon(0 50%, 22% 0, 22% 26%, 78% 26%, 78% 0, 100% 50%, 78% 100%, 78% 74%, 22% 74%, 22% 100%);
}

/* Down arrow flowing out of each card to its note */
.rh-report__stand-card::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	width: 2.6rem;
	height: 2.4rem;
	margin-top: 0.5rem;
	transform: translateX(-50%);
	background: #d4e6ef;
	clip-path: polygon(28% 0, 72% 0, 72% 50%, 100% 50%, 50% 100%, 0 50%, 28% 50%);
}

.rh-report__stand-list {
	margin: 0;
	padding-left: 1.25rem;
	font-size: clamp(0.9rem, 1.25vw, 1rem);
	line-height: 1.5;
}

.rh-report__stand-list li {
	margin-bottom: 0.4rem;
}

.rh-report__stand-note {
	margin: 3.5rem 0 0;
	font-size: clamp(0.9rem, 1.25vw, 1rem);
	line-height: 1.5;
	font-weight: 600;
	color: #003049;
}

/* Masterclass testimonials */
.rh-report__testimonials {
	margin: 1.5rem 0;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	color: #000;
	background: #d4e6ef;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgba(0, 48, 73, 0.08);
	font-size: clamp(0.9rem, 1.25vw, 1rem);
	line-height: 1.55;
}

.rh-report__testimonials p {
	margin: 0 0 1rem;
}

.rh-report__testimonials a {
	color: #0080ff;
	text-decoration: underline;
}

.rh-report__testimonial-list {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
	list-style: disc;
}

.rh-report__testimonial-list li {
	margin-bottom: 0.65rem;
	font-style: italic;
}

.rh-report__testimonial-cta {
	margin: 0;
	font-weight: 700;
}

/* Expert vs Advisor behaviors */
.rh-report__behaviors-title {
	margin: 1.5rem 0 1rem;
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 400;
	color: #003049;
}

.rh-report__behaviors {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.rh-report__behavior-head {
	margin: 0 0 0.75rem;
	font-size: clamp(0.95rem, 1.4vw, 1.125rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #003049;
}

.rh-report__behavior-list {
	margin: 0;
	padding-left: 1.25rem;
	font-size: clamp(0.9rem, 1.25vw, 1rem);
	line-height: 1.5;
}

.rh-report__behavior-list li {
	margin-bottom: 0.45rem;
}

@media (max-width: 760px) {
	.rh-report__areas {
		flex-direction: column;
	}
	.rh-report__area {
		flex-basis: auto;
		font-size: 1.25rem;
	}
	/* Flow arrows point downward once the areas stack */
	.rh-report__area:not(:last-child)::after {
		left: 50%;
		top: 100%;
		width: 2.5rem;
		height: 2.5rem;
		margin-top: 0.625rem;
		transform: translateX(-50%);
		clip-path: polygon(26% 0, 74% 0, 74% 55%, 100% 55%, 50% 100%, 0 55%, 26% 55%);
	}
}

@media (max-width: 720px) {
	.rh-report__cols,
	.rh-report__stand,
	.rh-report__behaviors {
		grid-template-columns: 1fr;
	}
	/* Stand cards stack: drop the equal-height subgrid and space them out */
	.rh-report__stand {
		grid-template-rows: none;
		row-gap: 3rem;
	}
	.rh-report__stand-col {
		display: flex;
		flex-direction: column;
		grid-row: auto;
	}
	/* No horizontal flow arrow between cards once stacked */
	.rh-report__stand-col--alt .rh-report__stand-card::before {
		display: none;
	}
	.rh-report__chart {
		--rh-chart-h: 13rem;
	}
	.rh-report__y {
		min-width: 1.5rem;
	}
	.rh-report__y-anchor {
		display: none;
	}
	.rh-report__x-label {
		font-size: 0.65rem;
	}
}
