:root {
	--color-bg: #F7F1E6;
	--color-cream: #FFF9ED;
	--color-orange: #F9671F;
	--color-red: #BF3512;
	--color-blue: #06364E;
	--color-black: #1D1D1B;
	--color-pink: #DE6689;
	--color-lime: #E5F64A;
	--color-white: #FFFFFF;
	--color-lavender: #DCCBFF;
	--color-violet: #6B3FE8;
	--font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--radius-lg: 24px;
	--radius-md: 16px;
	--shadow-soft: 0 18px 50px rgba(29, 29, 27, 0.12);
	--max-width: 1160px;
}

/*
@font-face {
	font-family: "Helvetica Neue";
	src: url("../fonts/helvetica-neue.woff2") format("woff2");
	font-weight: 300 800;
	font-style: normal;
	font-display: swap;
}
*/

* {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	background:
		linear-gradient(rgba(29, 29, 27, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(29, 29, 27, 0.035) 1px, transparent 1px),
		var(--color-bg);
	background-size: 28px 28px;
	color: var(--color-black);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.55;
	overflow-x: hidden;
}

body.nav-open {
	overflow: hidden;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
}

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

.announcement-bar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
	width: 100%;
	padding: 8px 16px;
	background: var(--color-lavender);
	color: var(--color-violet);
	font-size: 12px;
	font-weight: 600;
	text-align: center;
}

.site-header {
	position: fixed;
	top: 18px;
	left: 50%;
	z-index: 29;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 18px;
	width: min(calc(100% - 32px), 1040px);
	padding: 10px 12px 10px 22px;
	overflow: hidden;
	background: #FF6B13;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	box-shadow: 0 16px 40px rgba(29, 29, 27, 0.12);
	transform: translateX(-50%);
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.site-header > * {
	position: relative;
	z-index: 1;
}

.site-header.is-scrolled {
	box-shadow: 0 18px 50px rgba(29, 29, 27, 0.18);
}

.brand {
	display: inline-flex;
	align-items: center;
	width: 108px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.brand__logo {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.main-nav {
	justify-self: center;
}

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

.main-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 13px;
	border-radius: 999px;
	color: var(--color-white);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
	background: rgba(255, 255, 255, 0.18);
	color: var(--color-white);
	transform: translateY(-1px);
}

.header-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn--light {
	background: var(--color-white);
	color: var(--color-black);
}

.btn--dark {
	background: rgba(255, 255, 255, 0.18);
	color: var(--color-white);
	box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.14);
}

.btn--lime {
	background: var(--color-lime);
	color: var(--color-black);
}

.btn:hover,
.header-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(29, 29, 27, 0.14);
}

.nav-toggle {
	display: none;
	width: 38px;
	height: 38px;
	padding: 0;
	background: var(--color-black);
	border: 0;
	border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
	display: block;
	width: 17px;
	height: 2px;
	margin: 4px auto;
	background: var(--color-white);
	transition: transform 180ms ease;
}

.nav-open .nav-toggle span:nth-child(2) {
	transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-3px) rotate(-45deg);
}

.section {
	width: min(calc(100% - 32px), var(--max-width));
	min-height: 78vh;
	margin: 0 auto;
	padding: 108px 0;
	content-visibility: auto;
	contain-intrinsic-size: 900px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--color-violet);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 8px;
	height: 8px;
	background: var(--color-lime);
	border-radius: 50%;
	content: "";
}

h1,
h2,
h3 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.02;
}

h1 {
	max-width: 650px;
	font-size: clamp(42px, 6.7vw, 86px);
}

h2 {
	max-width: 760px;
	font-size: clamp(30px, 4.4vw, 56px);
}

h3 {
	font-size: clamp(20px, 2.2vw, 30px);
}

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

.section-heading--center {
	display: grid;
	justify-items: center;
	text-align: center;
}

.hero {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 78vh;
	padding: 128px 18px 58px;
	overflow: hidden;
	background:
		radial-gradient(circle at center, rgba(229, 246, 74, 0.14), transparent 38%),
		var(--color-black);
}

.hero__video,
.hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__video {
	object-fit: cover;
	pointer-events: none;
	border: 0;
}

.hero iframe.hero__video {
	top: 50%;
	left: 50%;
	width: 177.78vh;
	min-width: 100%;
	height: 56.25vw;
	min-height: 100%;
	transform: translate(-50%, -50%);
}

.hero__overlay {
	background:
		linear-gradient(rgba(29, 29, 27, 0.28), rgba(29, 29, 27, 0.42)),
		radial-gradient(circle at center, rgba(107, 63, 232, 0.18), transparent 58%);
}

.hero__title {
	position: relative;
	z-index: 1;
	max-width: min(1180px, 92vw);
	color: var(--color-white);
	font-size: clamp(58px, 13vw, 180px);
	font-weight: 700;
	line-height: 0.92;
	text-align: center;
}

.logo-strip {
	width: 100%;
	min-height: 44vh;
	overflow: hidden;
	padding: clamp(54px, 8vw, 90px) 0;
	background: var(--color-black);
}

.logo-strip__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: logoMarquee 24s linear infinite;
	will-change: transform;
}

.logo-strip__set {
	display: flex;
	align-items: center;
	gap: clamp(34px, 6vw, 86px);
	padding-right: clamp(34px, 6vw, 86px);
}

.logo-strip__item {
	display: grid;
	place-items: center;
	flex: 0 0 clamp(170px, 18vw, 260px);
	height: clamp(82px, 10vw, 126px);
	margin: 0;
	padding: 18px 24px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-strip__item img {
	width: 100%;
	max-height: 84px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.82;
}

.growth-system {
	position: relative;
	width: 100%;
	min-height: 75vh;
	max-width: none;
	padding: 0 max(16px, calc((100vw - var(--max-width)) / 2));
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(229, 246, 74, 0.22) 0 1px, transparent 1px),
		linear-gradient(rgba(29, 29, 27, 0.035) 0 1px, transparent 1px),
		#FFF9ED;
	background-size: 76px 100%, 100% 52px, auto;
}

.growth-system::before {
	position: absolute;
	top: 0;
	right: max(16px, calc((100vw - var(--max-width)) / 2));
	left: max(16px, calc((100vw - var(--max-width)) / 2));
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(29, 29, 27, 0.18), transparent);
	content: "";
}

.about-intro {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	justify-items: center;
	width: 100%;
	max-width: var(--max-width);
	min-height: 70vh;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

.about-intro .eyebrow {
	justify-content: center;
	margin-bottom: 30px;
}

.about-intro__copy {
	max-width: 1080px;
}

.about-intro__copy p {
	margin: 0;
	color: rgba(29, 29, 27, 0.82);
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.24;
}

.about-intro__copy p + p {
	margin: 28px auto 0;
	max-width: 920px;
	font-size: clamp(16px, 1.45vw, 20px);
	line-height: 1.46;
}

.about-intro__lead {
	--fill: 0%;
	background:
		linear-gradient(90deg, var(--color-black) 0 var(--fill), rgba(29, 29, 27, 0.18) var(--fill) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	font-size: clamp(36px, 6.2vw, 86px) !important;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.96 !important;
	text-wrap: balance;
	transition: background 80ms linear;
}

.about-intro strong {
	color: var(--color-black);
	font-weight: 800;
	box-shadow: inset 0 -0.42em rgba(229, 246, 74, 0.78);
}

.about-statement {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--max-width);
	margin: clamp(40px, 6vw, 72px) auto 86px;
	padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 68px);
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(229, 246, 74, 0.12), transparent 34%),
		linear-gradient(180deg, #070707, #000000);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0;
	box-shadow: 0 36px 80px rgba(29, 29, 27, 0.22);
	color: var(--color-white);
	text-align: center;
}

.about-statement::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(220px, 36vw);
	height: 10px;
	background: var(--color-lime);
	border-radius: 0 0 999px 999px;
	content: "";
	transform: translateX(-50%);
}

.about-statement::after {
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	content: "";
	pointer-events: none;
}

.about-statement h2 {
	position: relative;
	z-index: 1;
	max-width: 960px;
	margin: 0 auto;
	color: var(--color-white);
	font-size: clamp(38px, 7vw, 88px);
	letter-spacing: 0;
	line-height: 0.98;
	text-wrap: balance;
}

.about-statement h2 span {
	display: inline-block;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(229, 246, 74, 0.88), rgba(255, 255, 255, 0.18));
	background-size: 220% 100%;
	background-clip: text;
	color: transparent;
	animation: statementGlow 4.8s ease-in-out infinite;
}

.about-statement p {
	position: relative;
	z-index: 1;
	margin: 24px auto 0;
	max-width: 760px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(14px, 1.6vw, 19px);
	font-weight: 700;
}

.section-heading--system {
	position: relative;
	z-index: 1;
	margin-bottom: 44px;
}

.system-infographic {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(280px, 360px) minmax(220px, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 28px 34px;
	align-items: center;
	min-height: 0;
	width: 100%;
	max-width: var(--max-width);
	margin: 14px auto 0;
}

.system-orbit {
	position: relative;
	z-index: 1;
	grid-column: 2;
	grid-row: 1 / span 2;
	display: grid;
	place-items: center;
	width: min(360px, 100%);
	aspect-ratio: 1;
	margin: 0 auto;
	transform: none;
}

.system-line {
	position: absolute;
	z-index: -1;
	width: 30%;
	height: 2px;
	background: linear-gradient(90deg, rgba(29, 29, 27, 0), rgba(29, 29, 27, 0.18), rgba(29, 29, 27, 0));
	transform-origin: center;
}

.system-line--one {
	top: 24%;
	left: -6%;
	transform: rotate(-18deg);
}

.system-line--two {
	top: 24%;
	right: -6%;
	transform: rotate(18deg);
}

.system-line--three {
	bottom: 24%;
	left: -6%;
	transform: rotate(18deg);
}

.system-line--four {
	right: -6%;
	bottom: 24%;
	transform: rotate(-18deg);
}

.system-donut {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	filter: drop-shadow(0 24px 34px rgba(29, 29, 27, 0.14));
}

.system-donut__svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	animation: systemFloat 5s ease-in-out infinite;
}

.system-donut__base,
.system-donut__segment {
	fill: none;
	stroke-linecap: round;
	stroke-width: 32;
	transform-origin: 120px 120px;
}

.system-donut__base {
	stroke: rgba(29, 29, 27, 0.06);
}

.system-donut__segment {
	stroke-dasharray: 106 409;
	stroke-dashoffset: 0;
	animation: drawSegment 1.15s ease forwards;
}

.system-donut__segment--one {
	stroke: #FF6B13;
	transform: rotate(-90deg);
}

.system-donut__segment--two {
	stroke: var(--color-blue);
	transform: rotate(0deg);
	animation-delay: 120ms;
}

.system-donut__segment--three {
	stroke: var(--color-pink);
	transform: rotate(90deg);
	animation-delay: 240ms;
}

.system-donut__segment--four {
	stroke: var(--color-black);
	transform: rotate(180deg);
	animation-delay: 360ms;
}

.system-donut__core {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 46%;
	aspect-ratio: 1;
	background: #FFF9ED;
	border: 2px solid rgba(29, 29, 27, 0.08);
	border-radius: 50%;
	box-shadow: inset 0 0 0 10px rgba(227, 242, 86, 0.4);
	color: var(--color-black);
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.system-donut__core strong {
	display: block;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1;
}

.system-card {
	position: relative;
	z-index: 2;
	min-height: 166px;
	padding: 24px;
	border-radius: 22px;
	box-shadow: 0 18px 40px rgba(29, 29, 27, 0.1);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.system-card:hover {
	box-shadow: 0 24px 54px rgba(29, 29, 27, 0.16);
	transform: translateY(-6px);
}

.system-card span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 20px;
	background: rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	color: inherit;
	font-size: 15px;
	font-weight: 700;
}

.service-card span {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	margin-bottom: 18px;
	background: var(--color-violet);
	border-radius: 50%;
	color: var(--color-white);
	font-size: 12px;
	font-weight: 700;
}

.system-card h3 {
	margin-bottom: 10px;
	font-size: clamp(22px, 2.4vw, 32px);
}

.system-card p {
	margin: 0;
	max-width: 280px;
	color: inherit;
	font-size: 14px;
	font-weight: 400;
}

.service-card p {
	margin: 0;
	color: rgba(29, 29, 27, 0.72);
	font-size: 13px;
	font-weight: 400;
}

.system-card--one {
	grid-column: 1;
	grid-row: 1;
	background: #FF6B13;
	color: var(--color-white);
}

.system-card--two {
	grid-column: 3;
	grid-row: 1;
	background: var(--color-blue);
	color: var(--color-white);
}

.system-card--three {
	grid-column: 1;
	grid-row: 2;
	background: var(--color-pink);
	color: var(--color-white);
}

.system-card--four {
	grid-column: 3;
	grid-row: 2;
	background: var(--color-black);
	color: var(--color-white);
}

.services-dark {
	display: grid;
	align-content: center;
	width: 100%;
	min-height: 92vh;
	max-width: none;
	padding-right: max(16px, calc((100vw - var(--max-width)) / 2));
	padding-left: max(16px, calc((100vw - var(--max-width)) / 2));
	background: var(--color-black);
	color: var(--color-white);
}

.services-dark .eyebrow {
	color: var(--color-lavender);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.service-card {
	min-height: 320px;
	padding: 22px;
	border-radius: var(--radius-lg);
	color: var(--color-black);
	transition: transform 180ms ease;
}

.service-card:hover {
	transform: translateY(-8px);
}

.service-card h3 {
	margin-bottom: 14px;
	font-size: 24px;
}

.service-card--lime {
	background: var(--color-lime);
}

.service-card--violet {
	background: var(--color-violet);
	color: var(--color-white);
}

.service-card--violet p,
.service-card--orange p {
	color: rgba(255, 255, 255, 0.78);
}

.service-card--orange {
	background: var(--color-orange);
	color: var(--color-white);
}

.service-card--lavender {
	background: var(--color-lavender);
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--color-cream);
}

.impact-cell {
	display: grid;
	place-items: center;
	min-height: 220px;
	padding: 24px;
	text-align: center;
}

.impact-cell--lavender {
	background: var(--color-lavender);
}

.impact-cell strong {
	display: block;
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	line-height: 1;
}

.impact-cell span {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.reels {
	position: relative;
	z-index: 7;
	width: 100%;
	min-height: 0;
	max-width: none;
	padding: 0;
	overflow: visible;
	background: transparent;
	color: var(--color-black);
}

.reels--separator {
	position: relative;
	z-index: 6;
	overflow: visible;
	padding: 0;
	margin-top: -118px;
	margin-bottom: -74px;
	background: linear-gradient(to bottom, transparent 0 42%, #FFF9ED 42% 100%);
}

.reels .eyebrow {
	color: var(--color-violet);
}

.reels .section-heading {
	width: min(calc(100% - 32px), var(--max-width));
	margin-right: auto;
	margin-left: auto;
}

.reel-marquee {
	width: 100%;
	overflow: hidden;
	padding: 54px 4vw 48px;
}

.reels--separator .reel-marquee {
	padding-top: 54px;
	padding-bottom: 48px;
	margin-top: 0;
}

.reel-track {
	display: flex;
	align-items: center;
	gap: 0;
	width: max-content;
	animation: marquee 32s linear infinite;
	animation-play-state: paused;
	transform: translateZ(0);
	will-change: transform;
}

.reel-marquee.is-active .reel-track {
	animation-play-state: running;
}

.reel-set {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: max-content;
	transform: translateZ(0);
}

.reel-set + .reel-set {
	margin-left: clamp(-10px, -1.4vw, -22px);
}

.reel-marquee:hover .reel-track {
	animation-play-state: paused;
}

.reel-card {
	position: relative;
	flex: 0 0 clamp(142px, 11vw, 190px);
	margin-left: clamp(-10px, -1.4vw, -22px);
	contain: layout paint;
	transition: transform 220ms ease, z-index 220ms ease;
	will-change: transform;
}

.reel-card:hover {
	z-index: 4;
	transform: translateY(-12px) rotate(0deg) scale(1.03);
}

.reel-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 9 / 16;
	background: #E3F256;
	border: 2px solid #E3F256;
	border-radius: 28px;
	box-shadow: 0 24px 52px rgba(29, 29, 27, 0.16);
	transform: translateZ(0);
}

.reel-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: var(--color-black);
}

.reel-card--1 {
	transform: rotate(-3deg);
}

.reel-card--2 {
	transform: translateY(-18px) rotate(2deg);
}

.reel-card--3 {
	transform: translateY(8px) rotate(-2deg);
}

.reel-card--4 {
	transform: translateY(-28px) rotate(3deg);
}

.reel-card--5 {
	transform: translateY(2px) rotate(-3deg);
}

.reel-card--6 {
	transform: translateY(-12px) rotate(2deg);
}

.experts {
	display: grid;
	align-content: center;
	width: 100%;
	min-height: 88vh;
	max-width: none;
	padding-right: max(16px, calc((100vw - var(--max-width)) / 2));
	padding-left: max(16px, calc((100vw - var(--max-width)) / 2));
	background: var(--color-violet);
	color: var(--color-white);
}

.experts .eyebrow {
	color: var(--color-lavender);
}

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

.expert-card {
	margin: 0;
	padding: 22px;
	background: var(--color-white);
	border-radius: var(--radius-md);
	color: var(--color-black);
}

.expert-card p {
	margin: 0 0 18px;
	font-weight: 400;
}

.expert-card cite {
	color: var(--color-violet);
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
}

.localization {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	align-items: center;
	gap: 40px;
	min-height: 86vh;
}

.localization__copy p:not(.eyebrow) {
	max-width: 420px;
	color: rgba(29, 29, 27, 0.72);
	font-weight: 400;
}

.map-visual {
	position: relative;
	min-height: 380px;
	overflow: hidden;
	background:
		radial-gradient(circle at center, transparent 0 42%, rgba(107, 63, 232, 0.11) 43% 44%, transparent 45%),
		radial-gradient(circle at center, transparent 0 28%, rgba(107, 63, 232, 0.13) 29% 30%, transparent 31%),
		var(--color-lavender);
	border-radius: 30px;
}

.map-visual::before {
	position: absolute;
	inset: 28px;
	background:
		radial-gradient(circle, rgba(107, 63, 232, 0.28) 1px, transparent 2px);
	background-size: 18px 18px;
	border-radius: 24px;
	content: "";
	mask-image: radial-gradient(ellipse at center, #000 0 62%, transparent 70%);
}

.map-visual span {
	position: absolute;
	top: var(--y);
	left: var(--x);
	z-index: 1;
	padding: 7px 10px;
	background: var(--color-lime);
	border-radius: 999px;
	color: var(--color-black);
	font-size: 11px;
	font-weight: 700;
}

.faq-cta {
	display: grid;
	place-items: center;
	min-height: 74vh;
}

.faq-card {
	display: grid;
	justify-items: center;
	max-width: 680px;
	text-align: center;
}

.faq-card h2 {
	color: var(--color-violet);
}

.faq-card p {
	margin: 16px 0 22px;
	font-weight: 500;
}

.site-footer {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 76px max(16px, calc((100vw - var(--max-width)) / 2)) 28px;
	background: var(--color-black);
	color: var(--color-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 44px;
}

.brand--footer {
	width: 132px;
}

.footer-brand p {
	max-width: 360px;
	margin: 24px 0;
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.05;
}

.footer-mail {
	color: var(--color-lavender);
	font-weight: 700;
}

.contact-form {
	padding: 22px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 13px;
}

.form-grid__full {
	grid-column: 1 / -1;
}

.contact-form label {
	display: grid;
	gap: 7px;
}

.contact-form span {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 13px 14px;
	background: var(--color-cream);
	border: 1px solid transparent;
	border-radius: 12px;
	color: var(--color-black);
	outline: 0;
}

.contact-form textarea {
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--color-lavender);
}

.contact-form .btn {
	margin-top: 16px;
}

.form-note {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 12px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 34px;
	margin-top: 54px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
}

.footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@keyframes logoMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@keyframes pulseRing {
	0%,
	100% {
		transform: scale(0.82);
		opacity: 0.45;
	}
	50% {
		transform: scale(1.18);
		opacity: 0.85;
	}
}

@keyframes drawSegment {
	from {
		stroke-dasharray: 0 515;
	}
	to {
		stroke-dasharray: 106 409;
	}
}

@keyframes systemFloat {
	0%,
	100% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(2deg) scale(1.015);
	}
}

@keyframes statementGlow {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@media (max-width: 1020px) {
	.site-header {
		grid-template-columns: auto 1fr auto;
	}

	.main-nav {
		position: fixed;
		top: 64px;
		right: 0;
		left: 0;
		display: none;
		padding: 16px;
		background: var(--color-violet);
		border-radius: 24px;
		box-shadow: 0 18px 42px rgba(29, 29, 27, 0.2);
	}

	.nav-open .main-nav {
		display: block;
	}

	.main-nav__list {
		display: grid;
		gap: 6px;
	}

	.main-nav a {
		min-height: 42px;
	}

	.nav-toggle {
		display: block;
	}

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

	.service-grid,
	.impact-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-intro {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.about-intro .eyebrow {
		position: static;
	}

	.about-statement {
		margin-bottom: 58px;
	}

	.logo-strip {
		min-height: 34vh;
	}

	.system-infographic {
		grid-template-columns: 1fr 1fr;
		min-height: 0;
		gap: 18px;
	}

	.system-orbit {
		grid-column: 1 / -1;
		grid-row: auto;
		width: min(360px, 76vw);
		margin: 0 auto 10px;
	}

	.system-line {
		display: none;
	}

	.system-card,
	.system-card--one,
	.system-card--two,
	.system-card--three,
	.system-card--four {
		grid-column: auto;
		grid-row: auto;
	}

	.expert-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 14px;
	}

	.site-header {
		top: 12px;
		width: calc(100% - 18px);
		gap: 10px;
	}

	.brand {
		width: 96px;
	}

	.header-cta {
		display: none;
	}

	.section {
		width: min(calc(100% - 24px), var(--max-width));
		min-height: 72vh;
		padding: 78px 0;
		contain-intrinsic-size: 720px;
	}

	h2 {
		font-size: clamp(28px, 9vw, 40px);
	}

	.hero {
		min-height: 72vh;
		padding-top: 104px;
	}

	.hero__title {
		font-size: clamp(54px, 20vw, 96px);
	}

	.service-grid,
	.impact-grid,
	.system-infographic,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.about-intro__copy p {
		font-size: 22px;
	}

	.about-intro__lead {
		font-size: clamp(38px, 13vw, 64px) !important;
	}

	.about-intro__copy p + p {
		font-size: 16px;
	}

	.growth-system {
		min-height: 75vh;
		padding-top: 0;
		padding-bottom: 0;
	}

	.about-intro {
		min-height: 70vh;
		margin-bottom: 0;
		padding: 0;
	}

	.logo-strip__set {
		gap: 24px;
		padding-right: 24px;
	}

	.logo-strip__item {
		flex-basis: 170px;
		height: 86px;
		padding: 14px 18px;
	}

	.reels {
		min-height: 0;
		padding: 0;
	}

	.reels--separator {
		margin-top: -72px;
		margin-bottom: -46px;
		background: linear-gradient(to bottom, transparent 0 38%, #FFF9ED 38% 100%);
	}

	.reels--separator .reel-marquee {
		padding-top: 34px;
		padding-bottom: 34px;
	}

	.service-card {
		min-height: 260px;
	}

	.impact-cell {
		min-height: 180px;
	}

	.system-card {
		min-height: auto;
	}

	.reel-marquee {
		overflow-x: auto;
		padding-bottom: 12px;
		scroll-snap-type: x mandatory;
	}

	.reel-track {
		animation: none;
	}

	.reel-set--clone {
		display: none;
	}

	.reel-card {
		flex-basis: 150px;
		scroll-snap-align: start;
	}

	.map-visual {
		min-height: 300px;
	}

	.footer-bottom {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
