@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto+Condensed:wght@400;600&display=swap");

.gs-app {
	--gs-accent: #0069b4;
	--gs-ink: #172522;
	--gs-muted: #52645f;
	--gs-surface: #f3f7f5;
	--gs-border: #c9d7d2;
	box-sizing: border-box;
	max-width: 54rem;
	margin: 2rem auto;
	padding: clamp(1.25rem, 4vw, 3rem);
	border: 1px solid var(--gs-border);
	border-radius: 1rem;
	background: #fff;
	color: var(--gs-ink);
	font-family: inherit;
	line-height: 1.6;
}

.gs-app *,
.gs-app *::before,
.gs-app *::after {
	box-sizing: inherit;
}

.gs-eyebrow {
	margin: 0 0 0.5rem;
	color: var(--gs-accent);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.gs-app h2 {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 7vw, 3.5rem);
	line-height: 1.1;
}

.gs-notice {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 0.3rem solid var(--gs-accent);
	background: var(--gs-surface);
}

.gs-status {
	color: var(--gs-muted);
	font-weight: 600;
}

.gs-form {
	display: grid;
	gap: 1.25rem;
}

.gs-assessment {
	max-width: 72rem;
}

.gs-assessment-layout {
	display: grid;
	grid-template-columns: 12rem minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2.25rem);
	align-items: start;
	margin-top: 1.25rem;
}

.gs-question-nav {
	position: sticky;
	top: 1rem;
	max-height: calc(100vh - 2rem);
	padding: 0.85rem;
	overflow-y: auto;
	border: 1px solid var(--gs-border);
	border-radius: 0.7rem;
	background: #f7fbfe;
}

.gs-question-nav__title {
	display: block;
	margin-bottom: 0.65rem;
	color: var(--gs-accent);
}

.gs-question-nav ol {
	display: grid;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gs-question-nav__item {
	display: grid;
	grid-template-columns: 1.8rem minmax(0, 1fr);
	gap: 0.5rem;
	align-items: center;
	width: 100%;
	min-height: 2.7rem;
	padding: 0.35rem 0.45rem;
	border: 1px solid transparent;
	border-radius: 0.45rem;
	background: transparent;
	color: var(--gs-ink);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.gs-question-nav__item:hover {
	border-color: var(--gs-border);
	background: #fff;
}

.gs-question-nav__item:focus-visible {
	outline: 3px solid #f1b434;
	outline-offset: 2px;
}

.gs-question-nav__item.is-current {
	border-color: var(--gs-accent);
	background: #fff;
	box-shadow: inset 0.25rem 0 0 var(--gs-accent);
}

.gs-question-nav__number {
	display: grid;
	place-items: center;
	width: 1.7rem;
	height: 1.7rem;
	border: 1px solid var(--gs-border);
	border-radius: 50%;
	font-size: 0.78rem;
	font-weight: 700;
}

.gs-question-nav__item.is-answered .gs-question-nav__number {
	border-color: var(--gs-accent);
	background: var(--gs-accent);
	color: #fff;
}

.gs-question-nav__item.is-save-error {
	border-color: #b42318;
}

.gs-question-nav__item.is-save-error .gs-question-nav__number {
	border-color: #b42318;
	background: #b42318;
	color: #fff;
}

.gs-question-nav__meta,
.gs-question-nav__meta strong,
.gs-question-nav__meta small {
	display: block;
}

.gs-question-nav__meta strong {
	font-size: 0.82rem;
}

.gs-question-nav__meta small {
	color: var(--gs-muted);
	font-size: 0.7rem;
}

.gs-question-form {
	min-width: 0;
}

.gs-question-panel[hidden],
.gs-question-actions [hidden] {
	display: none !important;
}

.gs-save-status {
	min-height: 1.5rem;
	margin: 0;
	color: var(--gs-muted);
	font-size: 0.85rem;
	font-weight: 600;
}

.gs-save-status[data-status="saving"]::before {
	display: inline-block;
	width: 0.75rem;
	height: 0.75rem;
	margin-right: 0.45rem;
	border: 2px solid #bdd5e7;
	border-top-color: var(--gs-accent);
	border-radius: 50%;
	content: "";
	animation: gs-spin 0.75s linear infinite;
}

.gs-save-status[data-status="saved"] {
	color: #087a4f;
}

.gs-save-status[data-status="error"] {
	color: #b42318;
}

@keyframes gs-spin {
	to {
		transform: rotate(360deg);
	}
}

.gs-form > label {
	display: grid;
	gap: 0.4rem;
	font-weight: 650;
}

.gs-form input[type="text"],
.gs-form input[type="email"],
.gs-form select,
.gs-form textarea {
	width: 100%;
	min-height: 2.8rem;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--gs-border);
	border-radius: 0.45rem;
	background: #fff;
	color: var(--gs-ink);
	font: inherit;
}

.gs-form input:focus-visible,
.gs-form select:focus-visible,
.gs-form textarea:focus-visible,
.gs-button:focus-visible {
	outline: 3px solid #f1b434;
	outline-offset: 2px;
}

.gs-check {
	grid-template-columns: 1.4rem 1fr;
	align-items: start;
	font-weight: 500 !important;
}

.gs-check input {
	width: 1.2rem;
	height: 1.2rem;
	margin-top: 0.2rem;
}

.gs-question {
	margin: 0;
	padding: 0;
	border: 0;
}

.gs-question legend,
.gs-question__legend {
	margin: 1rem 0;
	font-size: clamp(1.25rem, 4vw, 1.75rem);
	font-weight: 750;
	line-height: 1.35;
}

.gs-question__legend {
	width: 100%;
	margin-top: 0;
	padding: 0;
}

.gs-question__code {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--gs-accent);
	font-size: 0.9rem;
}

.gs-options {
	display: grid;
	gap: 0.6rem;
}

.gs-question-form[aria-busy="true"] .gs-options {
	opacity: 0.65;
	pointer-events: none;
}

.gs-option {
	display: grid;
	grid-template-columns: 1.5rem 1fr;
	gap: 0.6rem;
	align-items: center;
	min-height: 3rem;
	padding: 0.65rem 0.8rem;
	border: 1px solid var(--gs-border);
	border-radius: 0.55rem;
	cursor: pointer;
}

.gs-option:has(input:checked) {
	border-color: var(--gs-accent);
	background: var(--gs-surface);
}

.gs-option input {
	width: 1.15rem;
	height: 1.15rem;
}

.gs-help {
	display: block;
	color: var(--gs-muted);
	font-size: 0.9rem;
	font-weight: 400;
}

.gs-error {
	padding: 0.8rem 1rem;
	border-left: 0.3rem solid #b42318;
	background: #fff0ee;
	color: #7a271a;
	font-weight: 650;
}

.gs-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
}

.gs-button {
	min-height: 2.9rem;
	padding: 0.65rem 1.1rem;
	border: 2px solid var(--gs-accent);
	border-radius: 0.5rem;
	background: var(--gs-accent);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.gs-button--secondary {
	background: #fff;
	color: var(--gs-accent);
}

.gs-result {
	container-name: gs-result;
	container-type: inline-size;
	max-width: 72rem;
	width: calc(100% - 2rem);
	margin: 2rem auto;
	padding: clamp(1.25rem, 4vw, 3rem);
	border: 1px solid #c9d7d2;
	border-radius: 1rem;
	background: #fff;
	-webkit-hyphens: auto;
	hyphens: auto;
	hyphenate-limit-chars: 6 3 3;
	overflow-wrap: break-word;
	word-break: normal;
}

.gs-result h2,
.gs-result h3,
.gs-result h4 {
	text-wrap: balance;
}

.gs-result p,
.gs-result li,
.gs-result td,
.gs-result dd {
	text-wrap: pretty;
}

.gs-result .gs-scale,
.gs-result .gs-button,
.gs-result .gs-eyebrow,
.gs-result .gs-cluster-label,
.gs-result .gs-answer-table th,
.gs-result .gs-answer-table [data-label]::before {
	-webkit-hyphens: none;
	hyphens: none;
	word-break: keep-all;
}

.gs-score-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
	gap: 0.8rem;
	margin: 1.5rem 0;
}

.gs-score-card {
	padding: 1rem;
	border: 1px solid var(--gs-border);
	border-radius: 0.7rem;
	background: var(--gs-surface);
}

.gs-score-card h3,
.gs-score-card p {
	margin: 0 0 0.35rem;
}

.gs-score-card strong {
	font-size: 2rem;
}

.gs-score-card--total {
	border-color: var(--gs-accent);
}

.gs-score-card--critical {
	border-left: 0.4rem solid #b42318;
}

.gs-score-card--attention {
	border-left: 0.4rem solid #d6a300;
}

.gs-score-card--good {
	border-left: 0.4rem solid #138a5b;
}

.gs-score-grid--module {
	align-items: stretch;
	grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1.2fr);
}

.gs-section-heading {
	align-items: flex-end;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.gs-section-heading h3 {
	margin: 0.2rem 0 0;
}

.gs-scale {
	background: #e7f3fb;
	border-radius: 999px;
	color: #004f88;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 0.35rem 0.7rem;
	white-space: nowrap;
}

.gs-chart-panel,
.gs-answer-section {
	background: #fff;
	border: 1px solid var(--gs-border);
	border-radius: 0.8rem;
	margin-top: 2rem;
	padding: clamp(1rem, 3vw, 2rem);
}

.gs-radar-layout {
	align-items: center;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(18rem, 1.15fr) minmax(16rem, 0.85fr);
}

.gs-radar {
	height: auto;
	margin: 0 auto;
	max-width: 34rem;
	overflow: visible;
	width: 100%;
}

.gs-indicator-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.25rem;
}

.gs-indicator-details section {
	padding: 0.9rem 1rem;
	border: 1px solid var(--gs-border);
	border-left: 0.3rem solid var(--gs-accent);
	border-radius: 0.6rem;
	background: #f7fbfe;
}

.gs-indicator-details h4 {
	margin: 0 0 0.7rem;
	color: var(--gs-accent);
}

.gs-indicator-details ul {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding-left: 1.2rem;
}

.gs-indicator-details li {
	padding-left: 0.15rem;
}

.gs-indicator-details li strong,
.gs-indicator-details li span {
	display: block;
}

.gs-indicator-details li span {
	margin-top: 0.15rem;
	color: var(--gs-muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

.gs-radar__grid,
.gs-radar__axis {
	fill: none;
	stroke: #bdd5e7;
	stroke-width: 1.2;
}

.gs-radar__value {
	fill: #0069b4;
	fill-opacity: 0.22;
	stroke: #0069b4;
	stroke-linejoin: round;
	stroke-width: 3;
}

.gs-radar__tag {
	fill: #0069b4;
}

.gs-radar__tag-text {
	fill: #fff;
	font-size: 13px;
	font-weight: 700;
	text-anchor: middle;
}

.gs-cluster-legend {
	counter-reset: cluster;
	display: grid;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gs-cluster-legend li {
	align-items: center;
	border-bottom: 1px solid #dce8f0;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 1fr auto;
	padding: 0.55rem 0;
}

.gs-cluster-legend li::before {
	background: #0069b4;
	border-radius: 50%;
	color: #fff;
	content: counter(list-item);
	font-size: 0.78rem;
	font-weight: 700;
	height: 1.55rem;
	line-height: 1.55rem;
	margin-right: 0.35rem;
	text-align: center;
	width: 1.55rem;
}

.gs-cluster-legend li {
	grid-template-columns: auto 1fr auto;
}

.gs-table-scroll {
	overflow-x: auto;
}

.gs-answer-table {
	border-collapse: collapse;
	font-size: 0.9rem;
	min-width: 52rem;
	width: 100%;
}

.gs-answer-table th,
.gs-answer-table td {
	border-bottom: 1px solid #dce8f0;
	padding: 0.8rem 0.7rem;
	text-align: left;
	vertical-align: top;
}

.gs-answer-table thead th {
	background: #0069b4;
	color: #fff;
	font-weight: 700;
}

.gs-answer-table tbody tr:nth-child(even) {
	background: #f4f9fc;
}

.gs-cluster-label {
	color: #0069b4;
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.gs-result-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0;
}

.gs-quick-win-list {
	display: grid;
	gap: 0.8rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gs-quick-win-list li {
	align-items: start;
	background: #f4f9fc;
	border-left: 0.3rem solid #0069b4;
	border-radius: 0.35rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr auto;
	padding: 1rem;
}

.gs-quick-win-list p {
	margin: 0.3rem 0 0;
}

.gs-quick-win-list span {
	background: #0069b4;
	border-radius: 999px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 0.3rem 0.65rem;
	white-space: nowrap;
}

.gs-action-section .gs-roadmap {
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.gs-action-section .gs-roadmap section {
	background: #f8fbfd;
	border-top: 0.25rem solid #0069b4;
}

.gs-action-section .gs-roadmap h4 {
	color: #004f88;
	margin: 0 0 0.7rem;
}

.gs-action-section .gs-roadmap ul {
	display: grid;
	gap: 0.7rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gs-action-section .gs-roadmap li {
	border-top: 1px solid #dce8f0;
	padding-top: 0.65rem;
}

.gs-action-section .gs-roadmap li:first-child {
	border-top: 0;
	padding-top: 0;
}

.gs-action-section .gs-roadmap li span {
	color: var(--gs-muted);
	display: block;
	font-size: 0.82rem;
	margin-top: 0.2rem;
}

.gs-empty {
	color: var(--gs-muted);
	font-size: 0.88rem;
	margin: 0;
}

/* Result layout follows the actual shortcode width, not only the viewport. */
.gs-result > *,
.gs-score-grid > *,
.gs-radar-layout > *,
.gs-indicator-details > *,
.gs-roadmap > *,
.gs-quick-win-list li > * {
	min-width: 0;
}

.gs-kpis p {
	display: grid;
	align-content: center;
	gap: 0.15rem;
	margin: 0;
	background: #f7fbfe;
}

.gs-kpis p strong {
	color: var(--gs-accent);
	font-size: clamp(1.65rem, 5cqi, 2.35rem);
	line-height: 1;
}

.gs-chart-panel,
.gs-answer-section,
.gs-legend-panel {
	overflow: hidden;
}

.gs-section-heading > div,
.gs-cluster-legend li span,
.gs-quick-win-list strong,
.gs-roadmap strong {
	min-width: 0;
	overflow-wrap: anywhere;
}

.gs-table-scroll:focus-visible {
	border-radius: 0.35rem;
	outline: 3px solid #f1b434;
	outline-offset: 3px;
}

.gs-answer-table {
	table-layout: fixed;
}

.gs-answer-table th:first-child {
	width: 7.5rem;
}

.gs-answer-table th:nth-child(3) {
	width: 11rem;
}

.gs-answer-table th:nth-child(4) {
	width: 32%;
}

@container gs-result (max-width: 50rem) {
	.gs-score-grid--module,
	.gs-radar-layout,
	.gs-indicator-details {
		grid-template-columns: minmax(0, 1fr);
	}

	.gs-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.55rem;
	}

	.gs-radar {
		max-width: min(100%, 30rem);
	}

	.gs-quick-win-list li {
		grid-template-columns: minmax(0, 1fr);
	}

	.gs-quick-win-list span {
		justify-self: start;
		white-space: normal;
	}

	.gs-action-section .gs-roadmap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gs-result-actions,
	.gs-result > form {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.gs-result-actions .gs-button,
	.gs-result > form .gs-button {
		width: 100%;
	}
}

@container gs-result (max-width: 42rem) {
	.gs-kpis,
	.gs-action-section .gs-roadmap {
		grid-template-columns: minmax(0, 1fr);
	}

	.gs-cluster-legend li {
		align-items: start;
		grid-template-columns: auto minmax(0, 1fr);
	}

	.gs-cluster-legend li strong {
		grid-column: 2;
	}

	.gs-table-scroll {
		overflow: visible;
	}

	.gs-answer-table {
		display: block;
		min-width: 0;
		table-layout: auto;
	}

	.gs-answer-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
	}

	.gs-answer-table tbody {
		display: grid;
		gap: 0.85rem;
	}

	.gs-answer-table tbody tr {
		display: block;
		padding: 0.8rem;
		border: 1px solid var(--gs-border);
		border-top: 0.25rem solid var(--gs-accent);
		border-radius: 0.6rem;
		background: #fff;
		box-shadow: 0 0.15rem 0.5rem rgba(0, 56, 96, 0.06);
	}

	.gs-answer-table tbody tr:nth-child(even) {
		background: #fff;
	}

	.gs-answer-table th,
	.gs-answer-table td,
	.gs-answer-table th:first-child,
	.gs-answer-table th:nth-child(3),
	.gs-answer-table th:nth-child(4) {
		display: block;
		width: 100%;
		padding: 0.55rem 0;
		border-bottom: 1px solid #dce8f0;
	}

	.gs-answer-table td:last-child {
		border-bottom: 0;
	}

	.gs-answer-table [data-label]::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 0.2rem;
		color: #004f88;
		font-size: 0.72rem;
		font-weight: 800;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}
}

@container gs-result (max-width: 30rem) {
	.gs-chart-panel,
	.gs-answer-section,
	.gs-legend-panel {
		padding: 0.75rem;
	}

	.gs-scale {
		max-width: 100%;
		white-space: normal;
	}

	.gs-indicator-details section,
	.gs-quick-win-list li,
	.gs-action-section .gs-roadmap section {
		padding: 0.75rem;
	}
}

@media (max-width: 760px) {
	.gs-assessment-layout {
		grid-template-columns: 1fr;
	}

	.gs-question-nav {
		position: static;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
	}

	.gs-question-nav ol {
		display: flex;
		min-width: max-content;
	}

	.gs-question-nav__item {
		width: 7.2rem;
	}

	.gs-score-grid--module,
	.gs-radar-layout,
	.gs-indicator-details {
		grid-template-columns: 1fr;
	}

	.gs-section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.gs-quick-win-list li {
		grid-template-columns: 1fr;
	}
}

.gs-kpis,
.gs-roadmap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	gap: 0.8rem;
}

.gs-kpis p,
.gs-roadmap section {
	padding: 0.8rem;
	border: 1px solid var(--gs-border);
	border-radius: 0.6rem;
}

.gs-legend-panel {
	margin-top: 1.25rem;
	padding: 1.25rem;
	border: 1px solid var(--gs-border);
	border-left: 0.3rem solid var(--gs-accent);
	border-radius: 0.75rem;
	background: #f7fbfe;
}

.gs-evaluation-legend {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
	margin: 0;
}

.gs-evaluation-legend div {
	padding: 0.9rem;
	border-radius: 0.6rem;
	background: #fff;
}

.gs-evaluation-legend dt {
	color: var(--gs-accent);
	font-weight: 700;
}

.gs-evaluation-legend dd {
	margin: 0.4rem 0 0;
	color: var(--gs-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.gs-metric-legend-list {
	display: grid;
	gap: 0.25rem;
	margin: 0;
	padding-left: 1.25rem;
}

.gs-metric-legend-list li {
	margin: 0;
}

.gs-evaluation-legend dd > p {
	margin: 0.65rem 0 0;
}

.gs-legend-note {
	margin: 1rem 0 0;
	font-size: 0.88rem;
	font-weight: 600;
}

.gs-flag-list {
	padding-left: 1.25rem;
}

@media (max-width: 960px) {
	.gs-result {
		padding: clamp(1.15rem, 3vw, 2rem);
	}

	.gs-radar-layout {
		grid-template-columns: 1fr;
	}

	.gs-radar {
		max-width: 30rem;
	}

	.gs-action-section .gs-roadmap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.gs-result {
		width: calc(100% - 1rem);
		margin: 0.5rem auto;
		padding: 0.9rem;
		border-radius: 0.75rem;
	}

	.gs-result h2 {
		font-size: clamp(1.75rem, 9vw, 2.35rem);
	}

	.gs-chart-panel,
	.gs-answer-section,
	.gs-legend-panel {
		margin-top: 1rem;
		padding: 0.9rem;
	}

	.gs-score-grid--module,
	.gs-kpis,
	.gs-indicator-details,
	.gs-action-section .gs-roadmap {
		grid-template-columns: minmax(0, 1fr);
	}

	.gs-section-heading {
		gap: 0.55rem;
		margin-bottom: 0.9rem;
	}

	.gs-scale {
		white-space: normal;
	}

	.gs-radar {
		max-width: 100%;
	}

	.gs-cluster-legend li {
		align-items: start;
		gap: 0.5rem;
		grid-template-columns: auto minmax(0, 1fr);
	}

	.gs-cluster-legend li strong {
		grid-column: 2;
	}

	.gs-indicator-details section,
	.gs-quick-win-list li,
	.gs-action-section .gs-roadmap section {
		padding: 0.8rem;
	}

	.gs-quick-win-list span {
		justify-self: start;
		white-space: normal;
	}

	.gs-table-scroll {
		overflow: visible;
	}

	.gs-answer-table {
		display: block;
		min-width: 0;
	}

	.gs-answer-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
	}

	.gs-answer-table tbody {
		display: grid;
		gap: 0.85rem;
	}

	.gs-answer-table tbody tr {
		display: block;
		padding: 0.75rem;
		border: 1px solid var(--gs-border);
		border-top: 0.25rem solid var(--gs-accent);
		border-radius: 0.6rem;
		background: #fff;
		box-shadow: 0 0.15rem 0.5rem rgba(0, 56, 96, 0.06);
	}

	.gs-answer-table tbody tr:nth-child(even) {
		background: #fff;
	}

	.gs-answer-table th,
	.gs-answer-table td {
		display: block;
		width: 100%;
		padding: 0.55rem 0;
		border-bottom: 1px solid #dce8f0;
	}

	.gs-answer-table td:last-child {
		border-bottom: 0;
	}

	.gs-answer-table [data-label]::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 0.2rem;
		color: #004f88;
		font-size: 0.72rem;
		font-weight: 800;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	.gs-result-actions,
	.gs-result > form {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.gs-result-actions .gs-button,
	.gs-result > form .gs-button {
		width: 100%;
	}
}

@media (min-width: 701px) and (max-width: 800px) {
	.gs-score-grid--module {
		grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1.2fr);
	}

	.gs-kpis,
	.gs-indicator-details,
	.gs-action-section .gs-roadmap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gs-result-actions {
		display: flex;
	}

	.gs-result-actions .gs-button {
		width: auto;
	}
}

@media (max-width: 400px) {
	.gs-result {
		width: 100%;
		margin: 0;
		padding: 0.75rem;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.gs-chart-panel,
	.gs-answer-section,
	.gs-legend-panel {
		padding: 0.75rem;
	}
}

@media print {
	.gs-actions,
	.gs-result form,
	[data-gs-print] {
		display: none !important;
	}

	.gs-score-card,
	.gs-roadmap section,
	.gs-chart-panel,
	.gs-legend-panel,
	.gs-answer-section {
		break-inside: avoid;
	}

	.gs-result-actions {
		display: none;
	}
}

.gs-progress progress {
	width: 100%;
	min-height: 0.75rem;
	accent-color: var(--gs-accent);
}

@media (prefers-reduced-motion: reduce) {
	.gs-app *,
	.gs-app *::before,
	.gs-app *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.gs-app {
		max-width: none;
		border: 0;
	}
}


/* CCZone design system — v3.6.0 */
.gs-app {
	--gs-accent: #2f6fae;
	--gs-accent-dark: #255d94;
	--gs-accent-soft: #eaf2f9;
	--gs-ink: #3b3b3b;
	--gs-muted: #64748b;
	--gs-surface: #f7f9fb;
	--gs-border: #d8e2ec;
	position: relative;
	isolation: isolate;
	max-width: 72rem;
	margin: clamp(1rem, 3vw, 2.5rem) auto;
	padding: clamp(2rem, 4.5vw, 3.75rem);
	overflow: hidden;
	border: 0;
	border-radius: 0.35rem;
	background: #fff;
	box-shadow: 0 1.5rem 4rem rgba(26, 32, 44, 0.12);
	color: var(--gs-ink);
	font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gs-app::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0 0 auto;
	height: 11.5rem;
	background: linear-gradient(110deg, #3276b7 0%, #2a659f 100%);
	clip-path: polygon(0 0, 100% 0, 100% 76%, 0 100%);
}

.gs-app::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 22rem;
	height: 11rem;
	opacity: 0.12;
	background: radial-gradient(circle at 20% 35%, #fff 0 2px, transparent 3px), radial-gradient(circle at 75% 62%, #fff 0 2px, transparent 3px);
	background-size: 3.5rem 3.5rem, 4.75rem 4.75rem;
}

.gs-app > .gs-eyebrow,
.gs-app > h2,
.gs-app > .gs-progress,
.gs-app.gs-auto-start > p {
	position: relative;
	z-index: 1;
	color: #fff;
}

.gs-eyebrow {
	margin-bottom: 0.7rem;
	font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.gs-app h2 {
	max-width: 52rem;
	margin-bottom: 2.5rem;
	font-family: Montserrat, sans-serif;
	font-size: clamp(2rem, 5vw, 3.35rem);
	font-weight: 400;
	line-height: 1.22;
	letter-spacing: -0.025em;
}

.gs-app h3,
.gs-app h4,
.gs-question legend,
.gs-question__legend {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	color: #2b3c4e;
}

.gs-progress {
	margin: 0.75rem 0 3rem;
}

.gs-progress progress {
	height: 0.55rem;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,0.3);
	accent-color: #fff;
}

.gs-progress progress::-webkit-progress-bar { border-radius: 999px; background: rgba(255,255,255,0.3); }
.gs-progress progress::-webkit-progress-value { border-radius: 999px; background: #fff; }
.gs-progress progress::-moz-progress-bar { border-radius: 999px; background: #fff; }

.gs-assessment-layout {
	gap: clamp(1.4rem, 3vw, 2.8rem);
	margin-top: 1.5rem;
}

.gs-question-nav {
	top: 1.25rem;
	padding: 1rem;
	border-color: var(--gs-border);
	border-radius: 0.35rem;
	background: #f7f9fb;
	box-shadow: 0 0.5rem 1.5rem rgba(37, 93, 148, 0.07);
}

.gs-question-nav__title {
	color: var(--gs-accent-dark);
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gs-question-nav__item {
	border-radius: 0.25rem;
	font-family: Montserrat, sans-serif;
	transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.gs-question-nav__item:hover { transform: translateX(0.15rem); }
.gs-question-nav__item.is-current { border-color: var(--gs-accent); background: var(--gs-accent); color: #fff; }
.gs-question-nav__item.is-answered:not(.is-current) { border-color: #9dbbd6; background: #edf4fa; }
.gs-question-nav__number { border-radius: 50%; }

.gs-question {
	padding: clamp(1.25rem, 3vw, 2.25rem);
	border: 1px solid var(--gs-border);
	border-top: 0.35rem solid var(--gs-accent);
	border-radius: 0.35rem;
	background: #fff;
	box-shadow: 0 0.9rem 2.2rem rgba(30, 64, 100, 0.08);
}

.gs-question legend,
.gs-question__legend { padding: 0; font-size: clamp(1.2rem, 2.5vw, 1.65rem); line-height: 1.4; }
.gs-question__code,
.gs-cluster-label,
.gs-scale {
	border-radius: 999px;
	background: var(--gs-accent-soft);
	color: var(--gs-accent-dark);
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.gs-help { color: var(--gs-muted); }
.gs-option {
	border: 1px solid var(--gs-border);
	border-radius: 0.3rem;
	background: #fff;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.gs-option:hover { border-color: #8eb2d3; box-shadow: 0 0.5rem 1.2rem rgba(37,93,148,0.08); transform: translateY(-1px); }
.gs-option:has(input:checked) { border-color: var(--gs-accent); background: var(--gs-accent-soft); box-shadow: inset 0.25rem 0 var(--gs-accent); }
.gs-option input { accent-color: var(--gs-accent); }

.gs-button {
	min-height: 2.9rem;
	padding: 0.75rem 1.45rem;
	border: 2px solid var(--gs-accent);
	border-radius: 0.2rem;
	background: var(--gs-accent);
	color: #fff;
	font-family: Montserrat, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.gs-button:hover { border-color: var(--gs-accent-dark); background: var(--gs-accent-dark); color: #fff; transform: translateY(-1px); }
.gs-button:focus-visible { outline: 3px solid #9bc3e7; outline-offset: 3px; }
.gs-button--secondary { background: transparent; color: var(--gs-accent-dark); }
.gs-button--secondary:hover { background: var(--gs-accent); color: #fff; }

.gs-notice,
.gs-error {
	border: 0;
	border-left: 0.35rem solid var(--gs-accent);
	border-radius: 0.15rem;
	background: var(--gs-accent-soft);
}

.gs-score-card,
.gs-kpis p,
.gs-chart-panel,
.gs-answer-section,
.gs-legend-panel,
.gs-indicator-details section,
.gs-roadmap section {
	border-color: var(--gs-border);
	border-radius: 0.35rem;
	background: #fff;
	box-shadow: 0 0.65rem 1.8rem rgba(30, 64, 100, 0.07);
}

.gs-score-card { border-top: 0.35rem solid var(--gs-accent); }
.gs-score-card--total strong { color: var(--gs-accent-dark); font-family: Montserrat, sans-serif; font-weight: 500; }
.gs-section-heading { border-bottom-color: var(--gs-border); }
.gs-section-heading .gs-eyebrow { color: var(--gs-accent); }
.gs-chart-panel,
.gs-answer-section,
.gs-legend-panel { border-top: 0.3rem solid var(--gs-accent); }
.gs-radar__value { fill: rgba(47,111,174,0.26); stroke: var(--gs-accent); }
.gs-radar__tag { fill: var(--gs-accent); }
.gs-answer-table thead { background: var(--gs-accent-dark); color: #fff; }
.gs-answer-table tbody tr:nth-child(even) { background: #f5f8fb; }
.gs-answer-table th,
.gs-answer-table td { border-color: var(--gs-border); }
.gs-table-scroll { border-radius: 0.25rem; border-color: var(--gs-border); }
.gs-result-actions { margin-top: 2rem; }

.gs-app details { border-color: var(--gs-border); border-radius: 0.3rem; background: #f7f9fb; }
.gs-app details summary { color: var(--gs-accent-dark); font-weight: 700; }

@media (max-width: 800px) {
	.gs-app,
	.gs-result {
		width: calc(100% - 1rem);
		margin: 0.5rem auto;
		padding: 1rem;
		border-radius: 0.3rem;
		box-shadow: 0 0.8rem 2rem rgba(26,32,44,0.1);
	}
	.gs-app::before { height: 12.5rem; clip-path: polygon(0 0,100% 0,100% 86%,0 100%); }
	.gs-app h2 { margin-bottom: 2.4rem; font-size: clamp(1.85rem,9vw,2.45rem); }
	.gs-progress { margin-bottom: 2.6rem; }
	.gs-assessment-layout { margin-top: 1rem; }
	.gs-question { padding: 1rem; }
	.gs-question legend,
	.gs-question__legend { padding: 0; }
	.gs-option { min-height: 3.1rem; }
	.gs-button { width: 100%; }
	.gs-chart-panel,
	.gs-answer-section,
	.gs-legend-panel { padding: 1rem; }
	.gs-answer-table tbody tr { border-top-color: var(--gs-accent); border-radius: 0.3rem; }
}

@media print {
	.gs-app::before,
	.gs-app::after { display: none; }
	.gs-app > .gs-eyebrow,
	.gs-app > h2,
	.gs-app > .gs-progress { color: #000; }
	.gs-app { box-shadow: none; }
}

/* Restore the original, neutral header while retaining the current content design. */
.gs-app {
	font-family: inherit;
}

.gs-app::before,
.gs-app::after {
	display: none;
}

.gs-app > .gs-eyebrow,
.gs-app > h2,
.gs-app > .gs-progress,
.gs-app.gs-auto-start > p {
	color: inherit;
}

.gs-app > .gs-eyebrow {
	margin: 0 0 0.5rem;
	color: #0069b4;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.gs-app > h2 {
	max-width: none;
	margin: 0 0 1rem;
	color: var(--gs-ink);
	font-family: inherit;
	font-size: clamp(2rem, 7vw, 3.5rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: normal;
}

.gs-app > .gs-progress {
	margin: 0 0 1.25rem;
	color: var(--gs-ink);
}

.gs-app > .gs-progress progress {
	height: auto;
	min-height: 0.75rem;
	background: var(--gs-surface);
	accent-color: #0069b4;
}

.gs-app > .gs-progress progress::-webkit-progress-bar {
	background: var(--gs-surface);
}

.gs-app > .gs-progress progress::-webkit-progress-value,
.gs-app > .gs-progress progress::-moz-progress-bar {
	background: #0069b4;
}

@media (max-width: 800px) {
	.gs-app > h2 {
		margin-bottom: 1rem;
		font-size: clamp(1.75rem, 9vw, 2.35rem);
	}

	.gs-app > .gs-progress {
		margin-bottom: 1.25rem;
	}
}
