:root {
	--color-bg: #F7F1E6;
	--color-cream: #FFF9ED;
	--color-orange: #F9671F;
	--color-red: #BF3512;
	--color-blue: #06364E;
	--color-black: #200900;
	--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(32, 9, 0, 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: clip;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-black);
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.55;
	overflow-x: clip;
}

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(32, 9, 0, 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(32, 9, 0, 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: 600;
	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: 600;
	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(32, 9, 0, 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: auto;
	margin: 0 auto;
	padding: clamp(74px, 9vw, 108px) 0;
	content-visibility: auto;
	contain-intrinsic-size: 760px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--color-violet);
	font-size: 11px;
	font-weight: 600;
	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: 600;
	letter-spacing: 0;
	line-height: 1.02;
}

h1 {
	max-width: 650px;
	font-size: clamp(34px, 5.4vw, 68px);
}

h2 {
	max-width: 760px;
	font-size: clamp(24px, 3.6vw, 44px);
}

h3 {
	font-size: clamp(17px, 1.9vw, 24px);
}

/* Cap emphasis/heading weight: nothing heavier than 600 anywhere. */
strong,
b,
h4,
h5,
h6 {
	font-weight: 600;
}

.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: 92vh;
	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(32, 9, 0, 0.28), rgba(32, 9, 0, 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(46px, 10vw, 136px);
	font-weight: 600;
	line-height: 0.92;
	text-align: center;
}

.logo-strip {
	width: 100%;
	overflow: hidden;
	padding: clamp(42px, 6vw, 72px) 0;
	background: #C76E88;
}

.logo-strip__track {
	display: flex;
	align-items: center;
	margin: 0 0 clamp(24px, 3vw, 36px);
	width: max-content;
	animation: logoMarquee 28s linear infinite;
	will-change: transform;
}

.logo-strip__track:last-child {
	margin-bottom: 0;
}

.logo-strip__track--reverse {
	animation-name: logoMarqueeReverse;
	animation-duration: 32s;
}

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

.logo-strip__item {
	display: grid;
	place-items: center;
	flex: 0 0 clamp(112px, 12vw, 170px);
	height: clamp(46px, 5.6vw, 68px);
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
}

.logo-strip__item img {
	width: 100%;
	max-height: 60px;
	object-fit: contain;
	opacity: 1;
}

/* Nuestros pilares: three centred colour cards. */
.pillars-showcase {
	width: 100%;
	padding: clamp(64px, 8vw, 104px) 0 clamp(70px, 8vw, 108px);
	background: var(--color-cream);
	color: var(--color-black);
}

.pillars-showcase__head {
	width: min(calc(100% - 32px), var(--max-width));
	margin: 0 auto clamp(34px, 5vw, 60px);
	text-align: center;
}

.pillars-showcase__head h2 {
	max-width: 900px;
	margin: 0 auto;
	color: var(--color-black);
	font-size: clamp(36px, 6.4vw, 78px);
	line-height: 0.98;
}

/* Titulares de secci&oacute;n: aparici&oacute;n palabra por palabra. */
.has-word-reveal .title-word {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.5em);
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
	will-change: transform, opacity;
}

.has-word-reveal.is-words-in .title-word {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.has-word-reveal .title-word {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.pillars-underline {
	position: relative;
	display: inline-block;
	padding: 0 0.04em 0.08em;
	white-space: nowrap;
}

.pillars-underline::after {
	position: absolute;
	right: 0;
	bottom: -0.02em;
	left: 0;
	height: 0.24em;
	background-image: url("data:image/svg+xml,%3Csvg width='220' height='30' viewBox='0 0 220 30' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M8 20 C44 8 76 20 112 17 C148 14 176 10 212 13' fill='none' stroke='%23FF6B14' stroke-width='14' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	content: "";
	transform: rotate(-1deg);
	transform-origin: center;
}

.pillars-showcase__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(18px, 2.4vw, 32px);
	width: min(calc(100% - 32px), var(--max-width));
	margin: 0 auto;
}

.pillar-card {
	display: flex;
	flex-direction: column;
	min-height: clamp(380px, 40vw, 470px);
	padding: clamp(24px, 2.4vw, 38px);
	background: var(--card-bg);
	border-radius: clamp(22px, 2.2vw, 30px);
	color: var(--card-fg);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 54px rgba(32, 9, 0, 0.22);
}

.pillar-card--rust {
	--card-bg: #BF3512;
	--card-fg: var(--color-cream);
	--card-accent: #FBD4AE;
	--card-badge-bg: #200900;
	--card-badge-fg: var(--color-cream);
}

.pillar-card--peach {
	--card-bg: #FBD4AE;
	--card-fg: #200900;
	--card-accent: #BF3512;
	--card-badge-bg: #BF3512;
	--card-badge-fg: #FFF9ED;
}

.pillar-card--dark {
	--card-bg: #200900;
	--card-fg: var(--color-cream);
	--card-accent: #FBD4AE;
	--card-badge-bg: #FBD4AE;
	--card-badge-fg: #200900;
}

.pillar-card__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: clamp(22px, 3vw, 34px);
	background: var(--card-badge-bg);
	border-radius: 50%;
	color: var(--card-badge-fg);
}

.pillar-card__icon svg {
	width: 18px;
	height: 18px;
	margin-left: 2px;
	fill: currentColor;
}

.pillar-card__title {
	margin: 0;
	color: var(--card-fg);
	font-size: clamp(24px, 2.7vw, 36px);
	line-height: 1.02;
	text-transform: uppercase;
}

.pillar-card__body {
	margin-top: auto;
	padding-top: clamp(28px, 4vw, 52px);
}

.pillar-card__claim {
	margin: 0 0 10px;
	color: var(--card-accent);
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 600;
}

.pillar-card__desc {
	margin: 0;
	max-width: 30ch;
	color: var(--card-fg);
	font-size: clamp(14px, 1.35vw, 16px);
	line-height: 1.5;
	opacity: 0.9;
}

@media (max-width: 860px) {
	.pillars-showcase__track {
		grid-template-columns: 1fr;
		max-width: 460px;
	}

	.pillar-card {
		min-height: 0;
	}

	.pillar-card__body {
		margin-top: clamp(28px, 9vw, 52px);
	}
}

/* Separador din&aacute;mico: marquee de frases de BOSKA. */
.text-marquee {
	width: 100%;
	overflow: hidden;
	padding: clamp(16px, 2.2vw, 26px) 0;
	background: var(--color-orange);
	border-top: 2px solid var(--color-black);
	border-bottom: 2px solid var(--color-black);
}

.text-marquee__track {
	display: flex;
	width: max-content;
	animation: logoMarquee 26s linear infinite;
	will-change: transform;
}

.text-marquee:hover .text-marquee__track {
	animation-play-state: paused;
}

.text-marquee__group {
	display: flex;
	align-items: center;
}

.text-marquee__item {
	padding: 0 clamp(16px, 2vw, 28px);
	color: var(--color-cream);
	font-size: clamp(20px, 3vw, 40px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.text-marquee__star {
	color: var(--color-black);
	font-size: clamp(14px, 2vw, 26px);
	line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
	.text-marquee__track {
		animation: none;
	}
}

/* Proyectos: muro de creativos filtrable por plataforma. */
.projects {
	position: relative;
	width: 100%;
	padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
	background-color: var(--color-bg);
	background-image:
		linear-gradient(to right, rgba(32, 9, 0, 0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(32, 9, 0, 0.05) 1px, transparent 1px);
	background-size: 46px 46px;
	color: var(--color-black);
}

.projects__inner {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 32px), var(--max-width));
	margin: 0 auto;
}

.projects__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px 32px;
	margin-bottom: clamp(22px, 3vw, 34px);
}

.projects__title {
	max-width: 720px;
	margin: 0;
	font-size: clamp(36px, 6.4vw, 80px);
	line-height: 0.98;
	font-weight: 700;
}

.projects__sub {
	max-width: 400px;
	margin: 0;
	color: rgba(32, 9, 0, 0.62);
	font-size: clamp(16px, 1.7vw, 22px);
	line-height: 1.35;
	text-align: right;
}

.projects__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 24px;
	margin-bottom: clamp(24px, 3vw, 36px);
}

.projects__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.projects__filter {
	padding: 9px 18px;
	border: 1px solid rgba(32, 9, 0, 0.18);
	border-radius: 999px;
	background: transparent;
	color: var(--color-black);
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.projects__filter:hover {
	border-color: var(--color-black);
}

.projects__filter.is-active {
	background: var(--color-black);
	border-color: var(--color-black);
	color: var(--color-cream);
}

.projects__hint {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: rgba(32, 9, 0, 0.6);
	font-size: 13px;
	font-weight: 500;
}

.projects__hint-dot {
	display: inline-block;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--color-pink);
	position: relative;
}

.projects__hint-dot::before {
	position: absolute;
	top: 50%;
	left: 54%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 7px;
	border-color: transparent transparent transparent var(--color-white);
	transform: translate(-50%, -50%);
	content: "";
}

.projects__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(14px, 1.6vw, 22px);
}

.project-tile {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-tile.is-hidden {
	display: none;
}

.project-tile__media {
	position: relative;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: #e9e2d4;
	box-shadow: var(--shadow-soft);
}

.project-tile__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-tile:hover .project-tile__media video {
	transform: scale(1.04);
}

.project-tile__sound {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(32, 9, 0, 0.55);
	cursor: pointer;
	transition: background 0.25s ease;
}

.project-tile__sound:hover {
	background: rgba(32, 9, 0, 0.78);
}

.project-tile__sound-icon {
	width: 0;
	height: 0;
	margin-left: 2px;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent var(--color-white);
}

.project-tile.is-playing .project-tile__sound {
	background: var(--color-pink);
}

.project-tile.is-playing .project-tile__sound-icon {
	width: 10px;
	height: 10px;
	margin-left: 0;
	border: none;
	background:
		linear-gradient(var(--color-white), var(--color-white)) left / 3px 100% no-repeat,
		linear-gradient(var(--color-white), var(--color-white)) right / 3px 100% no-repeat;
}

.project-tile__badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	z-index: 2;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--color-lime);
	color: var(--color-black);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.project-tile__tags {
	position: absolute;
	bottom: 12px;
	left: 12px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	max-width: calc(100% - 24px);
}

.project-tile__platform,
.project-tile__brand {
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(32, 9, 0, 0.18);
}

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

.project-tile__brand {
	background: var(--color-white);
	color: var(--color-black);
}

@media (max-width: 1020px) {
	.projects__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 720px) {
	.projects__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.projects__sub {
		text-align: left;
	}
}

@media (max-width: 460px) {
	.projects__grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
}

/* Rese&ntilde;as: panel rosado con top curvo y carrusel autom&aacute;tico. */
.reviews {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: clamp(58px, 8vw, 104px) 0 clamp(64px, 8vw, 104px);
	background: #C76E88;
	color: var(--color-cream);
}

.reviews__head {
	width: min(calc(100% - 32px), 760px);
	margin: 0 auto clamp(34px, 4vw, 56px);
	text-align: center;
}

.reviews__title {
	margin: 0 0 14px;
	color: var(--color-cream);
	font-size: clamp(36px, 6vw, 74px);
	font-weight: 700;
	line-height: 1;
}

.reviews__sub {
	margin: 0;
	color: rgba(255, 249, 237, 0.82);
	font-size: clamp(15px, 1.7vw, 21px);
	line-height: 1.4;
}

.reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 1.8vw, 26px);
	width: min(calc(100% - 32px), var(--max-width));
	margin: 0 auto;
}

.review-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 100%;
	margin: 0;
	padding: clamp(22px, 2.4vw, 30px);
	background: var(--color-white);
	color: var(--color-black);
	border-radius: var(--radius-md);
	box-shadow: 0 14px 34px rgba(32, 9, 0, 0.14);
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 420ms ease, transform 420ms ease, box-shadow 420ms ease;
	will-change: opacity, transform;
}

.review-card.is-shuffling {
	opacity: 0;
	transform: translateY(18px) scale(0.96);
}

.review-card.is-featured:not(.is-shuffling) {
	box-shadow: 0 20px 44px rgba(32, 9, 0, 0.2);
	transform: translateY(-6px) scale(1.015);
}

.review-card__head {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(32, 9, 0, 0.1);
}

.review-card__logo {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-black);
	color: var(--color-white);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.review-card__id {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.review-card__name {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.review-card__sub {
	color: rgba(32, 9, 0, 0.55);
	font-size: 13px;
	line-height: 1.2;
}

.review-card__quote {
	margin: 0;
	color: rgba(32, 9, 0, 0.82);
	font-size: clamp(14px, 1.3vw, 15px);
	line-height: 1.55;
}

@media (max-width: 900px) {
	.reviews__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.reviews__grid {
		grid-template-columns: 1fr;
	}
}

/* Servicios: rueda de metodología con colores Boska suavizados. */
.services-wheel {
	position: relative;
	width: 100%;
	padding: clamp(64px, 8vw, 108px) 0;
	overflow: hidden;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.5px),
		linear-gradient(135deg, rgba(255, 107, 20, 0.08), transparent 34%),
		#200900;
	background-position: center;
	background-size: 24px 24px, 100% 100%;
	color: var(--color-white);
}

.services-wheel::before {
	position: absolute;
	inset: clamp(16px, 2.4vw, 32px);
	content: "";
	pointer-events: none;
}

.services-wheel__inner {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 32px), var(--max-width));
	margin: 0 auto;
}

.services-wheel__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	align-items: center;
	gap: clamp(18px, 3vw, 34px);
	margin-bottom: clamp(54px, 7vw, 88px);
	text-align: left;
}

.services-wheel__title {
	margin: 0;
	color: var(--color-white);
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 700;
	line-height: 1;
	text-transform: none;
}

.services-wheel__sub {
	max-width: 620px;
	margin: 0;
	justify-self: end;
	color: rgba(255, 255, 255, 0.68);
	font-size: clamp(15px, 1.7vw, 20px);
	line-height: 1.42;
	text-align: right;
}

.services-wheel__layout {
	--loop-radius: clamp(34px, 5vw, 64px);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: clamp(14px, 2vw, 22px);
	position: relative;
	min-height: clamp(170px, 17vw, 220px);
	padding: clamp(48px, 5vw, 62px) clamp(20px, 3vw, 34px) clamp(34px, 4vw, 48px);
	border-radius: var(--loop-radius);
	background: rgba(255, 255, 255, 0.035);
}

.services-wheel__circuit {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 1000 / 210;
	margin: auto 0;
	overflow: visible;
	pointer-events: none;
}

.services-wheel__circuit-track {
	fill: none;
	stroke: rgba(255, 255, 255, 0.46);
	stroke-dasharray: 2 8;
	stroke-linecap: round;
	stroke-width: 3;
	vector-effect: non-scaling-stroke;
}

.services-wheel__circuit-dot {
	fill: var(--color-white);
	filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.42)) drop-shadow(0 6px 10px rgba(32, 9, 0, 0.14));
	stroke: rgba(32, 9, 0, 0.08);
	stroke-width: 3;
	vector-effect: non-scaling-stroke;
}

.services-wheel__return-label rect {
	fill: #200900;
}

.services-wheel__return-label text {
	fill: rgba(255, 255, 255, 0.82);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.service-step {
	--step-color: var(--color-orange);
	position: relative;
	z-index: 1;
	display: block;
	min-height: 112px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.service-step::after {
	display: none;
}

.service-step__body {
	min-height: 104px;
	padding: 0 clamp(4px, 1vw, 14px);
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	text-align: center;
}

.service-step__num {
	position: absolute;
	top: calc(-1 * clamp(48px, 5vw, 62px) - (clamp(42px, 4.8vw, 56px) / 2));
	left: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: clamp(42px, 4.8vw, 56px);
	height: clamp(42px, 4.8vw, 56px);
	margin: 0;
	padding: 0;
	background: #BFC7BD;
	border: 5px solid var(--color-cream);
	border-radius: 50%;
	box-shadow: 0 14px 26px rgba(32, 9, 0, 0.12);
	color: var(--color-white);
	font-size: clamp(15px, 1.6vw, 20px);
	font-weight: 700;
	line-height: 1;
	text-align: center;
	transform: translateX(-50%);
	animation: serviceStepActivate 15s linear infinite;
}

.service-step--two {
	--step-color: var(--color-pink);
}

.service-step--three {
	--step-color: #1FA67A;
}

.service-step--four {
	--step-color: var(--color-blue);
}

.service-step--two .service-step__num {
	animation-delay: 1.2s;
}

.service-step--three .service-step__num {
	animation-delay: 2.4s;
}

.service-step--four .service-step__num {
	animation-delay: 3.6s;
}

.service-step h3 {
	margin: 0 0 8px;
	color: var(--color-white);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.08;
}

.service-step p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: clamp(14px, 1.35vw, 16px);
	line-height: 1.36;
}

@keyframes serviceStepActivate {
	0%,
	7% {
		background: #BFC7BD;
		box-shadow: 0 10px 22px rgba(32, 9, 0, 0.08);
		color: var(--color-white);
	}
	13%,
	82% {
		background: var(--step-color);
		box-shadow: 0 14px 26px rgba(32, 9, 0, 0.12);
		color: var(--color-white);
	}
	88%,
	100% {
		background: #BFC7BD;
		box-shadow: 0 10px 22px rgba(32, 9, 0, 0.08);
		color: var(--color-white);
	}
}

@media (prefers-reduced-motion: reduce) {
	.services-wheel__circuit-dot animateMotion {
		display: none;
	}

	.service-step__num {
		animation: none;
		background: var(--step-color);
	}
}

@media (max-width: 900px) {
	.services-wheel__layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-height: 360px;
		padding: 46px 24px 58px;
		row-gap: 72px;
	}

	.services-wheel__circuit {
		aspect-ratio: 1000 / 260;
	}

	.service-step__num {
		top: calc(-46px - (clamp(42px, 4.8vw, 56px) / 2));
	}

	.service-step,
	.service-step--two,
	.service-step--three,
	.service-step--four {
		margin-top: 0;
	}
}

@media (max-width: 560px) {
	.services-wheel::before {
		inset: 10px;
	}

	.services-wheel__head {
		grid-template-columns: 1fr;
	}

	.services-wheel__sub {
		justify-self: start;
		text-align: left;
	}

	.services-wheel__layout {
		--loop-radius: 30px;
		grid-template-columns: 1fr;
		gap: 20px;
		min-height: auto;
		padding: 28px 18px 40px;
		border-radius: 30px;
	}

	.services-wheel__circuit {
		display: none;
	}

	.service-step {
		display: grid;
		grid-template-columns: 46px minmax(0, 1fr);
		grid-template-rows: auto;
		align-items: start;
		gap: 14px;
		min-height: auto;
	}

	.service-step::after {
		display: none;
	}

	.service-step__num {
		position: relative;
		grid-column: 1;
		grid-row: 1;
		top: 0;
		left: 0;
		width: 50px;
		height: 50px;
		border-width: 4px;
		font-size: 16px;
		transform: none;
	}

	.service-step__body {
		grid-column: 2;
		grid-row: 1;
		min-height: 0;
		margin-top: 0;
		padding: 0;
		text-align: left;
	}

}

.contact-push {
	position: relative;
	width: 100%;
	padding: clamp(78px, 9vw, 124px) 0;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 107, 20, 0.1) 0 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 107, 20, 0.1) 0 1px, transparent 1px),
		var(--color-cream);
	background-size: 78px 78px;
	color: var(--color-black);
}

.contact-push::before,
.contact-push::after {
	position: absolute;
	width: clamp(90px, 12vw, 160px);
	height: clamp(90px, 12vw, 160px);
	border: 3px solid rgba(255, 107, 20, 0.26);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.contact-push::before {
	top: clamp(28px, 5vw, 66px);
	left: max(16px, calc((100vw - var(--max-width)) / 2));
	border-right-color: transparent;
	transform: rotate(-18deg);
}

.contact-push::after {
	right: max(16px, calc((100vw - var(--max-width)) / 2));
	bottom: clamp(28px, 5vw, 66px);
	border-left-color: transparent;
	transform: rotate(22deg);
}

.contact-push__icons {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.contact-push__icon {
	position: absolute;
	width: clamp(54px, 6vw, 86px);
	height: auto;
	fill: none;
	stroke: var(--color-violet);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3;
	opacity: 0.9;
	filter: drop-shadow(0 10px 16px rgba(107, 63, 232, 0.08));
	animation: contactIconFloat 6s ease-in-out infinite;
}

.contact-push__icon--ad {
	top: clamp(42px, 7vw, 96px);
	left: max(24px, calc((100vw - 1040px) / 2 + 18px));
	transform: rotate(-11deg);
}

.contact-push__icon--cursor {
	top: clamp(82px, 10vw, 138px);
	right: max(28px, calc((100vw - 1040px) / 2 + 42px));
	width: clamp(42px, 5vw, 72px);
	stroke: var(--color-orange);
	transform: rotate(13deg);
	animation-delay: -1.4s;
}

.contact-push__icon--chart {
	bottom: clamp(46px, 6vw, 82px);
	left: max(34px, calc((100vw - 1040px) / 2 + 110px));
	width: clamp(48px, 5.4vw, 76px);
	stroke: var(--color-orange);
	transform: rotate(7deg);
	animation-delay: -2.6s;
}

.contact-push__icon--megaphone {
	right: max(28px, calc((100vw - 1040px) / 2 + 92px));
	bottom: clamp(50px, 7vw, 96px);
	transform: rotate(-9deg);
	animation-delay: -3.8s;
}

.contact-push__inner {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	width: min(calc(100% - 32px), 1040px);
	margin: 0 auto;
	text-align: center;
}

.contact-push__kicker {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	margin-bottom: clamp(16px, 2vw, 22px);
	padding: 0 14px;
	background: var(--color-lime);
	border-radius: 999px;
	color: var(--color-black);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-push__title {
	max-width: 980px;
	margin: 0;
	color: var(--color-black);
	font-size: clamp(42px, 7.2vw, 96px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 0.96;
	text-wrap: balance;
}

.contact-push__title::after {
	display: block;
	width: min(620px, 74vw);
	height: 14px;
	margin: clamp(10px, 1.3vw, 16px) auto 0;
	background: url("data:image/svg+xml,%3Csvg viewBox='0 0 620 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11C88 3 168 15 248 10C365 3 479 2 612 8' fill='none' stroke='%23FF6B14' stroke-width='10' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
	content: "";
}

.contact-push__copy {
	max-width: 760px;
	margin: clamp(24px, 3vw, 34px) auto 0;
	color: rgba(32, 9, 0, 0.78);
	font-size: clamp(18px, 2.2vw, 28px);
	font-weight: 600;
	line-height: 1.24;
	text-wrap: balance;
}

.contact-push__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px 22px;
	margin-top: clamp(30px, 4vw, 46px);
}

.btn--contact-push {
	min-height: 58px;
	padding: 0 28px;
	background: var(--color-black);
	color: var(--color-lime);
	font-size: clamp(13px, 1.4vw, 16px);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	box-shadow: 0 18px 36px rgba(32, 9, 0, 0.18);
}

.btn--contact-push span {
	margin-left: 12px;
	font-size: 24px;
	line-height: 1;
}

.contact-push__note {
	max-width: 290px;
	color: rgba(32, 9, 0, 0.62);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
}

.contact-push__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: clamp(30px, 4vw, 44px);
}

.contact-push__tags span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(32, 9, 0, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
	color: rgba(32, 9, 0, 0.72);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 720px) {
	.contact-push {
		padding: 70px 0;
		background-size: 54px 54px;
	}

	.contact-push::before,
	.contact-push::after {
		width: 78px;
		height: 78px;
	}

	.contact-push__title {
		font-size: clamp(40px, 13vw, 64px);
	}

	.contact-push__copy {
		font-size: 18px;
	}

	.contact-push__actions {
		display: grid;
		width: 100%;
		justify-items: center;
	}

	.btn--contact-push {
		width: min(100%, 360px);
		min-height: 56px;
		padding: 0 20px;
	}

	.contact-push__note {
		max-width: 320px;
		text-align: center;
	}

	.contact-push__icon {
		width: 48px;
		opacity: 0.52;
	}

	.contact-push__icon--ad {
		top: 24px;
		left: 18px;
	}

	.contact-push__icon--cursor {
		top: 34px;
		right: 18px;
		width: 38px;
	}

	.contact-push__icon--chart,
	.contact-push__icon--megaphone {
		display: none;
	}
}

.growth-system {
	position: relative;
	width: 100%;
	min-height: 74vh;
	max-width: none;
	padding: clamp(70px, 8vw, 104px) max(16px, calc((100vw - var(--max-width)) / 2));
	overflow: hidden;
	background-color: #FFF9ED;
	background-image: radial-gradient(rgba(32, 9, 0, 0.08) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	background-position: center;
}

.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(32, 9, 0, 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: 56vh;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

.about-intro .eyebrow,
.about-intro__lead,
.about-intro__copy p:not(.about-intro__lead) {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 800ms ease, transform 800ms ease;
}

.about-intro.is-visible .eyebrow,
.about-intro.is-visible .about-intro__lead,
.about-intro.is-visible .about-intro__copy p:not(.about-intro__lead) {
	opacity: 1;
	transform: translateY(0);
}

.about-intro.is-visible .about-intro__lead {
	transition-delay: 120ms;
}

.about-intro.is-visible .about-intro__copy p:not(.about-intro__lead) {
	transition-delay: 260ms;
}

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

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

.about-intro__copy p {
	margin: 0;
	color: rgba(32, 9, 0, 0.82);
	font-size: clamp(17px, 1.8vw, 23px);
	line-height: 1.24;
}

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

.about-intro__lead {
	--fill: 0%;
	background: none;
	color: transparent !important;
	font-size: clamp(28px, 4.8vw, 64px) !important;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 0.96 !important;
	text-wrap: balance;
	transition: background 80ms linear;
}

.scroll-fill__part {
	--part-fill: 0%;
	display: inline;
	background:
		linear-gradient(90deg, var(--color-black) 0 var(--part-fill), rgba(32, 9, 0, 0.18) var(--part-fill) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	transition: background 80ms linear;
}

.scroll-fill__part--brand {
	box-shadow: inset 0 -0.22em rgba(229, 246, 74, 0.82);
}

.about-intro strong {
	color: var(--color-black);
	font-weight: 600;
	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(32, 9, 0, 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(30px, 5.4vw, 66px);
	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(13px, 1.45vw, 17px);
	font-weight: 600;
}

.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(32, 9, 0, 0), rgba(32, 9, 0, 0.18), rgba(32, 9, 0, 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(32, 9, 0, 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(32, 9, 0, 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(32, 9, 0, 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: 600;
	text-align: center;
	text-transform: uppercase;
}

.system-donut__core strong {
	display: block;
	font-size: clamp(27px, 3.6vw, 43px);
	line-height: 1;
}

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

.system-card:hover {
	box-shadow: 0 24px 54px rgba(32, 9, 0, 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: 600;
}

.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: 600;
}

.system-card h3 {
	margin-bottom: 10px;
	font-size: clamp(20px, 2.2vw, 29px);
}

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

.service-card p {
	margin: 0;
	color: rgba(32, 9, 0, 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%;
	max-width: none;
	padding-right: max(16px, calc((100vw - var(--max-width)) / 2));
	padding-left: max(16px, calc((100vw - var(--max-width)) / 2));
	background: transparent;
	color: var(--color-black);
}

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

.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: 22px;
}

.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(25px, 3.6vw, 41px);
	font-weight: 600;
	line-height: 1;
}

.impact-cell span {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	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--separator::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	top: 42%;
	z-index: -1;
	background-image: radial-gradient(rgba(32, 9, 0, 0.08) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	background-position: center;
	content: "";
	pointer-events: none;
}

.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: 0;
}

.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;
	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%;
	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: 600;
	text-transform: uppercase;
}

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

.localization__copy p:not(.eyebrow) {
	max-width: 420px;
	color: rgba(32, 9, 0, 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: 600;
}

.faq-cta {
	display: grid;
	place-items: center;
}

.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(25px, 3.6vw, 41px);
	font-weight: 600;
	line-height: 1.05;
}

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

.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: 600;
	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(-25%);
	}
}

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

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

@keyframes timelineFlow {
	from {
		transform: translateX(-100%) scaleX(0.18);
	}
	50% {
		transform: translateX(0) scaleX(0.38);
	}
	to {
		transform: translateX(100%) scaleX(0.18);
	}
}

@keyframes timelineFlowVertical {
	from {
		transform: translateY(-100%) scaleY(0.18);
	}
	50% {
		transform: translateY(0) scaleY(0.38);
	}
	to {
		transform: translateY(100%) scaleY(0.18);
	}
}

@keyframes pillarImageFloat {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1) rotate(-1deg);
	}
	50% {
		transform: translate(-50%, calc(-50% - 14px)) scale(1.035) rotate(1deg);
	}
}

@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%;
	}
}

@keyframes contactIconFloat {
	0%,
	100% {
		translate: 0 0;
	}
	50% {
		translate: 0 -10px;
	}
}

@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(32, 9, 0, 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;
	}

	.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: 13px;
	}

	.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));
		padding: 64px 0;
		contain-intrinsic-size: 620px;
	}

	h2 {
		font-size: clamp(23px, 7.2vw, 33px);
	}

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

	.hero__title {
		font-size: clamp(43px, 16vw, 77px);
	}

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

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

	.about-intro__lead {
		font-size: clamp(30px, 10vw, 52px) !important;
	}

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

	.growth-system {
		min-height: 0;
		padding-top: 74px;
		padding-bottom: 74px;
	}

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

	.logo-strip {
		padding: 34px 0;
	}

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

	.logo-strip__item {
		flex-basis: 108px;
		height: 48px;
	}

	.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;
	}
}
