@font-face {
	font-family: "Vysio Product Sans";
	src: url("../fonts/product-sans-regular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

/* Blog and editorial content. */
.blog-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 560px;
	padding: calc(var(--header) + 76px) 0 78px;
	overflow: hidden;
	background: var(--graphite);
	color: var(--white);
}

.blog-hero__media,
.blog-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.blog-hero__media {
	object-fit: cover;
	object-position: center;
	opacity: 0.78;
}

.blog-hero__overlay {
	background:
		linear-gradient(90deg, rgba(16, 22, 29, 0.97) 0%, rgba(16, 22, 29, 0.88) 48%, rgba(37, 45, 55, 0.34) 100%),
		linear-gradient(0deg, rgba(16, 22, 29, 0.82), transparent 62%);
}

.blog-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 64px;
	align-items: center;
}

.blog-hero__copy {
	max-width: 790px;
}

.blog-hero h1 {
	max-width: 800px;
	font-size: clamp(1.95rem, 3.05vw, 2.95rem);
}

.blog-hero__copy > p:not(.section-kicker) {
	max-width: 650px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1rem;
	line-height: 1.65;
}

.blog-hero__signal {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: end;
	min-height: 210px;
	padding-bottom: 16px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	text-align: center;
}

.blog-hero__signal::before,
.blog-hero__signal::after,
.blog-hero__signal-ring {
	position: absolute;
	left: 50%;
	top: 42%;
	width: 142px;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	content: "";
}

.blog-hero__signal::before {
	transform: translate(-112%, -50%);
}

.blog-hero__signal-ring {
	transform: translate(-50%, -50%);
}

.blog-hero__signal::after {
	transform: translate(12%, -50%);
}

.blog-hero__signal > span:not(.blog-hero__signal-ring) {
	position: relative;
	z-index: 1;
}

.blog-index {
	background: #eef0ef;
	color: var(--ink);
}

.blog-index__toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
	gap: 48px;
	align-items: end;
	margin-bottom: 30px;
}

.blog-index__toolbar h2 {
	max-width: 660px;
}

.blog-search {
	display: grid;
	grid-template-columns: 1fr 46px;
	height: 48px;
	border: 1px solid rgba(23, 29, 36, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.78);
}

.blog-search input {
	min-width: 0;
	padding: 0 16px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ink);
	font-family: var(--font);
	font-size: 14px;
}

.blog-search input::placeholder {
	color: rgba(23, 29, 36, 0.48);
}

.blog-search button {
	display: grid;
	place-items: center;
	border: 0;
	border-left: 1px solid rgba(23, 29, 36, 0.12);
	background: transparent;
	color: var(--blue);
	cursor: pointer;
}

.blog-search .icon {
	width: 20px;
	height: 20px;
}

.blog-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 34px;
}

.blog-topics a {
	padding: 8px 13px;
	border: 1px solid rgba(23, 29, 36, 0.15);
	border-radius: 999px;
	color: rgba(23, 29, 36, 0.66);
	font-size: 13px;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.blog-topics a:hover,
.blog-topics a.is-current {
	border-color: var(--blue);
	background: var(--blue);
	color: var(--white);
}

.blog-topics .blog-topic--executive-search:hover,
.blog-topics .blog-topic--executive-search.is-current {
	border-color: var(--green);
	background: var(--green);
}

.blog-topics .blog-topic--cultura-e-lideranca:hover,
.blog-topics .blog-topic--cultura-e-lideranca.is-current {
	border-color: var(--purple);
	background: var(--purple);
}

.blog-topics .blog-topic--transicao-executiva:hover,
.blog-topics .blog-topic--transicao-executiva.is-current {
	border-color: var(--copper);
	background: var(--copper);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 22px;
}

.blog-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 500px;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(23, 29, 36, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 18px 48px rgba(23, 29, 36, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-grid > .blog-card {
	height: 100%;
}

.blog-card:hover {
	border-color: rgba(32, 68, 111, 0.34);
	box-shadow: 0 24px 58px rgba(23, 29, 36, 0.1);
	transform: translateY(-3px);
}

.blog-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--graphite);
}

.blog-card__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 52%, rgba(16, 22, 29, 0.4));
	content: "";
}

.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card__media img {
	transform: scale(1.025);
}

.blog-card__media--fallback img {
	filter: saturate(0.82) contrast(1.04);
}

.blog-card__lens {
	position: absolute;
	right: -24px;
	bottom: -24px;
	z-index: 1;
	width: 92px;
	height: 92px;
	border: 1px solid rgba(255, 255, 255, 0.54);
	border-radius: 50%;
}

.blog-card__content {
	display: flex;
	min-height: 0;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.blog-card__category {
	width: fit-content;
	margin-bottom: 13px;
	color: var(--copper);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.blog-card__title {
	font-size: 22px;
	line-height: 1.15;
}

.blog-card__title a {
	font-weight: 700;
}

.blog-card__excerpt {
	margin-top: 14px;
	color: rgba(23, 29, 36, 0.66);
	font-size: 14px;
	line-height: 1.58;
}

.blog-card__footer {
	display: grid;
	gap: 16px;
	margin-top: auto;
	padding-top: 24px;
}

.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	color: rgba(23, 29, 36, 0.48);
	font-size: 12px;
}

.blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	color: var(--blue);
	font-size: 14px;
	font-weight: 700;
}

.blog-card__link .icon {
	width: 18px;
	height: 18px;
	transition: transform 160ms ease;
}

.blog-card__link:hover .icon {
	transform: translateX(3px);
}

.blog-card--featured {
	grid-column: span 2;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	min-height: 430px;
}

.blog-card--featured .blog-card__media {
	height: 100%;
	aspect-ratio: auto;
}

.blog-card--featured .blog-card__content {
	padding: 34px;
}

.blog-card--featured .blog-card__title {
	font-size: 30px;
}

.blog-card--featured .blog-card__excerpt {
	font-size: 15px;
}

.blog-pagination {
	margin-top: 48px;
}

.blog-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-pagination a,
.blog-pagination span.current {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid rgba(23, 29, 36, 0.15);
	border-radius: 8px;
	font-size: 14px;
}

.blog-pagination span.current,
.blog-pagination a:hover {
	border-color: var(--blue);
	background: var(--blue);
	color: var(--white);
}

.blog-empty {
	display: grid;
	justify-items: start;
	max-width: 760px;
	padding: 56px 0 18px;
	border-top: 1px solid rgba(23, 29, 36, 0.14);
}

.blog-empty .icon {
	margin-bottom: 22px;
	color: var(--copper);
}

.blog-empty p {
	max-width: 620px;
	margin: 16px 0 26px;
	color: rgba(23, 29, 36, 0.64);
}

.blog-cta {
	position: relative;
	overflow: hidden;
	padding: 64px 0;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1.4px) 82% 20% / 28px 28px,
		linear-gradient(125deg, var(--graphite) 0%, #1a3037 58%, #173f3d 100%);
	color: var(--white);
}

.blog-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr) auto;
	gap: 44px;
	align-items: center;
}

.blog-cta h2 {
	max-width: 600px;
}

.blog-cta__inner > p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
}

.blog-cta .button {
	white-space: nowrap;
}

.article-progress {
	position: fixed;
	left: 0;
	right: 0;
	top: var(--header);
	z-index: 99;
	height: 3px;
	background: rgba(255, 255, 255, 0.08);
}

.article-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--copper);
	transition: width 80ms linear;
}

.article-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 650px;
	padding: calc(var(--header) + 74px) 0 82px;
	overflow: hidden;
	background: var(--graphite);
	color: var(--white);
}

.article-hero__media,
.article-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.article-hero__media {
	object-fit: cover;
	filter: saturate(0.82) contrast(1.04);
}

.article-hero__overlay {
	background:
		linear-gradient(90deg, rgba(16, 22, 29, 0.97) 0%, rgba(16, 22, 29, 0.88) 55%, rgba(16, 22, 29, 0.42) 100%),
		linear-gradient(0deg, rgba(16, 22, 29, 0.9), transparent 66%);
}

.article-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 940px;
}

.article-breadcrumb {
	display: flex;
	gap: 9px;
	margin-bottom: 42px;
	color: rgba(255, 255, 255, 0.54);
	font-size: 13px;
}

.article-breadcrumb a:hover {
	color: var(--white);
}

.article-hero__category {
	display: inline-block;
	margin-bottom: 18px;
	color: #d88a62;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.article-hero h1 {
	max-width: 900px;
	font-size: 48px;
}

.article-hero__excerpt {
	max-width: 760px;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 17px;
	line-height: 1.62;
}

.article-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-top: 30px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
}

.article-hero__meta > * + * {
	position: relative;
}

.article-hero__meta > * + *::before {
	position: absolute;
	left: -13px;
	content: "•";
}

.article-page {
	padding: 88px 0 96px;
	background: #f6f7f6;
	color: var(--ink);
}

.article-page__layout {
	display: grid;
	grid-template-columns: 92px minmax(0, 760px) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.article-share {
	position: sticky;
	top: calc(var(--header) + 34px);
	display: grid;
	justify-items: start;
	gap: 9px;
}

.article-share__label {
	margin-bottom: 4px;
	color: rgba(23, 29, 36, 0.5);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.article-share a,
.article-share button {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(23, 29, 36, 0.16);
	border-radius: 50%;
	background: transparent;
	color: var(--ink);
	font-family: var(--font);
	font-size: 12px;
	cursor: pointer;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.article-share a:hover,
.article-share button:hover,
.article-share button.is-copied {
	border-color: var(--blue);
	background: var(--blue);
	color: var(--white);
}

.article-share .icon {
	width: 18px;
	height: 18px;
}

.article-share .icon--linkedin svg,
.article-share .icon--whatsapp svg {
	fill: currentColor;
	stroke: none;
}

.article-content {
	grid-column: 2;
	max-width: 760px;
	font-size: 17px;
	line-height: 1.78;
}

.article-content > *:first-child {
	margin-top: 0;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content figure,
.article-content table,
.article-content .wp-block-embed {
	margin: 0 0 28px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	margin: 54px 0 20px;
	color: var(--graphite);
}

.article-content h2 {
	font-size: 30px;
}

.article-content h3 {
	font-size: 23px;
}

.article-content h4 {
	font-size: 18px;
}

.article-content ul,
.article-content ol {
	padding-left: 24px;
}

.article-content li + li {
	margin-top: 9px;
}

.article-content a:not(.button) {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-content blockquote {
	padding: 8px 0 8px 28px;
	border-left: 3px solid var(--copper);
	color: var(--graphite);
	font-size: 23px;
	font-weight: 400;
	line-height: 1.5;
}

.article-content img {
	width: auto;
	height: auto;
	border-radius: 8px;
}

.article-content figcaption {
	margin-top: 9px;
	color: rgba(23, 29, 36, 0.5);
	font-size: 12px;
	text-align: left;
}

.article-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.article-content th,
.article-content td {
	padding: 12px;
	border: 1px solid rgba(23, 29, 36, 0.14);
	text-align: left;
}

.article-content th {
	background: rgba(32, 68, 111, 0.08);
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 58px;
	padding-top: 24px;
	border-top: 1px solid rgba(23, 29, 36, 0.14);
}

.article-tags a {
	padding: 7px 11px;
	border: 1px solid rgba(23, 29, 36, 0.14);
	border-radius: 999px;
	color: rgba(23, 29, 36, 0.62);
	font-size: 12px;
	text-decoration: none;
}

.article-navigation {
	padding: 40px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--graphite);
	color: var(--white);
}

.article-navigation__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
}

.article-navigation__item {
	display: grid;
	gap: 8px;
	max-width: 480px;
}

.article-navigation__item--next {
	justify-self: end;
	text-align: right;
}

.article-navigation__item span {
	color: var(--copper);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.article-navigation__item strong {
	font-size: 17px;
	line-height: 1.35;
}

@media (max-width: 1040px) {
	.blog-hero__inner {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 36px;
	}

	.blog-hero__signal::before,
	.blog-hero__signal::after,
	.blog-hero__signal-ring {
		width: 112px;
	}

	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blog-card--featured {
		grid-column: 1 / -1;
	}

	.blog-cta__inner {
		grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
	}

	.blog-cta .button {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.article-page__layout {
		grid-template-columns: 64px minmax(0, 760px);
	}
}

@media (max-width: 760px) {
	.blog-hero {
		min-height: 520px;
		padding: calc(var(--header) + 58px) 0 58px;
	}

	.blog-hero__inner {
		grid-template-columns: 1fr;
	}

	.blog-hero h1 {
		font-size: clamp(1.95rem, 3.05vw, 2.95rem);
	}

	.blog-hero__signal {
		display: none;
	}

	.blog-index__toolbar,
	.blog-cta__inner {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.blog-search {
		width: 100%;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.blog-card--featured {
		display: flex;
		grid-column: auto;
		min-height: 500px;
	}

	.blog-card--featured .blog-card__media {
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.blog-card--featured .blog-card__content {
		padding: 24px;
	}

	.blog-card--featured .blog-card__title {
		font-size: 24px;
	}

	.article-hero {
		min-height: 600px;
		padding: calc(var(--header) + 50px) 0 62px;
	}

	.article-hero h1 {
		font-size: 36px;
	}

	.article-breadcrumb {
		margin-bottom: 30px;
	}

	.article-page {
		padding: 64px 0 72px;
	}

	.article-page__layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.article-share {
		position: static;
		display: flex;
		grid-row: 2;
		align-items: center;
	}

	.article-share__label {
		margin: 0 6px 0 0;
	}

	.article-content {
		grid-column: 1;
		grid-row: 1;
		font-size: 16px;
	}

	.article-content h2 {
		font-size: 27px;
	}

	.article-navigation__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.article-navigation__item--next {
		justify-self: start;
		text-align: left;
	}

}

@media (max-width: 480px) {
	.blog-hero__copy {
		transform: translateY(18px);
	}

	.article-hero h1 {
		font-size: 30px;
	}

	.article-hero__excerpt {
		font-size: 15px;
	}

	.blog-topics {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 6px;
		scrollbar-width: none;
	}

	.blog-topics::-webkit-scrollbar {
		display: none;
	}

	.blog-topics a {
		flex: 0 0 auto;
	}

	.blog-card {
		min-height: 470px;
	}

	.blog-card__title,
	.blog-card--featured .blog-card__title {
		font-size: 22px;
	}

	.article-hero__meta {
		display: grid;
		gap: 7px;
	}

	.article-hero__meta > * + *::before {
		display: none;
	}

	.article-content blockquote {
		padding-left: 20px;
		font-size: 20px;
	}
}

@font-face {
	font-family: "Vysio Product Sans";
	src: url("../fonts/product-sans-bold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

:root {
	--ink: #171d24;
	--ink-2: #10161d;
	--graphite: #252d37;
	--graphite-soft: #303945;
	--paper: #f4f1ed;
	--paper-2: #e9e4dd;
	--white: #ffffff;
	--blue: #20446f;
	--blue-soft: #dceaf1;
	--green: #275d5b;
	--green-deep: #173f3d;
	--copper: #ad6845;
	--copper-deep: #6f3b27;
	--purple: #68569f;
	--line-dark: rgba(255, 255, 255, 0.14);
	--line-light: rgba(23, 29, 36, 0.14);
	--shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
	--font: "Google Sans", "Vysio Product Sans", "Product Sans", "Inter", "Segoe UI", Arial, sans-serif;
	--container: 1180px;
	--header: 76px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font);
	font-optical-sizing: auto;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.58;
	letter-spacing: 0.5px;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	font-synthesis: none;
	font-variation-settings: "GRAD" 0;
}

body.nav-open {
	overflow: hidden;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.72s ease,
		transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote {
	margin: 0;
}

p,
li,
a,
button,
input,
textarea,
select {
	font-weight: 400;
}

h1,
h2,
h3 {
	line-height: 1.06;
	letter-spacing: 0.5px;
}

h1 {
	font-size: clamp(2.05rem, 3.4vw, 3.28rem);
	font-weight: 700;
}

h2 {
	font-size: clamp(1.55rem, 2.25vw, 2.28rem);
	font-weight: 700;
}

h3 {
	font-size: clamp(1.05rem, 1.25vw, 1.25rem);
	font-weight: 700;
}

.container {
	width: min(var(--container), calc(100% - 48px));
	margin-inline: auto;
}

.site-main {
	background: var(--ink);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 14px;
	border-radius: 4px;
	background: var(--copper);
	color: var(--white);
	transform: translateY(-150%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(16, 22, 29, 0.84);
	backdrop-filter: blur(22px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 28px;
}

.site-header__logo {
	position: relative;
	z-index: 102;
	display: inline-flex;
}

.vysio-logo {
	display: inline-flex;
	align-items: center;
	width: 118px;
	line-height: 1;
}

.vysio-logo img {
	width: 100%;
	height: auto;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 1;
	transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav__list > li.is-current > a {
	color: var(--white);
}

.primary-nav__list > li:last-child > a {
	min-height: 36px;
	padding: 8px 16px;
	border: 1px solid rgba(32, 68, 111, 0.96);
	border-radius: 8px;
	background: #20446f;
	color: var(--white);
	font-weight: 400;
	box-shadow: 0 12px 24px rgba(32, 68, 111, 0.22);
}

.nav-toggle {
	display: none;
	position: relative;
	z-index: 102;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	background: transparent;
	color: var(--white);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	position: absolute;
	left: 10px;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__line {
	top: 20px;
}

.nav-toggle__line::before {
	top: -7px;
	left: 0;
}

.nav-toggle__line::after {
	top: 7px;
	left: 0;
}

.nav-open .nav-toggle__line {
	transform: rotate(45deg);
}

.nav-open .nav-toggle__line::before {
	transform: translateY(7px) rotate(90deg);
}

.nav-open .nav-toggle__line::after {
	opacity: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 20px;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--copper);
	color: var(--white);
	box-shadow: 0 14px 36px rgba(173, 104, 69, 0.24);
}

.button--secondary {
	background: var(--paper);
	color: var(--ink);
}

.button--ghost,
.button--ghost-dark {
	border: 1px solid rgba(255, 255, 255, 0.34);
	color: var(--white);
}

.button--ghost-dark {
	border-color: rgba(23, 29, 36, 0.28);
	color: var(--ink);
}

.button--service {
	border: 1px solid color-mix(in srgb, var(--service-accent, var(--suite-accent, var(--copper))) 72%, transparent);
	background: color-mix(in srgb, var(--service-accent, var(--suite-accent, var(--copper))) 18%, transparent);
	color: var(--white);
	box-shadow: none;
}

.section-kicker {
	margin-bottom: 14px;
	color: var(--copper);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.section {
	position: relative;
	padding: clamp(72px, 7vw, 108px) 0;
}

.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.section-heading {
	margin-bottom: 42px;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.52fr);
	gap: clamp(26px, 5vw, 72px);
	align-items: end;
}

.section-heading p {
	color: rgba(244, 241, 237, 0.68);
}

.brand-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
	background-size: 14px 14px;
	mask-image: linear-gradient(90deg, #000 0, transparent 34%);
	opacity: 0.2;
}

.brand-orbit {
	position: absolute;
	pointer-events: none;
	width: 280px;
	height: 160px;
	border: 1px solid rgba(173, 104, 69, 0.42);
	border-radius: 999px;
}

.brand-orbit::before,
.brand-orbit::after {
	position: absolute;
	top: -1px;
	width: 160px;
	height: 160px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	content: "";
}

.focus-corners {
	position: absolute;
	pointer-events: none;
	width: 120px;
	height: 120px;
}

.focus-corners::before,
.focus-corners::after {
	position: absolute;
	width: 42px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.64);
	content: "";
}

.focus-corners::before {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0;
}

.focus-corners::after {
	right: 0;
	bottom: 0;
	border-left: 0;
	border-top: 0;
}

.brand-orbit::before {
	left: 56px;
}

.brand-orbit::after {
	left: 112px;
	background-image: radial-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px);
	background-size: 7px 7px;
	opacity: 0.56;
}

.home-hero {
	position: relative;
	min-height: 760px;
	padding: calc(var(--header) + 64px) 0 84px;
	overflow: hidden;
	background: var(--ink);
}

.home-hero::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(circle at 82% 24%, rgba(88, 194, 188, 0.2), transparent 28%),
		linear-gradient(90deg, rgba(16, 22, 29, 0.96) 0%, rgba(16, 22, 29, 0.78) 36%, rgba(39, 93, 91, 0.54) 70%, rgba(16, 22, 29, 0.86) 100%),
		linear-gradient(0deg, rgba(16, 22, 29, 0.48), rgba(16, 22, 29, 0.1));
	content: "";
}

.home-hero::after {
	position: absolute;
	right: -130px;
	bottom: -140px;
	z-index: 2;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(173, 104, 69, 0.28);
	border-radius: 50%;
	box-shadow:
		inset 0 0 0 52px rgba(47, 119, 118, 0.08),
		inset 0 0 0 112px rgba(173, 104, 69, 0.06);
	content: "";
}

.home-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.home-hero__grid {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 600px;
}

.home-hero__copy {
	position: relative;
	margin-left: 0;
	margin-right: auto;
	max-width: min(100%, 610px);
	min-width: 0;
	padding: 24px 0 28px;
	text-shadow: 0 2px 22px rgba(0, 0, 0, 0.46);
	isolation: isolate;
}

.home-hero__copy::before {
	display: none;
}

.home-hero__copy::after {
	position: absolute;
	left: 0;
	top: -62px;
	z-index: -1;
	width: 440px;
	height: 220px;
	border-top: 1px solid rgba(173, 104, 69, 0.22);
	border-right: 1px solid rgba(244, 241, 237, 0.12);
	border-radius: 0 220px 0 0;
	content: "";
}

.home-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	color: var(--copper);
}

.home-hero__eyebrow span {
	width: 40px;
	height: 1px;
	background: currentcolor;
}

.home-hero__eyebrow p {
	margin: 0;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.home-hero h1 {
	max-width: 560px;
}

.home-hero h1 span {
	display: block;
	width: auto;
	margin-bottom: 4px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	line-height: 1.08;
}

.home-hero h1 span:last-child {
	background: transparent;
	font-style: italic;
}

.home-hero h2 {
	max-width: 520px;
	margin-top: 22px;
	color: rgba(244, 241, 237, 0.82);
	font-size: clamp(1rem, 1.22vw, 1.16rem);
	font-weight: 400;
	line-height: 1.48;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.home-hero__actions .button--ghost {
	border-color: rgba(32, 68, 111, 0.96);
	background: #20446f;
	color: var(--white);
	box-shadow: 0 14px 36px rgba(32, 68, 111, 0.28);
}

.brand-orbit--hero-home {
	display: none;
	right: 12vw;
	top: 126px;
	z-index: 1;
	border-color: rgba(173, 104, 69, 0.5);
	opacity: 0.64;
}

.focus-corners--hero {
	left: auto;
	right: 8vw;
	bottom: 96px;
	z-index: 1;
	opacity: 0.58;
}

.home-hero__visual {
	position: relative;
	min-height: 586px;
}

.home-hero__frame {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	margin-left: auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	background: var(--graphite);
	box-shadow: var(--shadow);
}

.home-hero__frame::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(16, 22, 29, 0.22), transparent 48%);
	content: "";
}

.home-hero__frame img {
	width: 100%;
	aspect-ratio: 0.98;
	object-fit: cover;
	object-position: left center;
}

.hero-path {
	position: absolute;
	right: -18px;
	top: -24px;
	width: 190px;
	height: 190px;
	border: 20px solid rgba(173, 104, 69, 0.52);
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-radius: 42px;
	content: "";
}

.hero-path--green {
	left: 24px;
	top: auto;
	right: auto;
	bottom: 62px;
	border-color: rgba(53, 139, 136, 0.42);
	border-right-color: transparent;
	border-top-color: transparent;
}

.hero-card {
	position: absolute;
	z-index: 2;
	right: 26px;
	bottom: 30px;
	width: min(330px, calc(100% - 40px));
	padding: 20px 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
	background: rgba(16, 22, 29, 0.76);
	backdrop-filter: blur(16px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.hero-card span {
	display: block;
	color: var(--copper);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero-card p {
	margin-top: 9px;
	color: rgba(244, 241, 237, 0.72);
	font-size: 0.95rem;
}

.home-system {
	position: relative;
	overflow: hidden;
	padding: clamp(88px, 7vw, 116px) 0 clamp(74px, 6vw, 96px);
	background: #252d37;
	color: var(--white);
}

.home-system::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, transparent 0, #000 46%, transparent 100%);
	opacity: 0.18;
	content: "";
}

.home-system::after {
	position: absolute;
	right: -18%;
	top: 50%;
	width: min(54vw, 620px);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(47, 119, 118, 0.12), transparent 64%);
	content: "";
	transform: translateY(-50%);
}

.home-system__grid {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 390px;
}

.home-system h2 {
	max-width: 780px;
}

.home-system__text {
	display: grid;
	gap: 16px;
	max-width: 850px;
	margin-top: 26px;
}

.home-system__label {
	margin: 0 0 clamp(20px, 3vw, 34px);
	color: var(--white);
	font-size: clamp(1.45rem, 2.1vw, 2.25rem);
	font-weight: 700;
	line-height: 1.1;
	text-align: right;
}

.home-system__logo {
	display: block;
	width: min(24vw, 280px);
	max-width: 100%;
	margin: 0 0 clamp(10px, 1.4vw, 18px);
}

.home-system__text p {
	color: rgba(244, 241, 237, 0.74);
	font-size: clamp(0.98rem, 1.05vw, 1.06rem);
	line-height: 1.72;
}

.home-system__text strong {
	color: var(--white);
	font-weight: 700;
}

.home-system__text em {
	color: rgba(244, 241, 237, 0.9);
	font-style: normal;
}

.trust-section {
	position: relative;
	overflow: hidden;
	padding: clamp(38px, 4vw, 56px) 0;
	background: #252d37;
	color: var(--paper);
}

.trust-section::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, transparent 0, #000 50%, transparent 100%);
	opacity: 0.14;
	content: "";
}

.trust-section__inner {
	position: relative;
	z-index: 1;
}

.trust-section__inner > p {
	margin: 0 0 18px;
	color: #2f7776;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-align: center;
	text-transform: uppercase;
}

.client-marquee {
	position: relative;
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.client-marquee__track {
	display: flex;
	width: max-content;
	animation: client-marquee 30s linear infinite;
}

.client-marquee__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(148px, 15vw, 210px);
	height: 58px;
	padding: 10px 28px;
	opacity: 0.9;
}

.client-marquee__item img {
	display: block;
	max-width: 100%;
	max-height: 34px;
	filter: grayscale(1) contrast(0.72) brightness(2.15);
	mix-blend-mode: luminosity;
	object-fit: contain;
}

@keyframes client-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.client-marquee__track {
		animation-duration: 1ms;
		animation-iteration-count: 1;
	}
}

.home-services {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(16, 22, 29, 1) 0%, rgba(23, 29, 36, 0.98) 58%, rgba(16, 22, 29, 1) 100%);
	color: var(--paper);
}

.home-services::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 22%, rgba(88, 194, 188, 0.18), transparent 30%),
		radial-gradient(circle at 66% 34%, rgba(104, 86, 159, 0.18), transparent 28%),
		radial-gradient(circle at 86% 58%, rgba(173, 104, 69, 0.18), transparent 32%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 42%);
	opacity: 1;
	content: "";
}

.home-services::after {
	position: absolute;
	right: 8vw;
	top: 38px;
	width: 260px;
	height: 118px;
	background-image: radial-gradient(rgba(244, 241, 237, 0.22) 1px, transparent 1px);
	background-size: 12px 12px;
	mask-image: linear-gradient(180deg, #000, transparent 90%);
	opacity: 0.8;
	content: "";
}

.home-services > .container {
	position: relative;
	z-index: 1;
}

.testimonials-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, #252d37 0%, #171d24 58%, #10161d 100%);
	color: var(--paper);
}

.testimonials-section::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, transparent 0, #000 48%, transparent 100%);
	opacity: 0.18;
	content: "";
}

.testimonials-section::after {
	position: absolute;
	right: -10vw;
	top: 18%;
	width: min(44vw, 560px);
	aspect-ratio: 1;
	border: 1px solid rgba(47, 119, 118, 0.24);
	border-radius: 50%;
	box-shadow:
		inset 0 0 0 48px rgba(104, 86, 159, 0.05),
		inset 0 0 0 96px rgba(173, 104, 69, 0.05);
	content: "";
}

.testimonials-section__head {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 24px;
	margin-bottom: 30px;
}

.testimonials-section__head h2 {
	max-width: 760px;
}

.testimonials-section__controls {
	display: flex;
	gap: 10px;
}

.testimonials-section__controls button {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgba(244, 241, 237, 0.16);
	border-radius: 999px;
	background: rgba(244, 241, 237, 0.06);
	color: var(--paper);
	cursor: pointer;
	transition:
		background 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.testimonials-section__controls button:hover {
	border-color: rgba(244, 241, 237, 0.32);
	background: rgba(244, 241, 237, 0.12);
	transform: translateY(-1px);
}

.testimonials-section__controls svg {
	width: 20px;
	height: 20px;
	fill: currentcolor;
}

.testimonials-carousel {
	position: relative;
	z-index: 1;
	display: grid;
	grid-auto-columns: calc((100% - 32px) / 3);
	grid-auto-flow: column;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
	user-select: none;
}

.testimonials-carousel.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
}

.testimonials-carousel.is-dragging .testimonial-card {
	pointer-events: none;
}

.testimonials-carousel::-webkit-scrollbar {
	display: none;
}

.testimonial-card {
	position: relative;
	display: grid;
	min-height: 318px;
	align-content: space-between;
	gap: 22px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(244, 241, 237, 0.1);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(244, 241, 237, 0.96), rgba(244, 241, 237, 0.9)),
		var(--paper);
	color: var(--ink);
	scroll-snap-align: start;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.testimonial-card::before {
	position: absolute;
	right: -62px;
	top: -62px;
	width: 160px;
	aspect-ratio: 1;
	border: 18px solid rgba(47, 119, 118, 0.14);
	border-radius: 36px;
	content: "";
}

.testimonial-card--purple::before {
	border-color: rgba(104, 86, 159, 0.16);
}

.testimonial-card--copper::before {
	border-color: rgba(173, 104, 69, 0.16);
}

.testimonial-card__top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(23, 29, 36, 0.52);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.testimonial-card__top img {
	width: 25px;
	height: 27px;
	opacity: 0.84;
	object-fit: contain;
}

.testimonial-card > p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: rgba(23, 29, 36, 0.74);
	display: -webkit-box;
	overflow: hidden;
	font-size: clamp(0.9rem, 0.88vw, 0.98rem);
	line-height: 1.54;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 9;
}

.testimonial-card footer {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 3px;
	margin: 0;
	padding-top: 18px;
	border-top: 1px solid rgba(23, 29, 36, 0.1);
}

.testimonial-card strong {
	color: var(--ink);
	font-size: 1rem;
	font-weight: 700;
}

.testimonial-card footer span {
	max-width: 300px;
	color: rgba(23, 29, 36, 0.56);
	font-size: 0.9rem;
	line-height: 1.42;
}

.service-editorial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: stretch;
	gap: 26px;
	padding-top: 34px;
}

.service-editorial {
	--service-media-height: 255px;
	position: relative;
	min-height: 620px;
	height: 100%;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	transition:
		border-color 220ms ease,
		transform 260ms ease,
		box-shadow 260ms ease;
}

.service-editorial:hover {
	transform: translateY(-5px);
}

.service-editorial__link {
	position: relative;
	display: grid;
	height: 100%;
	min-height: inherit;
	overflow: hidden;
	border: 1px solid rgba(244, 241, 237, 0.13);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		rgba(37, 45, 55, 0.64);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 80px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(8px);
	transition:
		border-color 220ms ease,
		box-shadow 260ms ease;
}

.service-editorial:hover .service-editorial__link {
	border-color: color-mix(in srgb, var(--service-accent) 34%, rgba(244, 241, 237, 0.13));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 72px rgba(0, 0, 0, 0.28);
}

.service-editorial__media {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
	height: var(--service-media-height);
	pointer-events: none;
}

.service-editorial__media::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	mix-blend-mode: multiply;
	opacity: 0.52;
}

.service-editorial__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.84;
	filter: saturate(1.08);
	-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
	transition: transform 520ms ease, opacity 280ms ease;
}

.service-editorial--transicao-executiva .service-editorial__media img {
	object-position: 67% 62%;
}

.service-editorial:hover .service-editorial__media img {
	transform: scale(1.04);
	opacity: 0.9;
}

.service-editorial__media::after {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(16, 22, 29, 0.04) 0%, rgba(16, 22, 29, 0.72) 84%, rgba(16, 22, 29, 0.95) 100%);
	content: "";
}

.service-editorial__content {
	position: relative;
	z-index: 3;
	display: grid;
	align-content: start;
	min-height: inherit;
	padding: calc(var(--service-media-height) + 54px) 30px 30px;
}

.service-editorial__number {
	position: absolute;
	left: 28px;
	top: 28px;
	z-index: 4;
	color: rgba(244, 241, 237, 0.34);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.service-editorial__kicker {
	margin-top: 0;
	color: var(--copper);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.service-editorial__content h3 {
	max-width: 290px;
	min-height: 3.5rem;
	margin-top: 10px;
	font-size: clamp(1.45rem, 1.7vw, 1.72rem);
	line-height: 1.08;
}

.service-editorial__summary {
	max-width: 300px;
	min-height: 6.7rem;
	margin-top: 16px;
	color: rgba(244, 241, 237, 0.68);
	font-size: 0.9rem;
	line-height: 1.48;
}

.service-editorial__content > span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin-top: 22px;
	color: rgba(244, 241, 237, 0.72);
	font-size: 0.9rem;
	font-weight: 400;
}

.service-editorial__content > span::after {
	content: "";
}

.service-editorial:hover .service-editorial__content > span::after {
	width: 0;
}

.service-editorial__icon .icon,
.service-deep__icon .icon,
.mini-service .icon {
	width: 46px;
	height: 46px;
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
}

.service-editorial__icon--asset {
	position: absolute;
	left: 28px;
	top: calc(var(--service-media-height) - 40px);
	z-index: 4;
	width: 142px;
	height: 80px;
	pointer-events: none;
}

.service-editorial__icon--asset img {
	position: absolute;
	left: 0;
	top: 50%;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
	transform: translateY(-50%);
}

.service-editorial--green {
	--service-accent: #58c2bc;
}

.service-editorial--green .service-editorial__media::before {
	background: linear-gradient(135deg, rgba(19, 63, 61, 0.92), rgba(54, 132, 126, 0.22));
}

.service-editorial--purple {
	--service-accent: #c5b7ff;
}

.service-editorial--purple .service-editorial__media::before {
	background: linear-gradient(135deg, rgba(58, 44, 105, 0.92), rgba(104, 86, 159, 0.38));
}

.service-editorial--copper {
	--service-accent: var(--copper);
}

.service-editorial--copper .service-editorial__media::before {
	background: linear-gradient(135deg, rgba(111, 59, 39, 0.9), rgba(173, 104, 69, 0.34));
}

.service-editorial .service-editorial__link::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	border-radius: 0 0 22px 22px;
	background: var(--service-accent);
	content: "";
}

.service-editorial__icon .icon {
	border-color: color-mix(in srgb, var(--service-accent) 56%, transparent);
	background: rgba(16, 22, 29, 0.68);
	color: var(--service-accent);
}

.service-editorial__kicker,
.service-editorial__content > span {
	color: var(--service-accent);
}

.icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: currentColor;
}

.icon svg {
	width: 20px;
	height: 20px;
}

.about-home {
	position: relative;
	overflow: hidden;
	padding: clamp(78px, 8vw, 120px) 0;
	background: var(--copper);
	color: var(--white);
}

.about-home::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(83, 41, 27, 0.18), rgba(83, 41, 27, 0.68)),
		radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.12), transparent 24%);
	content: "";
}

.about-home__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
	gap: clamp(42px, 7vw, 94px);
	align-items: center;
}

.about-home__media {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: var(--copper-deep);
	box-shadow: var(--shadow);
}

.about-home__media img {
	width: 100%;
	aspect-ratio: 0.72;
	object-fit: cover;
}

.about-home__copy {
	max-width: 720px;
}

.about-home__copy .section-kicker,
.service-deep--copper .section-kicker {
	color: rgba(255, 255, 255, 0.72);
}

.about-home__copy p {
	max-width: 650px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.02rem;
}

.about-home__copy .button {
	margin-top: 30px;
}

.method-band {
	overflow: hidden;
	background: var(--ink-2);
	color: var(--white);
}

.method-band::before,
.site-footer::before,
.service-process::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, #000 0, transparent 46%);
	opacity: 0.16;
	content: "";
}

.method-band__grid,
.founder-grid,
.editorial-grid,
.about-vision__grid,
.services-index__grid,
.service-process__grid,
.contact-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
	gap: clamp(38px, 7vw, 88px);
	align-items: start;
}

.method-band p {
	max-width: 520px;
	margin-top: 18px;
	color: rgba(244, 241, 237, 0.7);
}

.method-steps {
	display: grid;
	gap: 12px;
}

.method-steps article {
	padding: 24px;
	border: 1px solid var(--line-dark);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.055);
}

.method-steps__number,
.process-timeline span,
.belief-grid span {
	color: var(--copper);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.method-steps h3 {
	margin-top: 18px;
}

.method-steps p {
	margin-top: 10px;
	color: rgba(244, 241, 237, 0.64);
}

.brand-orbit--method {
	right: 9vw;
	bottom: 60px;
	opacity: 0.58;
}

.founder-section {
	background: var(--graphite);
	color: var(--paper);
}

.founder-section--about {
	background:
		radial-gradient(circle at 82% 28%, rgba(92, 159, 224, 0.12), transparent 30%),
		linear-gradient(135deg, #151b22 0%, #252d37 100%);
}

.founder-grid {
	align-items: center;
}

.founder-copy p:not(.section-kicker):not(.founder-role) {
	max-width: 660px;
	margin-top: 18px;
	color: rgba(244, 241, 237, 0.76);
}

.founder-role {
	margin-top: 10px;
	color: #5c9fe0;
	font-size: 1.02rem;
	font-weight: 400;
}

.founder-portrait {
	position: relative;
	width: min(100%, 460px);
	margin-left: auto;
	overflow: hidden;
	border: 1px solid var(--line-dark);
	border-radius: 8px;
	background: var(--ink);
	box-shadow: var(--shadow);
}

.founder-portrait::after {
	position: absolute;
	right: -38px;
	top: 42px;
	width: 170px;
	height: 170px;
	border: 22px solid rgba(32, 68, 111, 0.42);
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-radius: 38px;
	content: "";
}

.founder-portrait img {
	width: 100%;
	aspect-ratio: 0.72;
	object-fit: cover;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 26px;
}

.tags span {
	padding: 7px 11px;
	border: 1px solid rgba(92, 159, 224, 0.2);
	border-radius: 999px;
	background: rgba(92, 159, 224, 0.08);
	color: #bcd5ec;
	font-size: 0.8rem;
	font-weight: 400;
}

.final-cta {
	background: var(--ink);
}

.final-cta__panel {
	position: relative;
	overflow: hidden;
	padding: clamp(40px, 6vw, 68px);
	border: 1px solid var(--line-dark);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(16, 22, 29, 0.98), rgba(16, 22, 29, 0.82)),
		url("../img/vysio-brand-system-bg.webp") center / cover;
	color: var(--white);
}

.final-cta__panel::after {
	position: absolute;
	right: -48px;
	top: -54px;
	width: 190px;
	height: 190px;
	border: 25px solid rgba(173, 104, 69, 0.36);
	border-radius: 38px;
	content: "";
}

.final-cta__panel h2,
.final-cta__panel p,
.final-cta__panel .button,
.final-cta__panel .section-kicker {
	position: relative;
	z-index: 1;
}

.final-cta__panel h2 {
	max-width: 710px;
}

.final-cta__panel p:not(.section-kicker) {
	max-width: 560px;
	margin: 16px 0 26px;
	color: rgba(244, 241, 237, 0.7);
}

.site-footer {
	position: relative;
	overflow: hidden;
	background: var(--ink-2);
	color: var(--white);
}

.site-footer__media {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 82% 24%, rgba(47, 119, 118, 0.18), transparent 28%),
		linear-gradient(90deg, rgba(16, 22, 29, 0.98), rgba(16, 22, 29, 0.9));
	opacity: 0.8;
}

.site-footer__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(190px, 0.48fr) minmax(150px, 0.38fr) minmax(260px, 0.72fr);
	gap: 42px;
	padding: 58px 0 38px;
}

.site-footer__brand p {
	max-width: 340px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.58);
}

.footer-title {
	margin-bottom: 12px;
	color: var(--copper);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.footer-menu {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu a,
.site-footer__contact a {
	color: rgba(255, 255, 255, 0.66);
	transition: color 160ms ease;
}

.footer-menu a:hover,
.site-footer__contact a:hover {
	color: var(--white);
}

.site-footer__contact {
	display: grid;
	align-content: start;
	gap: 8px;
}

.footer-contact-link {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: center;
	gap: 10px;
	width: fit-content;
}

.footer-contact-link svg {
	width: 18px;
	height: 18px;
	color: var(--copper);
	fill: currentcolor;
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.footer-social a {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
}

.footer-social svg {
	width: 19px;
	height: 19px;
	fill: currentcolor;
}

.site-footer__bottom {
	position: relative;
	z-index: 1;
	padding: 20px 0 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.86rem;
}

.page-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 560px;
	padding: calc(var(--header) + 76px) 0 78px;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.page-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
	filter: saturate(0.96) contrast(1.04);
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(16, 22, 29, 0.94) 0%, rgba(16, 22, 29, 0.78) 48%, rgba(16, 22, 29, 0.32) 100%),
		linear-gradient(0deg, rgba(16, 22, 29, 0.75), rgba(16, 22, 29, 0.08));
}

.page-hero--copper .page-hero__overlay {
	background: linear-gradient(90deg, rgba(111, 59, 39, 0.94), rgba(111, 59, 39, 0.78), rgba(16, 22, 29, 0.32));
}

.page-hero--green .page-hero__overlay {
	background: linear-gradient(90deg, rgba(16, 63, 61, 0.94), rgba(16, 63, 61, 0.78), rgba(16, 22, 29, 0.34));
}

body[class*="template-services"] .page-hero--green .page-hero__media {
	opacity: 0;
}

body[class*="template-services"] .page-hero--green .page-hero__overlay {
	background:
		radial-gradient(circle at 84% 22%, rgba(88, 194, 188, 0.12), transparent 28%),
		radial-gradient(circle at 14% 76%, rgba(173, 104, 69, 0.12), transparent 30%),
		linear-gradient(135deg, #10161d 0%, #252d37 56%, #162a2d 100%);
}

.page-hero--purple .page-hero__overlay {
	background: linear-gradient(90deg, rgba(66, 52, 121, 0.94), rgba(66, 52, 121, 0.78), rgba(16, 22, 29, 0.34));
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.page-hero h1 {
	max-width: 800px;
	font-size: clamp(1.95rem, 3.05vw, 2.95rem);
}

.page-hero p:not(.section-kicker) {
	max-width: 650px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1rem;
}

.brand-orbit--hero {
	right: 8vw;
	top: 135px;
	opacity: 0.58;
}

.about-editorial,
.contact-section {
	background: var(--paper);
	color: var(--ink);
}

.contact-section--page {
	position: relative;
	overflow: hidden;
	padding: clamp(58px, 5.2vw, 82px) 0;
	background:
		radial-gradient(circle at 8% 18%, rgba(88, 194, 188, 0.14), transparent 28%),
		linear-gradient(135deg, rgba(244, 241, 237, 0.98), rgba(220, 234, 241, 0.7)),
		var(--paper);
}

.contact-section--page::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(23, 29, 36, 0.08) 1px, transparent 1px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, transparent 0, #000 48%, transparent 100%);
	opacity: 0.2;
	content: "";
}

.contact-section__asset {
	position: absolute;
	pointer-events: none;
}

.contact-section__asset--symbol {
	right: -24px;
	top: 80px;
	width: min(24vw, 260px);
	opacity: 0.08;
	filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.18));
}

.home-contact {
	position: relative;
	overflow: hidden;
	padding: clamp(74px, 7vw, 104px) 0;
	background:
		linear-gradient(135deg, rgba(244, 241, 237, 0.98), rgba(220, 234, 241, 0.82)),
		var(--paper);
}

.home-contact::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(23, 29, 36, 0.09) 1px, transparent 1px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, transparent 0, #000 50%, transparent 100%);
	opacity: 0.22;
	content: "";
}

.home-contact__mark {
	display: none;
}

.home-contact__mark::before,
.home-contact__mark::after {
	position: absolute;
	inset: 12%;
	border: 1px solid rgba(47, 119, 118, 0.18);
	border-radius: 50%;
	content: "";
}

.home-contact__mark::after {
	inset: 26%;
	border-color: rgba(104, 86, 159, 0.18);
}

.about-editorial .section-kicker,
.contact-section .section-kicker {
	color: var(--copper);
}

.services-index {
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(16, 22, 29, 0.98), rgba(23, 29, 36, 0.96)),
		var(--ink);
	color: var(--paper);
}

.services-index::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, #000 0, transparent 48%);
	opacity: 0.22;
	content: "";
}

.prose {
	color: rgba(23, 29, 36, 0.72);
}

.prose--large {
	font-size: clamp(1.04rem, 1.28vw, 1.18rem);
}

.about-editorial .prose--large {
	font-size: clamp(1.1rem, 1.42vw, 1.28rem);
}

.prose p + p {
	margin-top: 18px;
}

.belief-section {
	background: var(--green);
	color: var(--white);
}

.belief-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.belief-grid article {
	min-height: 260px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(16, 22, 29, 0.18);
}

.belief-grid h3 {
	margin-top: 46px;
}

.belief-grid p {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.72);
}

.about-vision {
	background: var(--green);
	color: var(--white);
}

.about-vision__grid {
	align-items: center;
}

.about-vision__image {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.about-vision__image img {
	width: 100%;
	aspect-ratio: 0.72;
	object-fit: cover;
}

.about-vision p {
	max-width: 650px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.76);
}

.services-index__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.mini-service {
	display: grid;
	gap: 18px;
	align-content: start;
	min-height: 260px;
	padding: 22px;
	border-radius: 8px;
	color: var(--white);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.mini-service--green {
	background: var(--green);
}

.mini-service--blue {
	background: var(--blue);
}

.mini-service--purple {
	background: var(--purple);
}

.mini-service--copper {
	background: var(--copper);
}

.mini-service span {
	max-width: 180px;
	font-weight: 700;
	line-height: 1.15;
}

.mini-service p {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.88rem;
	line-height: 1.45;
}

.service-deep {
	position: relative;
	--service-accent: var(--copper);
	display: grid;
	align-items: center;
	min-height: 720px;
	padding: calc(var(--header) + 52px) 0 78px;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.service-deep--green {
	--service-accent: #58c2bc;
}

.service-deep--purple {
	--service-accent: #b9a9ff;
}

.service-deep--copper {
	--service-accent: #d58a62;
}

.service-deep--copper .service-deep__media img {
	object-position: center center;
}

.service-deep--single {
	min-height: 760px;
}

.service-deep__media {
	position: absolute;
	inset: 0;
}

.service-deep__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.88;
}

.service-deep::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(16, 22, 29, 0.94) 0%, rgba(16, 22, 29, 0.76) 52%, rgba(16, 22, 29, 0.34) 100%);
	content: "";
}

.service-deep--green::after {
	background: linear-gradient(90deg, rgba(17, 51, 50, 0.94), rgba(17, 51, 50, 0.74), rgba(16, 22, 29, 0.26));
}

.service-deep--blue::after {
	background: linear-gradient(90deg, rgba(32, 68, 111, 0.92), rgba(32, 68, 111, 0.72), rgba(16, 22, 29, 0.28));
}

.service-deep--purple::after {
	background: linear-gradient(90deg, rgba(66, 52, 121, 0.93), rgba(66, 52, 121, 0.72), rgba(16, 22, 29, 0.28));
}

.service-deep--purple .service-deep__panel {
	grid-column: 1;
	grid-row: 1;
}

.service-deep--purple .service-deep__copy {
	grid-column: 2;
	grid-row: 1;
}

.service-deep--purple .service-deep__grid {
	grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
	align-items: center;
}

.service-deep--purple .service-deep__panel {
	max-width: 620px;
	padding: 8px 0 8px 28px;
	border: 0;
	border-left: 2px solid var(--service-accent);
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
}

.service-deep--purple .service-deep__panel h3 {
	margin-top: 18px;
}

.service-deep--purple .service-deep__panel ul {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 26px;
	margin-top: 20px;
}

.service-deep--purple .service-deep__copy blockquote {
	padding: 5px 0 5px 20px;
	border: 0;
	border-left: 3px solid var(--service-accent);
	border-radius: 0;
	background: transparent;
}

.service-deep--copper::after {
	background:
		linear-gradient(90deg, rgba(59, 30, 23, 0.94) 0%, rgba(90, 48, 33, 0.78) 46%, rgba(111, 59, 39, 0.34) 100%),
		radial-gradient(circle at 64% 42%, rgba(213, 138, 98, 0.1), transparent 34%);
}

.service-deep__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
	gap: clamp(36px, 7vw, 92px);
	align-items: end;
}

.service-deep__copy {
	max-width: 720px;
}

.breadcrumb {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.84rem;
	font-weight: 400;
}

.service-deep h1,
.service-deep h2 {
	max-width: 760px;
	font-size: clamp(1.9rem, 2.9vw, 2.9rem);
}

.service-deep blockquote {
	max-width: 650px;
	margin-top: 24px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-left: 4px solid var(--service-accent);
	border-radius: 6px;
	background: rgba(16, 22, 29, 0.44);
	color: rgba(255, 255, 255, 0.86);
	font-size: 1rem;
}

.service-deep .section-kicker {
	color: var(--service-accent);
}

.service-deep__copy > p:not(.section-kicker):not(.breadcrumb) {
	max-width: 650px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.78);
}

.service-deep .button {
	margin-top: 28px;
}

.service-deep__panel {
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(16, 22, 29, 0.62);
	backdrop-filter: blur(14px);
}

.service-deep__panel h2,
.service-deep__panel h3 {
	margin-top: 24px;
	font-size: 1.28rem;
}

.service-deep__panel ul {
	display: grid;
	gap: 12px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.service-deep__panel li {
	position: relative;
	padding-left: 24px;
	color: rgba(255, 255, 255, 0.72);
}

.service-deep__panel li::before {
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--service-accent);
	content: "";
}

.service-deep__icon .icon {
	color: var(--service-accent);
}

.service-process {
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.service-process--green {
	background: var(--green-deep);
}

.service-process--blue {
	background: var(--blue);
}

.service-process--purple {
	background: #45367e;
}

.service-process--copper {
	background: var(--copper-deep);
}

.service-process__grid {
	align-items: center;
}

.service-process__visual {
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.service-process__visual img {
	width: 100%;
	max-height: 520px;
	aspect-ratio: auto;
	object-fit: contain;
	filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.28));
}

.service-process__copy p {
	max-width: 640px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.72);
}

.process-timeline {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.process-timeline article {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 16px;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-timeline h3 {
	font-size: 1.02rem;
}

.process-timeline p {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.94rem;
}

.service-suite {
	position: relative;
	overflow: hidden;
	background: var(--suite-deep);
	color: var(--white);
}

.services-contact {
	scroll-margin-top: calc(var(--header) + 20px);
}

.service-suite::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 16%, color-mix(in srgb, var(--suite-accent) 24%, transparent), transparent 34%),
		radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
		linear-gradient(135deg, rgba(16, 22, 29, 0.22), rgba(16, 22, 29, 0.56));
	content: "";
}

.service-suite::after {
	position: absolute;
	right: -140px;
	top: 90px;
	width: 420px;
	aspect-ratio: 1;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 42%, transparent);
	border-radius: 999px;
	opacity: 0.48;
	content: "";
}

.service-suite > .container {
	position: relative;
	z-index: 1;
}

.service-suite--green {
	--suite-accent: #58c2bc;
	--suite-deep: #143f3d;
	--suite-soft: #dcefed;
	--suite-ink: #123b39;
}

.service-suite--purple {
	--suite-accent: #b9a9ff;
	--suite-deep: #39306f;
	--suite-soft: #e7e0ff;
	--suite-ink: #30275f;
}

.service-suite--copper {
	--suite-accent: #d58a62;
	--suite-deep: #6f3b27;
	--suite-soft: #f1dfd4;
	--suite-ink: #5d301f;
}

.service-suite__header {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.78fr);
	gap: clamp(32px, 7vw, 96px);
	align-items: end;
	margin-bottom: 34px;
}

.service-suite__header h2 {
	max-width: 600px;
}

.service-suite .section-kicker {
	color: var(--suite-accent);
}

.service-suite__intro {
	display: grid;
	gap: 22px;
	justify-items: start;
}

.service-suite__intro > p {
	max-width: 640px;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(0.98rem, 1.08vw, 1.06rem);
	line-height: 1.58;
}

.service-suite__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.service-suite-card {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 24px;
	min-height: 420px;
	padding: clamp(24px, 2.8vw, 34px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	background: rgba(16, 22, 29, 0.42);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.service-suite-card--wide {
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
	align-items: end;
	min-height: 360px;
}

.service-suite-card--wide.service-suite-card--no-media {
	grid-template-columns: 1fr;
}

.service-suite-card--wide.service-suite-card--has-visual {
	grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.52fr);
	align-items: center;
}

.service-suite-card--map.service-suite-card--wide.service-suite-card--has-visual {
	grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.72fr);
	align-items: center;
	min-height: 390px;
	margin-top: 8px;
	padding: 0 0 clamp(30px, 4vw, 48px);
	border: 0;
	border-bottom: 1px solid color-mix(in srgb, var(--suite-accent) 28%, transparent);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.service-suite-card--map .service-suite-card__content > p:not(.service-suite-card__kicker) {
	max-width: 620px;
}

.service-suite-card--map .service-suite-list {
	grid-template-columns: 1fr;
	gap: 12px;
	max-width: 620px;
}

.service-suite-card--map .service-suite-list li {
	padding: 0 0 0 24px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
}

.service-suite-card--map .service-suite-list li::before {
	left: 0;
}

.service-suite-card--map::before {
	display: none;
}

.service-suite-card--map .service-suite-card__number {
	position: absolute;
	left: 0;
	top: -34px;
	margin: 0;
}

.service-suite-card--wide.service-suite-card--no-media .service-suite-card__content {
	grid-column: 1 / -1;
}

.service-suite-card--wide.service-suite-card--has-visual .service-suite-card__content {
	grid-column: auto;
}

.service-suite-card--light {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.64)),
		var(--suite-soft);
	color: var(--suite-ink);
}

.service-suite-card--accent {
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--suite-accent) 34%, rgba(16, 22, 29, 0.86)), rgba(16, 22, 29, 0.58)),
		var(--suite-deep);
}

.service-suite-card::before {
	position: absolute;
	right: -72px;
	top: -72px;
	width: 210px;
	aspect-ratio: 1;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 54%, transparent);
	border-radius: 999px;
	opacity: 0.46;
	content: "";
}

.service-suite-card--light::before {
	opacity: 0.28;
}

.service-suite-card__content,
.service-suite-card__media,
.service-suite-visual {
	position: relative;
	z-index: 1;
}

.service-suite-card__icon {
	margin-bottom: 18px;
}

.service-suite-card__icon .icon {
	width: 48px;
	height: 48px;
	border-color: color-mix(in srgb, var(--suite-accent) 52%, transparent);
	background: color-mix(in srgb, var(--suite-accent) 14%, transparent);
	color: var(--suite-accent);
}

.service-suite-card__number {
	display: inline-flex;
	margin-bottom: 24px;
	color: var(--suite-accent);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.service-suite-card__kicker {
	margin-bottom: 10px;
	color: var(--suite-accent);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.service-suite-card h3 {
	max-width: 620px;
	font-size: clamp(1.36rem, 1.85vw, 2rem);
}

.service-suite-card__content > p:not(.service-suite-card__kicker) {
	max-width: 650px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.96rem;
	line-height: 1.58;
}

.service-suite-card--light .service-suite-card__content > p:not(.service-suite-card__kicker) {
	color: color-mix(in srgb, var(--suite-ink) 74%, transparent);
}

.service-suite-list {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.service-suite-list__title {
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 700;
}

.service-suite-card--light .service-suite-list__title {
	color: var(--suite-ink);
}

.service-suite-list li {
	position: relative;
	padding-left: 22px;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.48;
}

.service-suite-list li strong,
.service-suite-list li span {
	display: block;
}

.service-suite-list li strong {
	color: inherit;
}

.service-suite-list li span {
	margin-top: 4px;
	color: color-mix(in srgb, currentColor 82%, transparent);
}

.service-suite-list li::before {
	position: absolute;
	left: 0;
	top: 0.58em;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--suite-accent);
	content: "";
}

.service-suite-card--light .service-suite-list li {
	color: color-mix(in srgb, var(--suite-ink) 76%, transparent);
}

.service-suite-card blockquote {
	margin-top: 24px;
	padding: 16px 18px;
	border-left: 3px solid var(--suite-accent);
	border-radius: 0 14px 14px 0;
	background: rgba(16, 22, 29, 0.22);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
	line-height: 1.48;
}

.service-suite-card--light blockquote {
	background: color-mix(in srgb, var(--suite-ink) 9%, transparent);
	color: color-mix(in srgb, var(--suite-ink) 78%, transparent);
}

.service-suite-visual {
	min-height: 260px;
	border-radius: 24px;
}

.service-suite-visual span,
.service-suite-visual strong {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.service-suite-visual--match {
	min-height: 320px;
}

.service-suite-visual--match span {
	width: clamp(170px, 14vw, 220px);
	aspect-ratio: 1;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 68%, transparent);
	border-radius: 999px;
	background: color-mix(in srgb, var(--suite-accent) 7%, transparent);
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	backdrop-filter: blur(2px);
}

.service-suite-visual--match span:nth-of-type(1) {
	left: 8%;
	top: 20%;
}

.service-suite-visual--match span:nth-of-type(2) {
	left: 50%;
	top: 20%;
	transform: translateX(-50%);
	background-image: radial-gradient(color-mix(in srgb, var(--suite-accent) 42%, transparent) 1px, transparent 1px);
	background-size: 7px 7px;
}

.service-suite-visual--match span:nth-of-type(3) {
	right: 8%;
	top: 20%;
}

.service-suite-visual--match strong {
	left: 50%;
	bottom: 18px;
	width: 96px;
	height: 40px;
	border-radius: 999px;
	background: var(--suite-accent);
	color: var(--suite-ink);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transform: translateX(-50%);
	box-shadow: 0 18px 40px color-mix(in srgb, var(--suite-accent) 24%, transparent);
}

.service-suite-visual--framework {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
	min-height: 230px;
}

.service-suite-visual--framework span {
	position: relative;
	padding: 76px 18px 22px;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 46%, transparent);
	border-radius: 22px;
	background: color-mix(in srgb, var(--suite-accent) 12%, transparent);
	color: var(--white);
	font-weight: 700;
}

.service-suite-visual--framework span::before {
	position: absolute;
	left: 50%;
	top: 24px;
	width: 34px;
	height: 34px;
	border: 1px solid var(--suite-accent);
	border-radius: 999px;
	background: color-mix(in srgb, var(--suite-accent) 14%, transparent);
	transform: translateX(-50%);
	content: "";
}

.service-suite-visual--signal,
.service-suite-visual--succession,
.service-suite-visual--moments {
	display: grid;
	align-content: center;
	gap: 12px;
	min-height: 260px;
	padding: 22px;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 34%, transparent);
	background:
		radial-gradient(circle at 80% 18%, color-mix(in srgb, var(--suite-accent) 18%, transparent), transparent 32%),
		color-mix(in srgb, var(--suite-accent) 8%, transparent);
}

.service-suite-visual--signal span,
.service-suite-visual--succession span,
.service-suite-visual--moments span {
	position: relative;
	justify-content: flex-start;
	min-height: 54px;
	padding: 0 18px 0 56px;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 28%, transparent);
	border-radius: 999px;
	background: rgba(16, 22, 29, 0.22);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
}

.service-suite-visual--signal span::before,
.service-suite-visual--succession span::before,
.service-suite-visual--moments span::before {
	position: absolute;
	left: 16px;
	width: 20px;
	height: 20px;
	border: 1px solid var(--suite-accent);
	border-radius: 7px;
	content: "";
}

.service-suite-visual--signal span::before {
	border-radius: 999px;
	box-shadow: 0 0 0 7px color-mix(in srgb, var(--suite-accent) 12%, transparent);
}

.service-suite-visual--succession span:nth-child(odd),
.service-suite-visual--moments span:nth-child(even) {
	margin-left: 24px;
}

.service-suite-visual--moments span::before {
	border-radius: 999px 999px 999px 4px;
}

.service-suite-card__media {
	align-self: end;
	margin: 0;
}

.service-suite-card__media img {
	width: 100%;
	max-height: 320px;
	border-radius: 18px;
	object-fit: cover;
	filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.22));
}

.service-suite-card--loose-media {
	overflow: visible;
}

.service-suite-card--loose-media .service-suite-card__media {
	align-self: center;
}

.service-suite-card--loose-media .service-suite-card__media img {
	max-height: 300px;
	border-radius: 0;
	object-fit: contain;
	filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.28));
	transform: translateY(10px);
}

.service-suite-card--wide .service-suite-card__media img {
	max-height: 360px;
	object-fit: contain;
}

.service-mini-flow {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 26px;
}

.service-suite-card--no-media .service-mini-flow {
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.service-mini-flow div {
	position: relative;
	min-height: 172px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(16, 22, 29, 0.2);
}

.service-mini-flow span {
	display: inline-flex;
	margin-bottom: 26px;
	color: var(--suite-accent);
	font-size: 1.32rem;
	font-weight: 700;
	line-height: 1;
}

.service-mini-flow h4 {
	margin: 0;
	color: var(--white);
	font-size: 0.96rem;
	line-height: 1.15;
}

.service-mini-flow p {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.82rem;
	line-height: 1.38;
}

.service-suite--executive {
	padding-top: 0;
	background:
		linear-gradient(180deg, #123f3d 0%, #0f2f31 48%, #123f3d 100%);
}

.service-suite--executive::before {
	background:
		radial-gradient(circle at 18% 12%, rgba(88, 194, 188, 0.26), transparent 30%),
		radial-gradient(circle at 82% 36%, rgba(88, 194, 188, 0.13), transparent 30%),
		linear-gradient(135deg, rgba(16, 22, 29, 0.12), rgba(16, 22, 29, 0.54));
}

.executive-lab {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(18px, 2.6vw, 34px);
	align-items: stretch;
}

.executive-lab__main,
.executive-lab__aside {
	min-width: 0;
}

.executive-lab__aside {
	display: grid;
	gap: 18px;
	align-content: start;
}

.executive-lab__asset,
.executive-report__loose,
.transition-editorial__asset {
	position: relative;
	z-index: 1;
	margin: 0;
	pointer-events: none;
}

.executive-lab__asset {
	min-height: 150px;
	display: grid;
	place-items: center;
}

.executive-lab__asset img {
	width: min(100%, 520px);
	filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.26));
}

.service-suite-card--compact {
	min-height: 0;
	padding: clamp(22px, 2.2vw, 28px);
}

.service-suite-card--compact .service-suite-visual {
	min-height: 210px;
}

.executive-process {
	position: relative;
	display: grid;
	grid-template-columns: minmax(360px, 0.62fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 54px);
	align-items: center;
	margin-top: clamp(38px, 5vw, 68px);
	padding: clamp(34px, 4vw, 48px) 0;
	border-top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.executive-process::before {
	position: absolute;
	left: 36%;
	right: 4%;
	top: 50%;
	height: 1px;
	background: linear-gradient(90deg, color-mix(in srgb, var(--suite-accent) 70%, transparent), transparent);
	content: "";
}

.executive-process__copy {
	position: relative;
	z-index: 1;
	max-width: 460px;
}

.executive-process__copy .icon {
	margin-bottom: 18px;
	color: var(--suite-accent);
}

.executive-process__copy h3,
.culture-framework-panel__copy h3,
.transition-roadmap__intro h3 {
	font-size: clamp(1.34rem, 1.9vw, 2rem);
}

.executive-process__copy > p:not(.service-suite-card__kicker),
.culture-framework-panel__copy > p:not(.service-suite-card__kicker),
.transition-roadmap__intro > p:not(.service-suite-card__kicker) {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.56;
}

.executive-process__rail {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

.executive-process__rail--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 1.5vw, 20px);
}

.executive-process__rail div {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 178px;
	padding: 20px 16px;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 25%, transparent);
	border-radius: 20px;
	background: rgba(16, 22, 29, 0.2);
	backdrop-filter: blur(10px);
}

.executive-process__rail--3 div {
	min-height: 220px;
	padding: 28px 24px;
	border-radius: 22px;
}

.executive-process__rail--3 strong {
	margin-top: 0;
	font-size: 1rem;
}

.executive-process__rail--3 p {
	margin-top: 12px;
	font-size: 0.88rem;
	line-height: 1.46;
}

.executive-process__rail--labels div {
	align-content: center;
	min-height: 132px;
}

.executive-process__rail--labels strong {
	font-size: 1.04rem;
	line-height: 1.3;
}

.executive-process__rail span,
.transition-roadmap__steps span {
	color: var(--suite-accent);
	font-size: 1.42rem;
	font-weight: 700;
	line-height: 1;
}

.executive-process__rail strong,
.transition-roadmap__steps h4 {
	margin-top: 26px;
	color: var(--white);
	font-size: 0.94rem;
}

.transition-roadmap__steps h4 {
	margin-top: 0;
	font-size: 0.98rem;
	line-height: 1.22;
}

.executive-process__rail p,
.transition-roadmap__steps p {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.81rem;
	line-height: 1.38;
}

.executive-report {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	align-items: center;
	margin-top: 34px;
	padding: clamp(30px, 4.2vw, 58px) clamp(260px, 24vw, 390px) clamp(30px, 4.2vw, 58px) clamp(30px, 4.2vw, 58px);
	border-radius: 30px;
	background:
		radial-gradient(circle at 92% 12%, rgba(88, 194, 188, 0.12), transparent 28%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 245, 0.92));
	color: var(--suite-ink);
	overflow: visible;
}

.executive-report::before {
	position: absolute;
	right: -140px;
	top: -120px;
	width: 360px;
	aspect-ratio: 1;
	border: 1px solid rgba(47, 119, 118, 0.16);
	border-radius: 999px;
	content: "";
}

.executive-report__copy,
.executive-report__panel {
	position: relative;
	z-index: 1;
}

.executive-report__copy .icon {
	margin-bottom: 18px;
	color: var(--suite-accent);
}

.executive-report__copy h3 {
	max-width: 820px;
	font-size: clamp(1.5rem, 2.25vw, 2.35rem);
}

.executive-report__copy > p:not(.service-suite-card__kicker) {
	max-width: 840px;
	margin-top: 16px;
	color: color-mix(in srgb, var(--suite-ink) 75%, transparent);
	line-height: 1.58;
}

.executive-report .service-suite-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 840px;
	margin-top: 26px;
}

.executive-report .service-suite-list li {
	min-height: 104px;
	padding: 18px 18px 18px 38px;
	border: 1px solid rgba(47, 119, 118, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
	color: color-mix(in srgb, var(--suite-ink) 78%, transparent);
}

.executive-report .service-suite-list li::before {
	left: 18px;
	top: 1.75em;
}

.executive-report__panel {
	position: absolute;
	right: clamp(-42px, -3vw, -18px);
	bottom: -42px;
	top: auto;
	z-index: 2;
	margin: 0;
	display: grid;
	place-items: center;
	min-height: 0;
	pointer-events: none;
}

.executive-report__phone {
	position: relative;
	z-index: 2;
	width: clamp(220px, 18vw, 310px);
	filter: drop-shadow(0 34px 42px rgba(37, 45, 55, 0.22));
}

.executive-report__board {
	display: none;
}

.executive-proof {
	display: grid;
	grid-template-columns: minmax(360px, 0.62fr) minmax(0, 1fr);
	column-gap: clamp(28px, 4.5vw, 68px);
	row-gap: 24px;
	align-items: start;
	margin-top: 42px;
	padding: clamp(22px, 3vw, 34px) 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.executive-proof__copy .icon {
	margin-bottom: 18px;
	color: var(--suite-accent);
}

.executive-proof__copy {
	max-width: 460px;
}

.executive-proof__copy h3 {
	font-size: clamp(1.35rem, 1.9vw, 2.05rem);
}

.executive-proof__copy > p:not(.service-suite-card__kicker) {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.56;
}

.executive-proof__note {
	grid-column: 2;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	max-width: none;
	min-height: 154px;
	margin: 0;
	padding: 24px 28px;
	border-left: 3px solid var(--suite-accent);
	border-radius: 0 14px 14px 0;
	background: rgba(16, 22, 29, 0.22);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
	line-height: 1.48;
}

.executive-proof__note strong {
	color: var(--white);
	font-size: 1.05rem;
}

.executive-proof__note p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
}

.executive-proof__items {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
	grid-column: 1 / -1;
	margin-top: 4px;
}

.executive-proof__items article {
	display: grid;
	align-content: start;
	height: 100%;
	min-height: 168px;
	padding: 22px;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 28%, transparent);
	border-radius: 22px;
	background: rgba(16, 22, 29, 0.24);
}

.executive-proof__items .icon {
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-color: color-mix(in srgb, var(--suite-accent) 38%, transparent);
	background: color-mix(in srgb, var(--suite-accent) 12%, transparent);
	color: var(--suite-accent);
}

.executive-proof__items strong {
	color: var(--white);
	font-size: 1rem;
}

.executive-proof__items p {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.88rem;
	line-height: 1.44;
}

.service-suite--executive .service-suite-cta {
	display: grid;
	justify-items: center;
	gap: 18px;
	max-width: 780px;
	margin-inline: auto;
	padding: clamp(24px, 4vw, 42px) 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-align: center;
}

.service-suite--executive .service-suite-cta h3,
.service-suite--executive .service-suite-cta p {
	margin-inline: auto;
}

.service-suite--culture {
	background:
		linear-gradient(180deg, #312765 0%, #3a3071 52%, #2a2458 100%);
}

.service-suite--culture::before {
	background:
		radial-gradient(circle at 78% 20%, rgba(185, 169, 255, 0.22), transparent 34%),
		radial-gradient(circle at 12% 70%, rgba(185, 169, 255, 0.13), transparent 30%),
		linear-gradient(135deg, rgba(16, 22, 29, 0.18), rgba(16, 22, 29, 0.45));
}

.service-suite__floating-asset {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.service-suite__floating-asset--culture {
	right: -7vw;
	top: 90px;
	width: min(30vw, 430px);
	opacity: 0.14;
	filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.26));
}

.service-suite__floating-asset--network {
	left: -8vw;
	bottom: 18%;
	width: min(38vw, 520px);
	opacity: 0.1;
	filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.2));
}

.service-suite--culture .service-suite__header {
	grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.5fr);
	margin-bottom: clamp(26px, 4vw, 42px);
}

.service-suite--culture .service-suite__intro {
	align-self: end;
}

.service-suite--culture .service-suite__intro > p {
	max-width: 500px;
}

.service-suite--culture .service-suite__intro .button {
	display: none;
}

.culture-framework-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(330px, 0.56fr) minmax(0, 1fr);
	gap: clamp(24px, 3.8vw, 52px);
	align-items: center;
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid rgba(185, 169, 255, 0.18);
	border-radius: 30px;
	background:
		radial-gradient(circle at 82% 8%, rgba(185, 169, 255, 0.14), transparent 30%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(16, 22, 29, 0.12));
	overflow: hidden;
}

.culture-framework-panel::after {
	position: absolute;
	right: -190px;
	top: -210px;
	width: 520px;
	aspect-ratio: 1;
	border: 1px solid rgba(185, 169, 255, 0.14);
	border-radius: 999px;
	content: "";
}

.culture-framework-panel__copy,
.culture-orbit {
	position: relative;
	z-index: 1;
}

.culture-framework-panel__copy .icon,
.transition-roadmap__intro .icon {
	margin-bottom: 18px;
	color: var(--suite-accent);
}

.culture-framework-panel__copy .button {
	margin-top: 24px;
	width: auto;
	min-width: min(100%, 290px);
	justify-self: start;
}

.culture-orbit {
	order: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 1.6vw, 18px);
}

.culture-framework-panel__copy {
	order: 1;
}

.culture-orbit div {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 158px;
	padding: clamp(20px, 1.8vw, 24px);
	border: 1px solid rgba(185, 169, 255, 0.28);
	border-radius: 24px;
	background:
		radial-gradient(circle at 24px 24px, rgba(185, 169, 255, 0.24), transparent 34%),
		rgba(16, 22, 29, 0.18);
	text-align: left;
}

.culture-orbit span {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 28px;
	border: 1px solid rgba(185, 169, 255, 0.28);
	border-radius: 999px;
	background: rgba(185, 169, 255, 0.1);
	color: var(--suite-accent);
	font-size: 1rem;
	font-weight: 700;
}

.culture-orbit strong {
	margin-top: 0;
	color: var(--white);
	font-size: 1.08rem;
}

.culture-orbit p {
	margin-top: 9px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	line-height: 1.45;
}

.culture-mosaic {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.culture-assessment-feature,
.culture-succession-strip,
.culture-advisory-feature {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 30px;
}

.culture-assessment-feature {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 0.64fr) minmax(260px, 0.36fr);
	gap: clamp(20px, 3vw, 46px);
	align-items: start;
	min-height: 430px;
	padding: clamp(28px, 4vw, 54px) clamp(28px, 4vw, 54px) clamp(24px, 3vw, 34px);
	background:
		radial-gradient(circle at 84% 26%, rgba(185, 169, 255, 0.3), transparent 34%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 224, 255, 0.74));
	color: var(--suite-ink);
	overflow: hidden;
}

.culture-assessment-feature::before {
	position: absolute;
	right: -120px;
	bottom: -180px;
	width: 470px;
	aspect-ratio: 1;
	border: 1px solid rgba(80, 65, 145, 0.18);
	border-radius: 999px;
	content: "";
}

.culture-assessment-feature__copy,
.culture-assessment-feature__bullets,
.culture-assessment-feature__asset,
.culture-succession-strip__copy,
.culture-succession-strip__map,
.culture-advisory-feature__copy,
.culture-advisory-feature__asset,
.culture-advisory-feature__bullets {
	position: relative;
	z-index: 1;
}

.culture-assessment-feature__copy {
	max-width: 760px;
}

.culture-assessment-feature__copy .icon,
.culture-succession-strip__copy .icon,
.culture-advisory-feature__copy .icon,
.transition-passage-feature > .icon {
	margin-bottom: 18px;
	color: var(--suite-accent);
}

.culture-assessment-feature h3,
.culture-succession-strip h3,
.culture-advisory-feature h3,
.transition-passage-feature h3 {
	max-width: 740px;
	font-size: clamp(1.44rem, 2vw, 2.12rem);
}

.culture-assessment-feature__copy > p:not(.service-suite-card__kicker),
.culture-succession-strip__copy > p:not(.service-suite-card__kicker),
.culture-advisory-feature__copy > p:not(.service-suite-card__kicker),
.transition-passage-feature > p:not(.service-suite-card__kicker) {
	max-width: 760px;
	margin-top: 16px;
	line-height: 1.58;
}

.culture-assessment-feature__copy > p:not(.service-suite-card__kicker) {
	color: color-mix(in srgb, var(--suite-ink) 76%, transparent);
}

.culture-assessment-feature__bullets {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-column: 1 / -1;
	align-items: start;
	gap: 12px;
	z-index: 3;
	margin-top: clamp(18px, 3vw, 34px);
}

.culture-assessment-feature__bullets div {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	min-height: 0;
	padding: 18px;
	border: 1px solid rgba(80, 65, 145, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 18px 34px rgba(48, 39, 95, 0.08);
}

.culture-assessment-feature__bullets .icon {
	width: 42px;
	height: 42px;
	border-color: rgba(80, 65, 145, 0.18);
	background: rgba(80, 65, 145, 0.08);
	color: var(--suite-ink);
}

.culture-assessment-feature__bullets p {
	color: color-mix(in srgb, var(--suite-ink) 78%, transparent);
	font-size: 0.9rem;
	line-height: 1.44;
}

.culture-assessment-feature__asset {
	position: absolute;
	right: clamp(22px, 5vw, 82px);
	bottom: 0;
	z-index: 2;
	margin: 0;
	pointer-events: none;
}

.culture-assessment-feature__asset img {
	width: clamp(220px, 20vw, 292px);
	margin: 0;
	display: block;
	filter: drop-shadow(0 30px 44px rgba(48, 39, 95, 0.24));
}

.culture-succession-strip {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(320px, 0.52fr) minmax(0, 0.68fr);
	gap: clamp(24px, 4vw, 64px);
	align-items: center;
	padding: clamp(28px, 3.8vw, 46px) 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	overflow: visible;
}

.culture-succession-strip__map {
	display: grid;
	gap: 0;
	padding-left: 22px;
	border-left: 1px solid rgba(185, 169, 255, 0.32);
}

.culture-succession-strip__map span {
	position: relative;
	display: flex;
	gap: 16px;
	align-items: center;
	min-height: 66px;
	padding: 0 0 0 22px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--suite-accent);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
	text-align: left;
}

.culture-succession-strip__map span::before {
	position: absolute;
	left: -31px;
	top: 50%;
	width: 16px;
	height: 16px;
	border: 1px solid rgba(185, 169, 255, 0.62);
	border-radius: 999px;
	background: #3a3071;
	box-shadow: 0 0 0 7px rgba(185, 169, 255, 0.09);
	content: "";
	transform: translateY(-50%);
}

.culture-succession-strip__map strong {
	color: var(--white);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.2;
}

.culture-succession-strip__copy > p:not(.service-suite-card__kicker),
.culture-advisory-feature__copy > p:not(.service-suite-card__kicker),
.transition-passage-feature > p:not(.service-suite-card__kicker) {
	color: rgba(255, 255, 255, 0.74);
}

.culture-succession-strip .service-suite-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.culture-succession-strip .service-suite-list li {
	padding: 15px 14px 15px 34px;
	border: 1px solid rgba(185, 169, 255, 0.18);
	border-radius: 16px;
	background: rgba(16, 22, 29, 0.16);
	font-size: 0.88rem;
}

.culture-succession-strip .service-suite-list li::before {
	left: 14px;
}

.culture-advisory-feature {
	grid-column: 2 / 12;
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.36fr);
	gap: clamp(22px, 4vw, 54px);
	align-items: center;
	padding: clamp(28px, 3.8vw, 48px);
	background:
		linear-gradient(135deg, rgba(185, 169, 255, 0.16), rgba(16, 22, 29, 0.16)),
		rgba(16, 22, 29, 0.22);
	overflow: visible;
}

.culture-advisory-feature blockquote {
	margin-top: 22px;
	padding: 16px 18px;
	border-left: 3px solid var(--suite-accent);
	border-radius: 0 14px 14px 0;
	background: rgba(16, 22, 29, 0.18);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
	line-height: 1.48;
}

.culture-advisory-feature__asset {
	margin: 0;
}

.culture-advisory-feature__asset img {
	width: min(100%, 340px);
	filter: drop-shadow(0 30px 48px rgba(0, 0, 0, 0.3));
}

.culture-advisory-feature__bullets {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-column: 1 / -1;
	gap: 10px;
}

.culture-advisory-feature__bullets span {
	display: flex;
	align-items: center;
	min-height: 74px;
	padding: 15px 16px;
	border: 1px solid rgba(185, 169, 255, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.88rem;
	line-height: 1.4;
}

.service-suite-card--assessment {
	grid-column: 1 / 8;
	min-height: 520px;
}

.service-suite-card--succession {
	grid-column: 8 / 13;
	min-height: 520px;
}

.service-suite-card--advisory {
	grid-column: 3 / 12;
	grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.58fr);
	align-items: center;
	min-height: 360px;
}

.service-suite-card--advisory .service-suite-card__media {
	align-self: center;
}

.service-suite--transition {
	background:
		linear-gradient(180deg, #6f3b27 0%, #5b3024 50%, #703e2a 100%);
}

.service-suite--transition::before {
	background:
		radial-gradient(circle at 84% 18%, rgba(213, 138, 98, 0.24), transparent 34%),
		radial-gradient(circle at 12% 62%, rgba(213, 138, 98, 0.16), transparent 28%),
		linear-gradient(135deg, rgba(16, 22, 29, 0.16), rgba(16, 22, 29, 0.42));
}

.service-suite__floating-asset--copper-system {
	right: -9vw;
	top: 38%;
	width: min(44vw, 640px);
	opacity: 0.2;
	filter: drop-shadow(0 30px 52px rgba(0, 0, 0, 0.24));
}

.service-suite__header--solo {
	grid-template-columns: minmax(0, 760px);
}

.service-suite__header--solo > div > p {
	max-width: 760px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(0.98rem, 1.08vw, 1.06rem);
	line-height: 1.62;
}

.service-differentiators {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
	margin-top: clamp(46px, 7vw, 90px);
	padding-top: clamp(32px, 4vw, 52px);
	border-top: 1px solid color-mix(in srgb, var(--suite-accent) 30%, transparent);
}

.service-differentiators__heading > .icon {
	margin-bottom: 20px;
	border-color: color-mix(in srgb, var(--suite-accent) 34%, transparent);
	background: color-mix(in srgb, var(--suite-accent) 10%, transparent);
	color: var(--suite-accent);
}

.service-differentiators__heading h3 {
	max-width: 360px;
	font-size: clamp(1.35rem, 2vw, 2rem);
}

.service-differentiators__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.service-differentiators__grid article {
	display: grid;
	align-content: start;
	min-height: 184px;
	padding: 22px;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 24%, transparent);
	border-radius: 22px;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--suite-accent) 9%, transparent), rgba(16, 22, 29, 0.12)),
		rgba(16, 22, 29, 0.16);
}

.service-differentiators__grid .icon {
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	border-color: color-mix(in srgb, var(--suite-accent) 32%, transparent);
	background: color-mix(in srgb, var(--suite-accent) 10%, transparent);
	color: var(--suite-accent);
}

.service-differentiators__grid h4 {
	color: var(--white);
	font-size: 1rem;
}

.service-differentiators__grid p {
	margin-top: 9px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.88rem;
	line-height: 1.48;
}

.service-differentiators--purple {
	grid-template-columns: 1fr;
	gap: clamp(24px, 3vw, 34px);
	align-items: start;
}

.service-differentiators--purple .service-differentiators__heading {
	display: flex;
	align-items: center;
	gap: 18px;
	max-width: none;
}

.service-differentiators--purple .service-differentiators__heading h3 {
	max-width: none;
	font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.service-differentiators--purple .service-differentiators__heading > .icon {
	flex: 0 0 auto;
	margin-bottom: 0;
}

.service-differentiators--purple .service-differentiators__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid rgba(185, 169, 255, 0.24);
	border-bottom: 1px solid rgba(185, 169, 255, 0.24);
}

.service-differentiators--purple .service-differentiators__grid article {
	display: block;
	min-height: 0;
	padding: 26px 24px 28px;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.service-differentiators--purple .service-differentiators__grid article + article {
	border-left: 1px solid rgba(185, 169, 255, 0.2);
}

.service-differentiators--purple .service-differentiators__grid .icon {
	margin-bottom: 18px;
}

.service-differentiators--purple .service-differentiators__grid p {
	margin-top: 10px;
}

.service-carousel {
	position: relative;
}

.service-carousel__controls {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 14px;
}

.service-carousel__button {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 34%, transparent);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--white);
	font-family: inherit;
	font-size: 1.42rem;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-carousel__button:hover {
	border-color: color-mix(in srgb, var(--suite-accent) 68%, transparent);
	background: color-mix(in srgb, var(--suite-accent) 18%, transparent);
	color: var(--white);
	transform: translateY(-1px);
}

.service-carousel__track {
	overflow-x: auto;
	overflow-y: visible;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	scrollbar-width: none;
	cursor: grab;
	touch-action: pan-x pan-y;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 820px) {
	.service-deep[id] {
		scroll-margin-top: calc(var(--header) + 10px);
	}
}

.service-carousel__track::-webkit-scrollbar {
	display: none;
}

.service-carousel__track.is-dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
	cursor: grabbing;
	user-select: none;
}

.transition-editorial {
	display: grid;
	grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.44fr);
	gap: clamp(22px, 4vw, 56px);
	align-items: center;
	overflow: visible;
}

.service-suite-card--passage {
	min-height: 420px;
}

.transition-passage-feature {
	position: relative;
	overflow: visible;
	padding: clamp(28px, 4vw, 52px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 30px;
	background:
		radial-gradient(circle at 84% 18%, rgba(213, 138, 98, 0.2), transparent 32%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(16, 22, 29, 0.18)),
		rgba(16, 22, 29, 0.18);
}

.transition-passage-feature::after {
	position: absolute;
	right: -120px;
	top: -110px;
	width: 310px;
	aspect-ratio: 1;
	border: 1px solid rgba(213, 138, 98, 0.2);
	border-radius: 999px;
	content: "";
}

.transition-passage-feature > * {
	position: relative;
	z-index: 1;
}

.transition-passage-feature .service-suite-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.transition-passage-feature .service-suite-list li {
	padding: 15px 14px 15px 34px;
	border: 1px solid rgba(213, 138, 98, 0.18);
	border-radius: 16px;
	background: rgba(16, 22, 29, 0.16);
	font-size: 0.88rem;
}

.transition-passage-feature .service-suite-list li::before {
	left: 14px;
}

.transition-moments {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 14px) / 2);
	grid-template-columns: none;
	gap: 14px;
	margin-top: 0;
	padding: 10px 18px 28px 2px;
	scroll-snap-type: none;
}

.transition-moments-shell {
	width: min(790px, 100%);
	margin-top: 26px;
	margin-right: clamp(-150px, -9vw, -72px);
	overflow: visible;
}

.transition-moments-shell .service-carousel__controls {
	justify-content: flex-start;
	margin-bottom: 12px;
}

.transition-moment-card {
	display: grid;
	gap: 12px;
	align-content: start;
	min-height: 214px;
	padding: 22px;
	border: 1px solid rgba(213, 138, 98, 0.22);
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(16, 22, 29, 0.16)),
		rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.78);
	scroll-snap-align: start;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.transition-moment-card h4 {
	color: var(--white);
	font-size: 1.02rem;
	line-height: 1.22;
}

.transition-moment-card p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.88rem;
	line-height: 1.5;
}

.transition-moment-card--title-only {
	align-content: center;
	min-height: 148px;
}

.transition-moments .icon,
.transition-moment-card .icon {
	width: 42px;
	height: 42px;
	min-height: 0;
	padding: 0;
	border-color: rgba(213, 138, 98, 0.28);
	border-radius: 999px;
	background: rgba(213, 138, 98, 0.12);
	color: var(--suite-accent);
}

.transition-editorial__asset {
	display: grid;
	place-items: center;
	min-height: 420px;
}

.transition-editorial__asset img {
	width: auto;
	height: clamp(600px, 56vw, 720px);
	max-width: none;
	aspect-ratio: 831 / 1120;
	object-fit: contain;
	filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.3));
}

.transition-roadmap {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(20px, 2.8vw, 34px);
	align-items: start;
	margin-top: clamp(42px, 5vw, 70px);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.transition-roadmap__intro {
	max-width: 920px;
}

.transition-roadmap__steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}

.transition-roadmap__steps::before {
	position: absolute;
	left: 4%;
	right: 4%;
	top: 34px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(213, 138, 98, 0.45), transparent);
	content: "";
}

.transition-roadmap__steps article {
	position: relative;
	z-index: 1;
	min-height: 158px;
	padding: 24px 20px;
	border-radius: 22px;
	border: 1px solid color-mix(in srgb, var(--suite-accent) 30%, transparent);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(16, 22, 29, 0.14)),
		rgba(16, 22, 29, 0.22);
	backdrop-filter: blur(10px);
}

.transition-tools {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: stretch;
	margin-top: clamp(30px, 4vw, 54px);
}

.service-suite-card--identity {
	display: grid;
	grid-template-columns: minmax(330px, 0.42fr) minmax(0, 0.58fr);
	align-items: center;
	min-height: 440px;
	overflow: visible;
	background:
		radial-gradient(circle at 88% 22%, rgba(213, 138, 98, 0.14), transparent 28%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 223, 212, 0.78)),
		var(--suite-soft);
	color: var(--suite-ink);
}

.service-suite-card--identity .service-suite-card__content > p:not(.service-suite-card__kicker),
.service-suite-card--identity .service-suite-list li {
	color: color-mix(in srgb, var(--suite-ink) 76%, transparent);
}

.service-suite-card--identity blockquote {
	background: color-mix(in srgb, var(--suite-ink) 9%, transparent);
	color: color-mix(in srgb, var(--suite-ink) 78%, transparent);
}

.service-suite-card--tools {
	display: grid;
	grid-template-columns: minmax(0, 0.53fr) minmax(330px, 0.47fr);
	align-items: center;
	min-height: 430px;
	overflow: visible;
	background:
		radial-gradient(circle at 12% 24%, rgba(173, 104, 69, 0.14), transparent 32%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 234, 228, 0.82));
	color: var(--suite-ink);
}

.service-suite-card--identity .service-suite-card__content,
.service-suite-card--tools .service-suite-card__content {
	max-width: 640px;
}

.service-suite-card--identity .service-suite-card__content {
	order: 2;
	justify-self: start;
}

.service-suite-card--identity .service-suite-card__media {
	position: relative;
	order: 1;
	align-self: end;
	justify-self: start;
	margin: -92px 0 -35px 0;
}

.service-suite-card--identity .service-suite-card__media img {
	width: min(100%, 430px);
	min-width: min(38vw, 330px);
	height: min(49vw, 534px);
	max-height: 534px;
	object-fit: contain;
	filter: drop-shadow(0 28px 46px rgba(37, 45, 55, 0.16));
}

.service-suite-card--identity .service-suite-card__media::after {
	position: absolute;
	right: -20px;
	top: 22%;
	width: min(58%, 220px);
	aspect-ratio: 1.78;
	background: url("../img/vysio-transition-arrows.svg") center / contain no-repeat;
	content: "";
	opacity: 0.58;
	pointer-events: none;
	transform: rotate(-2deg);
}

.service-suite-card--tools .service-suite-card__content {
	order: 1;
	justify-self: end;
}

.service-suite-card--tools .service-suite-card__media {
	order: 2;
	justify-self: end;
	margin: -28px -48px -42px -48px;
}

.service-suite-card--tools .service-suite-card__media img {
	width: min(112%, 560px);
	aspect-ratio: 1120 / 818;
	max-height: 390px;
	object-fit: contain;
	filter: drop-shadow(0 30px 48px rgba(37, 45, 55, 0.17));
}

.service-suite-card--tools .service-suite-card__content > p:not(.service-suite-card__kicker),
.service-suite-card--tools .service-suite-list li {
	color: color-mix(in srgb, var(--suite-ink) 76%, transparent);
}

.service-suite-card--tools blockquote {
	background: color-mix(in srgb, var(--copper) 10%, transparent);
	color: color-mix(in srgb, var(--suite-ink) 78%, transparent);
}

.service-suite-cta {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-top: clamp(24px, 4vw, 46px);
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid color-mix(in srgb, var(--suite-accent) 32%, transparent);
	border-radius: 26px;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--suite-accent) 18%, transparent), rgba(16, 22, 29, 0.2)),
		rgba(16, 22, 29, 0.22);
}

.service-suite-cta h3 {
	max-width: 680px;
	font-size: clamp(1.24rem, 1.7vw, 1.78rem);
}

.service-suite-cta p {
	max-width: 760px;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.52;
}

.service-suite--transition .service-suite-cta {
	display: grid;
	justify-items: center;
	max-width: 820px;
	margin: clamp(38px, 5vw, 68px) auto 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-align: center;
}

.service-suite--transition .service-suite-cta h3 {
	max-width: 760px;
	font-size: clamp(1.55rem, 2.3vw, 2.35rem);
}

.service-suite--transition .service-suite-cta p {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.72);
}

.service-suite--transition .service-suite-cta .button {
	margin-top: 8px;
}

.contact-grid {
	grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
	align-items: stretch;
}

.contact-card,
.contact-form-shell {
	border-radius: 22px;
}

.contact-card {
	position: relative;
	overflow: hidden;
	display: grid;
	align-content: start;
	gap: 17px;
	padding: clamp(26px, 2.8vw, 36px);
	background: var(--ink);
	color: var(--white);
}

.contact-card::before {
	position: absolute;
	right: -84px;
	bottom: -84px;
	width: 220px;
	aspect-ratio: 1;
	border: 22px solid rgba(47, 119, 118, 0.22);
	border-radius: 44px;
	content: "";
}

.contact-card > * {
	position: relative;
	z-index: 1;
}

.contact-card h2 {
	font-size: clamp(1.55rem, 2.12vw, 2.18rem);
	line-height: 1.08;
}

.contact-card p:not(.section-kicker) {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.94rem;
	line-height: 1.5;
}

.contact-steps {
	display: grid;
	gap: 13px;
	margin-top: 4px;
}

.contact-steps article {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 14px;
	align-items: start;
}

.contact-steps .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-color: rgba(255, 255, 255, 0.13);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.06);
	color: #58c2bc;
}

.contact-steps .icon svg {
	width: 20px;
	height: 20px;
}

.contact-steps article:nth-child(2) .icon {
	color: #c5b7ff;
}

.contact-steps article:nth-child(3) .icon {
	color: var(--copper);
}

.contact-steps span {
	display: inline-block;
	margin-bottom: 2px;
	color: rgba(173, 104, 69, 0.86);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.contact-steps h3 {
	color: var(--white);
	font-size: 0.96rem;
	line-height: 1.25;
}

.contact-steps p {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.84rem;
	line-height: 1.4;
}

.home-contact__signal {
	display: flex;
	gap: 8px;
	margin-top: 2px;
}

.home-contact__signal span {
	display: block;
	width: 44px;
	height: 3px;
	border-radius: 999px;
	background: var(--green-bright);
	opacity: 0.72;
}

.home-contact__signal span:nth-child(2) {
	width: 28px;
	background: #c5b7ff;
}

.home-contact__signal span:nth-child(3) {
	width: 18px;
	background: var(--copper);
}

.contact-links,
.contact-card__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-card a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.82);
	font-weight: 400;
}

.contact-card__social {
	grid-template-columns: repeat(2, fit-content(120px));
	gap: 14px;
}

.contact-form-shell {
	position: relative;
	z-index: 1;
	padding: clamp(22px, 2.7vw, 32px);
	border: 1px solid rgba(23, 29, 36, 0.11);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 28px 70px rgba(37, 45, 55, 0.12);
	backdrop-filter: blur(10px);
}

.contact-fallback {
	display: grid;
	gap: 14px;
	color: rgba(23, 29, 36, 0.72);
}

.contact-fallback a {
	color: var(--blue);
	font-weight: 400;
}

.contact-fallback-form,
.wpcf7-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 16px;
}

.wpcf7-form p {
	display: contents;
	margin: 0;
}

.wpcf7-form br {
	display: none;
}

.contact-fallback-form label,
.wpcf7-form label {
	display: grid;
	gap: 8px;
	color: rgba(23, 29, 36, 0.72);
	font-weight: 400;
}

.wpcf7-form label:has(textarea),
.wpcf7-form .field-wide,
.wpcf7-form label:has(input[name="como-conheceu"]),
.contact-fallback-form label:has(textarea),
.contact-fallback-form label:has(input[name="como_conheceu"]),
.wpcf7-form p > input.wpcf7-submit,
.contact-fallback-form .button,
.wpcf7 form .wpcf7-response-output {
	grid-column: 1 / -1;
}

.contact-fallback-form label span {
	font-size: 0.88rem;
}

.contact-fallback-form input,
.contact-fallback-form textarea,
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid rgba(23, 29, 36, 0.18);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
	font: inherit;
}

.contact-fallback-form input::placeholder,
.contact-fallback-form textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: rgba(23, 29, 36, 0.38);
}

.wpcf7-form select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(23, 29, 36, 0.58) 50%),
		linear-gradient(135deg, rgba(23, 29, 36, 0.58) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 50%,
		calc(100% - 12px) 50%;
	background-repeat: no-repeat;
	background-size: 6px 6px, 6px 6px;
	color: rgba(23, 29, 36, 0.78);
}

.contact-fallback-form textarea,
.wpcf7-form textarea {
	height: 220px;
	min-height: 220px;
	resize: vertical;
}

.contact-fallback-form .button {
	width: fit-content;
	border: 0;
	border-radius: 16px;
	background: var(--green);
	color: var(--white);
	cursor: pointer;
	font: inherit;
}

.contact-fallback-form .button:hover {
	background: var(--green-deep);
}

.contact-fallback__note {
	margin-top: 2px;
	color: rgba(23, 29, 36, 0.48);
	font-size: 0.82rem;
}

.wpcf7-form input.wpcf7-submit {
	width: 100%;
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 16px;
	background: var(--green);
	color: var(--white);
	font-weight: 700;
	cursor: pointer;
}

.wpcf7-form input.wpcf7-submit:hover {
	background: var(--green-deep);
}

.wpcf7-not-valid-tip {
	margin-top: 6px;
	color: var(--copper-deep);
	font-size: 0.82rem;
}

.wpcf7 form .wpcf7-response-output {
	margin: 4px 0 0;
	padding: 12px 14px;
	border-color: rgba(173, 104, 69, 0.34);
	border-radius: 4px;
	color: rgba(23, 29, 36, 0.76);
	font-size: 0.9rem;
}

.home-system__mark {
	position: absolute;
	right: clamp(24px, 5vw, 72px);
	top: 50%;
	z-index: -1;
	width: min(26vw, 370px);
	opacity: 0.16;
	transform: translateY(-50%);
}

.culture-feature {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, #252d37 0%, #423479 45%, #10161d 100%);
	color: var(--white);
}

.culture-feature::before {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, #000 0, transparent 54%);
	opacity: 0.22;
	content: "";
}

.culture-feature::after {
	position: absolute;
	right: -96px;
	top: -120px;
	width: 380px;
	height: 380px;
	border: 34px solid rgba(104, 86, 159, 0.5);
	border-radius: 76px;
	content: "";
	transform: rotate(4deg);
}

.culture-feature__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
	gap: clamp(42px, 7vw, 96px);
	align-items: center;
}

.culture-feature__copy {
	max-width: 530px;
}

.culture-feature__copy p {
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.72);
}

.feature-points {
	display: grid;
	gap: 12px;
	margin-top: 30px;
}

.feature-points span {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	align-items: center;
	padding: 13px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.96rem;
}

.feature-points .icon {
	width: 42px;
	height: 42px;
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.07);
	color: #c5b7ff;
}

.culture-feature__media {
	position: relative;
	min-height: 560px;
}

.culture-feature__spheres {
	position: absolute;
	right: 4%;
	top: 0;
	width: min(46vw, 560px);
	opacity: 0.78;
	filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.32));
}

.culture-feature__academy {
	position: absolute;
	right: -4%;
	bottom: -4px;
	width: min(62vw, 760px);
	max-width: none;
	filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.38));
}

.brand-orbit--culture {
	left: 7%;
	bottom: 44px;
	z-index: 2;
	border-color: rgba(197, 183, 255, 0.36);
	opacity: 0.58;
}

.about-home__visual {
	position: relative;
	min-height: 500px;
}

.about-home__graphic {
	position: absolute;
	left: -12%;
	top: 50%;
	width: min(58vw, 720px);
	max-width: none;
	filter: drop-shadow(0 34px 54px rgba(75, 36, 22, 0.32));
	transform: translateY(-50%);
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 74%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0%, #000 74%, transparent 100%);
}

.about-home__focus {
	position: absolute;
	left: 22%;
	top: 44%;
	width: min(28vw, 320px);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.about-home__focus::before,
.about-home__focus::after {
	position: absolute;
	content: "";
}

.about-home__focus::before {
	inset: 18%;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: inherit;
}

.about-home__focus::after {
	right: -54px;
	bottom: 19%;
	width: 92px;
	height: 2px;
	background: rgba(88, 194, 188, 0.8);
	transform: rotate(42deg);
	transform-origin: left center;
}

.method-band {
	position: relative;
	background:
		radial-gradient(circle at 84% 44%, rgba(88, 194, 188, 0.26), transparent 34%),
		linear-gradient(135deg, rgba(13, 37, 36, 1) 0%, rgba(23, 63, 61, 0.98) 46%, rgba(39, 93, 91, 0.96) 100%);
}

.method-band::after {
	position: absolute;
	left: -96px;
	bottom: -118px;
	width: 310px;
	height: 310px;
	border: 28px solid rgba(88, 194, 188, 0.2);
	border-radius: 62px;
	content: "";
}

.method-band__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(300px, 0.44fr) minmax(0, 1fr);
	gap: clamp(42px, 7vw, 92px);
	align-items: center;
}

.method-band__intro {
	max-width: 500px;
}

.method-band__intro p {
	color: rgba(255, 255, 255, 0.84);
}

.method-map {
	position: relative;
	min-height: 430px;
}

.method-map__visual {
	position: relative;
	width: min(27vw, 320px);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, rgba(173, 104, 69, 0.18) 0 9%, transparent 10%),
		repeating-radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(244, 241, 237, 0.14) 22.4% 22.9%, transparent 23.3% 35%),
		radial-gradient(circle at 64% 34%, rgba(88, 194, 188, 0.18), transparent 42%);
	box-shadow: inset 0 0 0 1px rgba(88, 194, 188, 0.08);
}

.method-map__visual::before,
.method-map__visual::after {
	position: absolute;
	content: "";
}

.method-map__visual::before {
	inset: 17%;
	border: 1px solid rgba(88, 194, 188, 0.38);
	border-radius: inherit;
}

.method-map__visual::after {
	left: 18%;
	top: 63%;
	width: 66%;
	height: 2px;
	background: linear-gradient(90deg, #58c2bc, #c5b7ff 52%, var(--copper));
	box-shadow: 0 0 24px rgba(88, 194, 188, 0.24);
	transform: rotate(-28deg);
	transform-origin: left center;
}

.method-map__visual span {
	position: absolute;
	z-index: 1;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.82);
	border-radius: 50%;
	background: var(--ink);
	box-shadow: 0 0 0 8px rgba(16, 22, 29, 0.68);
}

.method-map__visual span:nth-child(1) {
	left: 18%;
	top: 61%;
	border-color: #58c2bc;
}

.method-map__visual span:nth-child(2) {
	left: 47%;
	top: 45%;
	border-color: #c5b7ff;
}

.method-map__visual span:nth-child(3) {
	right: 15%;
	top: 28%;
	border-color: var(--copper);
}

.method-steps {
	position: relative;
	display: grid;
	gap: 0;
}

.method-steps::before {
	position: absolute;
	left: 23px;
	top: 42px;
	bottom: 0;
	width: 1px;
	background: linear-gradient(180deg, #58c2bc, #c5b7ff 52%, var(--copper));
	content: "";
}

.method-steps article {
	position: relative;
	display: grid;
	grid-template-columns: 48px 42px 1fr;
	gap: 14px;
	align-items: start;
	padding: 22px 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0;
	background: transparent;
}

.method-steps article:first-child {
	border-top: 0;
}

.method-steps article > .icon {
	position: relative;
	z-index: 1;
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 48px;
	height: 48px;
	background: rgba(16, 22, 29, 0.92);
}

.method-steps article:nth-child(1) > .icon {
	color: #58c2bc;
}

.method-steps article:nth-child(1) h3 {
	color: #58c2bc;
}

.method-steps article:nth-child(2) > .icon {
	color: #c5b7ff;
}

.method-steps article:nth-child(2) h3 {
	color: #c5b7ff;
}

.method-steps article:nth-child(3) > .icon {
	color: var(--copper);
}

.method-steps article:nth-child(3) h3 {
	color: var(--copper);
}

.method-steps__number {
	grid-column: 2;
	grid-row: 1;
	padding-top: 14px;
	color: rgba(255, 255, 255, 0.44);
	font-size: 0.74rem;
	letter-spacing: 0.12em;
}

.method-steps h3 {
	grid-column: 3;
	grid-row: 1;
	margin-top: 10px;
}

.method-steps p {
	grid-column: 3;
	grid-row: 2;
	max-width: 560px;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
}

.page-hero {
	align-items: center;
}

.page-hero__overlay {
	background:
		linear-gradient(90deg, rgba(16, 22, 29, 0.96) 0%, rgba(16, 22, 29, 0.84) 42%, rgba(16, 22, 29, 0.3) 100%),
		linear-gradient(0deg, rgba(16, 22, 29, 0.68), rgba(16, 22, 29, 0.1));
}

.page-hero--copper .page-hero__overlay {
	background: linear-gradient(90deg, rgba(83, 41, 27, 0.98) 0%, rgba(111, 59, 39, 0.82) 45%, rgba(16, 22, 29, 0.28) 100%);
}

.page-hero--green .page-hero__overlay {
	background: linear-gradient(90deg, rgba(16, 63, 61, 0.98) 0%, rgba(16, 63, 61, 0.82) 45%, rgba(16, 22, 29, 0.3) 100%);
}

.page-hero--purple .page-hero__overlay {
	background: linear-gradient(90deg, rgba(66, 52, 121, 0.98) 0%, rgba(66, 52, 121, 0.82) 45%, rgba(16, 22, 29, 0.3) 100%);
}

.page-hero__inner {
	width: min(760px, calc(100% - 48px));
	margin-left: max(24px, calc((100vw - var(--container)) / 2));
	margin-right: auto;
}

.page-hero__media {
	opacity: 0.38;
	filter: saturate(0.92) contrast(1.08);
}

.page-hero--green .page-hero__media {
	opacity: 0.34;
	object-position: center;
}

.page-hero--copper .page-hero__media {
	opacity: 0.32;
	object-position: center;
}

.page-hero--blue .page-hero__media,
.page-hero:not(.page-hero--green):not(.page-hero--copper):not(.page-hero--purple) .page-hero__media {
	opacity: 0.36;
	object-position: center;
}

.about-vision {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(23, 63, 61, 0.98), rgba(32, 68, 111, 0.92)),
		var(--green);
}

.about-vision__grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
	gap: clamp(48px, 6vw, 86px);
}

.about-vision__visual {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: clamp(460px, 42vw, 600px);
}

.about-vision__photo {
	position: relative;
	z-index: 2;
	width: min(100%, 620px);
	margin: 0;
	overflow: visible;
	border-radius: 18px;
}

.about-vision__photo img {
	width: 100%;
	aspect-ratio: 1.32;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: inherit;
	object-fit: cover;
	object-position: left center;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.about-vision__photo figcaption {
	position: absolute;
	left: -28px;
	bottom: -18px;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 2px 12px;
	min-width: min(84%, 300px);
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: rgba(16, 22, 29, 0.88);
	color: var(--white);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(14px);
}

.about-vision__photo figcaption .icon {
	grid-row: 1 / 3;
	width: 34px;
	height: 34px;
	border-color: rgba(88, 194, 188, 0.32);
	background: rgba(88, 194, 188, 0.12);
	color: var(--green-bright);
}

.about-vision__photo figcaption span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.76rem;
	line-height: 1;
}

.about-vision__photo figcaption strong {
	font-size: 0.9rem;
	line-height: 1.18;
}

.about-vision__symbol {
	position: absolute;
	right: 6%;
	top: 4%;
	width: min(18vw, 190px);
	opacity: 0.18;
	filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.24));
}

.about-vision__mark {
	position: absolute;
	right: 1%;
	bottom: 12%;
	width: 150px;
	height: 150px;
	border: 18px solid rgba(173, 104, 69, 0.52);
	border-radius: 34px;
}

.founder-portrait {
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.founder-portrait::before {
	position: absolute;
	left: -22px;
	top: 42px;
	width: 170px;
	height: 170px;
	border: 18px solid rgba(173, 104, 69, 0.42);
	border-radius: 38px;
	content: "";
}

.founder-portrait::after {
	right: 18px;
	bottom: 20px;
	width: 54px;
	height: 54px;
	border-width: 2px;
	opacity: 0.7;
}

.founder-portrait img {
	position: relative;
	z-index: 1;
	border-radius: 46% 46% 8px 8px;
	box-shadow: var(--shadow);
}

.founder-portrait__note {
	position: absolute;
	left: -26px;
	bottom: 28px;
	z-index: 2;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 2px 12px;
	width: min(82%, 310px);
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(16, 22, 29, 0.9);
	color: var(--white);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(14px);
}

.founder-portrait__note .icon {
	grid-row: 1 / 3;
	width: 34px;
	height: 34px;
	border-color: rgba(92, 159, 224, 0.28);
	background: rgba(92, 159, 224, 0.1);
	color: #5c9fe0;
}

.founder-portrait__note span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.76rem;
	line-height: 1;
}

.founder-portrait__note strong {
	font-size: 0.9rem;
	line-height: 1.18;
}

.about-vision__grid {
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: clamp(42px, 5.5vw, 80px);
}

.about-vision__visual {
	min-height: clamp(420px, 40vw, 560px);
}

.about-vision__photo {
	width: min(100%, 560px);
}

.about-vision__photo img {
	aspect-ratio: auto;
	border: 0;
	border-radius: 18px;
	object-fit: contain;
	object-position: center;
}

.founder-grid {
	grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.founder-copy p:not(.section-kicker):not(.founder-role) {
	max-width: 760px;
}

.founder-portrait {
	width: min(100%, 420px);
	padding: 12px;
	overflow: visible;
	border: 1px solid rgba(92, 159, 224, 0.2);
	border-radius: 18px;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
	background: transparent;
}

.founder-portrait::before,
.founder-portrait::after {
	content: none !important;
}

.founder-portrait img {
	aspect-ratio: auto;
	border-radius: 14px;
	box-shadow: none;
	object-position: center;
	object-fit: cover;
}

.founder-portrait__note {
	top: 22px;
	right: 12px;
	left: auto;
	width: min(86%, 300px);
	border-radius: 14px;
}

.belief-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 12%, rgba(88, 194, 188, 0.12), transparent 28%),
		linear-gradient(135deg, #252d37 0%, #171d24 100%);
	color: var(--white);
}

.belief-section::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
	content: "";
}

.belief-section .container {
	position: relative;
	z-index: 1;
}

.belief-grid article {
	display: flex;
	flex-direction: column;
	min-height: 268px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(14px);
}

.belief-grid__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.belief-grid__top .icon {
	width: 46px;
	height: 46px;
	border-color: rgba(88, 194, 188, 0.32);
	background: rgba(88, 194, 188, 0.14);
	color: var(--green-bright);
}

.belief-grid__top span,
.belief-grid span {
	color: var(--white);
}

.belief-grid h3 {
	margin-top: 34px;
	color: var(--white);
}

.belief-grid p {
	color: rgba(255, 255, 255, 0.76);
}

.about-what-we-do {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 22%, rgba(32, 68, 111, 0.3), transparent 32%),
		linear-gradient(135deg, #252d37 0%, #171d24 100%);
	color: var(--white);
}

.about-what-we-do::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1.5px);
	background-size: 34px 34px;
	-webkit-mask-image: linear-gradient(118deg, transparent 0 56%, #000 76%, transparent 96%);
	mask-image: linear-gradient(118deg, transparent 0 56%, #000 76%, transparent 96%);
	opacity: 0.22;
}

.about-what-we-do__inner {
	position: relative;
	z-index: 1;
}

.about-what-we-do__header {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-what-we-do__header::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 174px;
	height: 3px;
	background: linear-gradient(90deg, #5cc2bc 0 33.33%, #8972de 33.33% 66.66%, #d57e52 66.66%);
	content: "";
}

.about-what-we-do__header h2 {
	max-width: 480px;
}

.about-what-we-do__marks {
	display: flex;
	align-items: center;
	gap: 6px;
	overflow: visible;
}

.about-what-we-do__marks img {
	display: block;
	flex: 0 0 auto;
	width: clamp(108px, 10vw, 142px);
	height: auto;
	opacity: 0.86;
}

.about-what-we-do__lead {
	max-width: 980px;
	margin-top: clamp(36px, 4.8vw, 58px);
	color: var(--white);
	font-size: clamp(1.28rem, 2.05vw, 1.76rem);
	font-weight: 500;
	line-height: 1.48;
}

.about-what-we-do__body {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: clamp(54px, 8vw, 112px);
	align-items: start;
	margin-top: clamp(42px, 5vw, 64px);
}

.about-what-we-do__body > p,
.about-what-we-do__closing {
	color: rgba(255, 255, 255, 0.74);
	font-size: 1rem;
	line-height: 1.74;
}

.about-what-we-do__body > p {
	max-width: 700px;
	font-size: clamp(1.03rem, 1.35vw, 1.14rem);
}

.about-what-we-do__closing {
	padding-left: clamp(28px, 3.5vw, 48px);
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.about-what-we-do__closing p + p {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-what-we-do strong {
	color: rgba(255, 255, 255, 0.94);
	font-weight: 600;
}

.about-vision__visual {
	justify-content: center;
}

.about-vision__mockup {
	position: relative;
	z-index: 2;
	display: block;
	width: min(116%, 700px);
	max-width: none;
	margin-left: -8%;
	filter: drop-shadow(0 34px 64px rgba(0, 0, 0, 0.36));
	transform: rotate(-1.8deg);
}

.about-vision__symbol {
	right: 0;
	top: 0;
	width: min(16vw, 176px);
	opacity: 0.2;
}

.about-vision__mark {
	right: 5%;
	bottom: 8%;
	border-color: rgba(88, 194, 188, 0.42);
}

.founder-portrait {
	width: min(100%, 440px);
	padding: 0;
	border: 0;
	border-radius: 22px;
	background: transparent;
	box-shadow: none;
}

.founder-portrait img {
	display: block;
	width: 100%;
	aspect-ratio: 0.776;
	border-radius: 22px;
	object-fit: cover;
	object-position: center top;
	box-shadow: 0 26px 72px rgba(0, 0, 0, 0.26);
}

.founder-portrait__note {
	right: -18px;
	bottom: 28px;
	top: auto;
	width: min(78%, 274px);
	padding: 14px 16px;
	border-color: rgba(88, 194, 188, 0.2);
	border-radius: 16px;
	background: rgba(16, 22, 29, 0.88);
}

.founder-portrait__note .icon {
	border-color: rgba(88, 194, 188, 0.32);
	background: rgba(88, 194, 188, 0.12);
	color: var(--green-bright);
}

.service-process__visual {
	position: relative;
	min-height: 460px;
}

.service-process--copper .service-process__visual::before {
	position: absolute;
	left: -8%;
	top: 4%;
	width: min(32vw, 330px);
	height: 78%;
	background-image: url("../img/vysio-brand-staircase-flag.webp");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	opacity: 0.48;
}

.service-process__visual img {
	position: relative;
	z-index: 1;
}

@media (max-width: 1120px) {
	.primary-nav__list {
		gap: 18px;
	}

	.home-hero__grid,
	.home-system__grid,
	.culture-feature__grid,
	.about-home__grid,
	.method-band__grid,
	.method-band__layout,
	.method-map,
	.founder-grid,
	.editorial-grid,
		.about-vision__grid,
		.services-index__grid,
		.service-deep__grid,
		.service-process__grid,
		.service-suite__header,
		.contact-grid,
		.section-heading--split {
		grid-template-columns: 1fr;
	}

	.home-hero__frame,
	.founder-portrait {
		margin-left: 0;
	}

	.home-system__mark {
		right: 24px;
		width: min(38vw, 320px);
		opacity: 0.12;
		transform: translateY(-50%);
	}

	.about-home__graphic,
	.about-vision__graphic {
		left: -4vw;
		width: min(92vw, 760px);
	}

	.about-vision__photo {
		position: relative;
		left: 0;
		top: auto;
		width: min(100%, 680px);
		transform: none;
	}

	.about-vision__symbol {
		right: 4%;
		width: min(34vw, 220px);
	}

	.culture-feature__academy {
		right: 0;
		width: min(86vw, 760px);
	}

	.culture-feature__spheres {
		right: 18%;
	}

	.method-map__visual {
		width: min(56vw, 310px);
	}

	.about-vision__portrait {
		right: 8%;
		width: min(42vw, 360px);
	}

	.site-footer__grid {
		grid-template-columns: minmax(0, 1fr) minmax(180px, 0.45fr);
	}

	.service-editorial-grid,
	.belief-grid,
	.services-index__cards,
	.service-suite__grid,
	.service-suite-card--wide {
		grid-template-columns: 1fr;
	}

	.service-differentiators {
		grid-template-columns: 1fr;
	}

	.service-suite-card--wide {
		grid-column: auto;
	}

	.service-suite-card--wide.service-suite-card--has-visual {
		grid-template-columns: 1fr;
	}

	.service-deep--purple .service-deep__panel,
	.service-deep--purple .service-deep__copy {
		grid-column: auto;
		grid-row: auto;
	}

	.service-suite-card--map.service-suite-card--wide.service-suite-card--has-visual,
	.culture-assessment-feature,
	.culture-succession-strip,
	.culture-advisory-feature,
	.service-suite-card--tools {
		grid-template-columns: 1fr;
	}

	.service-mini-flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.executive-lab,
	.executive-process,
	.executive-report,
	.culture-framework-panel,
	.transition-editorial,
	.transition-roadmap,
	.transition-tools {
		grid-template-columns: 1fr;
	}

	.executive-process::before {
		display: none;
	}

	.executive-process__rail,
	.transition-roadmap__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.executive-report__loose,
	.transition-editorial__asset {
		margin: 0;
	}

	.culture-mosaic {
		grid-template-columns: 1fr;
	}

	.service-suite-card--assessment,
	.service-suite-card--succession,
	.service-suite-card--advisory {
		grid-column: auto;
	}

	.service-suite-card--advisory {
		grid-template-columns: 1fr;
	}

	.culture-assessment-feature__asset {
		position: relative;
		right: auto;
		bottom: auto;
		grid-column: auto;
		grid-row: auto;
		justify-self: center;
	}

	.culture-assessment-feature__asset img,
	.culture-advisory-feature__asset img {
		width: min(82vw, 320px);
		margin-inline: auto;
	}

	.culture-advisory-feature {
		grid-column: auto;
	}

	.culture-framework-panel {
		grid-template-columns: 1fr;
	}

	.culture-framework-panel__copy,
	.culture-orbit {
		order: initial;
	}

	.executive-report__panel {
		right: -12px;
		bottom: -32px;
	}

	.executive-report__phone {
		width: min(25vw, 230px);
	}

	.transition-moments {
		grid-auto-columns: minmax(280px, 74%);
		grid-template-columns: none;
	}

	.service-editorial {
		min-height: 390px;
	}
}

@media (max-width: 820px) {
	:root {
		--header: 68px;
	}

	.container {
		width: min(100% - 32px, var(--container));
	}

	h1 {
		font-size: clamp(1.82rem, 7.7vw, 2.28rem);
		line-height: 1.08;
	}

	h2 {
		font-size: clamp(1.42rem, 6.2vw, 1.9rem);
	}

	.nav-toggle {
		display: block;
	}

	.primary-nav {
		position: fixed;
		inset: 0;
		z-index: 101;
		display: grid;
		align-content: center;
		padding: 94px 28px 36px;
		background: rgba(16, 22, 29, 0.98);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.nav-open .primary-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.primary-nav__list {
		display: grid;
		gap: 8px;
	}

	.primary-nav a {
		width: 100%;
		min-height: 52px;
		font-size: 1.05rem;
	}

	.primary-nav__list > li:last-child > a {
		justify-content: center;
		margin-top: 12px;
	}

	.service-suite {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.service-suite__header {
		margin-bottom: 24px;
	}

	.service-suite-card {
		min-height: auto;
		padding: 24px;
		border-radius: 18px;
	}

	.service-suite-card--map.service-suite-card--wide.service-suite-card--has-visual {
		padding: 0 0 30px;
	}

	.service-suite-card--map .service-suite-card__number {
		position: relative;
		left: auto;
		top: auto;
		margin-bottom: 20px;
	}

	.service-suite-card__number {
		margin-bottom: 20px;
	}

	.service-suite-card__media img,
	.service-suite-card--wide .service-suite-card__media img {
		max-height: 280px;
	}

	.service-suite-visual {
		min-height: 220px;
	}

	.service-suite-visual--match span {
		width: 116px;
		font-size: 0.68rem;
		letter-spacing: 0.05em;
	}

	.service-suite-visual--match span:nth-of-type(1) {
		left: 0;
	}

	.service-suite-visual--match span:nth-of-type(2) {
		left: 50%;
		transform: translateX(-50%);
	}

	.service-suite-visual--match span:nth-of-type(3) {
		right: 0;
	}

	.service-suite-visual--framework {
		grid-template-columns: 1fr;
	}

	.service-mini-flow {
		grid-template-columns: 1fr;
	}

	.service-suite-card--map .service-suite-list,
	.executive-report .service-suite-list,
	.executive-proof__items,
	.culture-assessment-feature__bullets,
	.culture-succession-strip .service-suite-list,
	.culture-advisory-feature__bullets,
	.transition-passage-feature .service-suite-list {
		grid-template-columns: 1fr;
	}

	.transition-moments {
		grid-auto-columns: minmax(260px, 82%);
		grid-template-columns: none;
	}

	.service-mini-flow div {
		min-height: auto;
	}

	.executive-lab,
	.culture-mosaic,
	.transition-tools {
		gap: 14px;
	}

	.executive-process,
	.culture-framework-panel,
	.executive-report,
	.executive-proof,
	.culture-assessment-feature,
	.culture-succession-strip,
	.culture-advisory-feature,
	.transition-passage-feature {
		padding: 24px;
		border-radius: 20px;
	}

	.executive-process__rail,
	.transition-roadmap__steps,
	.culture-orbit {
		grid-template-columns: 1fr;
	}

	.executive-process__rail div,
	.transition-roadmap__steps article {
		min-height: auto;
	}

	.executive-report__panel {
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 24px;
		justify-items: center;
	}

	.executive-report__phone {
		width: min(62vw, 220px);
		justify-self: center;
		transform: none;
	}

	.executive-report__board {
		width: min(100%, 520px);
		margin-left: 0;
	}

	.culture-orbit div {
		min-height: 168px;
		border-radius: 28px;
	}

	.service-suite__floating-asset--culture {
		right: -34vw;
		top: 180px;
		width: 92vw;
		opacity: 0.18;
	}

	.service-suite__floating-asset--network {
		left: -42vw;
		bottom: 34%;
		width: 96vw;
		opacity: 0.1;
	}

	.service-suite__floating-asset--copper-system {
		right: -44vw;
		top: 46%;
		width: 104vw;
		opacity: 0.12;
	}

	.transition-editorial__asset {
		min-height: 280px;
	}

	.transition-editorial__asset img {
		width: min(82vw, 340px);
	}

	.service-suite-cta {
		display: grid;
		gap: 18px;
		border-radius: 20px;
	}

	.service-differentiators__grid {
		grid-template-columns: 1fr;
	}

	.home-hero {
		min-height: auto;
		padding: calc(var(--header) + 48px) 0 64px;
	}

	.home-hero::before {
		background:
			radial-gradient(circle at 22% 18%, rgba(88, 194, 188, 0.18), transparent 32%),
			linear-gradient(0deg, rgba(16, 22, 29, 0.98) 0%, rgba(16, 22, 29, 0.82) 48%, rgba(16, 22, 29, 0.28) 100%),
			linear-gradient(90deg, rgba(16, 22, 29, 0.84), rgba(39, 93, 91, 0.54));
	}

	.home-hero__bg {
		object-position: left center;
	}

	.home-hero__grid {
		justify-content: flex-start;
		min-height: 620px;
		align-items: end;
	}

	.home-hero__copy {
		width: calc(100vw - 32px);
		max-width: calc(100vw - 32px);
		min-width: 0;
		margin-left: 0;
		padding: 24px 0;
	}

	.home-hero__copy::before {
		inset: -16px auto -16px -12px;
		width: 2px;
		background: linear-gradient(180deg, transparent, rgba(173, 104, 69, 0.78) 30%, rgba(88, 194, 188, 0.72) 70%, transparent);
	}

	.home-hero h1 {
		max-width: calc(100vw - 32px);
	}

	.home-hero h2 {
		max-width: calc(100vw - 32px);
		font-size: 0.9rem;
		overflow-wrap: break-word;
	}

	.home-hero__visual {
		min-height: auto;
	}

	.home-hero__frame {
		width: 100%;
	}

	.hero-card {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		margin-top: 14px;
	}

	.hero-path {
		width: 132px;
		height: 132px;
		border-width: 15px;
	}

	.section,
	.home-system,
	.about-home {
		padding: 66px 0;
	}

	.trust-section {
		padding: 34px 0;
	}

	.home-contact {
		padding: 58px 0;
	}

	.testimonials-carousel {
		grid-auto-columns: calc((100% - 16px) / 2);
	}

	.service-editorial-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.service-editorial,
	.service-editorial:nth-child(2),
	.service-editorial:nth-child(3) {
		margin-top: 0;
	}

	.service-editorial__media {
		height: 255px;
	}

	.culture-feature__media,
	.about-home__visual,
	.about-vision__visual,
	.service-process__visual {
		min-height: 380px;
	}

	.about-vision__mockup {
		width: min(104%, 620px);
		margin-left: -2%;
		transform: none;
	}

	.about-vision__photo figcaption,
	.founder-portrait__note {
		left: 16px;
		bottom: 16px;
		width: calc(100% - 32px);
		min-width: 0;
	}

	.contact-section__asset--symbol {
		right: -80px;
		width: 260px;
	}

	.home-system__copy {
		width: 100%;
		min-width: 0;
	}

	.home-system h2,
	.home-system__text,
	.home-system__text p {
		max-width: 100%;
		min-width: 0;
		overflow-wrap: break-word;
	}

	.home-system__mark {
		right: -18px;
		width: 260px;
	}

	.client-marquee__item {
		width: 142px;
		height: 54px;
		padding: 8px 22px;
	}

	.client-marquee__item img {
		max-height: 31px;
	}

	.about-home__graphic,
	.about-vision__graphic {
		position: absolute;
		left: -18px;
		width: min(104vw, 680px);
	}

	.about-home__focus {
		left: 36%;
		width: min(58vw, 300px);
	}

	.culture-feature__media {
		min-height: 450px;
	}

	.culture-feature__spheres {
		right: 2%;
		width: min(78vw, 440px);
	}

	.culture-feature__academy {
		right: -18%;
		bottom: 0;
		width: min(118vw, 650px);
	}

	.method-band__layout {
		gap: 34px;
	}

	.method-map {
		min-height: auto;
	}

	.method-steps::before {
		left: 19px;
	}

	.method-steps article {
		grid-template-columns: 40px 34px 1fr;
		gap: 12px;
		padding: 20px 0;
	}

	.method-steps article > .icon {
		width: 40px;
		height: 40px;
	}

	.page-hero__inner {
		width: min(100% - 32px, var(--container));
		margin-left: auto;
	}

	.about-vision__portrait {
		right: 0;
		width: min(54vw, 300px);
	}

	.service-process--copper .service-process__visual::before {
		left: auto;
		right: 0;
		width: 220px;
		opacity: 0.28;
	}

	.page-hero,
	.service-deep {
		min-height: 520px;
		padding: calc(var(--header) + 58px) 0 58px;
	}

	.service-deep {
		min-height: auto;
	}

	.service-deep__panel,
	.contact-card,
	.contact-form-shell,
	.final-cta__panel {
		padding: 24px;
	}

	.contact-fallback-form,
	.wpcf7-form {
		grid-template-columns: 1fr;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.vysio-logo {
		width: 112px;
	}

	.home-hero__copy,
	.home-hero h1 {
		width: 100%;
		max-width: 360px;
	}

	.home-hero__copy {
		padding-left: 18px;
	}

	.home-hero h1 {
		font-size: 2.06rem;
	}

	.home-hero h2 {
		max-width: 340px;
	}

	.home-hero__actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.service-suite-card {
		padding: 22px;
		border-radius: 16px;
	}

	.service-suite-card h3 {
		font-size: 1.34rem;
	}

	.service-suite-card__media img,
	.service-suite-card--wide .service-suite-card__media img {
		max-height: 220px;
		border-radius: 14px;
	}

	.service-mini-flow div {
		padding: 16px;
	}

	.executive-process,
	.culture-framework-panel,
	.service-suite-cta {
		padding: 20px;
		border-radius: 18px;
	}

	.executive-lab__asset {
		min-height: 110px;
	}

	.executive-report__loose img {
		width: 100%;
	}

	.executive-process__rail div,
	.transition-roadmap__steps article {
		padding: 18px;
		border-radius: 18px;
	}

	.culture-orbit,
	.transition-passage-feature .service-suite-list {
		grid-template-columns: 1fr;
	}

	.transition-moments {
		grid-auto-columns: minmax(260px, 82%);
		grid-template-columns: none;
	}

	.transition-passage-feature {
		min-height: auto;
		padding: 28px 22px;
	}

	.transition-moments-shell {
		margin-right: 0;
	}

	.service-suite-card--identity,
	.service-suite-card--tools {
		grid-template-columns: 1fr;
	}

	.service-suite-card--identity .service-suite-card__media,
	.service-suite-card--tools .service-suite-card__media {
		order: initial;
		margin: 10px 0 -22px;
		justify-self: center;
	}

	.culture-orbit div {
		min-height: auto;
		padding: 22px 18px;
	}

	.about-home__visual,
	.about-vision__visual {
		min-height: 320px;
	}

	.about-vision__mockup {
		width: min(112%, 520px);
		margin-left: -6%;
	}

	.about-vision__photo figcaption,
	.founder-portrait__note {
		position: relative;
		left: auto;
		bottom: auto;
		width: 100%;
		margin-top: -8px;
	}

	.about-vision__mark,
	.about-vision__symbol {
		opacity: 0.12;
	}

	.home-system h2 {
		width: min(100%, 340px);
		max-width: 340px;
		font-size: 1.62rem;
		line-height: 1.14;
		overflow-wrap: break-word;
	}

	.home-system__copy,
	.home-system__text,
	.home-system__text p {
		width: min(100%, 340px);
		max-width: 340px;
	}

	.home-system__mark {
		right: -34px;
		width: 228px;
		opacity: 0.12;
	}

	.testimonials-section__head {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.testimonials-section__controls {
		justify-content: flex-start;
	}

	.testimonials-carousel {
		grid-auto-columns: minmax(286px, 86%);
	}

	.testimonial-card {
		min-height: 330px;
		padding: 24px;
	}

	.trust-section__inner > p {
		font-size: 0.68rem;
		letter-spacing: 0.12em;
	}

	.client-marquee {
		mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
	}

	.culture-feature__media {
		min-height: 390px;
	}

	.feature-points span {
		grid-template-columns: 38px 1fr;
		font-size: 0.9rem;
	}

	.method-steps article {
		grid-template-columns: 38px 30px 1fr;
	}

	.method-steps__number {
		font-size: 0.7rem;
	}

	.service-editorial {
		--service-media-height: 235px;
		min-height: 520px;
	}

	.service-editorial__content {
		padding: calc(var(--service-media-height) + 50px) 22px 24px;
	}

	.service-editorial__content h3 {
		min-height: 0;
		font-size: 1.34rem;
	}

	.service-editorial__summary {
		min-height: 0;
	}

	.service-editorial__media {
		left: 0;
		right: 0;
		top: 0;
		height: var(--service-media-height);
	}

	.process-timeline article {
		grid-template-columns: 42px 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	* {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Feedback refinement layer */
.home-hero--feedback::before {
	background:
		radial-gradient(circle at 74% 22%, rgba(88, 194, 188, 0.18), transparent 30%),
		linear-gradient(90deg, rgba(16, 22, 29, 0.1) 0%, rgba(16, 22, 29, 0.2) 38%, rgba(16, 22, 29, 0.7) 66%, rgba(16, 22, 29, 0.94) 100%),
		linear-gradient(0deg, rgba(16, 22, 29, 0.42), rgba(16, 22, 29, 0.06));
}

.home-hero--feedback .home-hero__bg {
	object-position: center center;
}

.home-hero--feedback .home-hero__grid {
	justify-content: flex-end;
}

.home-hero--feedback .home-hero__copy {
	max-width: min(100%, 570px);
	margin-left: auto;
	margin-right: 0;
}

.home-system--feedback {
	min-height: 560px;
	padding: clamp(88px, 7vw, 116px) 0 clamp(74px, 6vw, 96px);
	background: #6f422f;
}

.home-system--feedback .home-system__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	opacity: 0.9;
}

.home-system--feedback::before {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(68, 39, 29, 0.1) 0%, rgba(82, 47, 34, 0.36) 34%, rgba(111, 66, 47, 0.9) 58%, rgba(111, 66, 47, 0.98) 100%),
		radial-gradient(circle at 72% 44%, rgba(173, 104, 69, 0.36), transparent 36%);
	opacity: 1;
	mask-image: none;
}

.home-system--feedback::after {
	z-index: 1;
	right: -12%;
	background: radial-gradient(circle, rgba(88, 194, 188, 0.1), transparent 66%);
}

.home-system--feedback .home-system__grid {
	justify-content: flex-end;
	min-height: 430px;
}

.home-system--feedback .home-system__copy {
	position: relative;
	z-index: 2;
	width: min(58vw, 820px);
	margin-left: auto;
}

.home-system--feedback .home-system__text {
	gap: 16px;
	max-width: 700px;
	margin-top: 0;
}

.home-system--feedback .home-system__label {
	width: 100%;
	max-width: 700px;
}

.home-system--feedback .home-system__text p {
	color: rgba(244, 241, 237, 0.78);
	font-size: clamp(1.05rem, 1.12vw, 1.16rem);
	line-height: 1.72;
}

.home-system--feedback .home-system__mark {
	left: clamp(22px, 5vw, 78px);
	right: auto;
	z-index: 2;
	width: min(24vw, 350px);
	opacity: 0.16;
	filter: brightness(0) saturate(100%) invert(72%) sepia(13%) saturate(1317%) hue-rotate(128deg) brightness(95%) contrast(86%);
}

.home-system--feedback h2 {
	max-width: 780px;
}

.home-system--feedback .home-system__text {
	max-width: 700px;
}

.founder-section--home {
	background:
		radial-gradient(circle at 88% 16%, rgba(88, 194, 188, 0.12), transparent 28%),
		radial-gradient(circle at 10% 72%, rgba(173, 104, 69, 0.1), transparent 32%),
		linear-gradient(135deg, #171d24 0%, #252d37 100%);
	color: var(--paper);
}

.founder-section--home h2 {
	color: var(--white);
}

.founder-section--home .founder-copy p:not(.section-kicker):not(.founder-role) {
	color: rgba(244, 241, 237, 0.84);
}

.founder-section--home .founder-role {
	color: var(--green-bright);
}

.founder-section--home .founder-copy .button {
	margin-top: 28px;
	border: 1px solid rgba(32, 68, 111, 0.96);
	background: #20446f;
	color: var(--white);
	box-shadow: 0 14px 36px rgba(32, 68, 111, 0.28);
}

.founder-section--home .founder-copy .button:hover {
	border-color: #28578c;
	background: #28578c;
}

.home-rede {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 86%, rgba(173, 104, 69, 0.24), transparent 32%),
		radial-gradient(circle at 82% 12%, rgba(244, 241, 237, 0.08), transparent 28%),
		linear-gradient(135deg, #2a1710 0%, #5a2f20 52%, #6f3b27 100%);
	color: var(--white);
}

.home-rede::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(16, 22, 29, 0.08), transparent 30%, rgba(16, 22, 29, 0.12)),
		radial-gradient(circle at 52% 50%, rgba(173, 104, 69, 0.22), transparent 38%);
	opacity: 1;
	content: "";
}

.home-rede__heading {
	position: relative;
	z-index: 1;
	padding-bottom: clamp(18px, 2.4vw, 30px);
	text-align: center;
}

.home-rede__heading h2 {
	margin: 0;
	color: var(--white);
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1.05;
}

.home-rede__heading p {
	max-width: 620px;
	margin: 12px auto 0;
	color: rgba(244, 241, 237, 0.78);
	font-size: 1rem;
	line-height: 1.6;
}

.home-rede__venn {
	position: relative;
	z-index: 1;
	--rede-size: min(42.5vw, 485px);
	--rede-offset-x: calc(var(--rede-size) * 0.32);
	--rede-top-y: 0px;
	--rede-bottom-y: calc(var(--rede-size) * 0.43);
	--rede-center-y: calc(var(--rede-size) * 0.81);
	min-height: clamp(590px, 58vw, 680px);
}

.home-rede__dots {
	position: absolute;
	width: 240px;
	height: 310px;
	background-image: radial-gradient(rgba(244, 241, 237, 0.58) 2px, transparent 2px);
	background-size: 34px 34px;
	opacity: 0.38;
	pointer-events: none;
}

.home-rede__dots--left {
	left: -7vw;
	top: 0;
}

.home-rede__dots--right {
	right: -3vw;
	top: 28%;
}

.home-rede__circle {
	position: absolute;
	width: var(--rede-size);
	aspect-ratio: 1;
	padding: clamp(30px, 4.5vw, 68px);
	border: 2px solid rgba(224, 132, 89, 0.72);
	border-radius: 999px;
	background: rgba(64, 32, 21, 0.08);
	box-shadow: inset 0 0 70px rgba(173, 104, 69, 0.06);
}

.home-rede__circle p {
	position: absolute;
	max-width: 260px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(0.82rem, 1vw, 0.96rem);
	line-height: 1.46;
}

.home-rede__circle strong {
	display: block;
	margin-bottom: 4px;
	color: #e08459;
	font-weight: 700;
}

.home-rede__circle--top {
	left: 50%;
	top: var(--rede-top-y);
	transform: translateX(-50%);
	text-align: center;
}

.home-rede__circle--top p {
	left: 50%;
	top: calc(var(--rede-size) * 0.18);
	width: min(56%, 250px);
	transform: translateX(-50%);
}

.home-rede__circle--left {
	left: calc(50% - var(--rede-offset-x));
	top: var(--rede-bottom-y);
	transform: translateX(-50%);
}

.home-rede__circle--left p {
	left: calc(var(--rede-size) * 0.13);
	top: calc(var(--rede-size) * 0.5);
	width: min(42%, 200px);
}

.home-rede__circle--right {
	left: calc(50% + var(--rede-offset-x));
	top: var(--rede-bottom-y);
	transform: translateX(-50%);
}

.home-rede__circle--right p {
	left: calc(var(--rede-size) * 0.52);
	top: calc(var(--rede-size) * 0.5);
	width: min(43%, 210px);
}

.home-rede__center {
	position: absolute;
	left: 50%;
	top: var(--rede-center-y);
	z-index: 2;
	width: min(12vw, 104px);
	color: var(--white);
	font-size: clamp(0.9rem, 1.45vw, 1.32rem);
	line-height: 0.94;
	text-align: center;
	transform: translate(-50%, -50%);
}

.home-rede__center span {
	display: block;
	margin-bottom: 2px;
	font-size: 0.96em;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.home-rede__center strong {
	display: block;
	font-size: 1.03em;
	font-weight: 700;
}

.home-rede__side-title {
	position: absolute;
	left: 1%;
	top: 17%;
	max-width: 190px;
	margin: 0;
	color: var(--white);
	font-size: clamp(1.08rem, 1.45vw, 1.35rem);
	font-weight: 600;
	line-height: 1.25;
}

.home-rede__mobile-venn {
	display: none;
}

.home-rede__quote {
	position: absolute;
	right: -1%;
	top: 8%;
	max-width: 285px;
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(0.82rem, 0.96vw, 0.96rem);
	line-height: 1.55;
}

.contact-form-only {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: clamp(22px, 3vw, 34px);
	max-width: 920px;
	text-align: center;
}

.contact-form-only .contact-form-shell,
.contact-form-only .wpcf7-form,
.contact-form-only .contact-fallback-form {
	text-align: left;
}

.contact-form-only__head {
	max-width: none;
}

.contact-form-only__head h2 {
	white-space: nowrap;
}

.contact-form-only__head p {
	margin-top: 14px;
	color: rgba(23, 29, 36, 0.66);
}

.contact-form-only .contact-form-shell {
	width: 100%;
	border-radius: 26px;
}

.services-contact .contact-form-only {
	width: min(calc(100% - 32px), 1040px);
	max-width: 1040px;
	gap: clamp(28px, 3.4vw, 42px);
}

.services-contact .contact-form-only__head {
	width: min(100%, 820px);
	max-width: 820px;
}

.services-contact .contact-form-only__head h2 {
	max-width: 760px;
	margin-inline: auto;
	white-space: normal;
	text-wrap: balance;
}

.services-contact .contact-form-only__head p {
	max-width: 790px;
	margin-inline: auto;
	text-wrap: balance;
}

.services-contact .contact-form-shell {
	max-width: 980px;
	padding: clamp(28px, 3.2vw, 40px);
}

.executive-depth-card {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(560px, 50vw, 680px);
	margin-inline: calc(50% - 50vw);
	padding: clamp(56px, 7vw, 92px) max(24px, calc((100vw - var(--container)) / 2));
	border: 0;
	border-radius: 0;
	background:
		linear-gradient(90deg, rgba(7, 27, 27, 0.98) 0%, rgba(10, 44, 43, 0.94) 34%, rgba(12, 62, 58, 0.54) 58%, rgba(12, 62, 58, 0.16) 100%),
		radial-gradient(circle at 64% 48%, rgba(85, 211, 186, 0.2), transparent 32%),
		url("../img/vysio-talent-mapping-bg.webp");
	background-position: left center;
	background-size: 130% auto;
	overflow: hidden;
}

.executive-depth-card::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(7, 27, 27, 0.14), rgba(7, 27, 27, 0.5)),
		radial-gradient(circle at 78% 47%, rgba(30, 185, 141, 0.08), rgba(4, 20, 20, 0.52) 72%);
	content: "";
	pointer-events: none;
}

.executive-depth-card__copy,
.executive-depth-card__visual {
	position: relative;
	z-index: 1;
}

.executive-depth-card__copy {
	max-width: 660px;
}

.executive-depth-card__header {
	margin-bottom: clamp(28px, 4vw, 44px);
}

.executive-depth-card__header h2 {
	max-width: 680px;
	font-size: clamp(2rem, 3.1vw, 3.25rem);
	line-height: 1;
}

.executive-depth-card__header .section-kicker {
	margin-bottom: 12px;
}

.executive-depth-card__copy .icon {
	margin-bottom: 20px;
	color: var(--suite-accent);
}

.executive-depth-card__copy > p:not(.service-suite-card__kicker) {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.58;
}

.executive-depth-card__copy .service-suite-list {
	margin-top: 24px;
	max-width: 500px;
}

.executive-depth-card__copy .service-suite-list li {
	padding-left: 18px;
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
}

.executive-depth-card__visual {
	display: grid;
	align-items: end;
	justify-items: center;
	min-height: 460px;
	margin: 0;
}

.executive-depth-card__visual span {
	position: absolute;
	right: 6%;
	top: 8%;
	z-index: 2;
	max-width: 250px;
	padding: 13px 16px;
	border: 1px solid rgba(88, 194, 188, 0.26);
	border-radius: 999px;
	background: rgba(16, 22, 29, 0.6);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.executive-depth-card__visual img {
	width: min(86%, 560px);
	max-height: 510px;
	object-fit: contain;
	filter: drop-shadow(0 36px 54px rgba(0, 0, 0, 0.34));
}

.culture-products {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	min-width: 0;
	gap: clamp(18px, 2.8vw, 34px);
	align-items: start;
	margin-top: clamp(30px, 5vw, 64px);
}

.culture-products__intro {
	position: relative;
	overflow: visible;
	clip-path: inset(-130px 0 0 0 round 30px);
	min-height: clamp(300px, 28vw, 390px);
	padding: clamp(30px, 4.4vw, 58px);
	padding-right: min(42vw, 520px);
	border: 1px solid rgba(185, 169, 255, 0.2);
	border-radius: 30px;
	background:
		radial-gradient(circle at 78% 36%, rgba(185, 169, 255, 0.18), transparent 34%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(16, 22, 29, 0.12)),
		rgba(16, 22, 29, 0.2);
}

.culture-products__intro > .icon {
	margin-bottom: 20px;
	color: var(--suite-accent);
}

.culture-products__intro h3 {
	max-width: 620px;
	font-size: clamp(1.42rem, 2vw, 2.1rem);
}

.culture-products__intro p:not(.service-suite-card__kicker) {
	max-width: 590px;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.56;
}

.culture-products__intro img {
	position: absolute;
	right: clamp(20px, 5vw, 86px);
	bottom: 0;
	z-index: 2;
	width: clamp(192px, 19vw, 276px);
	height: clamp(360px, 35vw, 520px);
	object-fit: contain;
	filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.28));
}

.service-suite .service-suite-card__number,
.service-suite .service-mini-flow span,
.service-suite .executive-process__rail span,
.service-suite .transition-roadmap__steps article > span,
.service-suite .culture-orbit span,
.culture-products__top span {
	display: none;
}

.culture-products__list {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 32px) / 3);
	grid-template-columns: none;
	width: 100%;
	min-width: 0;
	gap: 16px;
	align-items: stretch;
}

.culture-products__carousel {
	width: 100%;
	min-width: 0;
}

.culture-products__list article {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding: 22px;
	border: 1px solid rgba(185, 169, 255, 0.18);
	border-radius: 24px;
	background: rgba(16, 22, 29, 0.18);
	scroll-snap-align: start;
}

.culture-products__list article:first-child {
	grid-column: auto;
	display: flex;
	min-height: 300px;
}

.culture-products__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.culture-products__top .icon {
	border-color: rgba(185, 169, 255, 0.24);
	background: rgba(185, 169, 255, 0.1);
	color: var(--suite-accent);
}

.culture-products__top span {
	color: rgba(185, 169, 255, 0.66);
	font-size: 1.42rem;
	font-weight: 700;
}

.culture-products__list h4 {
	color: var(--white);
	font-size: clamp(1rem, 1.08vw, 1.14rem);
	line-height: 1.18;
}

.culture-products__list p {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.86rem;
	line-height: 1.48;
}

.culture-products__list ul {
	display: grid;
	gap: 8px;
	margin: auto 0 0;
	padding: 18px 0 0;
	list-style: none;
}

.culture-products__list li {
	position: relative;
	padding-left: 18px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.86rem;
}

.culture-products__list li::before {
	position: absolute;
	left: 0;
	top: 0.58em;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--suite-accent);
	content: "";
}

@media (max-width: 1120px) {
	.service-deep--purple .service-deep__grid {
		grid-template-columns: 1fr;
	}

	.culture-framework-panel__copy {
		order: 1;
	}

	.culture-orbit {
		order: 2;
	}

	.service-differentiators--purple .service-differentiators__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-differentiators--purple .service-differentiators__grid article:nth-child(odd) {
		border-left: 0;
	}

	.service-differentiators--purple .service-differentiators__grid article:nth-child(n + 3) {
		border-top: 1px solid rgba(185, 169, 255, 0.2);
	}

	.home-hero--feedback .home-hero__grid,
	.home-system--feedback .home-system__grid,
	.executive-depth-card,
	.culture-products,
	.culture-products__list article:first-child {
		grid-template-columns: 1fr;
	}

	.culture-products__list {
		grid-auto-columns: minmax(270px, calc((100% - 16px) / 2));
		grid-template-columns: none;
	}

	.home-system--feedback .home-system__copy {
		width: min(100%, 760px);
	}

	.home-system--feedback .home-system__mark {
		left: auto;
		right: 24px;
	}

	.executive-depth-card__visual {
		min-height: 360px;
	}

	.culture-products__intro {
		min-height: 420px;
	}

	.home-rede__venn {
		--rede-size: min(42vw, 390px);
	}

	.home-rede__quote {
		right: -1%;
		max-width: 260px;
	}
}

@media (max-width: 820px) {
	.service-deep--purple .service-deep__panel ul {
		grid-template-columns: 1fr;
	}

	.service-differentiators--purple .service-differentiators__grid {
		grid-template-columns: 1fr;
	}

	.service-differentiators--purple .service-differentiators__grid article {
		border-left: 0;
	}

	.service-differentiators--purple .service-differentiators__grid article + article {
		border-top: 1px solid rgba(185, 169, 255, 0.2);
	}

	.executive-proof {
		grid-template-columns: 1fr;
	}

	.executive-proof__note {
		grid-column: 1;
		min-height: auto;
	}

	.home-hero--feedback::before {
		background:
			linear-gradient(0deg, rgba(16, 22, 29, 0.98) 0%, rgba(16, 22, 29, 0.82) 52%, rgba(16, 22, 29, 0.16) 100%),
			linear-gradient(90deg, rgba(16, 22, 29, 0.84), rgba(39, 93, 91, 0.44));
	}

	.home-hero--feedback .home-hero__bg {
		object-position: 45% center;
	}

	.home-hero--feedback .home-hero__grid {
		justify-content: flex-start;
	}

	.home-hero--feedback .home-hero__copy {
		margin-left: 0;
		margin-right: auto;
	}

	.home-system--feedback {
		min-height: auto;
	}

	.home-system--feedback .home-system__bg {
		opacity: 0.28;
	}

	.home-system--feedback::before {
		background: linear-gradient(180deg, rgba(111, 66, 47, 0.92), rgba(37, 45, 55, 0.96));
	}

	.home-system--feedback .home-system__copy {
		width: 100%;
	}

	.home-system__label {
		margin-bottom: 26px;
		text-align: left;
	}

	.home-system__logo {
		width: min(72vw, 280px);
	}

	.home-system--feedback .home-system__text p {
		font-size: 1.02rem;
		line-height: 1.64;
	}

	.home-system--feedback .home-system__mark {
		right: -32px;
		width: 240px;
	}

	.culture-products__list {
		grid-auto-columns: minmax(248px, 86%);
		grid-template-columns: none;
	}

	.contact-form-only__head h2 {
		white-space: normal;
	}

	.home-rede__venn {
		display: grid;
		gap: 14px;
		min-height: auto;
	}

	.home-rede__circle,
	.home-rede__side-title,
	.home-rede__quote,
	.home-rede__center {
		position: relative;
		inset: auto;
		width: 100%;
		max-width: none;
		aspect-ratio: auto;
		transform: none;
	}

	.home-rede__circle {
		min-height: 220px;
		padding: 28px;
		border-radius: 28px;
	}

	.home-rede__circle p {
		position: relative;
		left: auto;
		top: auto;
		width: auto;
		max-width: 100%;
		text-align: left;
	}

	.home-rede__center {
		order: -1;
		padding: 22px 0 10px;
	}

	.home-rede__side-title {
		margin-top: 8px;
		padding: 8px 0 0;
		font-size: 1.12rem;
	}

	.home-rede__quote {
		padding: 10px 0 0;
	}

	.home-rede__dots {
		opacity: 0.14;
	}

	.culture-products__intro,
	.culture-products__list article {
		border-radius: 20px;
	}

	.executive-depth-card {
		min-height: 540px;
		margin-inline: calc(50% - 50vw);
		padding: 56px 24px;
		border-radius: 0;
		background:
			linear-gradient(90deg, rgba(7, 27, 27, 0.98) 0%, rgba(10, 44, 43, 0.9) 52%, rgba(12, 62, 58, 0.36) 100%),
			radial-gradient(circle at 70% 42%, rgba(85, 211, 186, 0.15), transparent 34%),
			url("../img/vysio-talent-mapping-bg.webp");
		background-position: 34% center;
		background-size: auto 100%;
	}

	.executive-depth-card__visual {
		min-height: 310px;
	}

	.executive-depth-card__visual span {
		position: relative;
		top: auto;
		right: auto;
		margin-bottom: 16px;
	}

	.executive-depth-card__visual img {
		width: min(100%, 360px);
	}

	.culture-products__intro {
		min-height: 360px;
		padding-bottom: 210px;
		padding-right: clamp(24px, 6vw, 40px);
	}

	.culture-products__intro img {
		right: 50%;
		width: min(54vw, 210px);
		height: min(72vw, 360px);
		object-fit: contain;
		transform: translateX(50%);
	}
}

@media (max-width: 520px) {
	.contact-form-only .contact-form-shell {
		padding: 20px;
		border-radius: 18px;
	}
}

/* Services refinement after the final copy review. */
.service-deep--green .service-deep__media img {
	object-position: center center;
	transform: scaleX(-1);
}

.service-deep--green::after {
	background:
		linear-gradient(90deg, rgba(7, 30, 30, 0.96) 0%, rgba(9, 43, 42, 0.9) 34%, rgba(10, 55, 52, 0.54) 58%, rgba(16, 22, 29, 0.14) 100%),
		radial-gradient(circle at 72% 48%, rgba(88, 194, 188, 0.12), transparent 34%);
}

.service-deep--green .service-deep__grid {
	grid-template-columns: minmax(0, 680px) 1fr;
}

.service-deep--green .service-deep__copy blockquote {
	max-width: 620px;
	padding: 5px 0 5px 20px;
	border: 0;
	border-left: 3px solid var(--service-accent);
	border-radius: 0;
	background: transparent;
}

.executive-depth-card {
	align-items: stretch;
	min-height: clamp(610px, 50vw, 720px);
}

.executive-depth-card__copy {
	display: grid;
	grid-template-columns: 1fr;
	align-content: center;
	width: 100%;
	max-width: none;
}

.executive-depth-card__header,
.executive-depth-card__narrative {
	max-width: 660px;
}

.executive-depth-card__header {
	margin-bottom: clamp(18px, 2vw, 26px);
}

.executive-depth-card__narrative > .brand-icon--placeholder {
	display: none;
}

.executive-depth-card__narrative > .icon {
	margin-bottom: 18px;
	color: var(--suite-accent);
}

.executive-depth-card__narrative > p:not(.service-suite-card__kicker) {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.58;
}

.executive-depth-card__journey {
	position: relative;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: center;
	width: 100%;
	margin-top: clamp(36px, 5vw, 58px);
}

.executive-search-stages__label {
	align-self: center;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0;
}

.executive-search-stages {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.executive-search-stages::before {
	position: absolute;
	left: 0;
	right: 10%;
	top: 98px;
	height: 2px;
	background: repeating-linear-gradient(90deg, rgba(88, 194, 188, 0.82) 0 9px, transparent 9px 20px);
	content: "";
}

.executive-search-stages li {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: 56px 86px minmax(76px, auto);
	justify-items: center;
	min-width: 0;
	padding: 0 clamp(8px, 1.4vw, 18px);
	text-align: center;
}

.executive-search-stages strong {
	align-self: end;
	max-width: 160px;
	padding-bottom: 12px;
	color: var(--white);
	font-size: clamp(0.88rem, 1.1vw, 1rem);
	font-weight: 600;
	line-height: 1.18;
}

.executive-search-stages__number {
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	border: 2px solid var(--suite-accent);
	border-radius: 50%;
	background: #123f3d;
	color: var(--suite-accent);
	font-size: 1.72rem;
	font-weight: 500;
	line-height: 1;
}

.executive-search-stages p {
	max-width: 170px;
	padding-top: 16px;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(0.8rem, 1vw, 0.9rem);
	line-height: 1.28;
}

@media (max-width: 820px) {
	.executive-depth-card__journey {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.executive-search-stages {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.executive-search-stages::before {
		left: 33px;
		right: auto;
		top: 38px;
		bottom: 38px;
		width: 2px;
		height: auto;
		background: repeating-linear-gradient(180deg, rgba(88, 194, 188, 0.82) 0 9px, transparent 9px 20px);
	}

	.executive-search-stages li {
		grid-template-columns: 68px minmax(0, 1fr);
		grid-template-rows: auto auto;
		justify-items: start;
		min-height: 126px;
		padding: 0 0 26px;
		text-align: left;
	}

	.executive-search-stages strong {
		grid-column: 2;
		grid-row: 1;
		align-self: end;
		max-width: none;
		padding: 8px 0 4px 18px;
	}

	.executive-search-stages__number {
		grid-column: 1;
		grid-row: 1 / 3;
		align-self: center;
		width: 68px;
		height: 68px;
		font-size: 1.42rem;
	}

	.executive-search-stages p {
		grid-column: 2;
		grid-row: 2;
		max-width: 460px;
		padding: 2px 0 8px 18px;
	}
}

.executive-process {
	grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
	gap: clamp(36px, 6vw, 84px);
	padding-block: clamp(44px, 6vw, 72px);
}

.executive-process::before {
	display: none;
}

.executive-process__copy {
	max-width: 680px;
}

.executive-process__copy .executive-process__brand-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
}

.executive-process__rail--3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	padding-left: 26px;
	border-left: 1px solid rgba(88, 194, 188, 0.28);
}

.executive-process__rail--3 div,
.executive-process__rail--labels div {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	min-height: 0;
	padding: 18px 0;
	border: 0;
	border-bottom: 1px solid rgba(88, 194, 188, 0.16);
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
}

.executive-process__rail--3 div:last-child {
	border-bottom: 0;
}

.executive-process__rail--3 div::before {
	display: none;
}

.service-suite .executive-process__rail--3 span.executive-process__marker {
	position: absolute;
	left: -36px;
	top: 50%;
	display: inline-flex;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
}

.service-suite .executive-process__rail--3 span.executive-process__marker img {
	width: 100%;
	height: 100%;
}

.executive-process__rail--3 strong {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
	font-size: 1rem;
	line-height: 1.3;
}

.executive-process__rail--3 p {
	grid-column: 1;
	margin: 6px 0 0;
}

.culture-framework-panel {
	grid-template-columns: 1fr;
	gap: clamp(28px, 4vw, 42px);
	padding: clamp(28px, 4vw, 48px) 0;
	border: 0;
	border-top: 1px solid rgba(185, 169, 255, 0.2);
	border-bottom: 1px solid rgba(185, 169, 255, 0.2);
	border-radius: 0;
	background: transparent;
	overflow: visible;
}

.culture-framework-panel::after {
	display: none;
}

.culture-framework-panel__copy {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	max-width: 760px;
}

.culture-framework-panel__copy .icon {
	grid-column: 1;
	margin: 0;
}

.culture-framework-panel__copy h3 {
	grid-column: 2;
	margin: 0;
}

.culture-framework-panel__copy > p {
	grid-column: 2;
}

.culture-orbit {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid rgba(185, 169, 255, 0.16);
	border-bottom: 1px solid rgba(185, 169, 255, 0.16);
}

.culture-orbit div {
	min-height: 0;
	padding: clamp(22px, 2.7vw, 34px);
	border: 0;
	border-radius: 0;
	background: transparent;
}

.culture-orbit div + div {
	border-left: 1px solid rgba(185, 169, 255, 0.18);
}

.culture-orbit div::before {
	display: block;
	width: 10px;
	height: 10px;
	margin-bottom: 18px;
	border: 2px solid #3a3071;
	border-radius: 999px;
	background: var(--suite-accent);
	box-shadow: 0 0 0 1px rgba(185, 169, 255, 0.38), 0 0 18px rgba(185, 169, 255, 0.2);
	content: "";
}

.culture-products {
	grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
	grid-template-rows: auto 1fr;
	column-gap: clamp(32px, 5vw, 72px);
	row-gap: 20px;
	align-items: end;
	margin-top: clamp(54px, 8vw, 96px);
	padding-top: clamp(26px, 4vw, 46px);
	border-top: 1px solid rgba(185, 169, 255, 0.2);
}

.culture-products__heading {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	align-items: center;
	gap: 16px;
	align-self: start;
}

.culture-products__heading .icon {
	flex: 0 0 auto;
	color: var(--suite-accent);
}

.culture-products__heading h3 {
	font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.culture-products__visual {
	position: relative;
	grid-column: 1;
	grid-row: 2;
	display: grid;
	align-items: end;
	justify-items: center;
	min-height: 410px;
	margin: 0;
	pointer-events: none;
}

.culture-products__visual::before {
	position: absolute;
	left: 50%;
	top: 48%;
	width: min(30vw, 340px);
	aspect-ratio: 1;
	border: 1px solid rgba(185, 169, 255, 0.2);
	border-radius: 999px;
	content: "";
	transform: translate(-50%, -50%);
}

.culture-products__visual img {
	position: relative;
	z-index: 1;
	width: min(100%, 300px);
	height: 450px;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.28));
}

.culture-products__carousel {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: end;
}

.culture-products__list {
	grid-auto-columns: calc((100% - 16px) / 2);
}

.culture-products__list article,
.culture-products__list article:first-child {
	min-height: 340px;
}

@media (max-width: 1120px) {
	.culture-products {
		grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
	}

	.culture-products__visual {
		min-height: 360px;
	}

	.culture-products__visual img {
		width: min(100%, 250px);
		height: 400px;
	}

	.culture-products__list {
		grid-auto-columns: minmax(270px, 78%);
	}
}

@media (max-width: 820px) {
	.service-deep--green .service-deep__grid {
		grid-template-columns: 1fr;
	}

	.service-deep--green .service-deep__media img {
		object-position: 40% center;
	}

	.executive-depth-card__journey .service-suite-list {
		grid-template-columns: 1fr;
		gap: 0;
		padding-left: 8px;
	}

	.executive-depth-card__journey .service-suite-list::before {
		left: 16px;
		right: auto;
		top: 8px;
		bottom: 8px;
		width: 1px;
		height: auto;
		background: linear-gradient(180deg, var(--suite-accent), rgba(88, 194, 188, 0.2));
	}

	.executive-depth-card__journey .service-suite-list li {
		padding: 0 0 22px 44px;
	}

	.executive-depth-card__journey .service-suite-list li::before {
		left: 0;
		top: 1px;
	}

	.executive-process {
		grid-template-columns: 1fr;
		gap: 26px;
		padding-inline: 0;
	}

	.culture-framework-panel__copy {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 14px;
	}

	.culture-orbit {
		grid-template-columns: 1fr;
	}

	.culture-orbit div + div {
		border-top: 1px solid rgba(185, 169, 255, 0.18);
		border-left: 0;
	}

	.culture-products {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		gap: 20px;
	}

	.culture-products__heading,
	.culture-products__visual,
	.culture-products__carousel {
		grid-column: 1;
		grid-row: auto;
	}

	.culture-products__visual {
		min-height: 300px;
	}

	.culture-products__visual::before {
		width: min(78vw, 300px);
	}

	.culture-products__visual img {
		width: min(70vw, 230px);
		height: 330px;
	}

	.culture-products__list {
		grid-auto-columns: minmax(248px, 86%);
	}
}

/* Final rhythm and alignment refinements for the services page. */
.service-deep--purple .service-deep__grid {
	grid-template-columns: minmax(0, 680px) 1fr;
}

.service-deep--purple .service-deep__copy {
	grid-column: 1;
	grid-row: 1;
}

.executive-depth-card__journey .service-suite-list {
	counter-reset: executive-stage;
}

.executive-depth-card__journey .service-suite-list::before {
	top: 15px;
}

.executive-depth-card__journey .service-suite-list li {
	counter-increment: executive-stage;
	padding-top: 48px;
}

.executive-depth-card__journey .service-suite-list li::before {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 2px solid #123f3d;
	background: var(--suite-accent);
	color: #0b2928;
	content: counter(executive-stage);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
}

.service-suite .culture-products__top span.icon {
	display: inline-grid;
}

.culture-products__list article,
.culture-products__list article:first-child {
	min-height: 310px;
	padding: 22px 24px;
}

.culture-products__top {
	margin-bottom: 18px;
}

.culture-products__visual {
	border-bottom: 1px solid rgba(185, 169, 255, 0.28);
}

.culture-products__visual::after {
	position: absolute;
	left: 18%;
	right: 18%;
	bottom: -1px;
	height: 12px;
	background: radial-gradient(ellipse at center, rgba(16, 22, 29, 0.34), transparent 68%);
	content: "";
}

.culture-products__visual img {
	bottom: -1px;
}

.service-suite--culture .service-suite-cta {
	display: flex;
	justify-content: center;
	gap: clamp(22px, 3vw, 38px);
	max-width: none;
	margin-top: clamp(48px, 7vw, 82px);
	padding: clamp(28px, 3vw, 38px) 0 0;
	border: 0;
	border-top: 1px solid rgba(185, 169, 255, 0.2);
	border-radius: 0;
	background: transparent;
}

.service-suite--culture .service-suite-cta h3 {
	max-width: none;
	font-size: clamp(1.35rem, 2vw, 2rem);
	white-space: nowrap;
}

.transition-passage-feature {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.transition-passage-feature::after {
	display: none;
}

.transition-moments-shell {
	width: 100%;
	margin-top: 28px;
	margin-right: 0;
}

.transition-moments--index {
	display: grid;
	grid-auto-flow: row;
	grid-auto-columns: auto;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	overflow: visible;
	cursor: default;
}

.transition-moments--index .transition-moment-card,
.transition-moments--index .transition-moment-card--title-only {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	align-content: center;
	min-height: 92px;
	padding: 18px;
	border: 0;
	border-bottom: 1px solid rgba(213, 138, 98, 0.2);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	scroll-snap-align: none;
}

.transition-moments--index .transition-moment-card:nth-child(even) {
	border-left: 1px solid rgba(213, 138, 98, 0.2);
}

.transition-moments--index .transition-moment-card:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.transition-moments--index .icon {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
}

.transition-moments--index .transition-moment-card__brand-icon {
	display: block;
	grid-column: 1;
	grid-row: 1;
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.transition-moments--index h4 {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	font-size: 0.94rem;
}

.service-suite-card--tools {
	grid-template-columns: minmax(0, 0.58fr) minmax(330px, 0.42fr);
}

.service-suite-card--tools .service-suite-card__content {
	width: 100%;
	max-width: none;
	justify-self: stretch;
}

.service-suite-card--identity .service-suite-card__icon {
	display: none;
}

.service-suite-card--tools .service-suite-card__icon {
	display: none;
}

.service-suite-card--identity .service-suite-list li {
	padding-left: 34px;
}

.service-suite-card--identity .service-suite-list {
	gap: 14px;
}

.service-suite-card--identity .service-suite-list li::before {
	left: 0;
	top: 50%;
	width: 24px;
	height: 24px;
	border-radius: 0;
	background: url("../img/vysio-check-copper.png") center / contain no-repeat;
	transform: translateY(-50%);
}

@media (min-width: 1121px) {
	.service-suite--transition {
		padding-top: clamp(68px, 5.5vw, 80px);
	}

	.transition-editorial {
		align-items: start;
	}

	.transition-editorial__copy {
		padding-top: clamp(72px, 7vw, 96px);
	}
}

@media (max-width: 1120px) {
	.service-deep--purple .service-deep__grid {
		grid-template-columns: minmax(0, 680px) 1fr;
	}

	.service-deep--purple .service-deep__copy {
		grid-column: 1;
	}
}

@media (max-width: 820px) {
	.service-deep--purple .service-deep__grid {
		grid-template-columns: 1fr;
	}

	.executive-depth-card__journey .service-suite-list::before {
		left: 22px;
		top: 14px;
	}

	.executive-depth-card__journey .service-suite-list li {
		padding: 4px 0 28px 58px;
	}

	.executive-depth-card__journey .service-suite-list li::before {
		left: 0;
		top: 0;
	}

	.service-suite--culture .service-suite-cta {
		flex-direction: column;
	}

	.service-suite--culture .service-suite-cta h3 {
		white-space: normal;
		text-align: center;
	}

	.transition-moments--index {
		grid-template-columns: 1fr;
	}

	.transition-moments--index .transition-moment-card:nth-child(even) {
		border-left: 0;
	}

	.transition-moments--index .transition-moment-card:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.service-suite-card--tools {
		grid-template-columns: 1fr;
	}
}

/* Client preference: unnumbered stages and a shared baseline for Solutions. */
.executive-depth-card__journey .service-suite-list::before {
	top: 8px;
}

.executive-depth-card__journey .service-suite-list li {
	padding-top: 34px;
}

.executive-depth-card__journey .service-suite-list li::before {
	display: block;
	width: 17px;
	height: 17px;
	border: 4px solid #123f3d;
	background: var(--suite-accent);
	color: transparent;
	content: "";
}

.culture-products__visual {
	border-bottom: 0;
	transform: translateY(clamp(46px, 7vw, 90px));
}

.culture-products__carousel {
	transform: none;
}

@media (max-width: 820px) {
	.executive-depth-card__journey .service-suite-list::before {
		left: 16px;
		top: 8px;
	}

	.executive-depth-card__journey .service-suite-list li {
		padding: 0 0 22px 44px;
	}

	.executive-depth-card__journey .service-suite-list li::before {
		left: 0;
		top: 1px;
	}

	.culture-products__visual,
	.culture-products__carousel {
		transform: none;
	}
}

/* Services overview: a responsive map of the full executive journey. */
.services-map-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: calc(var(--header) + 54px) 0 48px;
	background: linear-gradient(145deg, #10161d 0%, #252d37 54%, #18222c 100%);
	color: var(--white);
}

.services-map-hero::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1.4px);
	background-size: 31px 31px;
	opacity: 0.32;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
	content: "";
}

.services-map-hero__inner {
	position: relative;
	z-index: 1;
}

.services-map-hero__header {
	max-width: 1120px;
	margin-bottom: clamp(24px, 2.8vw, 36px);
}

.services-map-hero__header .section-kicker {
	margin-bottom: 14px;
	color: var(--copper);
}

.services-map-hero__header h1 {
	max-width: 1100px;
	font-size: 2.65rem;
	line-height: 1.06;
}

.services-map-hero__header h1 .services-map-hero__title-line {
	display: block;
}

.service-suite--culture .culture-framework-panel {
	padding-bottom: 0;
	border-bottom: 0;
}

.service-suite--culture .culture-framework-panel__copy {
	max-width: none;
}

.service-suite--culture .culture-orbit {
	border-top: 0;
	border-bottom: 1px solid rgba(185, 169, 255, 0.16);
}

.service-suite--culture .culture-products {
	margin-top: clamp(28px, 4vw, 50px);
	padding-top: 0;
	border-top: 0;
}

@media (min-width: 821px) {
	.service-suite--culture .culture-products {
		grid-template-rows: auto auto;
		row-gap: 12px;
		align-items: center;
	}

	.service-suite--culture .culture-products__heading {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.service-suite--culture .culture-products__visual {
		grid-column: 1;
		grid-row: 2;
		transform: none;
	}

	.service-suite--culture .culture-products__carousel {
		grid-column: 2;
		grid-row: 2;
		align-self: center;
		transform: none;
	}

	.service-suite--culture .culture-products + .service-differentiators--purple {
		margin-top: 0;
	}

	.service-suite-card--tools {
		padding-left: calc(clamp(24px, 2.8vw, 34px) + 20px);
	}
}

.service-suite--culture .service-differentiators--purple .service-differentiators__grid {
	border-top: 0;
}

.service-suite--culture .service-suite-cta {
	border-top: 0;
}

.services-journey-map {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.services-journey-map__groups {
	display: grid;
	grid-template-columns: 1.15fr 1.15fr 0.92fr;
	gap: clamp(18px, 2.4vw, 34px);
}

.services-journey-map__group {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: auto minmax(0, 1fr);
	gap: 14px;
}

.services-journey-map__group + .services-journey-map__group::before {
	position: absolute;
	left: calc(clamp(18px, 2.4vw, 34px) / -2);
	top: 36%;
	bottom: 6%;
	width: 1px;
	background: linear-gradient(transparent, rgba(255, 255, 255, 0.48) 16%, rgba(255, 255, 255, 0.48) 84%, transparent);
	content: "";
}

.services-journey-map__group--talent .services-journey-map__item--wide {
	grid-column: 1 / -1;
}

.services-journey-map__group--transition {
	grid-template-columns: 1fr;
}

.services-journey-map__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(72px, 1fr));
	gap: clamp(10px, 1vw, 14px);
}

.services-journey-map__group--transition .services-journey-map__items {
	grid-template-columns: 1fr;
}

.services-journey-map__group--transition .services-journey-map__item {
	grid-row: 1 / -1;
}

.services-journey-map__pillar {
	display: grid;
	grid-template-rows: 54px 2.5em;
	justify-items: center;
	align-content: start;
	padding: 0 10px 4px;
	color: var(--white);
	text-align: center;
}

.services-journey-map__pillar img {
	width: clamp(92px, 8vw, 118px);
	height: 54px;
	object-fit: contain;
	transition: transform 180ms ease, filter 180ms ease;
}

.services-journey-map__pillar strong {
	display: flex;
	max-width: 240px;
	height: 2.5em;
	align-items: center;
	justify-content: center;
	margin-top: 7px;
	font-size: clamp(0.94rem, 1.15vw, 1.08rem);
	font-weight: 600;
	line-height: 1.2;
}

.services-journey-map__pillar:hover img,
.services-journey-map__pillar:focus-visible img {
	filter: brightness(1.15);
	transform: translateY(-3px);
}

.services-journey-map__group--talent .services-journey-map__pillar:hover,
.services-journey-map__group--talent .services-journey-map__pillar:focus-visible {
	color: #58c2bc;
}

.services-journey-map__group--culture .services-journey-map__pillar:hover,
.services-journey-map__group--culture .services-journey-map__pillar:focus-visible {
	color: #b9a9ff;
}

.services-journey-map__group--transition .services-journey-map__pillar:hover,
.services-journey-map__group--transition .services-journey-map__pillar:focus-visible {
	color: #d57e52;
}

.services-journey-map__item,
.services-journey-map__foundation {
	display: grid;
	place-items: center;
	min-width: 0;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.025);
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(0.88rem, 1.15vw, 1.06rem);
	line-height: 1.35;
	text-align: center;
}

.services-journey-map__item {
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.services-journey-map__group--talent .services-journey-map__item {
	border-color: rgba(88, 194, 188, 0.58);
	background: rgba(88, 194, 188, 0.08);
}

.services-journey-map__group--culture .services-journey-map__item {
	border-color: rgba(185, 169, 255, 0.58);
	background: rgba(185, 169, 255, 0.08);
}

.services-journey-map__group--transition .services-journey-map__item {
	border-color: rgba(213, 126, 82, 0.64);
	background: rgba(173, 104, 69, 0.1);
}

.services-journey-map__group--talent .services-journey-map__item:hover {
	border-color: #58c2bc;
	color: #58c2bc;
}

.services-journey-map__group--culture .services-journey-map__item:hover {
	border-color: #b9a9ff;
	color: #b9a9ff;
}

.services-journey-map__group--transition .services-journey-map__item:hover {
	border-color: #d57e52;
	color: #d57e52;
}

.services-journey-map__foundation {
	min-height: 58px;
	margin-top: clamp(12px, 1.2vw, 16px);
	border-color: rgba(255, 255, 255, 0.44);
	font-size: clamp(0.96rem, 1.35vw, 1.16rem);
}

.services-map-pillars {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(38px, 5vw, 68px);
}

.services-map-pillars::before {
	position: absolute;
	left: 12%;
	right: 12%;
	top: 0;
	height: 1px;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 8px, transparent 8px 17px);
	content: "";
}

.services-map-pillar {
	position: relative;
	display: grid;
	justify-items: center;
	min-width: 0;
	padding: clamp(34px, 4vw, 54px) clamp(18px, 3vw, 42px) 4px;
	color: var(--white);
	text-align: center;
}

.services-map-pillar + .services-map-pillar {
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.services-map-pillar img {
	width: clamp(132px, 12.5vw, 178px);
	height: auto;
	margin-bottom: 18px;
	transition: transform 220ms ease, filter 220ms ease;
}

.services-map-pillar h2 {
	max-width: 330px;
	font-size: clamp(1.18rem, 1.8vw, 1.65rem);
	line-height: 1.25;
}

.services-map-pillar:hover img,
.services-map-pillar:focus-visible img {
	transform: translateY(-5px);
	filter: brightness(1.14);
}

.services-map-pillar::after {
	position: absolute;
	left: 50%;
	top: -4px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: currentcolor;
	box-shadow: 0 0 0 5px #202a34;
	content: "";
	transform: translateX(-50%);
}

.services-map-pillar--green::after {
	color: #58c2bc;
}

.services-map-pillar--purple::after {
	color: #b9a9ff;
}

.services-map-pillar--copper::after {
	color: #d57e52;
}

@media (max-width: 980px) {
	.services-journey-map__groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-journey-map__group--transition {
		grid-column: 1 / -1;
		grid-template-rows: minmax(100px, auto);
	}

	.services-journey-map__group--transition .services-journey-map__item {
		grid-row: auto;
	}

	.services-journey-map__group--transition::before {
		display: none;
	}
}

@media (max-width: 700px) {
	.services-map-hero {
		padding-top: calc(var(--header) + 52px);
	}

	.services-map-hero__header h1 {
		font-size: clamp(1.95rem, 3.05vw, 2.95rem);
	}

	.services-journey-map {
		padding: 16px;
	}

	.services-journey-map__groups {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.services-journey-map__group,
	.services-journey-map__group--transition {
		grid-column: auto;
		grid-template-rows: auto;
	}

	.services-journey-map__group + .services-journey-map__group::before {
		display: none;
	}

	.services-journey-map__pillar {
		grid-template-rows: 54px auto;
		justify-items: start;
		padding-inline: 0;
		text-align: left;
	}

	.services-journey-map__pillar strong {
		width: auto;
		max-width: none;
		height: auto;
		justify-content: flex-start;
		font-size: 0.88rem;
		text-align: left;
		white-space: nowrap;
	}

	.services-journey-map__group--transition .services-journey-map__items {
		grid-template-rows: auto;
	}

	.services-journey-map__item {
		min-height: 76px;
	}

	.services-map-pillars {
		grid-template-columns: 1fr;
		margin-top: 42px;
	}

	.services-map-pillars::before {
		display: none;
	}

	.services-map-pillar {
		grid-template-columns: 108px minmax(0, 1fr);
		align-items: center;
		justify-items: start;
		gap: 22px;
		padding: 24px 0;
		text-align: left;
	}

	.services-map-pillar + .services-map-pillar {
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		border-left: 0;
	}

	.services-map-pillar::after {
		display: none;
	}

	.services-map-pillar img {
		width: 108px;
		margin: 0;
	}

	.services-map-pillar h2 {
		font-size: 1.14rem;
	}
}

/* About page: ecosystem, partner network, differentiators and markets. */
.about-ecosystem,
.about-differentials,
.about-segments {
	position: relative;
	overflow: hidden;
	scroll-margin-top: var(--header);
}

.about-ecosystem {
	background:
		radial-gradient(circle at 78% 56%, rgba(32, 68, 111, 0.36), transparent 34%),
		linear-gradient(135deg, #252d37 0%, #18212a 58%, #10171e 100%);
	color: var(--white);
}

.about-ecosystem::before,
.about-segments::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1.5px);
	background-size: 34px 34px;
	-webkit-mask-image: linear-gradient(120deg, transparent 0 42%, #000 68%, transparent 94%);
	mask-image: linear-gradient(120deg, transparent 0 42%, #000 68%, transparent 94%);
	opacity: 0.24;
}

.about-ecosystem__intro,
.about-segments__intro {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(54px, 8vw, 124px);
	align-items: start;
}

.about-ecosystem .section-kicker,
.about-segments .section-kicker {
	color: #6fa8e1;
}

.about-ecosystem h2,
.about-segments h2 {
	max-width: 550px;
}

.about-ecosystem__copy {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
	line-height: 1.72;
}

.about-ecosystem__copy p + p,
.about-segments__intro p + p {
	margin-top: 15px;
}

.about-ecosystem__partners {
	position: relative;
	z-index: 2;
	margin-top: clamp(48px, 6vw, 78px);
	padding-top: clamp(34px, 4.5vw, 52px);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	scroll-margin-top: var(--header);
}

.about-partners__heading {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(50px, 8vw, 120px);
	align-items: end;
}

.about-partners__heading .section-kicker {
	color: var(--green);
}

.about-partners__heading h2 {
	max-width: 650px;
}

.about-partners__heading > p {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.7;
}

.about-partners__marquee {
	position: relative;
	z-index: 1;
	margin-top: clamp(28px, 4vw, 46px);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.about-partners__track {
	display: flex;
	width: max-content;
	animation: client-marquee 34s linear infinite;
	will-change: transform;
}

.about-partners__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(220px, 23vw, 320px);
	height: 90px;
	padding: 12px clamp(26px, 3vw, 46px);
	border-right: 1px solid rgba(255, 255, 255, 0.14);
	background: transparent;
	color: var(--white);
}

.about-partners__item img {
	display: block;
	max-width: 82%;
	max-height: 58px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1) brightness(0) invert(1);
	opacity: 0.76;
	transition: opacity 180ms ease;
}

.about-partners__item:hover img {
	opacity: 1;
}

.about-partners__item--consultores {
	justify-content: center;
}

.about-partners__item--consultores strong {
	max-width: 270px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(0.98rem, 1.2vw, 1.14rem);
	line-height: 1.35;
	text-align: center;
}

.about-differentials {
	background:
		linear-gradient(90deg, rgba(173, 104, 69, 0.06), transparent 32%),
		#f1f2f0;
	color: var(--ink);
}

.about-differentials__intro {
	display: grid;
	grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(54px, 8vw, 118px);
	align-items: start;
}

.about-differentials__intro .section-kicker {
	color: var(--copper);
}

.about-differentials__intro h2 {
	max-width: 630px;
}

.about-differentials__copy {
	max-width: 720px;
	color: rgba(37, 45, 55, 0.72);
	line-height: 1.72;
}

.about-differentials__copy p + p {
	margin-top: 15px;
}

.about-differentials__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: clamp(46px, 6vw, 76px);
	border-top: 1px solid rgba(37, 45, 55, 0.16);
}

.about-differentials__list article {
	display: block;
	min-width: 0;
	padding: 30px 34px 30px 0;
	border-bottom: 1px solid rgba(37, 45, 55, 0.16);
}

.about-differentials__list article:nth-child(odd) {
	padding-right: 42px;
	border-right: 1px solid rgba(37, 45, 55, 0.16);
}

.about-differentials__list article:nth-child(even) {
	padding-left: 42px;
}

.about-differentials__list article:last-child {
	grid-column: 1 / -1;
	padding-right: 0;
	padding-left: 0;
	border-right: 0;
}

.about-differentials__list h3 {
	margin: 0 0 10px;
	font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}

.about-differentials__list p {
	max-width: 680px;
	color: rgba(37, 45, 55, 0.68);
	line-height: 1.66;
}

.about-segments {
	background:
		radial-gradient(circle at 0 100%, rgba(92, 194, 188, 0.18), transparent 28%),
		linear-gradient(126deg, #20446f 0%, #25313e 52%, #191f28 100%);
	color: var(--white);
}

.about-segments__intro > div:last-child {
	max-width: 660px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.72;
}

.about-segments__label {
	margin-top: clamp(44px, 6vw, 72px);
	color: #8fc3ee;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-segments__list {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0 clamp(28px, 4vw, 64px);
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.about-segments__list > li {
	display: flex;
	align-items: center;
	min-height: 62px;
	padding: 17px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.82);
	transition: color 180ms ease;
}

.about-segments__list > li:hover {
	color: #9edbd6;
}

.about-segments__list span {
	font-size: clamp(0.92rem, 1.2vw, 1.04rem);
	font-weight: 500;
}

@media (max-width: 980px) {
	.about-ecosystem__intro,
	.about-partners__heading,
	.about-differentials__intro,
	.about-segments__intro {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.about-segments__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.about-what-we-do__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.about-what-we-do__marks {
		gap: 0;
	}

	.about-what-we-do__marks img {
		width: 74px;
	}

	.about-what-we-do__lead {
		font-size: 1.2rem;
	}

	.about-what-we-do__body {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-top: 34px;
	}

	.about-what-we-do__closing {
		padding-top: 28px;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
		border-left: 0;
	}

	.about-ecosystem__partners {
		margin-top: 42px;
		padding-top: 34px;
	}

	.about-partners__marquee {
		-webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
		mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
	}

	.about-partners__item {
		width: 220px;
		height: 84px;
		padding: 12px 24px;
	}

	.about-differentials__list {
		grid-template-columns: 1fr;
	}

	.about-differentials__list article,
	.about-differentials__list article:nth-child(odd),
	.about-differentials__list article:nth-child(even),
	.about-differentials__list article:last-child {
		grid-column: auto;
		padding: 24px 0;
		border-right: 0;
	}
}

@media (max-width: 520px) {
	.about-segments__list {
		grid-template-columns: 1fr;
	}

	.about-segments__list > li {
		min-height: 58px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-partners__track {
		animation-play-state: paused;
	}
}

/* Official Vysio icon system. */
.brand-icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
}

.brand-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.brand-icon--placeholder {
	visibility: hidden;
}

.belief-grid__top .brand-icon {
	width: 64px;
	height: 64px;
}

.executive-depth-card__narrative > .brand-icon,
.executive-process__copy .brand-icon,
.executive-report__copy .brand-icon,
.executive-proof__copy .brand-icon,
.culture-framework-panel__copy .brand-icon,
.transition-roadmap__intro .brand-icon,
.transition-passage-feature > .brand-icon {
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
}

.executive-proof__items article {
	position: relative;
	min-height: 150px;
	padding-top: 22px;
}

.executive-proof__items article::before {
	display: none;
}

.culture-products__heading .brand-icon {
	width: 54px;
	height: 54px;
}

.culture-products__top .brand-icon {
	display: inline-flex;
	width: 48px;
	height: 48px;
}

.service-suite .culture-products__top span.brand-icon {
	display: inline-flex;
}

.service-differentiators__heading > .brand-icon {
	width: 54px;
	height: 54px;
	margin-bottom: 20px;
}

.service-differentiators--purple .service-differentiators__heading > .brand-icon {
	margin-bottom: 0;
}

.service-differentiators--purple .brand-icon--placeholder {
	display: none;
}

.service-differentiators--purple .service-differentiators__heading,
.service-differentiators--purple .service-differentiators__grid article {
	text-align: left;
}

.service-differentiators--purple .service-differentiators__grid article {
	padding-top: 20px;
	padding-bottom: 22px;
}

.service-differentiators__grid .brand-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
}

.service-suite-card__icon .brand-icon {
	width: 54px;
	height: 54px;
}

.transition-moment-card--title-only {
	align-content: center;
}

@media (max-width: 720px) {
	.belief-grid__top .brand-icon {
		width: 56px;
		height: 56px;
	}
}

/* Culture and leadership: three connected development movements. */
.service-suite--culture .culture-orbit {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(48px, 4.6vw, 66px);
	align-items: stretch;
	overflow: visible;
	border: 0;
}

.service-suite--culture .culture-orbit__stage {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 336px;
	flex-direction: column;
	align-items: stretch;
	padding: 74px clamp(22px, 2.2vw, 32px) 30px;
	border: 1px solid rgba(232, 226, 255, 0.72);
	background: rgba(20, 16, 59, 0.24);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-suite--culture .culture-orbit__stage h4 {
	position: absolute;
	inset: -1px -1px auto;
	display: grid;
	min-height: 50px;
	margin: 0;
	padding: 8px 18px;
	place-items: center;
	border: 1px solid rgba(240, 236, 255, 0.78);
	background: linear-gradient(90deg, #755cda 0%, #9d78ee 100%);
	color: #fff;
	font-size: clamp(1.08rem, 1.45vw, 1.28rem);
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
}

.service-suite--culture .culture-orbit p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.94rem;
	line-height: 1.48;
}

.service-suite--culture .culture-orbit__summary {
	position: relative;
	display: flex;
	min-height: 96px;
	align-items: center;
	padding: 14px 15px 14px 28px;
	background: rgba(29, 23, 75, 0.48);
	text-align: left;
}

.service-suite--culture .culture-orbit__summary::before {
	position: absolute;
	inset: 12px auto 12px 0;
	width: 3px;
	background: #a98aff;
	content: "";
}

.service-suite--culture .culture-orbit .culture-orbit__detail {
	max-width: 290px;
	margin: 26px auto 0;
	color: rgba(255, 255, 255, 0.84);
	text-align: center;
}

.service-suite--culture .culture-orbit__stage:not(:last-child)::after {
	position: absolute;
	z-index: 2;
	right: calc(clamp(48px, 4.6vw, 66px) / -2 - 9px);
	top: 50%;
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 20px solid rgba(151, 121, 232, 0.62);
	content: "";
	transform: translateY(-50%);
}

@media (max-width: 900px) {
	.service-suite--culture .culture-orbit {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.service-suite--culture .culture-orbit__stage {
		min-height: 0;
		padding-bottom: 34px;
	}

	.service-suite--culture .culture-orbit__stage:not(:last-child)::after {
		right: auto;
		top: auto;
		bottom: -38px;
		left: 50%;
		transform: translateX(-50%) rotate(90deg);
	}

	.service-suite--culture .culture-orbit .culture-orbit__detail {
		max-width: 560px;
	}
}

/* Services headings without temporary icon placeholders. */
.service-suite--culture .culture-framework-panel__copy {
	display: block;
	max-width: none;
}

.service-suite--culture .culture-framework-panel__copy h3,
.service-suite--culture .culture-framework-panel__copy > p {
	margin-left: 0;
	text-align: left;
}

.service-suite--culture .culture-products__heading {
	display: block;
	text-align: left;
}

.executive-report__copy {
	align-self: center;
}

/* Mobile refinement: navigation, page rhythm and compact compositions. */
@media (max-width: 820px) {
	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.nav-toggle {
		width: 34px;
		height: 34px;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.nav-toggle__line,
	.nav-toggle__line::before,
	.nav-toggle__line::after {
		left: 5px;
		width: 24px;
		height: 2px;
		border-radius: 999px;
	}

	.nav-toggle__line {
		top: 16px;
	}

	.nav-toggle:focus,
	.nav-toggle:focus-visible {
		outline: 0;
		color: var(--copper);
	}

	.primary-nav {
		inset: 0 auto auto 0;
		width: 90vw;
		height: 100dvh;
		padding: calc(var(--header) + 34px) 24px 38px;
		align-content: start;
		overflow-y: auto;
		background:
			radial-gradient(circle at 12% 88%, rgba(88, 194, 188, 0.12), transparent 28%),
			linear-gradient(150deg, #10161d 0%, #18212a 58%, #252d37 100%);
		box-shadow: 24px 0 60px rgba(0, 0, 0, 0.34);
		opacity: 0;
		visibility: hidden;
		transform: translateX(-104%);
		transition:
			transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
			opacity 180ms ease,
			visibility 0s linear 280ms;
	}

	.nav-open .primary-nav {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
		transition-delay: 0s;
	}

	.nav-open .nav-toggle {
		position: fixed;
		top: 17px;
		right: calc(10vw + 14px);
	}

	.primary-nav__list {
		gap: 2px;
	}

	.primary-nav a {
		min-height: 50px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		font-size: 1rem;
	}

	.primary-nav__list > li:last-child > a {
		width: fit-content;
		min-height: 42px;
		margin-top: 22px;
		padding-inline: 18px;
		border-bottom-color: rgba(32, 68, 111, 0.96);
	}

	.home-hero,
	.home-hero--feedback {
		min-height: 640px;
		padding: calc(var(--header) + 24px) 0 38px;
	}

	.home-hero::after,
	.home-hero__copy::after,
	.home-hero .brand-grid,
	.home-hero .brand-orbit,
	.home-hero .focus-corners {
		display: none;
	}

	.home-hero__grid {
		min-height: 510px;
		align-items: end;
	}

	.home-hero__copy,
	.home-hero--feedback .home-hero__copy {
		width: 100%;
		max-width: 520px;
		padding: 12px 0 0;
	}

	.home-hero h2 {
		margin-top: 16px;
		line-height: 1.44;
	}

	.home-hero__actions {
		margin-top: 24px;
	}

	.home-system,
	.home-system--feedback {
		padding: 54px 0 58px;
	}

	.home-system--feedback .home-system__grid {
		min-height: 0;
	}

	.home-system--feedback .home-system__copy,
	.home-system--feedback .home-system__text,
	.home-system--feedback .home-system__label,
	.home-system--feedback .home-system__text p {
		width: 100%;
		max-width: none;
	}

	.home-system__label {
		margin-bottom: 14px;
	}

	.home-system__logo {
		width: min(62vw, 230px);
		margin-bottom: 12px;
	}

	.home-system--feedback .home-system__text {
		gap: 12px;
	}

	.home-system--feedback .home-system__text p {
		font-size: 0.98rem;
		line-height: 1.58;
	}

	.home-rede {
		padding-block: 58px;
	}

	.home-rede__heading {
		padding-bottom: 26px;
	}

	.home-rede__heading h2 {
		font-size: clamp(1.72rem, 8vw, 2rem);
	}

	.home-rede__venn {
		display: grid;
		gap: 0;
		min-height: 0;
	}

	.home-rede__venn::before {
		display: none;
	}

	.home-rede__mobile-venn {
		position: relative;
		order: 2;
		display: block;
		width: 100%;
		max-width: 343px;
		height: 280px;
		margin: 10px auto 20px;
		background:
			radial-gradient(circle 94px at 50% 35%, transparent 92px, rgba(224, 132, 89, 0.82) 93px, rgba(224, 132, 89, 0.82) 94px, transparent 95px),
			radial-gradient(circle 94px at 35% 65%, transparent 92px, rgba(224, 132, 89, 0.82) 93px, rgba(224, 132, 89, 0.82) 94px, transparent 95px),
			radial-gradient(circle 94px at 65% 65%, transparent 92px, rgba(224, 132, 89, 0.82) 93px, rgba(224, 132, 89, 0.82) 94px, transparent 95px);
	}

	.home-rede__mobile-label {
		position: absolute;
		z-index: 1;
		max-width: 96px;
		color: var(--white);
		font-size: 0.76rem;
		font-weight: 700;
		line-height: 1.2;
		letter-spacing: 0;
		text-align: center;
		text-shadow: 0 2px 10px rgba(42, 23, 16, 0.78);
		transform: translate(-50%, -50%);
	}

	.home-rede__mobile-label--top {
		left: 50%;
		top: 22%;
	}

	.home-rede__mobile-label--left {
		left: 25%;
		top: 75%;
	}

	.home-rede__mobile-label--right {
		left: 75%;
		top: 75%;
	}

	.home-rede__side-title {
		order: 1;
		width: 100%;
		margin: 0;
		padding: 0;
		font-size: 1.08rem;
		text-align: center;
	}

	.home-rede__circle {
		width: 100%;
		min-height: 0;
		padding: 19px 0;
		border: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.home-rede__circle--top {
		order: 3;
	}

	.home-rede__circle--left {
		order: 4;
	}

	.home-rede__circle--right {
		order: 5;
	}

	.home-rede__circle p {
		position: static;
		width: 100%;
		max-width: none;
		padding-left: 18px;
		border-left: 2px solid rgba(224, 132, 89, 0.82);
		font-size: 0.93rem;
		line-height: 1.55;
		text-align: left;
		transform: none;
	}

	.home-rede__center {
		display: none;
	}

	.home-rede__quote {
		order: 6;
		margin-top: 8px;
		padding: 22px 0 0;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		font-size: 0.94rem;
		line-height: 1.55;
	}

	.home-rede__dots {
		display: none;
	}

	.testimonials-section {
		padding-block: 58px;
	}

	.testimonials-carousel {
		grid-auto-columns: calc(100% - 8px);
		gap: 12px;
	}

	.testimonial-card {
		min-height: 320px;
	}

	.page-hero,
	.blog-hero {
		min-height: 490px;
		padding: calc(var(--header) + 42px) 0 48px;
		align-items: center;
	}

	.page-hero__inner,
	.blog-hero__inner {
		width: min(100% - 32px, var(--container));
		margin-inline: auto;
	}

	.section {
		padding-block: 58px;
	}

	.about-what-we-do__body {
		margin-top: 28px;
	}

	.about-what-we-do__marks img {
		width: 66px;
	}

	.about-ecosystem__partners {
		margin-top: 34px;
		padding-top: 28px;
	}

	.about-partners__item {
		width: 204px;
		height: 78px;
	}

	.about-differentials__list {
		margin-top: 34px;
	}

	.about-differentials__list article,
	.about-differentials__list article:nth-child(odd),
	.about-differentials__list article:nth-child(even),
	.about-differentials__list article:last-child {
		padding-block: 21px;
	}

	.about-segments__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 20px;
	}

	.about-segments__list > li {
		min-height: 60px;
		padding-block: 14px;
	}

	.services-map-hero {
		padding-top: calc(var(--header) + 38px);
		padding-bottom: 58px;
	}

	.services-map-hero__header h1 {
		font-size: clamp(1.92rem, 8.8vw, 2.3rem);
	}

	.services-journey-map {
		margin-top: 30px;
	}

	.service-suite {
		padding-block: 58px;
	}

	.service-suite__floating-asset {
		display: none;
	}

	.service-suite-card,
	.executive-process,
	.culture-framework-panel,
	.executive-report,
	.executive-proof,
	.culture-assessment-feature,
	.culture-succession-strip,
	.culture-advisory-feature,
	.transition-passage-feature {
		border-radius: 16px;
	}

	.culture-products__list {
		grid-auto-columns: calc(100% - 28px);
	}

	.transition-moments {
		grid-auto-columns: calc(100% - 32px);
	}

	.blog-index__toolbar {
		margin-bottom: 24px;
	}

	.blog-topics {
		flex-wrap: nowrap;
		padding-right: 30px;
		overflow-x: auto;
		-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 30px), transparent 100%);
		mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 30px), transparent 100%);
		scrollbar-width: none;
	}

	.blog-topics a {
		flex: 0 0 auto;
	}

	.blog-card,
	.blog-card--featured {
		min-height: auto;
	}

	.blog-card__content,
	.blog-card--featured .blog-card__content {
		padding: 22px;
	}

	.article-hero {
		min-height: 540px;
		padding: calc(var(--header) + 42px) 0 54px;
		align-items: center;
	}

	.article-content table {
		display: block;
		max-width: 100%;
		overflow-x: auto;
	}

	.contact-section--page {
		padding-block: 58px;
	}

	.contact-section__asset--symbol {
		display: none;
	}

	.site-footer__grid {
		justify-items: center;
		gap: 34px;
		padding: 52px 0 34px;
		text-align: center;
	}

	.site-footer__brand .vysio-logo {
		margin-inline: auto;
	}

	.site-footer__brand p {
		margin-inline: auto;
	}

	.footer-menu {
		justify-items: center;
	}

	.site-footer__contact {
		justify-items: center;
	}

	.footer-social {
		justify-content: center;
	}

	.site-footer__bottom {
		text-align: center;
	}
}

@media (max-width: 520px) {
	.home-hero__copy {
		padding-left: 0;
	}

	.home-hero h1 {
		font-size: 1.92rem;
	}

	.home-hero__actions {
		gap: 10px;
	}

	.home-system h2,
	.home-system__copy,
	.home-system__text,
	.home-system__text p {
		width: 100%;
		max-width: none;
	}

	.about-segments__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-segments__list span {
		font-size: 0.88rem;
	}

	.contact-form-shell,
	.contact-form-only .contact-form-shell {
		padding: 18px;
	}
}

/* Mobile QA: balanced headings, compact service content and real navigation icons. */
.nav-toggle__icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: translate(-50%, -50%);
	transition: opacity 160ms ease, transform 200ms ease;
}

.nav-toggle__icon--close {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.82) rotate(-35deg);
}

.nav-open .nav-toggle__icon--menu {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.82) rotate(35deg);
}

.nav-open .nav-toggle__icon--close {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1) rotate(0);
}

@media (max-width: 820px) {
	.nav-toggle__line,
	.nav-toggle__line::before,
	.nav-toggle__line::after {
		display: none;
	}

	.home-hero__grid {
		align-items: center;
	}

	.home-hero__copy,
	.home-hero--feedback .home-hero__copy {
		align-self: center;
	}

	.home-hero .focus-corners {
		display: block;
		right: 22px;
		bottom: 66px;
		z-index: 2;
		width: 88px;
		height: 88px;
		opacity: 0.46;
	}

	.home-hero .focus-corners::before,
	.home-hero .focus-corners::after {
		width: 32px;
		height: 32px;
		border-width: 1px;
	}

	.home-hero__bg,
	.home-hero--feedback .home-hero__bg {
		object-position: left center;
	}

	.services-map-hero__header h1 {
		max-width: 100%;
		font-size: clamp(1.82rem, 8.1vw, 2.18rem);
		line-height: 1.08;
		text-wrap: balance;
	}

	.services-map-hero__header h1 .services-map-hero__title-line {
		display: inline;
	}

	.service-suite--executive {
		padding-top: 0;
	}

	.service-suite--culture .service-suite__header {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
		align-items: start;
	}

	.service-suite--culture .service-suite__header > div,
	.service-suite--culture .service-suite__intro,
	.service-suite--culture .service-suite__intro > p {
		width: 100%;
		max-width: none;
	}

	.executive-report .service-suite-list {
		gap: 13px;
		margin-top: 20px;
	}

	.executive-report .service-suite-list li {
		min-height: 0;
		padding: 0 0 0 22px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.executive-report .service-suite-list li::before {
		left: 0;
		top: 0.64em;
	}

	.service-suite-cta .button {
		width: auto;
		max-width: 100%;
		justify-self: start;
	}

	.service-suite--culture .service-suite-cta .button,
	.service-suite--transition .service-suite-cta .button {
		justify-self: center;
	}

	.service-suite--executive .service-suite-cta .button {
		justify-self: center;
	}
}

@media (max-width: 520px) {
	.services-map-hero__header h1 {
		font-size: clamp(1.76rem, 7.8vw, 2rem);
	}

	.service-suite-cta .button {
		width: auto;
	}

	.home-hero__actions {
		align-items: flex-start;
	}

	.home-hero h1 {
		font-size: 2.28rem;
	}

	.home-hero__actions .button {
		width: auto;
	}
}

/* Transition service: "Quando atuamos" with the official puzzle composition. */
.service-suite--transition {
	padding-top: 0;
}

.transition-editorial--puzzle {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 680px) minmax(220px, 1fr);
	align-items: center;
	width: 100vw;
	min-height: 620px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: clamp(48px, 7vw, 86px);
	padding-block: clamp(46px, 6vw, 78px);
	padding-inline: max(16px, calc((100vw - var(--container)) / 2));
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #5d301f;
}

.transition-editorial--puzzle::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(72, 32, 23, 0.97) 0%, rgba(82, 38, 27, 0.9) 43%, rgba(82, 38, 27, 0.38) 72%, rgba(82, 38, 27, 0.08) 100%),
		linear-gradient(0deg, rgba(55, 25, 19, 0.34), transparent 58%);
	content: "";
}

.transition-editorial__background {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 104%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	transform: translateX(3%);
}

@media (min-width: 1400px) {
	.transition-editorial__background {
		object-position: center 76%;
	}
}

.transition-editorial--puzzle .transition-editorial__copy {
	position: relative;
	z-index: 1;
	max-width: 660px;
	padding: 0;
}

.transition-editorial--puzzle .transition-passage-feature > p:not(.service-suite-card__kicker) {
	max-width: 580px;
}

@media (max-width: 820px) {
	.transition-editorial--puzzle {
		grid-template-columns: minmax(0, 1fr);
		min-height: 0;
		margin-bottom: 46px;
		padding-block: 38px 34px;
		padding-inline: 16px;
		border-radius: 0;
	}

	.transition-editorial--puzzle::before {
		background:
			linear-gradient(90deg, rgba(67, 30, 22, 0.97) 0%, rgba(72, 33, 24, 0.9) 58%, rgba(72, 33, 24, 0.34) 100%),
			linear-gradient(0deg, rgba(55, 25, 19, 0.44), rgba(55, 25, 19, 0.12));
	}

	.transition-editorial__background {
		width: 100%;
		object-position: 64% bottom;
		opacity: 0.82;
		transform: none;
	}

	.transition-editorial--puzzle .transition-moments-shell {
		margin-top: 22px;
	}
}
