:root {
	--ykg-navy: #070730;
	--ykg-navy-deep: #050521;
	--ykg-emerald: #2cac66;
	--ykg-emerald-deep: #239454;
	--ykg-gray: #f0f0f0;
	--ykg-white: #ffffff;
	--ykg-font: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
	--ykg-gutter: 24px;
	--ykg-container-max: 1440px;
	--ykg-container-width: min(calc(100vw - var(--ykg-gutter) * 2), var(--ykg-container-max));
	--ykg-container: var(--ykg-container-width);
	--ykg-carousel-width: 860px;
	--ykg-hero-copy-max: 598px;
	--ykg-glass: rgba(255, 255, 255, 0.08);
	--ykg-glass-border: rgba(255, 255, 255, 0.14);
	--ykg-shadow: 0 24px 60px rgba(7, 7, 48, 0.28);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	width: 100%;
	max-width: 100%;
}

body {
	margin: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	font-family: var(--ykg-font);
	color: var(--ykg-white);
	background: var(--ykg-navy);
}

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

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

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 0;
	background: rgba(5, 5, 30, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.site-header__inner,
.hero__layout,
.site-footer__inner,
.content-shell {
	width: var(--ykg-container);
	margin: 0 auto;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 6px 0;
}

.site-header__menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.site-header__menu-toggle:hover,
.site-header__menu-toggle:focus-visible {
	background: rgba(255, 255, 255, 0.16);
}

.site-header__menu-toggle-bars {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 18px;
}

.site-header__menu-toggle-bars span {
	display: block;
	width: 100%;
	height: 1.5px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .site-header__menu-toggle-bars span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-toggle-bars span:nth-child(2) {
	opacity: 0;
}

.site-header.is-menu-open .site-header__menu-toggle-bars span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

.site-header__drawer {
	display: none;
}

.site-brand {
	justify-self: start;
	display: flex;
	align-items: center;
	height: 58px;
	overflow: hidden;
	line-height: 0;
}

.site-header__nav {
	justify-self: center;
}

.site-header__tools {
	display: flex;
	align-items: center;
	gap: 22px;
	justify-self: end;
}

.site-header__login {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	background: var(--ykg-white);
	color: var(--ykg-navy);
	font-size: 0.95rem;
	font-weight: 700;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header__login:hover,
.site-header__login:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(7, 7, 48, 0.18);
}

.site-header__login-icon {
	display: block;
	flex-shrink: 0;
}

.site-header__lang {
	position: relative;
}

.site-header__lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	color: var(--ykg-white);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	transition: opacity 0.2s ease;
}

.site-header__lang-toggle:hover,
.site-header__lang-toggle:focus-visible {
	opacity: 0.82;
}

.site-header__lang-toggle[aria-expanded="true"] .site-header__lang-chevron {
	transform: rotate(180deg);
}

.site-header__lang-globe,
.site-header__lang-chevron {
	display: block;
	flex-shrink: 0;
}

.site-header__lang-chevron {
	transition: transform 0.2s ease;
}

.site-header__lang-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 20;
	min-width: 88px;
	margin: 0;
	padding: 6px;
	list-style: none;
	border-radius: 14px;
	background: rgba(7, 7, 48, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--ykg-shadow);
}

.site-header__lang-option {
	display: block;
	width: 100%;
	padding: 10px 14px;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.92rem;
	font-weight: 600;
	text-align: left;
	text-decoration: none;
	box-sizing: border-box;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__lang-option:hover,
.site-header__lang-option:focus-visible,
.site-header__lang-option.is-active {
	background: rgba(255, 255, 255, 0.08);
	color: var(--ykg-white);
}

.site-brand__text {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 700;
	letter-spacing: 0.14em;
}

.site-brand__logo {
	display: block;
	max-height: 120px;
	width: auto;
	margin-top: -34px;
	transform: translateY(18px);
	filter: brightness(0) invert(1);
}

.site-header__nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__nav-list a,
.site-header__nav-dropdown-toggle {
	font-family: var(--ykg-font);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.76);
	white-space: nowrap;
	transition: color 0.2s ease;
}

.site-header__nav-list a {
	display: block;
	padding: 0;
	border-radius: 0;
}

.site-header__nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.site-header__nav-dropdown-chevron {
	display: block;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.site-header__nav-dropdown-toggle[aria-expanded="true"] .site-header__nav-dropdown-chevron {
	transform: rotate(180deg);
}

.site-header__nav-item--dropdown {
	position: relative;
}

.site-header__nav-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	z-index: 20;
	min-width: 240px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border-radius: 14px;
	background: rgba(7, 7, 48, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--ykg-shadow);
	transform: translateX(-50%);
}

.site-header__nav-dropdown a {
	display: block;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.88);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__nav-dropdown a:hover,
.site-header__nav-dropdown a:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.92);
}

.site-header__nav-list a:hover,
.site-header__nav-list a:focus-visible,
.site-header__nav-dropdown-toggle:hover,
.site-header__nav-dropdown-toggle:focus-visible {
	background: none;
	color: rgba(255, 255, 255, 0.92);
}

.hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.hero__media,
.hero__video,
.hero__poster {
	position: absolute;
	inset: 0;
}

.hero__video,
.hero__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__poster {
	background-size: cover;
	background-position: center;
}

.hero__media {
	background:
		radial-gradient(circle at 72% 28%, rgba(44, 172, 102, 0.16), transparent 34%),
		linear-gradient(160deg, var(--ykg-navy-deep), var(--ykg-navy));
	z-index: 0;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7, 7, 48, 0.82) 0%, rgba(7, 7, 48, 0.42) 42%, rgba(7, 7, 48, 0.18) 68%, rgba(7, 7, 48, 0.35) 100%),
		linear-gradient(180deg, rgba(7, 7, 48, 0.18), rgba(7, 7, 48, 0.55));
}

.hero__bottom-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	height: clamp(62px, 6.5vw, 80px);
	color: var(--ykg-navy-deep);
	pointer-events: none;
}

.hero__bottom-bar svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hero__layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: 1fr auto;
	align-items: end;
	gap: 0;
	min-height: 100vh;
	padding: 128px 0 67px;
}

.hero__copy {
	grid-column: 1;
	grid-row: 1;
	width: 100%;
	max-width: var(--ykg-hero-copy-max);
	align-self: start;
	padding-top: 64px;
}

.hero__eyebrow {
	margin: 0 0 22px;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.92);
}

.hero__title {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	max-width: var(--ykg-hero-copy-max);
	font-size: clamp(2.75rem, 4.35vw, 4.5rem);
	line-height: 1.02;
	font-weight: 500;
	letter-spacing: -0.035em;
}

.hero__title-line {
	display: block;
	white-space: nowrap;
}

.hero__actions {
	grid-column: 1;
	grid-row: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 30px;
}

.hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 28px;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero__btn:hover,
.hero__btn:focus-visible {
	transform: translateY(-1px);
}

.hero__btn--primary {
	background: var(--ykg-emerald);
	color: var(--ykg-white);
	box-shadow: 0 12px 30px rgba(44, 172, 102, 0.28);
}

.hero__btn--primary:hover,
.hero__btn--primary:focus-visible {
	background: var(--ykg-emerald-deep);
}

.hero__btn--ghost {
	background: rgba(255, 255, 255, 0.015);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--ykg-white);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.hero__btn--ghost:hover,
.hero__btn--ghost:focus-visible {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.04);
}

.hero__rail {
	position: absolute;
	z-index: 3;
	right: var(--ykg-gutter);
	bottom: 97px;
	width: var(--ykg-carousel-width);
	max-width: calc(100vw - var(--ykg-gutter) * 2);
}

.service-carousel {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.service-carousel__gauge {
	display: flex;
	align-items: center;
	gap: 11px;
	order: -1;
	margin-bottom: 16px;
	font-size: 0.69rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.service-carousel__index,
.service-carousel__total {
	flex: 0 0 auto;
	min-width: 1.3rem;
}

.service-carousel__line {
	position: relative;
	flex: 1 1 auto;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
}

.service-carousel__line-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 16.66%;
	background: var(--ykg-white);
	transition: width 0.45s ease;
}

.service-carousel__window {
	overflow: hidden;
	width: 100%;
	min-width: 0;
	container-type: inline-size;
}

.service-carousel__list {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 13px;
	transform: translate3d(0, 0, 0);
	transition: transform 0.3s ease;
	will-change: transform;
}

.service-carousel__card {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 13px;
	flex: 0 0 var(--carousel-card-width, 422px);
	width: var(--carousel-card-width, 422px);
	min-height: 240px;
	padding: 11px 18px 11px 11px;
	border-radius: 19px;
	background: rgba(255, 255, 255, 0.015);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-sizing: border-box;
}

@media (min-width: 769px) {
	.service-carousel__card {
		--carousel-card-width: 422px;
	}
}

.service-carousel__thumb {
	flex: 0 0 168px;
	width: 168px;
	align-self: stretch;
	height: auto;
	border-radius: 13px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.04);
}

.service-carousel__thumb img,
.service-carousel__thumb-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-carousel__thumb-fallback {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(7, 7, 48, 0.12));
}

.service-carousel__body {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-carousel__title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.25;
	color: var(--ykg-white);
}

.service-carousel__text {
	margin: 8px 0 0;
	font-size: 1.3rem;
	font-weight: 300;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
	overflow-wrap: anywhere;
}

.site-main--inner {
	padding: 120px 0 60px;
	background: var(--ykg-gray);
	color: var(--ykg-navy);
}

.about-section {
	background: var(--ykg-navy-deep);
	color: var(--ykg-white);
	padding: clamp(72px, 8vw, 118px) 0;
}

.about-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(36px, 6vw, 108px);
	align-items: stretch;
	width: min(calc(100vw - var(--ykg-gutter) * 2), calc(var(--ykg-container-max) + 80px));
	margin: 0 auto;
}

.about-section__aside {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(48px, 10vh, 120px);
	min-height: 100%;
}

.about-section__eyebrow {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
}

.about-section__lead {
	margin: 0;
	max-width: 390px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
}

.about-section__main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 36px;
	min-height: 100%;
	width: 100%;
}

.about-section__title {
	margin: 0;
	max-width: none;
	width: 100%;
	font-size: clamp(2.05rem, 3.35vw, 3.35rem);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.28);
}

.about-section__title--neon {
	color: rgba(255, 255, 255, 0.28);
}

.about-section__neon-char {
	color: rgba(255, 255, 255, 0.28);
	transition: color 0.18s ease;
}

.about-section__neon-char.is-lit.is-lit--white {
	color: rgba(255, 255, 255, 0.96);
}

.about-section__neon-char.is-lit.is-lit--white-tip {
	color: rgba(255, 255, 255, 0.72);
}

.about-section__neon-char.is-lit.is-lit--green {
	color: color-mix(
		in srgb,
		rgba(255, 255, 255, 0.28) calc((1 - var(--lit-level, 1)) * 100%),
		#28EE5F calc(var(--lit-level, 1) * 100%)
	);
}

.about-section__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 28px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.04);
	color: var(--ykg-white);
	font-size: 1rem;
	font-weight: 600;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-section__btn:hover,
.about-section__btn:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.34);
	transform: translateY(-1px);
}

.partner-logos {
	background: var(--ykg-navy-deep);
	padding: clamp(8px, 2vw, 20px) 0 calc(clamp(56px, 7vw, 96px) + 10px);
}

.partner-logos__viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
	isolation: isolate;
}

.partner-logos__viewport::before,
.partner-logos__viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(32vw, 360px);
	z-index: 2;
	pointer-events: none;
}

.partner-logos__viewport::before {
	left: 0;
	background: linear-gradient(
		to right,
		var(--ykg-navy-deep) 0%,
		rgba(5, 5, 33, 0.92) 18%,
		rgba(5, 5, 33, 0.62) 42%,
		rgba(5, 5, 33, 0.28) 68%,
		transparent 100%
	);
}

.partner-logos__viewport::after {
	right: 0;
	background: linear-gradient(
		to left,
		var(--ykg-navy-deep) 0%,
		rgba(5, 5, 33, 0.92) 18%,
		rgba(5, 5, 33, 0.62) 42%,
		rgba(5, 5, 33, 0.28) 68%,
		transparent 100%
	);
}

.partner-logos__track {
	display: flex;
	width: max-content;
	flex-shrink: 0;
	animation: partner-logos-marquee 28s linear infinite;
	will-change: transform;
}

.partner-logos__track.is-js-marquee {
	animation: none;
}

.partner-logos__strip {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	flex-shrink: 0;
	gap: clamp(40px, 6vw, 76px);
	padding-right: clamp(40px, 6vw, 76px);
}

.partner-logos__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 0;
}

.partner-logos__image {
	display: block;
	width: auto;
	height: clamp(72px, 10.5vw, 120px);
	max-width: clamp(260px, 32vw, 420px);
	object-fit: contain;
}

@keyframes partner-logos-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.footprint-section {
	--footprint-progress: 0%;
	background: var(--ykg-navy-deep);
	color: var(--ykg-white);
	padding: 0;
	height: 200vh;
	overflow: visible;
}

.footprint-section__pin {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding: clamp(72px, 8vw, 118px) 0;
	box-sizing: border-box;
}

.footprint-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
	width: min(calc(100vw - var(--ykg-gutter) * 2), calc(var(--ykg-container-max) + 80px));
	margin: 0 auto;
	overflow: visible;
}

.footprint-section__lead {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: clamp(28px, 4vw, 48px);
	align-items: stretch;
	min-width: 0;
}

.footprint-section__gauge {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	gap: 14px;
	padding-top: 8px;
	min-width: 34px;
}

.footprint-section__gauge-num {
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1;
	color: rgba(255, 255, 255, 0.88);
	opacity: 0.38;
	transition: opacity 0.25s ease;
}

.footprint-section__gauge-num.is-active {
	opacity: 1;
}

.footprint-section__gauge-line {
	position: relative;
	flex: 1 1 auto;
	width: 1px;
	min-height: 0;
	background: rgba(255, 255, 255, 0.18);
}

.footprint-section__gauge-fill {
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: var(--footprint-progress);
	background: var(--ykg-white);
	transform: translateX(-50%);
	transform-origin: top center;
}

.footprint-section__copy {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
}

.footprint-section__title {
	margin: 0 0 12px;
	max-width: none;
	width: 100%;
}

.footprint-section__subtitle {
	margin: 0 0 clamp(28px, 4vw, 44px);
	max-width: 480px;
	font-size: 1.08rem;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.58);
}

.footprint-section__stats {
	display: flex;
	flex-direction: column;
	gap: 22px;
	max-width: 360px;
	padding: 24px 26px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #1a1a2e;
}

.footprint-section__stats > * {
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.footprint-section__stats.is-revealed > * {
	opacity: 1;
	transform: translateY(0);
}

.footprint-section__stats.is-revealed > :nth-child(1) {
	transition-delay: 0.06s;
}

.footprint-section__stats.is-revealed > :nth-child(2) {
	transition-delay: 0.16s;
}

.footprint-section__stats.is-revealed > :nth-child(3) {
	transition-delay: 0.26s;
}

.footprint-section__stats.is-revealed > :nth-child(4) {
	transition-delay: 0.36s;
}

.footprint-section__stats.is-revealed > :nth-child(5) {
	transition-delay: 0.46s;
}

.footprint-section__stat-label {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.58);
}

.footprint-section__stat-value {
	margin: 6px 0 0;
	font-size: clamp(1.45rem, 2vw, 1.85rem);
	font-weight: 400;
	line-height: 1.2;
	color: var(--ykg-white);
}

.footprint-section__stat-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.footprint-section__map {
	position: relative;
	width: 108%;
	max-width: none;
	margin-left: -4%;
	margin-right: -4%;
	min-height: clamp(320px, 48vw, 560px);
	margin-top: 20px;
	margin-bottom: clamp(68px, 9.5vw, 133px);
	overflow: visible;
}

.footprint-section__map.is-zooming-to-turkey {
	overflow: hidden;
	border-radius: 4px;
}

.footprint-section__map-layer {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.32s ease, visibility 0.32s ease;
	pointer-events: none;
}

.footprint-section__map-layer.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.footprint-section__map-layer--world {
	position: relative;
	inset: auto;
	z-index: 1;
}

.footprint-section__map-layer--turkey {
	z-index: 2;
}

.footprint-section__map-image {
	width: 100%;
	height: auto;
	opacity: 1;
}

.footprint-section__map-layer--world .footprint-section__map-image,
.footprint-section__map-layer--world .footprint-section__markers {
	transform: scale(1.05);
	transform-origin: top center;
	transition:
		transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.42s ease;
}

.footprint-section__map-layer--turkey .footprint-section__map-image,
.footprint-section__map-layer--turkey .footprint-section__markers {
	transform: scale(0.75);
	transform-origin: center center;
	opacity: 0;
	transition:
		transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.42s ease;
}

.footprint-section__map-layer--turkey.is-active .footprint-section__map-image,
.footprint-section__map-layer--turkey.is-active .footprint-section__markers {
	transform: scale(0.92);
	opacity: 1;
}

.footprint-section__map.is-zooming-to-turkey .footprint-section__map-layer--world {
	opacity: 1;
	visibility: visible;
	pointer-events: none;
}

.footprint-section__map.is-zooming-to-turkey .footprint-section__map-layer--turkey {
	opacity: 1;
	visibility: visible;
}

.footprint-section__map.is-zooming-to-turkey .footprint-section__map-layer--world .footprint-section__map-image,
.footprint-section__map.is-zooming-to-turkey .footprint-section__map-layer--world .footprint-section__markers {
	transform: scale(1.57);
	transform-origin: 56% 39%;
	opacity: 0;
}

.footprint-section__markers {
	position: absolute;
	inset: 0;
}

.footprint-section__marker {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #28ee5f;
	box-shadow: 0 0 14px rgba(40, 238, 95, 0.75);
	transform: translate(-50%, -50%);
}

.footprint-section__marker::before,
.footprint-section__marker::after {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(40, 238, 95, 0.45);
	transform: translate(-50%, -50%) scale(0.35);
	animation: footprint-marker-pulse 2.8s ease-out infinite;
	animation-delay: var(--delay, 0s);
}

.footprint-section__marker::after {
	width: 54px;
	height: 54px;
	border-color: rgba(40, 238, 95, 0.22);
	animation-delay: calc(var(--delay, 0s) + 0.35s);
}

@keyframes footprint-marker-pulse {
	0% {
		opacity: 0.9;
		transform: translate(-50%, -50%) scale(0.35);
	}

	70% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1.15);
	}

	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1.15);
	}
}

.solutions-section {
	--solutions-slide-count: 4;
	--solutions-end-hold: 0;
	position: relative;
	background: #f4f4f4;
	color: var(--ykg-navy);
	height: calc(100vh * (var(--solutions-slide-count) + var(--solutions-end-hold)));
	padding-bottom: clamp(72px, 9vw, 140px);
	overflow: visible;
}

.solutions-section__top-join {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 29px;
	/* 2px overlap seals the hairline gap; path/shape unchanged */
	transform: translateY(calc(-100% + 2px));
	color: #f4f4f4;
	pointer-events: none;
	line-height: 0;
}

.solutions-section__top-join::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: #f4f4f4;
	z-index: -1;
}

.solutions-section__top-join svg {
	display: block;
	position: relative;
	z-index: 1;
	width: 527px;
	max-width: min(527px, 92vw);
	height: auto;
	aspect-ratio: 527 / 29;
}

.solutions-section__bottom-join {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 29px;
	transform: translateY(calc(100% - 2px));
	color: #f4f4f4;
	pointer-events: none;
	line-height: 0;
}

.solutions-section__bottom-join::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: #f4f4f4;
	z-index: -1;
}

.solutions-section__bottom-join svg {
	display: block;
	position: relative;
	z-index: 1;
	width: 527px;
	max-width: min(527px, 92vw);
	height: auto;
	aspect-ratio: 527 / 29;
	transform: scaleY(-1);
}

.solutions-section__pin {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #f4f4f4;
}

.solutions-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(calc(100vw - var(--ykg-gutter) * 2), calc(var(--ykg-container-max) + 40px));
	margin: 0 auto;
	padding: clamp(28px, 4vh, 48px) 0;
}

.solutions-section__intro {
	margin: 0 auto clamp(40px, 5vw, 64px);
	width: 100%;
	max-width: min(22ch, 100%);
	text-align: center;
	white-space: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	box-sizing: border-box;
	font-family: var(--ykg-font);
	font-size: clamp(2.35rem, 3.8vw, 3.55rem);
	font-weight: 500;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--ykg-navy);
}

.solutions-section .solutions-section__intro.about-section__title {
	width: 100%;
	max-width: min(22ch, 100%);
	font-weight: 500;
}

.solutions-section__intro--gradient {
	background: linear-gradient(
		90deg,
		var(--ykg-navy) 0%,
		var(--ykg-navy) 46%,
		#15965c 78%,
		#28ee5f 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.solutions-section__intro--snake {
	color: var(--ykg-navy);
	-webkit-text-fill-color: currentColor;
	background: none;
}

.solutions-section__layout {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: clamp(28px, 3.5vw, 48px);
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}

.solutions-section__copy {
	position: relative;
	flex: 0 0 auto;
	width: 520px;
	max-width: min(520px, 42vw);
	min-width: 280px;
	align-self: stretch;
	display: flex;
	align-items: center;
}

.solutions-section__copy-window {
	position: relative;
	width: 100%;
	min-height: 320px;
	height: 100%;
	overflow: hidden;
}

.solutions-section__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	will-change: transform;
	transform: translate3d(0, 100%, 0);
	transition: none;
}

.solutions-section__slide[data-solutions-slide="0"] {
	transform: translate3d(0, 0, 0);
}

.solutions-section__heading {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px 22px;
	align-items: start;
	width: 100%;
}

.solutions-section__num {
	padding-top: 0.5em;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.02em;
	color: rgba(7, 7, 48, 0.32);
}

.solutions-section__heading-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.solutions-section__title {
	margin: 0 0 8px;
	width: 480px;
	max-width: 100%;
	min-height: 0;
	white-space: normal;
	font-family: var(--ykg-font);
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--ykg-navy);
}

.solutions-section__title--gradient {
	background: linear-gradient(
		95deg,
		var(--ykg-navy) 0%,
		#0b3d55 40%,
		#15965c 72%,
		#28ee5f 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.solutions-section__title--snake {
	color: var(--ykg-navy);
	-webkit-text-fill-color: currentColor;
	background: none;
}

.solutions-section__snake-char {
	color: var(--ykg-navy);
	transition: color 0.14s ease;
}

.solutions-section__snake-char.is-lit.is-lit--tip {
	color: #7dff9a;
}

.solutions-section__snake-char.is-lit.is-lit--green {
	color: color-mix(
		in srgb,
		var(--ykg-navy) calc((1 - var(--lit-level, 1)) * 100%),
		#28ee5f calc(var(--lit-level, 1) * 100%)
	);
}

.solutions-section__snake-char.is-lit.is-lit--navy {
	color: var(--ykg-navy);
}

.solutions-section__text {
	margin: 0 0 32px;
	max-width: 44ch;
	font-family: var(--ykg-font);
	font-size: 1.12rem;
	font-weight: 400;
	line-height: 1.65;
	color: rgba(7, 7, 48, 0.55);
}

.solutions-section__link {
	display: inline-flex;
	align-items: center;
	padding-bottom: 2px;
	border-bottom: 1.5px solid currentColor;
	font-family: var(--ykg-font);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ykg-navy);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.solutions-section__link:hover,
.solutions-section__link:focus-visible {
	color: var(--ykg-emerald-deep);
}

.solutions-section__media {
	position: relative;
	flex: 0 0 auto;
	width: 718px;
	max-width: 100%;
}

.solutions-section__frame {
	position: relative;
	margin: 0;
	width: 100%;
	height: 664px;
	max-height: 664px;
	aspect-ratio: auto;
	overflow: hidden;
	background: transparent;
	border-radius: 28px;
	-webkit-mask-image: url("../images/solutions-frame-mask.svg?v=16");
	mask-image: url("../images/solutions-frame-mask.svg?v=16");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.solutions-section__notch {
	position: absolute;
	left: -8px;
	top: 0;
	z-index: 5;
	width: calc(4.46% + 8px);
	height: 35%;
	pointer-events: none;
	background: #f4f4f4;
	-webkit-mask-image: url("../images/solutions-notch.svg?v=4");
	mask-image: url("../images/solutions-notch.svg?v=4");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	transition: none;
}

.solutions-section__edge {
	display: none;
}

.solutions-section__image,
.solutions-section__video,
.solutions-section__image-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.solutions-section__video {
	position: absolute;
	inset: 0;
	border: 0;
	background: #0a2740;
	will-change: transform;
	transform: translate3d(0, 100%, 0);
	transition: none;
	z-index: 1;
}

.solutions-section__video[data-solutions-video="0"] {
	transform: translate3d(0, 0, 0);
	z-index: 2;
}

.solutions-section__media-track {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.solutions-section__image-fallback {
	background:
		radial-gradient(circle at 30% 20%, rgba(40, 238, 95, 0.18), transparent 42%),
		linear-gradient(160deg, #0a2740, #123a5c 48%, #0d4d38);
}

.content-card {
	padding: 28px;
	border-radius: 20px;
	background: var(--ykg-white);
}

.tools-section {
	--tools-mx: 50%;
	--tools-my: 50%;
	position: relative;
	isolation: isolate;
	overflow: visible;
	background: #070730;
	color: var(--ykg-white);
	padding: clamp(180px, 22vw, 280px) 0 clamp(140px, 18vw, 220px);
}

.tools-section__grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0;
	overflow: hidden;
	background-image: var(--tools-grid-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: opacity 0.35s ease;
	-webkit-mask-image: radial-gradient(
		circle 320px at var(--tools-mx) var(--tools-my),
		#000 0%,
		rgba(0, 0, 0, 0.55) 42%,
		transparent 72%
	);
	mask-image: radial-gradient(
		circle 320px at var(--tools-mx) var(--tools-my),
		#000 0%,
		rgba(0, 0, 0, 0.55) 42%,
		transparent 72%
	);
}

.tools-section.is-lit .tools-section__grid {
	opacity: 1;
}

.tools-section__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(calc(100vw - var(--ykg-gutter) * 2), 920px);
	margin: 0 auto;
	text-align: center;
}

.tools-section__eyebrow {
	margin: 0 0 18px;
	font-family: var(--ykg-font);
	font-size: clamp(0.95rem, 1.4vw, 1.1rem);
	font-weight: 500;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.58);
}

.tools-section__title {
	margin: 0 0 36px;
	font-family: var(--ykg-font);
	font-size: clamp(2.35rem, 5.2vw, 4.15rem);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.02em;
	word-spacing: 0.12em;
	color: var(--ykg-white);
}

.tools-section__title--snake {
	color: rgba(255, 255, 255, 0.38);
}

.tools-section__title--snake .solutions-section__snake-char {
	color: rgba(255, 255, 255, 0.38);
}

.tools-section__title--snake .solutions-section__snake-char.is-lit.is-lit--tip {
	color: #7dff9a;
}

.tools-section__title--snake .solutions-section__snake-char.is-lit.is-lit--green {
	color: color-mix(
		in srgb,
		#ffffff calc((1 - var(--lit-level, 1)) * 100%),
		#28ee5f calc(var(--lit-level, 1) * 100%)
	);
}

.tools-section__title--snake .solutions-section__snake-char.is-lit.is-lit--navy {
	color: var(--ykg-white);
}

.tools-section__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.tools-section__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px;
	border-radius: 999px;
	font-family: var(--ykg-font);
	font-size: 1rem;
	font-weight: 700;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.tools-section__btn:hover,
.tools-section__btn:focus-visible {
	transform: translateY(-1px);
}

.tools-section__btn--primary {
	background: var(--ykg-white);
	color: var(--ykg-navy);
}

.tools-section__btn--primary:hover,
.tools-section__btn--primary:focus-visible {
	background: #f3f3f3;
}

.tools-section__btn--ghost {
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	background: transparent;
	color: var(--ykg-white);
}

.tools-section__btn--ghost:hover,
.tools-section__btn--ghost:focus-visible {
	border-color: var(--ykg-white);
	background: rgba(255, 255, 255, 0.06);
}

.tools-section__bottom-join {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 29px;
	color: #f4f4f4;
	pointer-events: none;
	line-height: 0;
}

.tools-section__bottom-join::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: #f4f4f4;
	z-index: -1;
}

.tools-section__bottom-join svg {
	display: block;
	position: relative;
	z-index: 1;
	width: min(527px, 92vw);
	height: auto;
	aspect-ratio: 527 / 29;
	overflow: visible;
	flex-shrink: 0;
}

.site-footer {
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	overflow-y: visible;
	background: #05051e;
	color: #f9f9ff;
	padding: 0;
	width: 100%;
	max-width: 100%;
}

.site-footer__clip {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	padding-bottom: clamp(40px, 5vw, 60px);
}

.site-footer__lines {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.site-footer__lines-svg {
	position: absolute;
	left: 50%;
	right: auto;
	top: 0;
	bottom: 0;
	width: min(90rem, 150%);
	height: 100%;
	min-height: 100%;
	transform: translateX(-50%);
	overflow: visible;
}

.site-footer__lines-svg--top {
	z-index: 1;
}

.site-footer__lines-svg--bottom {
	z-index: 0;
}

.site-footer__line-base {
	fill: none;
	stroke-width: 1.15;
	stroke-linecap: round;
}

.site-footer__line-flow {
	fill: none;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-dasharray: 52 720;
	animation: footer-line-flow 3.4s linear infinite;
}

.site-footer__line-flow--tr {
	animation-duration: 4.4s;
	animation-delay: 0.55s;
}

.site-footer__line-flow--bl {
	animation-duration: 3.8s;
	animation-delay: 1.1s;
}

.site-footer__line-flow--br {
	animation-duration: 4.8s;
	animation-delay: 1.7s;
}

@keyframes footer-line-flow {
	to {
		stroke-dashoffset: -772;
	}
}

.site-footer__lines-fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 8%;
	z-index: 1;
	pointer-events: none;
}

.site-footer__lines-fade--left {
	left: 0;
	background: linear-gradient(90deg, #05051e 0%, rgba(5, 5, 30, 0) 100%);
}

.site-footer__lines-fade--right {
	right: 0;
	background: linear-gradient(270deg, #05051e 0%, rgba(5, 5, 30, 0) 100%);
}

.site-footer__cta {
	position: relative;
	z-index: 1;
	padding: clamp(132px, 15vw, 188px) 0 clamp(72px, 8vw, 100px);
}

.site-footer__cta-inner {
	width: min(calc(100% - var(--ykg-gutter) * 2), 690px);
	margin: 0 auto;
	text-align: center;
}

.site-footer__cta-title {
	margin: 0 0 16px;
	padding-top: clamp(8px, 1.5vw, 20px);
	font-family: var(--ykg-font);
	font-size: clamp(2rem, 4.4vw, 3.35rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: #f9f9ff;
}

.site-footer__cta-text {
	margin: 0 auto 40px;
	max-width: 534px;
	font-family: var(--ykg-font);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	font-weight: 400;
	line-height: 1.55;
	color: rgba(249, 249, 255, 0.6);
}

.site-footer__cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.site-footer__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.625rem 1.25rem;
	border-radius: 999px;
	font-family: var(--ykg-font);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.site-footer__btn:hover,
.site-footer__btn:focus-visible {
	transform: translateY(-1px);
}

.site-footer__btn--primary {
	background: #f9f9ff;
	color: #05051e;
}

.site-footer__btn--primary:hover,
.site-footer__btn--primary:focus-visible {
	background: #ffffff;
	color: #05051e;
}

.site-footer__btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	color: #f9f9ff;
}

.site-footer__btn--ghost:hover,
.site-footer__btn--ghost:focus-visible {
	border-color: #2cac66;
	color: #2cac66;
}

.site-footer__main {
	position: relative;
	z-index: 1;
}

.site-footer__inner {
	width: min(calc(100% - var(--ykg-gutter) * 2), calc(var(--ykg-container-max) + 40px));
	margin: 0 auto;
	padding-top: 20px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(0, 50.625rem);
	gap: clamp(48px, 10vw, 160px);
	align-items: stretch;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	padding-left: clamp(48px, 5.5vw, 96px);
	margin-top: -28px;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	margin: 0 0 24px;
	max-width: 520px;
}

.site-footer__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 118px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.site-footer__logo-text {
	font-family: var(--ykg-font);
	font-size: 2.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #f9f9ff;
}

.site-footer__contact {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: 0.875rem;
	line-height: 1.55;
}

.site-footer__contact--address {
	margin: 0 0 10px;
	max-width: 280px;
	color: rgba(249, 249, 255, 0.6);
}

.site-footer__contact-link {
	color: rgba(249, 249, 255, 0.6);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.25s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
	color: #2cac66;
}

.site-footer__nav-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.site-footer__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
	gap: 0;
}

.site-footer__col-title {
	margin: 0 0 40px;
	font-family: var(--ykg-font);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(249, 249, 255, 0.6);
}

.site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer__link {
	font-family: var(--ykg-font);
	font-size: 1rem;
	line-height: 1.4;
	color: #f9f9ff;
	transition: color 0.25s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
	color: #2cac66;
}

.site-footer__meta {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(249, 249, 255, 0.6);
}

.site-footer__meta--bar {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	margin-top: 72px;
	margin-left: clamp(-140px, -10vw, -72px);
	white-space: nowrap;
}

.site-footer__meta-legal {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.85em;
	min-width: 0;
}

.site-footer__meta--bar > span[aria-hidden="true"],
.site-footer__meta-legal > span[aria-hidden="true"] {
	margin: 0 0.15em;
}

.site-footer__legal {
	color: inherit;
	transition: color 0.25s ease;
}

.site-footer__legal:hover,
.site-footer__legal:focus-visible {
	color: #2cac66;
}

.site-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	flex-shrink: 0;
	text-decoration: none;
	color: rgba(249, 249, 255, 0.72);
	transition: color 0.25s ease, opacity 0.25s ease;
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
	color: #fff;
}

.site-footer__credit-logo {
	display: block;
	width: 72px;
	height: 22px;
	flex-shrink: 0;
	background-color: #fff;
	-webkit-mask-image: var(--credit-logo);
	mask-image: var(--credit-logo);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: left center;
	mask-position: left center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.site-footer__credit-text {
	font-family: var(--ykg-font);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: none;
	white-space: nowrap;
}

.site-footer__mobile-meta {
	display: none;
}

@media (max-width: 991px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.site-footer__brand {
		align-items: center;
		text-align: center;
		padding-left: 0;
		margin-top: 0;
	}

	.site-footer__contact {
		text-align: center;
	}

	.site-footer__contact--address {
		max-width: 320px;
	}

	.site-footer__nav-grid {
		width: 100%;
	}

	.site-footer__col {
		gap: 0;
		align-items: flex-start;
	}

	.site-footer__meta--desktop {
		display: none;
	}

	.site-footer__mobile-meta {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
		margin-top: 48px;
		text-align: center;
	}

	.site-footer__mobile-meta .site-footer__meta--bar {
		margin-top: 0;
		margin-left: 0;
		white-space: normal;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.65em;
	}

	.site-footer__mobile-meta .site-footer__meta-legal {
		flex-wrap: wrap;
		justify-content: center;
	}

	.site-footer__mobile-meta .site-footer__credit {
		margin-left: 0;
	}

	.site-footer__line-flow {
		animation-duration: 4s;
	}
}

@media (max-width: 767px) {
	.site-footer__cta {
		padding: 112px 0 64px;
	}

	.site-footer__cta-text {
		margin-bottom: 36px;
	}

	.site-footer__nav-grid {
		grid-template-columns: 1fr;
		place-items: start center;
		text-align: center;
	}

	.site-footer__col {
		align-items: center;
		width: 100%;
	}

	.site-footer__col-title {
		margin-bottom: 16px;
	}

	.site-footer__list {
		align-items: center;
	}

	.cases-section__bottom-join svg {
		width: 208px;
	}
}

.cases-section {
	position: relative;
	background: #f4f4f4;
	color: var(--ykg-navy);
	padding: clamp(72px, 9vw, 120px) 0 clamp(64px, 8vw, 100px);
	overflow: visible;
}

.cases-section__bottom-join {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 29px;
	transform: translateY(calc(100% - 2px));
	color: #f4f4f4;
	pointer-events: none;
	line-height: 0;
}

.cases-section__bottom-join::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: #f4f4f4;
	z-index: -1;
}

.cases-section__bottom-join svg {
	display: block;
	position: relative;
	z-index: 1;
	width: 527px;
	max-width: min(527px, 92vw);
	height: auto;
	aspect-ratio: 527 / 29;
	transform: scaleY(-1);
}

.cases-section__inner {
	width: min(calc(100% - var(--ykg-gutter) * 2), calc(var(--ykg-container-max) + 40px));
	margin: 0 auto;
	overflow-x: clip;
	overflow-y: visible;
}

.cases-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(36px, 5vw, 52px);
}

.cases-section__eyebrow {
	margin: 0 0 12px;
	font-family: var(--ykg-font);
	font-size: 0.98rem;
	font-weight: 500;
	color: rgba(7, 7, 48, 0.42);
}

.cases-section__title {
	margin: 0;
	font-family: var(--ykg-font);
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: var(--ykg-navy);
}

.cases-section__title--snake {
	color: var(--ykg-navy);
}

.cases-section__title--snake .solutions-section__snake-char {
	color: var(--ykg-navy);
}

.cases-section__title--snake .solutions-section__snake-char.is-lit.is-lit--tip {
	color: #7dff9a;
}

.cases-section__title--snake .solutions-section__snake-char.is-lit.is-lit--green {
	color: color-mix(
		in srgb,
		var(--ykg-navy) calc((1 - var(--lit-level, 1)) * 100%),
		#28ee5f calc(var(--lit-level, 1) * 100%)
	);
}

.cases-section__title--snake .solutions-section__snake-char.is-lit.is-lit--navy {
	color: var(--ykg-navy);
}

.cases-section__view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 999px;
	background: #2cac66;
	color: #ffffff;
	font-family: var(--ykg-font);
	font-size: 0.95rem;
	font-weight: 700;
	white-space: nowrap;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.cases-section__view-all:hover,
.cases-section__view-all:focus-visible {
	transform: translateY(-1px);
	background: #239454;
	color: #ffffff;
}

.cases-section__window {
	/* Right-edge peek without forcing page-level horizontal scroll */
	width: calc(100% + max(0px, (100dvw - 100%) / 2));
	max-width: none;
	overflow-x: clip;
	padding-bottom: 28px;
	margin-bottom: -28px;
}

@supports not (width: 1dvw) {
	.cases-section__window {
		width: calc(100% + max(0px, (100vw - 100%) / 2));
	}
}

.cases-section__track {
	display: flex;
	gap: 18px;
	transform: translate3d(0, 0, 0);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.cases-section__card {
	position: relative;
	flex: 0 0 452px;
	width: 452px;
	height: 500px;
	min-height: 500px;
	box-sizing: border-box;
	overflow: visible;
	background: transparent;
	perspective: 1280px;
	backface-visibility: hidden;
}

.cases-section__card-flip {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
}

.cases-section__card:hover .cases-section__card-flip,
.cases-section__card:focus-within .cases-section__card-flip {
	transform: rotateY(180deg);
}

.cases-section__card-face {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px;
	border-radius: 16px;
	box-sizing: border-box;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	overflow: hidden;
}

.cases-section__card-face--front {
	z-index: 1;
}

.cases-section__card-face--back {
	transform: rotateY(180deg);
	color: #f9f9ff;
	background: #2cac66;
}

.cases-section__card--navy .cases-section__card-face--front {
	background: #070730;
	color: var(--ykg-white);
}

.cases-section__card--green .cases-section__card-face--front {
	background: #2cac66;
	color: var(--ykg-white);
}

.cases-section__card--light .cases-section__card-face--front {
	background: var(--ykg-white);
	color: var(--ykg-navy);
	box-shadow: 0 1px 0 rgba(7, 7, 48, 0.06);
}

.cases-section__card-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #070730;
	background-image: linear-gradient(rgba(7, 7, 48, 0.6), rgba(7, 7, 48, 0.6)), var(--case-image);
	background-size: cover;
	background-position: center;
	pointer-events: none;
}

.cases-section__card:not(.has-image) .cases-section__card-media {
	background-image: none;
	background-color: #070730;
	opacity: 0.85;
}

.cases-section__card-notch {
	position: absolute;
	right: -1px;
	top: 50%;
	z-index: 4;
	width: 28px;
	height: 217px;
	max-height: 44%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #f4f4f4;
	line-height: 0;
	filter: drop-shadow(2px 0 0 #f4f4f4);
}

.cases-section__card-notch svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.cases-section__card-date {
	position: relative;
	z-index: 2;
	margin: 0 0 18px;
	font-family: var(--ykg-font);
	font-size: 1.05rem;
	font-weight: 500;
	color: inherit;
	opacity: 1;
}

.cases-section__card--navy .cases-section__card-face--front .cases-section__card-date,
.cases-section__card--green .cases-section__card-face--front .cases-section__card-date {
	color: #f9f9ff;
}

.cases-section__card--light .cases-section__card-face--front .cases-section__card-date {
	color: rgba(7, 7, 48, 0.55);
}

.cases-section__card-face--back .cases-section__card-date {
	color: #f9f9ff;
}

.cases-section__card-title {
	position: relative;
	z-index: 2;
	margin: 0;
	max-width: 346px;
	font-family: var(--ykg-font);
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: inherit;
}

.cases-section__card--light .cases-section__card-face--front .cases-section__card-title {
	color: var(--ykg-navy);
}

.cases-section__card-face--back .cases-section__card-title {
	color: #f9f9ff;
}

.cases-section__card-link {
	position: absolute;
	z-index: 3;
	left: 24px;
	bottom: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	color: #f9f9ff;
	font-family: var(--ykg-font);
	font-size: 0.92rem;
	font-weight: 600;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.cases-section__card-flip:hover .cases-section__card-link,
.cases-section__card-flip:focus-visible .cases-section__card-link {
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(7, 7, 48, 0.35);
}

.cases-section__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: clamp(28px, 4vw, 40px);
}

.cases-section__gauge {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	flex: 1 1 auto;
	max-width: 280px;
	font-family: var(--ykg-font);
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(7, 7, 48, 0.55);
}

.cases-section__index,
.cases-section__total {
	flex: 0 0 auto;
	min-width: 1.4rem;
}

.cases-section__line {
	position: relative;
	flex: 1 1 auto;
	height: 2px;
	background: rgba(7, 7, 48, 0.12);
	overflow: hidden;
}

.cases-section__line-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 14%;
	background: #070730;
	transition: width 0.45s ease;
}

.cases-section__arrows {
	display: flex;
	gap: 10px;
}

.cases-section__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #e8e8e8;
	color: var(--ykg-navy);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.cases-section__arrow:hover,
.cases-section__arrow:focus-visible {
	background: #dcdcdc;
	transform: translateY(-1px);
}

@media (max-width: 1100px) {
	.hero {
		display: flex;
		flex-direction: column;
		min-height: 100svh;
		overflow: hidden;
	}

	.hero__layout {
		position: relative;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		flex: 0 0 auto;
		gap: 28px;
		width: 100%;
		min-height: 0;
		padding: clamp(132px, 24vw, 172px) 0 0;
		box-sizing: border-box;
	}

	.hero__copy {
		position: relative;
		z-index: 2;
		width: var(--ykg-container);
		max-width: none;
		margin: 0 auto;
		padding-top: 0;
		align-self: stretch;
	}

	.hero__eyebrow {
		margin: 0 0 20px;
	}

	.hero__title {
		line-height: 1.16;
		gap: 0.08em;
	}

	.hero__actions {
		position: relative;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: var(--ykg-container);
		margin: 4px auto 0;
		gap: 14px;
	}

	.hero__btn {
		width: 13.5rem;
		max-width: 100%;
		padding: 0 26px;
		box-sizing: border-box;
	}

	.hero__btn--primary {
		display: inline-flex;
	}

	.hero__rail {
		position: relative;
		z-index: 2;
		right: auto;
		bottom: auto;
		flex: 0 0 auto;
		width: var(--ykg-container);
		max-width: none;
		margin: auto auto 0;
		padding: 20px 0 clamp(72px, 12vw, 96px);
		box-sizing: border-box;
	}

	.service-carousel {
		width: 100%;
	}

	.service-carousel__gauge {
		order: 2;
		margin: 14px 0 0;
		gap: 12px;
		font-size: 0.75rem;
	}

	.service-carousel__window {
		order: 1;
	}

	.service-carousel__card {
		flex: 0 0 calc(100cqi - 40px);
		width: calc(100cqi - 40px);
		max-width: none;
		min-height: 168px;
		padding: 10px 14px 10px 10px;
		gap: 12px;
		border-radius: 18px;
	}

	.service-carousel__thumb {
		flex: 0 0 96px;
		width: 96px;
		border-radius: 12px;
	}

	.service-carousel__title {
		font-size: 1.35rem;
	}

	.service-carousel__text {
		margin-top: 6px;
		font-size: 0.95rem;
		line-height: 1.4;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.footprint-section__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footprint-section__map {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		max-width: none;
		margin-bottom: clamp(56px, 12vw, 100px);
	}

	.solutions-section__layout {
		flex-direction: column;
		width: 100%;
		gap: 36px;
	}

	.solutions-section__copy {
		order: 2;
		width: 100%;
		max-width: 480px;
		min-width: 0;
	}

	.solutions-section__media {
		order: 1;
		width: min(100%, 718px);
	}

	.solutions-section__frame {
		height: auto;
		max-height: none;
		aspect-ratio: 718 / 664;
	}

	.solutions-section__title {
		width: min(100%, 480px);
		min-height: 0;
		font-size: clamp(2.2rem, 7vw, 3rem);
	}

	.solutions-section__intro {
		white-space: normal;
		width: 100%;
		max-width: 100%;
	}

	.tools-section {
		padding: 120px 0 132px;
	}

	.tools-section__title {
		margin-bottom: 28px;
		font-size: clamp(2rem, 8vw, 2.8rem);
		font-weight: 400;
		word-spacing: 0.12em;
	}

	.tools-section__actions {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
	}

	.tools-section__btn {
		width: 100%;
	}

	.cases-section__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.cases-section__title {
		font-size: clamp(1.85rem, 7.5vw, 2.5rem);
	}

	.cases-section__card {
		flex: 0 0 min(452px, 86vw);
		width: min(452px, 86vw);
		height: 500px;
		min-height: 500px;
	}

	/* Mobile / tablet: no hover flip — active card shows image face */
	.cases-section__card:hover .cases-section__card-flip,
	.cases-section__card:focus-within .cases-section__card-flip {
		transform: none;
	}

	.cases-section__card.is-flipped .cases-section__card-flip {
		transform: rotateY(180deg);
	}

	.cases-section__controls {
		flex-wrap: wrap;
	}

	.cases-section__gauge {
		max-width: none;
		width: 100%;
		order: 2;
	}

	.cases-section__arrows {
		order: 1;
		margin-left: 0;
		margin-right: auto;
	}
}

@media (max-width: 767px) {
	.site-header__inner,
	.hero__layout,
	.site-footer__inner,
	.content-shell {
		width: min(calc(100% - 28px), 100%);
	}

	.site-header__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 10px 0;
		min-height: 64px;
		position: relative;
		z-index: 3;
	}

	.site-brand {
		height: 50px;
		z-index: 3;
	}

	.site-brand__logo {
		max-height: 96px;
		margin-top: -28px;
		transform: translateY(14px);
	}

	.site-header__nav--desktop,
	.site-header__tools--desktop {
		display: none;
	}

	.site-header__menu-toggle {
		display: inline-flex;
		z-index: 3;
		flex-shrink: 0;
	}

	.site-header__drawer {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 45;
		width: 100%;
		height: 100%;
		min-height: 100svh;
		background: rgba(5, 5, 30, 0.55);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
		transform: translate3d(0, -100%, 0);
		transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		pointer-events: none;
	}

	.site-header__drawer[hidden] {
		display: block !important;
	}

	body.is-header-menu-open .site-header__drawer,
	.site-header.is-menu-open ~ .site-header__drawer,
	.site-header__drawer.is-open {
		transform: translate3d(0, 0, 0);
		pointer-events: auto;
	}

	.site-header__drawer-inner {
		display: flex;
		flex-direction: column;
		min-height: 100%;
		padding: 88px 22px 36px;
		box-sizing: border-box;
	}

	.site-header__drawer-nav {
		display: block;
	}

	.site-header__drawer-menu {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.site-header__drawer-menu > li > a,
	.site-header__drawer-menu .site-header__nav-dropdown-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 12px 0;
		font-family: var(--ykg-font);
		font-size: 1.25rem;
		font-weight: 400;
		line-height: 1.25;
		color: rgba(255, 255, 255, 0.92);
		text-align: left;
		background: none;
		border: 0;
		cursor: pointer;
	}

	.site-header__drawer-menu .site-header__nav-dropdown-chevron {
		flex-shrink: 0;
		width: 16px;
		height: 16px;
		opacity: 0.85;
	}

	.site-header__drawer-menu .site-header__nav-item--dropdown {
		position: static;
	}

	.site-header__drawer-menu .site-header__nav-dropdown {
		position: static;
		top: auto;
		left: auto;
		min-width: 0;
		width: 100%;
		margin: 4px 0 10px;
		padding: 4px 0 4px 8px;
		list-style: none;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		transform: none;
	}

	.site-header__drawer-menu .site-header__nav-dropdown a {
		display: block;
		padding: 12px 0;
		border-radius: 0;
		font-size: 1.15rem;
		font-weight: 500;
		line-height: 1.3;
		color: rgba(255, 255, 255, 0.86);
		background: none;
	}

	.site-header__drawer-menu > li > a:hover,
	.site-header__drawer-menu > li > a:focus-visible,
	.site-header__drawer-menu .site-header__nav-dropdown-toggle:hover,
	.site-header__drawer-menu .site-header__nav-dropdown-toggle:focus-visible,
	.site-header__drawer-menu .site-header__nav-dropdown a:hover,
	.site-header__drawer-menu .site-header__nav-dropdown a:focus-visible {
		color: #2cac66;
		background: none;
	}

	.site-header__drawer-footer {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-top: auto;
		padding-top: 32px;
	}

	.site-header__drawer-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		min-height: 52px;
		padding: 0 22px;
		border-radius: 999px;
		font-size: 0.95rem;
		font-weight: 500;
		box-sizing: border-box;
		transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	}

	.site-header__drawer-btn--primary {
		background: var(--ykg-emerald);
		color: #fff;
	}

	.site-header__drawer-btn--ghost {
		border: 1px solid rgba(255, 255, 255, 0.22);
		background: rgba(255, 255, 255, 0.04);
		color: #fff;
	}

	.site-header__lang--drawer {
		position: relative;
		align-self: flex-start;
		margin-top: 8px;
	}

	.site-header__lang--drawer .site-header__lang-toggle {
		color: #fff;
		font-size: 1rem;
		font-weight: 400;
	}

	.site-header__lang--drawer .site-header__lang-menu {
		top: 50%;
		left: calc(100% + 12px);
		right: auto;
		transform: translateY(-50%);
		min-width: 72px;
	}

	.site-header__lang--drawer .site-header__lang-option {
		font-weight: 400;
	}

	body.is-header-menu-open {
		overflow: hidden;
	}

	.hero__layout {
		padding-top: clamp(140px, 28vw, 180px);
		gap: 32px;
	}

	.hero__eyebrow {
		margin-bottom: 22px;
		font-size: 0.95rem;
	}

	.hero__title {
		font-size: clamp(2.1rem, 9.2vw, 2.9rem);
		max-width: none;
		line-height: 1.18;
		letter-spacing: -0.03em;
	}

	.hero__title-line {
		white-space: normal;
	}

	.hero__copy {
		max-width: none;
	}

	.hero__actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		margin-top: 6px;
	}

	.hero__btn {
		width: 13.5rem;
		max-width: 100%;
		min-height: 48px;
		padding: 0 24px;
		font-size: 0.95rem;
		box-sizing: border-box;
	}

	.service-carousel__card {
		flex: 0 0 calc(100cqi - 28px);
		width: calc(100cqi - 28px);
		min-height: 148px;
		padding: 9px 12px 9px 9px;
	}

	.service-carousel__thumb {
		flex: 0 0 86px;
		width: 86px;
		border-radius: 11px;
	}

	.service-carousel__title {
		font-size: 1.2rem;
	}

	.service-carousel__text {
		font-size: 0.88rem;
		-webkit-line-clamp: 2;
	}

	.about-section {
		padding: 56px 0 64px;
	}

	.about-section__inner {
		grid-template-columns: 1fr;
		gap: 36px;
		width: min(calc(100% - 28px), 100%);
		margin-left: auto;
		margin-right: auto;
	}

	.about-section__aside {
		gap: 24px;
	}

	.about-section__lead {
		max-width: none;
	}

	.about-section__main {
		gap: 28px;
	}

	.about-section__title {
		max-width: none;
		font-size: clamp(1.85rem, 8vw, 2.45rem);
	}

	.solutions-section {
		padding: 40px 0 64px;
	}

	.solutions-section__inner {
		width: min(calc(100% - 28px), 100%);
	}

	.solutions-section__intro {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 32px;
		width: 100%;
		max-width: 100%;
		padding: 0 2px;
		font-size: clamp(2rem, 7.4vw, 2.65rem);
		font-weight: 500;
		line-height: 1.2;
	}

	.solutions-section__heading {
		gap: 12px 14px;
	}

	.solutions-section__title {
		width: min(100%, 480px);
		max-width: 100%;
		min-height: 0;
		font-size: clamp(2rem, 7.5vw, 2.6rem);
	}

	.solutions-section__media {
		width: min(100%, 100%);
	}

	.solutions-section__frame {
		height: auto;
		max-height: none;
		aspect-ratio: 718 / 664;
	}

	.footprint-section {
		height: auto;
		padding: 0;
	}

	.footprint-section__pin {
		position: relative;
		top: auto;
		min-height: 0;
		padding: 56px 0 64px;
	}

	.footprint-section__inner {
		grid-template-columns: 1fr;
		gap: 24px;
		width: min(calc(100% - 28px), 100%);
	}

	.footprint-section__lead {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footprint-section__gauge {
		flex-direction: row;
		justify-content: flex-start;
		min-width: 0;
		padding-top: 0;
	}

	.footprint-section__gauge-line {
		width: auto;
		min-height: 0;
		height: 1px;
		flex: 1 1 auto;
	}

	.footprint-section__gauge-fill {
		top: 50%;
		left: 0;
		width: var(--footprint-progress);
		height: 2px;
		transform: translateY(-50%);
		transform-origin: left center;
	}

	.footprint-section__stats {
		max-width: none;
	}

	.footprint-section__subtitle {
		max-width: none;
	}

	.footprint-section__map {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		min-height: clamp(260px, 62vw, 380px);
		margin-bottom: clamp(48px, 14vw, 88px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__video {
		display: none;
	}

	.site-footer__line-flow {
		animation: none;
		stroke-dasharray: none;
		opacity: 0.55;
	}

	.service-carousel__list,
	.service-carousel__line-fill {
		transition: none;
	}

	.partner-logos__track:not(.is-js-marquee) {
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		animation: none;
		transform: none;
	}

	.partner-logos__track:not(.is-js-marquee) .partner-logos__list[aria-hidden="true"],
	.partner-logos__track:not(.is-js-marquee) .partner-logos__strip[aria-hidden="true"] {
		display: none;
	}

	.about-section__title--neon {
		animation: none;
	}

	.solutions-section__snake-char {
		transition: none;
	}

	.solutions-section__slide {
		transition: none;
	}

	.solutions-section__video {
		transition: none;
	}

	.tools-section__grid {
		transition: none;
	}

	.cases-section__card,
	.cases-section__card-flip,
	.cases-section__card-link,
	.cases-section__track {
		transition: none !important;
		animation: none !important;
	}

	.cases-section__card:hover .cases-section__card-flip,
	.cases-section__card:focus-within .cases-section__card-flip {
		transform: none;
	}

	.cases-section__card.is-flipped .cases-section__card-flip {
		transform: none;
	}

	.cases-section__card-face--back {
		opacity: 0;
		transform: none;
	}

	.cases-section__card:hover .cases-section__card-face--back,
	.cases-section__card:focus-within .cases-section__card-face--back,
	.cases-section__card.is-flipped .cases-section__card-face--back {
		opacity: 1;
		z-index: 2;
	}

	.cases-section__card.is-flipped .cases-section__card-face--front {
		opacity: 0;
	}

	.about-section__neon-char.is-lit.is-lit--white-tip {
		color: rgba(255, 255, 255, 0.72);
	}

	.footprint-section__stats > * {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.footprint-section__map-layer--world .footprint-section__map-image,
	.footprint-section__map-layer--world .footprint-section__markers,
	.footprint-section__map-layer--turkey .footprint-section__map-image,
	.footprint-section__map-layer--turkey .footprint-section__markers {
		transform: none;
		opacity: 1;
		transition: none;
	}

	.footprint-section__marker::before,
	.footprint-section__marker::after {
		animation: none;
	}
}
