.s92-service-scope {
	--s92-service-scope-columns: 3;
	--s92-service-scope-surface: var(--s92-section-surface);
	--s92-service-scope-header: color-mix(in srgb, var(--s92-section-surface) 94%, var(--s92-section-accent));
	--s92-service-scope-line: var(--s92-section-line);
	--s92-service-scope-card-border: var(--s92-service-scope-line);
	--s92-service-scope-featured-surface: color-mix(in srgb, var(--s92-service-scope-surface) 95%, var(--s92-section-accent));
	--s92-service-scope-featured-border: color-mix(in srgb, var(--s92-section-accent) 78%, var(--s92-service-scope-line));
	--s92-service-scope-hover-surface: color-mix(in srgb, var(--s92-service-scope-surface) 96%, var(--s92-section-accent));
	--s92-service-scope-hover-border: color-mix(in srgb, var(--s92-section-accent) 58%, var(--s92-service-scope-line));
	--s92-service-scope-intro-eyebrow: var(--s92-section-text);
	--s92-service-scope-intro-title: var(--s92-section-text);
	--s92-service-scope-intro-description: var(--s92-section-muted);
	--s92-service-scope-icon: var(--s92-section-accent);
	--s92-service-scope-icon-bg: color-mix(in srgb, var(--s92-section-accent) 16%, transparent);
	--s92-service-scope-heading: var(--s92-section-text);
	--s92-service-scope-item: var(--s92-section-muted);
	--s92-service-scope-item-hover: var(--s92-section-text);
	--s92-service-scope-count-bg: color-mix(in srgb, var(--s92-section-accent) 14%, transparent);
	--s92-service-scope-count-text: color-mix(in srgb, var(--s92-section-text) 82%, var(--s92-section-accent));
	--s92-service-scope-badge-bg: var(--s92-section-accent);
	--s92-service-scope-badge-text: var(--s92-section-on-accent);
	--s92-service-scope-toggle-bg: color-mix(in srgb, var(--s92-section-accent) 8%, transparent);
	--s92-service-scope-toggle-text: var(--s92-section-text);
	--s92-service-scope-toggle-count: var(--s92-section-accent);
	--s92-service-scope-toggle-border: color-mix(in srgb, var(--s92-section-accent) 52%, var(--s92-service-scope-line));
	--s92-service-scope-toggle-hover-bg: var(--s92-section-accent);
	--s92-service-scope-toggle-hover-text: var(--s92-section-on-accent);
	--s92-service-scope-toggle-hover-border: var(--s92-section-accent);
	--s92-service-scope-focus: var(--s92-section-accent);
	--s92-service-scope-arrow-bg: var(--s92-service-scope-surface);
	--s92-service-scope-arrow-text: var(--s92-section-text);
	--s92-service-scope-arrow-border: var(--s92-service-scope-line);
	--s92-service-scope-arrow-hover-bg: var(--s92-section-accent);
	--s92-service-scope-arrow-hover-text: var(--s92-section-on-accent);
	--s92-service-scope-progress: var(--s92-section-accent);
	--s92-service-scope-progress-track: var(--s92-service-scope-line);
	--s92-service-scope-scrollbar: var(--s92-section-accent);
	--s92-service-scope-gap: 18px;
	--s92-service-scope-radius: 10px;
	--s92-service-scope-pad-top: clamp(22px, 3vw, 32px);
	--s92-service-scope-pad-right: clamp(22px, 3vw, 32px);
	--s92-service-scope-pad-bottom: clamp(22px, 3vw, 32px);
	--s92-service-scope-pad-left: clamp(22px, 3vw, 32px);
	--s92-service-scope-mobile-card-height: 460px;
	--s92-service-scope-mobile-peek: 38px;
	--s92-service-scope-sticky-offset: 72px;
}

.s92-service-scope .s92-section__intro {
	max-width: 100%;
}

.s92-service-scope .s92-section__eyebrow {
	color: var(--s92-service-scope-intro-eyebrow);
}

.s92-service-scope .s92-section__title {
	width: max-content;
	max-width: 100%;
	overflow-wrap: anywhere;
	color: var(--s92-service-scope-intro-title);
	text-wrap: wrap;
}

.s92-service-scope .s92-section__description {
	color: var(--s92-service-scope-intro-description);
}

.s92-service-scope__viewport {
	min-width: 0;
	overflow: visible;
}

.s92-service-scope__track {
	display: grid;
	grid-template-columns: repeat(var(--s92-service-scope-columns), minmax(0, 1fr));
	gap: var(--s92-service-scope-gap);
}

.s92-service-scope__group {
	position: relative;
	display: grid;
	min-width: 0;
	grid-template-rows: auto minmax(0, 1fr);
	padding: var(--s92-service-scope-pad-top) var(--s92-service-scope-pad-right) var(--s92-service-scope-pad-bottom) var(--s92-service-scope-pad-left);
	overflow: clip;
	border-radius: var(--s92-service-scope-radius);
	background: var(--s92-service-scope-surface);
	box-shadow: inset 0 0 0 1px var(--s92-service-scope-card-border);
	animation: s92-scope-arrive 520ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
	transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.s92-service-scope__group--featured {
	padding-top: calc(var(--s92-service-scope-pad-top) + 10px);
	background: var(--s92-service-scope-featured-surface);
	box-shadow: inset 0 0 0 2px var(--s92-service-scope-featured-border);
}

.s92-service-scope__group--featured::before {
	display: none;
}

.s92-service-scope__featured-label {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 3;
	max-width: calc(100% - 40px);
	padding: 7px 12px 8px;
	overflow: hidden;
	border-radius: 0 0 7px 7px;
	background: var(--s92-service-scope-badge-bg);
	color: var(--s92-service-scope-badge-text);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	text-overflow: ellipsis;
	text-transform: uppercase;
	transform: translateX(-50%);
	white-space: nowrap;
}

.s92-service-scope__group:nth-child(2) {
	animation-delay: 55ms;
}

.s92-service-scope__group:nth-child(3) {
	animation-delay: 110ms;
}

.s92-service-scope__group:nth-child(4) {
	animation-delay: 165ms;
}

.s92-service-scope__group:nth-child(n + 5) {
	animation-delay: 220ms;
}

.s92-service-scope__group::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 42px;
	height: 42px;
	background: color-mix(in srgb, var(--s92-service-scope-icon) 74%, transparent);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	content: "";
	pointer-events: none;
}

.s92-service-scope__group-head {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 18px;
	box-shadow: inset 0 -1px 0 var(--s92-service-scope-line);
}

.s92-service-scope__mark {
	position: relative;
	width: 18px;
	height: 18px;
	border: 1px solid var(--s92-service-scope-icon);
	background: var(--s92-service-scope-icon-bg);
	transition: background-color 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.s92-service-scope__mark::before,
.s92-service-scope__mark::after {
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--s92-service-scope-icon);
	content: "";
	transform: translate(-50%, -50%);
}

.s92-service-scope__mark::before {
	width: 8px;
	height: 2px;
}

.s92-service-scope__mark::after {
	width: 2px;
	height: 8px;
}

.s92-service-scope__heading,
.s92-service-scope__count {
	margin: 0;
}

.s92-service-scope__heading {
	color: var(--s92-service-scope-heading);
	font-size: clamp(1.12rem, 1.65vw, 1.42rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.18;
	text-wrap: balance;
}

.s92-service-scope__count {
	padding: 6px 9px;
	border-radius: 999px;
	background: var(--s92-service-scope-count-bg);
	color: var(--s92-service-scope-count-text);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.s92-service-scope__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	min-height: 0;
}

.s92-service-scope__list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.s92-service-scope__item {
	position: relative;
	min-width: 0;
	padding: 14px 4px 14px 24px;
	box-shadow: inset 0 1px 0 var(--s92-service-scope-line);
	color: var(--s92-service-scope-item);
	font-size: 0.98rem;
	line-height: 1.55;
	text-wrap: pretty;
	transition: color 180ms ease, padding-left 180ms ease;
}

.s92-service-scope__item:first-child {
	box-shadow: none;
}

.s92-service-scope__item[hidden] {
	display: none;
}

.s92-service-scope__item::before {
	position: absolute;
	top: 1.35em;
	left: 3px;
	width: 8px;
	height: 8px;
	border: 2px solid var(--s92-service-scope-icon);
	content: "";
	transform: rotate(45deg);
	transition: background-color 180ms ease, transform 180ms ease;
}

.s92-service-scope__toggle {
	appearance: none;
	display: none;
	width: 100%;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	padding: 10px 14px;
	border: 1px solid var(--s92-service-scope-toggle-border);
	border-radius: 8px;
	background: var(--s92-service-scope-toggle-bg);
	color: var(--s92-service-scope-toggle-text);
	font: inherit;
	font-size: 0.8rem;
	font-weight: 850;
	letter-spacing: 0.015em;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.s92-service-scope__group.is-list-collapsible .s92-service-scope__toggle {
	display: flex;
}

.s92-service-scope__toggle-count {
	color: var(--s92-service-scope-toggle-count);
	font-variant-numeric: tabular-nums;
}

.s92-service-scope__toggle svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: square;
	stroke-linejoin: miter;
	stroke-width: 1.8;
	transition: transform 180ms ease;
}

.s92-service-scope__group.is-list-expanded .s92-service-scope__toggle svg {
	transform: rotate(180deg);
}

.s92-service-scope__toggle:focus-visible,
.s92-service-scope__arrow:focus-visible {
	outline: 2px solid var(--s92-service-scope-focus);
	outline-offset: 3px;
}

.s92-service-scope__carousel-nav {
	display: none;
}

@media (hover: hover) and (pointer: fine) {
	.s92-service-scope__group:hover {
		background: var(--s92-service-scope-hover-surface);
		box-shadow: inset 0 0 0 1px var(--s92-service-scope-hover-border);
		transform: translateY(-3px);
	}

	.s92-service-scope__toggle:hover {
		border-color: var(--s92-service-scope-toggle-hover-border);
		background: var(--s92-service-scope-toggle-hover-bg);
		color: var(--s92-service-scope-toggle-hover-text);
	}

	.s92-service-scope__toggle:hover .s92-service-scope__toggle-count {
		color: currentcolor;
	}

	.s92-service-scope__group:hover .s92-service-scope__mark {
		background: color-mix(in srgb, var(--s92-service-scope-icon) 26%, transparent);
		transform: rotate(45deg);
	}

	.s92-service-scope__item:hover {
		padding-left: 28px;
		color: var(--s92-service-scope-item-hover);
	}

	.s92-service-scope__item:hover::before {
		background: var(--s92-service-scope-icon);
		transform: rotate(90deg);
	}
}

@media (min-width: 768px) {
	.s92-service-scope__track {
		padding: 12px 1px 4px;
	}

	.s92-service-scope__group--featured {
		transform: translateY(-8px);
	}
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
	.s92-service-scope__group--featured:hover {
		box-shadow: inset 0 0 0 2px var(--s92-service-scope-hover-border);
		transform: translateY(-11px);
	}
}

@media (max-width: 767px) {
	.s92-service-scope__track {
		grid-template-columns: 1fr;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__viewport {
		padding: 3px 1px 10px;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-x: contain;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__viewport::-webkit-scrollbar {
		display: none;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__track {
		display: flex;
		width: 100%;
		gap: var(--s92-service-scope-gap);
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__group {
		flex: 0 0 calc(100% - var(--s92-service-scope-mobile-peek));
		max-width: 430px;
		height: var(--s92-service-scope-mobile-card-height);
		padding: 0;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__group--featured,
	.s92-service-scope[data-s92-mobile-layout="stack"] .s92-service-scope__group--featured {
		padding-top: 0;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__group.is-active {
		box-shadow: inset 0 0 0 2px var(--s92-service-scope-featured-border);
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__group-head,
	.s92-service-scope[data-s92-mobile-layout="stack"] .s92-service-scope__group-head {
		margin: 0;
		padding: 20px var(--s92-service-scope-pad-right) 18px var(--s92-service-scope-pad-left);
		background: var(--s92-service-scope-header);
		box-shadow: inset 0 -1px 0 var(--s92-service-scope-line);
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__group--featured .s92-service-scope__group-head,
	.s92-service-scope[data-s92-mobile-layout="stack"] .s92-service-scope__group--featured .s92-service-scope__group-head {
		padding-top: 38px;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__body {
		padding: 2px var(--s92-service-scope-pad-right) var(--s92-service-scope-pad-bottom) var(--s92-service-scope-pad-left);
		overflow-y: auto;
		overscroll-behavior: contain;
		scrollbar-color: var(--s92-service-scope-scrollbar) transparent;
		scrollbar-gutter: stable;
		scrollbar-width: thin;
		touch-action: pan-y;
		-webkit-overflow-scrolling: touch;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__body::-webkit-scrollbar {
		width: 5px;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__body::-webkit-scrollbar-thumb {
		border-radius: 999px;
		background: var(--s92-service-scope-scrollbar);
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"].is-carousel-ready .s92-service-scope__carousel-nav {
		display: grid;
		grid-template-columns: 46px minmax(0, 1fr) 46px;
		align-items: center;
		gap: 14px;
		margin-top: 16px;
	}

	.s92-service-scope__arrow {
		appearance: none;
		display: grid;
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid var(--s92-service-scope-arrow-border);
		border-radius: 8px;
		background: var(--s92-service-scope-arrow-bg);
		color: var(--s92-service-scope-arrow-text);
		cursor: pointer;
		place-items: center;
		transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
	}

	.s92-service-scope__arrow svg {
		width: 20px;
		height: 20px;
		fill: none;
		stroke: currentcolor;
		stroke-linecap: square;
		stroke-linejoin: miter;
		stroke-width: 1.75;
	}

	.s92-service-scope__arrow:active:not(:disabled) {
		transform: scale(0.96);
	}

	.s92-service-scope__arrow:disabled {
		cursor: default;
		opacity: 0.35;
	}

	.s92-service-scope__carousel-position {
		display: grid;
		grid-template-columns: auto minmax(48px, 1fr);
		align-items: center;
		gap: 12px;
	}

	.s92-service-scope__status {
		color: var(--s92-service-scope-arrow-text);
		font-size: 0.76rem;
		font-variant-numeric: tabular-nums;
		font-weight: 800;
		white-space: nowrap;
	}

	.s92-service-scope__progress {
		position: relative;
		display: block;
		height: 2px;
		overflow: hidden;
		background: var(--s92-service-scope-progress-track);
	}

	.s92-service-scope__progress > span {
		display: block;
		width: 100%;
		height: 100%;
		background: var(--s92-service-scope-progress);
		transform: scaleX(0);
		transform-origin: left center;
		transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
	}

	.s92-service-scope[data-s92-mobile-layout="stack"] .s92-service-scope__group {
		padding: 0;
		overflow: visible;
	}

	.s92-service-scope[data-s92-mobile-layout="stack"] .s92-service-scope__group-head {
		position: sticky;
		top: var(--s92-service-scope-sticky-offset);
		border-radius: var(--s92-service-scope-radius) var(--s92-service-scope-radius) 0 0;
	}

	.s92-service-scope[data-s92-mobile-layout="stack"] .s92-service-scope__body {
		padding: 2px var(--s92-service-scope-pad-right) var(--s92-service-scope-pad-bottom) var(--s92-service-scope-pad-left);
	}
}

@media (hover: hover) and (pointer: fine) and (max-width: 767px) {
	.s92-service-scope__arrow:hover:not(:disabled) {
		background: var(--s92-service-scope-arrow-hover-bg);
		color: var(--s92-service-scope-arrow-hover-text);
	}
}

@media (max-width: 360px) {
	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__group {
		flex-basis: calc(100% - min(var(--s92-service-scope-mobile-peek), 24px));
	}

	.s92-service-scope__count {
		padding: 5px 7px;
		font-size: 0.68rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.s92-service-scope__group {
		animation: none;
	}

	.s92-service-scope[data-s92-mobile-layout="carousel"] .s92-service-scope__viewport {
		scroll-behavior: auto;
	}
}

@keyframes s92-scope-arrive {
	from {
		opacity: 0.68;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
