/* ============================================================
   TRINOVIK LABS
   Homepage Concept
   ============================================================ */


/* ============================================================
   RESET
   ============================================================ */

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


html {
	scroll-behavior: smooth;
}


body {
	margin: 0;

	background:
		#08080a;

	color:
		#f7f5ff;

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	-webkit-font-smoothing:
		antialiased;

	text-rendering:
		optimizeLegibility;
}


body.menu-open {
	overflow: hidden;
}


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


button {
	color: inherit;
}


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


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


::selection {
	background: #b59cff;
	color: #08080a;
}



/* ============================================================
   VARIABLES
   ============================================================ */

:root {

	--bg:
		#08080a;

	--surface:
		#101014;

	--text:
		#f6f3ff;

	--muted:
		rgba(246,243,255,.58);

	--line:
		rgba(255,255,255,.13);

	--line-strong:
		rgba(255,255,255,.24);

	--accent:
		#b69cff;

	--accent-bright:
		#d7caff;

	--green:
		#baffc9;

	--container:
		1440px;

	--page-padding:
		clamp(22px, 4vw, 68px);
}



/* ============================================================
   SITE
   ============================================================ */

.site {
	position: relative;
	overflow: clip;
}



/* ============================================================
   HEADER
   ============================================================ */

.site-header {

	position:
		fixed;

	z-index:
		100;

	top:
		0;

	left:
		0;

	width:
		100%;

	padding:
		24px
		var(--page-padding);

	transition:
		background .35s ease,
		padding .35s ease,
		border-color .35s ease;

	border-bottom:
		1px solid
		transparent;

}


.site-header.is-scrolled {

	padding-top:
		17px;

	padding-bottom:
		17px;

	background:
		rgba(8,8,10,.82);

	backdrop-filter:
		blur(18px);

	border-color:
		var(--line);

}


.site-header__inner {

	max-width:
		var(--container);

	margin:
		0 auto;

	display:
		grid;

	grid-template-columns:
		1fr auto 1fr;

	align-items:
		center;

	gap:
		30px;

}



/* Logo */

.site-logo {

	display:
		inline-flex;

	align-items:
		center;

	gap:
		12px;

	width:
		fit-content;

}


.site-logo__mark {

	width:
		34px;

	height:
		34px;

	display:
		grid;

	place-items:
		center;

	border:
		1px solid
		rgba(255,255,255,.5);

	border-radius:
		50%;

	font-size:
		13px;

	font-weight:
		700;

}


.site-logo__text {

	display:
		flex;

	flex-direction:
		column;

	font-size:
		10px;

	line-height:
		1.05;

	letter-spacing:
		.16em;

	font-weight:
		700;

}



/* Navigation */

.site-nav {

	display:
		flex;

	align-items:
		center;

	gap:
		clamp(22px, 3vw, 48px);

}


.site-nav a {

	position:
		relative;

	font-size:
		13px;

	color:
		rgba(255,255,255,.72);

	transition:
		color .25s ease;

}


.site-nav a::after {

	content:
		"";

	position:
		absolute;

	left:
		0;

	bottom:
		-8px;

	width:
		100%;

	height:
		1px;

	background:
		var(--accent);

	transform:
		scaleX(0);

	transform-origin:
		right;

	transition:
		transform .3s ease;

}


.site-nav a:hover {
	color: #fff;
}


.site-nav a:hover::after {

	transform:
		scaleX(1);

	transform-origin:
		left;

}



/* CTA */

.site-header__actions {

	display:
		flex;

	justify-content:
		flex-end;

	align-items:
		center;

	gap:
		16px;

}


.header-cta {

	display:
		inline-flex;

	align-items:
		center;

	gap:
		18px;

	padding:
		12px 17px;

	border:
		1px solid
		var(--line-strong);

	border-radius:
		999px;

	font-size:
		12px;

	transition:
		background .3s ease,
		color .3s ease,
		border-color .3s ease;

}


.header-cta:hover {

	background:
		var(--text);

	color:
		var(--bg);

	border-color:
		var(--text);

}


.header-cta__arrow {

	font-size:
		15px;

}



/* Mobile button */

.menu-toggle {

	display:
		none;

	width:
		44px;

	height:
		44px;

	background:
		transparent;

	border:
		1px solid
		var(--line);

	border-radius:
		50%;

	padding:
		0;

	align-items:
		center;

	justify-content:
		center;

	flex-direction:
		column;

	gap:
		5px;

	cursor:
		pointer;

}


.menu-toggle span {

	width:
		16px;

	height:
		1px;

	background:
		currentColor;

}



/* ============================================================
   HERO
   ============================================================ */

.hero {

	position:
		relative;

	min-height:
		100svh;

	overflow:
		hidden;

	background:

		radial-gradient(
			circle at 70% 45%,
			rgba(105,70,195,.13),
			transparent 34%
		),

		linear-gradient(
			180deg,
			#09090c 0%,
			#08080a 100%
		);

}


.hero::after {

	content:
		"";

	position:
		absolute;

	inset:
		0;

	pointer-events:
		none;

	background-image:

		linear-gradient(
			rgba(255,255,255,.025) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(255,255,255,.025) 1px,
			transparent 1px
		);

	background-size:
		78px 78px;

	mask-image:
		linear-gradient(
			to bottom,
			rgba(0,0,0,.7),
			transparent 94%
		);

}


.hero__canvas {

	position:
		absolute;

	inset:
		0;

	width:
		100%;

	height:
		100%;

	z-index:
		1;

	pointer-events:
		none;

}


.hero__glow {

	position:
		absolute;

	border-radius:
		50%;

	filter:
		blur(100px);

	pointer-events:
		none;

	opacity:
		.3;

}


.hero__glow--one {

	width:
		430px;

	height:
		430px;

	right:
		14%;

	top:
		23%;

	background:
		#6040ba;

}


.hero__glow--two {

	width:
		260px;

	height:
		260px;

	right:
		31%;

	top:
		48%;

	background:
		#b69cff;

	opacity:
		.11;

}


.hero__inner {

	position:
		relative;

	z-index:
		3;

	min-height:
		100svh;

	max-width:
		var(--container);

	margin:
		0 auto;

	padding:

		clamp(130px, 15vh, 180px)

		var(--page-padding)

		105px;

	display:
		grid;

	grid-template-columns:
		minmax(0, 1fr)
		minmax(440px, .88fr);

	align-items:
		center;

	gap:
		clamp(40px, 5vw, 100px);

}
/* ============================================================
   HERO COPY
   ============================================================ */

.hero__content {

	position:
		relative;

	z-index:
		4;

}


.hero__eyebrow {

	display:
		flex;

	align-items:
		center;

	gap:
		12px;

	margin-bottom:
		clamp(28px, 4vh, 55px);

	font-size:
		10px;

	text-transform:
		uppercase;

	letter-spacing:
		.18em;

	color:
		var(--muted);

}


.hero__eyebrow-dot {

	width:
		6px;

	height:
		6px;

	border-radius:
		50%;

	background:
		var(--green);

	box-shadow:
		0 0 20px
		rgba(186,255,201,.7);

}


.hero__title {

	margin:
		0;

	font-size:
		clamp(
			5.2rem,
			10.7vw,
			10.8rem
		);

	line-height:
		.76;

	letter-spacing:
		-.075em;

	font-weight:
		500;

	text-transform:
		uppercase;

}


.hero__title-line {

	display:
		block;

}


.hero__title-line--accent {

	color:
		var(--accent-bright);

	font-style:
		italic;

	font-weight:
		400;

}


.hero__bottom {

	margin-top:
		clamp(40px, 6vh, 78px);

	display:
		grid;

	grid-template-columns:
		minmax(250px, 430px);

	gap:
		30px;

}


.hero__description {

	margin:
		0;

	max-width:
		420px;

	font-size:
		clamp(15px, 1.3vw, 19px);

	line-height:
		1.55;

	color:
		rgba(255,255,255,.66);

}


.hero__actions {

	display:
		flex;

	align-items:
		center;

	gap:
		24px;

	flex-wrap:
		wrap;

}



/* Buttons */

.button {

	display:
		inline-flex;

	align-items:
		center;

	justify-content:
		space-between;

	gap:
		40px;

	min-width:
		215px;

	padding:
		15px
		18px;

	border-radius:
		999px;

	font-size:
		12px;

	transition:
		transform .3s ease,
		background .3s ease;

}


.button--primary {

	background:
		var(--text);

	color:
		var(--bg);

}


.button--primary:hover {

	transform:
		translateY(-3px);

	background:
		var(--accent-bright);

}


.button__arrow {

	font-size:
		17px;

}


.text-link {

	display:
		inline-flex;

	align-items:
		center;

	gap:
		8px;

	padding:
		10px 0;

	font-size:
		12px;

	border-bottom:
		1px solid
		var(--line-strong);

}



/* ============================================================
   HERO SYSTEM
   ============================================================ */

.hero-system {

	position:
		relative;

	width:
		min(
			46vw,
			650px
		);

	aspect-ratio:
		1;

	justify-self:
		end;

}


.hero-system::before {

	content:
		"";

	position:
		absolute;

	inset:
		15%;

	border-radius:
		50%;

	background:
		radial-gradient(
			circle,
			rgba(182,156,255,.12),
			transparent 67%
		);

	filter:
		blur(20px);

}


.hero-system__orbit {

	position:
		absolute;

	top:
		50%;

	left:
		50%;

	border:
		1px solid
		rgba(255,255,255,.12);

	border-radius:
		50%;

	transform:
		translate(-50%, -50%);

}


.hero-system__orbit--outer {

	width:
		83%;

	height:
		83%;

}


.hero-system__orbit--inner {

	width:
		53%;

	height:
		53%;

	border-style:
		dashed;

	opacity:
		.65;

}



/* ============================================================
   HERO SIGNALS
   ============================================================ */

.hero-signal {

	position:
		absolute;

	z-index:
		6;

	display:
		flex;

	align-items:
		center;

	gap:
		9px;

	padding:
		8px 12px;

	background:
		rgba(12,12,16,.6);

	border:
		1px solid
		var(--line);

	border-radius:
		999px;

	backdrop-filter:
		blur(12px);

	cursor:
		pointer;

	transition:
		border-color .3s ease,
		background .3s ease,
		transform .3s ease;

}


.hero-signal:hover,
.hero-signal.is-active {

	border-color:
		rgba(215,202,255,.7);

	background:
		rgba(182,156,255,.12);

	transform:
		scale(1.05);

}


.hero-signal__number {

	font-size:
		8px;

	letter-spacing:
		.1em;

	color:
		var(--muted);

}


.hero-signal__name {

	font-size:
		10px;

	text-transform:
		uppercase;

	letter-spacing:
		.12em;

}


.hero-signal--strategy {

	left:
		0;

	top:
		22%;

}


.hero-signal--creative {

	right:
		-3%;

	top:
		25%;

}


.hero-signal--technology {

	left:
		-1%;

	bottom:
		19%;

}


.hero-signal--ai {

	right:
		5%;

	bottom:
		14%;

}



/* ============================================================
   CENTRAL CORE
   ============================================================ */

.hero-core {

	position:
		absolute;

	z-index:
		4;

	top:
		50%;

	left:
		50%;

	width:
		47%;

	aspect-ratio:
		1;

	transform:
		translate(-50%, -50%);

}


.hero-core__halo {

	position:
		absolute;

	inset:
		-22%;

	border-radius:
		50%;

	background:
		radial-gradient(
			circle,
			rgba(171,145,255,.18),
			rgba(92,62,170,.05) 45%,
			transparent 68%
		);

	filter:
		blur(18px);

}


.hero-core__sphere {

	position:
		absolute;

	inset:
		10%;

	overflow:
		hidden;

	border-radius:
		50%;

	background:

		radial-gradient(
			circle at 36% 27%,
			rgba(255,255,255,.5),
			transparent 13%
		),

		radial-gradient(
			circle at 65% 67%,
			#8d70d7,
			transparent 37%
		),

		linear-gradient(
			145deg,
			#cabaff,
			#3c296f 46%,
			#101019
		);

	box-shadow:

		inset
		-30px -35px 70px
		rgba(0,0,0,.6),

		inset
		25px 20px 50px
		rgba(255,255,255,.13),

		0 0 100px
		rgba(139,104,220,.17);

	animation:
		core-float
		7s
		ease-in-out
		infinite;

}


.hero-core__surface {

	position:
		absolute;

	border:
		1px solid
		rgba(255,255,255,.2);

	border-radius:
		50%;

}


.hero-core__surface--one {

	inset:
		17% -25%;

	transform:
		rotate(34deg);

}


.hero-core__surface--two {

	inset:
		-20% 19%;

	transform:
		rotate(-28deg);

}


.hero-core__surface--three {

	width:
		80%;

	height:
		20%;

	top:
		43%;

	left:
		9%;

	transform:
		rotate(-17deg);

}


.hero-core__label {

	position:
		absolute;

	left:
		50%;

	bottom:
		-14px;

	transform:
		translateX(-50%);

	font-size:
		8px;

	letter-spacing:
		.2em;

	color:
		var(--muted);

	white-space:
		nowrap;

}


@keyframes core-float {

	0%,
	100% {
		transform:
			translateY(0)
			rotate(0deg);
	}

	50% {
		transform:
			translateY(-12px)
			rotate(3deg);
	}

}



/* ============================================================
   COORDINATES
   ============================================================ */

.hero-coordinate {

	position:
		absolute;

	font-size:
		8px;

	letter-spacing:
		.12em;

	color:
		rgba(255,255,255,.32);

}


.hero-coordinate--one {

	top:
		5%;

	left:
		45%;

}


.hero-coordinate--two {

	right:
		1%;

	top:
		50%;

	transform:
		rotate(90deg);

}



/* ============================================================
   HERO META
   ============================================================ */

.hero__meta {

	position:
		absolute;

	z-index:
		5;

	left:
		50%;

	bottom:
		28px;

	transform:
		translateX(-50%);

	width:
		min(
			calc(
				100% - 2 * var(--page-padding)
			),
			var(--container)
		);

	display:
		flex;

	align-items:
		center;

	gap:
		10px;

	font-size:
		8px;

	text-transform:
		uppercase;

	letter-spacing:
		.17em;

	color:
		rgba(255,255,255,.4);

}


.hero__meta-line {

	width:
		36px;

	height:
		1px;

	background:
		var(--line-strong);

}


.hero__scroll {

	margin-left:
		auto;

	display:
		flex;

	align-items:
		center;

	gap:
		12px;

}


.hero__scroll-arrow {

	font-size:
		13px;

	animation:
		scroll-arrow
		1.8s
		ease-in-out
		infinite;

}


@keyframes scroll-arrow {

	0%,
	100% {
		transform:
			translateY(-3px);
	}

	50% {
		transform:
			translateY(4px);
	}

}



/* ============================================================
   SELECTED WORK
   ============================================================ */

.work {

	position:
		relative;

	background:
		#efede7;

	color:
		#121214;

	padding:

		clamp(100px, 13vw, 190px)

		var(--page-padding)

		clamp(120px, 15vw, 220px);

}


.work__inner {

	max-width:
		var(--container);

	margin:
		0 auto;

}



/* ============================================================
   WORK INTRO
   ============================================================ */

.work__intro {

	display:
		grid;

	grid-template-columns:
		minmax(170px, .38fr)
		minmax(0, 1.62fr);

	gap:
		clamp(30px, 6vw, 100px);

	padding-bottom:
		clamp(100px, 12vw, 170px);

}


.work__intro-label {

	display:
		flex;

	align-items:
		flex-start;

	gap:
		16px;

	padding-top:
		14px;

}


.section-index {

	font-size:
		10px;

	line-height:
		1;

	letter-spacing:
		.14em;

	opacity:
		.45;

}


.section-kicker {

	font-size:
		10px;

	line-height:
		1;

	text-transform:
		uppercase;

	letter-spacing:
		.17em;

	font-weight:
		700;

}


.work__intro-copy h2 {

	max-width:
		1000px;

	margin:
		0;

	font-size:
		clamp(
			4rem,
			8.2vw,
			9rem
		);

	line-height:
		.86;

	letter-spacing:
		-.072em;

	font-weight:
		500;

}


.work__intro-copy h2 span {

	display:
		block;

	font-style:
		italic;

	font-weight:
		400;

	color:
		#7253c7;

}


.work__intro-copy p {

	max-width:
		510px;

	margin:

		clamp(35px, 5vw, 65px)

		0 0 auto;

	font-size:
		clamp(15px, 1.3vw, 18px);

	line-height:
		1.6;

	color:
		rgba(18,18,20,.6);

}



/* ============================================================
   PROJECT
   ============================================================ */

.work-project {

	position:
		relative;

	display:
		grid;

	grid-template-columns:
		minmax(210px, .42fr)
		minmax(0, 1.58fr);

	column-gap:
		clamp(35px, 7vw, 115px);

	padding:

		clamp(70px, 9vw, 125px)

		0;

	border-top:
		1px solid
		rgba(0,0,0,.15);

}


/*
 * Give alternate projects
 * slightly different composition.
 */

.work-project:nth-of-type(even) {

	grid-template-columns:
		minmax(0, 1.58fr)
		minmax(210px, .42fr);

}


.work-project:nth-of-type(even)
.work-project__info {

	grid-column:
		2;

}


.work-project:nth-of-type(even)
.work-project__visual {

	grid-column:
		1;

	grid-row:
		1;

}



/* ============================================================
   PROJECT INFO
   ============================================================ */

.work-project__info {

	position:
		relative;

	display:
		flex;

	flex-direction:
		column;

	min-height:
		100%;

	padding:
		6px 0;

}


.work-project__number {

	margin-bottom:
		clamp(30px, 5vw, 70px);

	font-size:
		10px;

	letter-spacing:
		.16em;

	opacity:
		.45;

}


.work-project__title {

	margin:
		0;

	max-width:
		350px;

	font-size:
		clamp(
			2.5rem,
			4.3vw,
			5rem
		);

	line-height:
		.91;

	letter-spacing:
		-.055em;

	font-weight:
		500;

}


.work-project__meta {

	margin-top:
		auto;

	padding-top:
		55px;

	display:
		flex;

	flex-direction:
		column;

	gap:
		5px;

	font-size:
		9px;

	line-height:
		1.4;

	text-transform:
		uppercase;

	letter-spacing:
		.12em;

	color:
		rgba(18,18,20,.5);

}



/* ============================================================
   PROJECT VISUAL
   ============================================================ */

.work-project__visual {

	--mouse-x:
		50%;

	--mouse-y:
		50%;

	position:
		relative;

	aspect-ratio:
		16 / 10;

	overflow:
		hidden;

	background:
		#171719;

	transform:
		perspective(1200px)
		rotateX(0deg)
		rotateY(0deg);

	transform-style:
		preserve-3d;

	transition:
		transform .5s
		cubic-bezier(.2,.8,.2,1);

}


.work-project__visual img {

	position:
		absolute;

	inset:
		0;

	width:
		100%;

	height:
		100%;

	object-fit:
		cover;

	transition:
		transform 1.1s
		cubic-bezier(.2,.8,.2,1);

}


.work-project:hover
.work-project__visual img {

	transform:
		scale(1.035);

}



/*
 * Interface / grid overlay
 */

.work-project__visual::before {

	content:
		"";

	position:
		absolute;

	z-index:
		3;

	inset:
		0;

	pointer-events:
		none;

	background:

		linear-gradient(
			rgba(255,255,255,.055) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(255,255,255,.055) 1px,
			transparent 1px
		);

	background-size:
		80px 80px;

	opacity:
		.45;

	mix-blend-mode:
		overlay;

}



/*
 * Pointer glow
 */

.work-project__visual::after {

	content:
		"";

	position:
		absolute;

	z-index:
		4;

	inset:
		0;

	pointer-events:
		none;

	background:

		radial-gradient(
			circle
			at
			var(--mouse-x)
			var(--mouse-y),

			rgba(255,255,255,.23),

			transparent 24%
		);

	opacity:
		0;

	transition:
		opacity .4s ease;

}


.work-project__visual:hover::after {

	opacity:
		1;

}



/* ============================================================
   FALLBACK PROJECT ART
   ============================================================ */

.work-project__placeholder {

	position:
		absolute;

	inset:
		0;

	overflow:
		hidden;

	display:
		flex;

	align-items:
		flex-end;

	padding:
		clamp(24px, 4vw, 55px);

	background:

		radial-gradient(
			circle at 73% 30%,
			rgba(255,255,255,.25),
			transparent 20%
		),

		linear-gradient(
			135deg,
			#27212f,
			#7150bd 55%,
			#171719
		);

	color:
		#fff;

}



/*
 * Individual atmosphere.
 */

.work-project:nth-of-type(3)
.work-project__placeholder {

	background:

		radial-gradient(
			circle at 68% 32%,
			rgba(255,255,255,.25),
			transparent 20%
		),

		linear-gradient(
			135deg,
			#3c241b,
			#d86b39,
			#34171b
		);

}


.work-project:nth-of-type(4)
.work-project__placeholder {

	background:

		radial-gradient(
			circle at 68% 32%,
			rgba(255,255,255,.22),
			transparent 20%
		),

		linear-gradient(
			135deg,
			#252027,
			#d7a33b,
			#21181e
		);

}


.work-project:nth-of-type(5)
.work-project__placeholder {

	background:

		radial-gradient(
			circle at 70% 30%,
			rgba(255,255,255,.2),
			transparent 20%
		),

		linear-gradient(
			135deg,
			#142327,
			#277c83,
			#10181c
		);

}


.work-project:nth-of-type(6)
.work-project__placeholder {

	background:

		radial-gradient(
			circle at 70% 30%,
			rgba(255,255,255,.2),
			transparent 20%
		),

		linear-gradient(
			135deg,
			#1e2230,
			#536ac3,
			#13151d
		);

}



/*
 * Big project number.
 */

.work-project__placeholder-index {

	position:
		absolute;

	right:
		2%;

	top:
		-8%;

	font-size:
		clamp(
			13rem,
			25vw,
			30rem
		);

	line-height:
		1;

	letter-spacing:
		-.12em;

	font-weight:
		600;

	color:
		rgba(255,255,255,.08);

}



/*
 * Project title inside fallback.
 */

.work-project__placeholder-title {

	position:
		relative;

	z-index:
		2;

	max-width:
		550px;

	font-size:
		clamp(
			2rem,
			4.2vw,
			5rem
		);

	line-height:
		.92;

	letter-spacing:
		-.05em;

	font-weight:
		500;

}



/*
 * TRNVK label.
 */

.work-project__placeholder-mark {

	position:
		absolute;

	top:
		25px;

	right:
		28px;

	font-size:
		8px;

	letter-spacing:
		.22em;

	color:
		rgba(255,255,255,.55);

}



/* ============================================================
   PROJECT INTERFACE
   ============================================================ */

.work-project__interface {

	position:
		absolute;

	z-index:
		6;

	top:
		18px;

	left:
		20px;

	right:
		20px;

	display:
		flex;

	justify-content:
		space-between;

	font-size:
		7px;

	text-transform:
		uppercase;

	letter-spacing:
		.18em;

	color:
		rgba(255,255,255,.5);

	pointer-events:
		none;

}



/* ============================================================
   PROJECT FOOTER
   ============================================================ */

.work-project__footer {

	grid-column:
		1 / -1;

	display:
		flex;

	align-items:
		center;

	gap:
		15px;

	margin-top:
		clamp(35px, 5vw, 65px);

	font-size:
		8px;

	text-transform:
		uppercase;

	letter-spacing:
		.15em;

	color:
		rgba(18,18,20,.45);

}


.work-project__line {

	flex:
		1;

	height:
		1px;

	background:
		rgba(0,0,0,.12);

}



/* ============================================================
   REVEALS
   ============================================================ */

.reveal {
    opacity: 1;
    transform: none;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}



/* ============================================================
   SELECTED WORK TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.work__intro {

		grid-template-columns:
			1fr;

	}


	.work__intro-copy p {

		margin-left:
			0;

	}


	.work-project,
	.work-project:nth-of-type(even) {

		grid-template-columns:
			1fr;

		gap:
			40px;

	}


	.work-project:nth-of-type(even)
	.work-project__info {

		grid-column:
			auto;

	}


	.work-project:nth-of-type(even)
	.work-project__visual {

		grid-column:
			auto;

		grid-row:
			auto;

	}


	.work-project__info {

		display:
			grid;

		grid-template-columns:
			70px 1fr;

	}


	.work-project__number {

		margin:
			7px 0 0;

	}


	.work-project__meta {

		grid-column:
			2;

		margin-top:
			20px;

		padding-top:
			0;

	}


}



/* ============================================================
   SELECTED WORK MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.work {

		padding-top:
			90px;

		padding-bottom:
			110px;

	}


	.work__intro {

		padding-bottom:
			90px;

	}


	.work__intro-copy h2 {

		font-size:
			clamp(
				3.7rem,
				17vw,
				5.8rem
			);

	}


	.work-project {

		padding:
			60px 0;

		gap:
			30px;

	}


	.work-project__info {

		grid-template-columns:
			45px 1fr;

	}


	.work-project__title {

		font-size:
			clamp(
				2.4rem,
				12vw,
				4rem
			);

	}


	.work-project__visual {

		aspect-ratio:
			4 / 5;

	}


	.work-project__placeholder {

		padding:
			24px;

	}


	.work-project__placeholder-title {

		font-size:
			2.5rem;

	}


	.work-project__footer {

		margin-top:
			20px;

	}

}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

	.site-header__inner {

		grid-template-columns:
			1fr auto;

	}


	.site-nav {

		position:
			fixed;

		inset:
			0;

		z-index:
			-1;

		padding:
			120px
			var(--page-padding);

		background:
			rgba(8,8,10,.98);

		flex-direction:
			column;

		justify-content:
			center;

		align-items:
			flex-start;

		gap:
			24px;

		opacity:
			0;

		visibility:
			hidden;

		transform:
			translateY(-15px);

		transition:
			opacity .3s ease,
			visibility .3s ease,
			transform .3s ease;

	}


	.site-nav.is-open {

		z-index:
			90;

		opacity:
			1;

		visibility:
			visible;

		transform:
			translateY(0);

	}


	.site-nav a {

		font-size:
			clamp(2.6rem, 8vw, 6rem);

		line-height:
			.95;

		letter-spacing:
			-.05em;

	}


	.header-cta {
		display: none;
	}


	.menu-toggle {

		position:
			relative;

		z-index:
			101;

		display:
			flex;

	}


	.hero__inner {

		grid-template-columns:
			1fr;

		padding-top:
			145px;

		padding-bottom:
			145px;

	}


	.hero__content {

		max-width:
			760px;

	}


	.hero-system {

		position:
			absolute;

		right:
			-12vw;

		top:
			20%;

		width:
			58vw;

		min-width:
			500px;

		opacity:
			.63;

	}


	.hero__title {

		position:
			relative;

		z-index:
			8;

		max-width:
			850px;

	}


	.hero__bottom {

		position:
			relative;

		z-index:
			8;

	}

}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	:root {
		--page-padding: 20px;
	}


	.site-header {
		padding-top: 18px;
	}


	.site-logo__mark {

		width:
			31px;

		height:
			31px;

	}


	.hero {

		min-height:
			100svh;

	}


	.hero__inner {

		display:
			block;

		padding:

			130px
			var(--page-padding)
			115px;

	}


	.hero__eyebrow {

		max-width:
			250px;

		margin-bottom:
			40px;

		line-height:
			1.5;

	}


	.hero__title {

		font-size:
			clamp(
				4.7rem,
				23vw,
				7rem
			);

		line-height:
			.78;

	}


	.hero__bottom {

		margin-top:
			44px;

		max-width:
			360px;

	}


	.hero__description {

		font-size:
			15px;

	}


	.hero__actions {

		align-items:
			flex-start;

		flex-direction:
			column;

		gap:
			14px;

	}


	.button {

		width:
			100%;

	}


	.hero-system {

		position:
			relative;

		top:
			auto;

		right:
			auto;

		margin:

			70px
			auto
			20px;

		width:
			100%;

		min-width:
			0;

		max-width:
			430px;

		opacity:
			1;

	}


	.hero-signal {

		padding:
			7px 9px;

	}


	.hero-signal__number {
		display: none;
	}


	.hero-signal__name {

		font-size:
			8px;

	}


	.hero__meta {

		bottom:
			18px;

	}


	.hero__meta-line {
		width: 20px;
	}


	.hero__scroll span:first-child {
		display: none;
	}


	.hero-coordinate {
		display: none;
	}

}



/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (
	prefers-reduced-motion: reduce
) {

	*,
	*::before,
	*::after {

		scroll-behavior:
			auto !important;

		animation-duration:
			.01ms !important;

		animation-iteration-count:
			1 !important;

		transition-duration:
			.01ms !important;

	}

}
/* ============================================================
   03 — WHAT WE DO
   ============================================================ */

.what-we-do {
	position: relative;
	background: #09090b;
	color: #f4f1fa;
	padding:
		clamp(110px, 13vw, 190px)
		var(--page-padding)
		clamp(120px, 15vw, 220px);
	overflow: hidden;
}


.what-we-do::before {
	content: "";
	position: absolute;
	width: 900px;
	height: 900px;
	top: 18%;
	left: 60%;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(119, 83, 210, .16),
			transparent 65%
		);
	filter: blur(40px);
	pointer-events: none;
}


.what-we-do__inner {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin: 0 auto;
}



/* ============================================================
   INTRO
   ============================================================ */

.what-we-do__intro {
	display: grid;
	grid-template-columns:
		minmax(170px, .38fr)
		minmax(0, 1.62fr);
	gap: clamp(30px, 6vw, 100px);
	margin-bottom: clamp(90px, 11vw, 160px);
}


.what-we-do__label {
	display: flex;
	gap: 16px;
	padding-top: 15px;
}


.what-we-do .section-index {
	color: rgba(255,255,255,.35);
}


.what-we-do .section-kicker {
	color: rgba(255,255,255,.78);
}


.what-we-do__eyebrow {
	margin: 0 0 28px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: rgba(255,255,255,.42);
}


.what-we-do__headline h2 {
	margin: 0;
	font-size: clamp(5rem, 10vw, 10.5rem);
	line-height: .78;
	letter-spacing: -.075em;
	font-weight: 500;
	text-transform: uppercase;
}


.what-we-do__headline h2 span {
	color: #c9b7ff;
	font-style: italic;
	font-weight: 400;
}



/* ============================================================
   THREE PILLARS
   ============================================================ */

.pillar-system {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255,255,255,.15);
	border-bottom: 1px solid rgba(255,255,255,.15);
}


.pillar {
	position: relative;
	min-height: clamp(480px, 48vw, 660px);
	padding: clamp(25px, 3vw, 42px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	border-right: 1px solid rgba(255,255,255,.15);

	transition:
		background .55s cubic-bezier(.2,.8,.2,1),
		color .55s cubic-bezier(.2,.8,.2,1);
}


.pillar:last-child {
	border-right: 0;
}


.pillar::before {
	content: "";
	position: absolute;
	width: 330px;
	height: 330px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.55);
	border-radius: 50%;
	opacity: 0;
	filter: blur(10px);

	transition:
		transform .65s cubic-bezier(.2,.8,.2,1),
		opacity .45s ease;
}


.pillar:hover::before {
	transform: translate(-50%, -50%) scale(1.2);
	opacity: 1;
}


.pillar--strategy::before {
	background:
		radial-gradient(
			circle,
			rgba(184,255,198,.5),
			transparent 68%
		);
}


.pillar--creative::before {
	background:
		radial-gradient(
			circle,
			rgba(207,172,255,.55),
			transparent 68%
		);
}


.pillar--technology::before {
	background:
		radial-gradient(
			circle,
			rgba(121,180,255,.5),
			transparent 68%
		);
}


.pillar__top,
.pillar__center,
.pillar__bottom {
	position: relative;
	z-index: 2;
}


.pillar__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.pillar__number,
.pillar__status {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: rgba(255,255,255,.42);
}


.pillar__center {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
}


.pillar__center h3 {
	margin: 0;
	font-size: clamp(3rem, 4.8vw, 6rem);
	line-height: .86;
	letter-spacing: -.06em;
	font-weight: 500;
}


.pillar__symbol {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	font-size: 17px;

	transition:
		transform .55s cubic-bezier(.2,.8,.2,1),
		background .35s ease,
		color .35s ease;
}


.pillar:hover .pillar__symbol {
	transform: rotate(45deg) scale(1.12);
	background: #f5f3fa;
	color: #09090b;
}


.pillar__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 25px;
	border-top: 1px solid rgba(255,255,255,.13);
}


.pillar__bottom span {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .11em;
	color: rgba(255,255,255,.48);
}



/* ============================================================
   TOUCHPOINTS
   ============================================================ */

.touchpoints {
	margin-top: clamp(110px, 13vw, 190px);
}


.touchpoints__header {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.18);

	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: rgba(255,255,255,.42);
}


.touchpoints__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}


.touchpoint {
	position: relative;
	min-height: 145px;
	padding: 24px 20px 25px 0;
	border-bottom: 1px solid rgba(255,255,255,.12);

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	transition:
		padding-left .35s ease,
		background .35s ease;
}


.touchpoint:nth-child(3n + 2),
.touchpoint:nth-child(3n + 3) {
	padding-left: 25px;
	border-left: 1px solid rgba(255,255,255,.12);
}


.touchpoint:hover {
	padding-left: 22px;
	background: rgba(255,255,255,.035);
}


.touchpoint span {
	font-size: 8px;
	letter-spacing: .14em;
	color: rgba(255,255,255,.3);
}


.touchpoint strong {
	font-size: clamp(1.4rem, 2.2vw, 2.7rem);
	line-height: 1;
	letter-spacing: -.04em;
	font-weight: 400;
}



/* ============================================================
   BREAK THE MOULD
   ============================================================ */

.break-mould {
	position: relative;
	margin-top: clamp(130px, 16vw, 240px);
	padding:
		clamp(50px, 6vw, 90px)
		clamp(30px, 5vw, 80px);

	min-height: clamp(600px, 70vw, 850px);

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	overflow: hidden;

	background:
		linear-gradient(
			135deg,
			#c2adff,
			#9d7bf4 47%,
			#7251cb
		);

	color: #0a0810;
}


.break-mould::before {
	content: "";
	position: absolute;
	width: 65vw;
	height: 65vw;
	max-width: 880px;
	max-height: 880px;

	top: 44%;
	left: 71%;

	transform: translate(-50%, -50%);

	border: 1px solid rgba(10,8,16,.18);
	border-radius: 50%;
}


.break-mould::after {
	content: "";
	position: absolute;
	width: 43vw;
	height: 43vw;
	max-width: 580px;
	max-height: 580px;

	top: 44%;
	left: 71%;

	transform: translate(-50%, -50%);

	border:
		1px dashed
		rgba(10,8,16,.22);

	border-radius: 50%;
}


.break-mould__meta {
	position: relative;
	z-index: 2;

	display: flex;
	justify-content: space-between;

	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: .17em;
}


.break-mould h2 {
	position: relative;
	z-index: 2;

	margin: 60px 0;

	font-size:
		clamp(
			4.5rem,
			9vw,
			10.5rem
		);

	line-height: .8;
	letter-spacing: -.075em;
	font-weight: 500;
	text-transform: uppercase;
}


.break-mould h2 span {
	display: block;
}


.break-mould__accent {
	font-style: italic;
	font-weight: 400;
}


.break-mould__footer {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
}


.break-mould__footer p {
	margin: 0;
	max-width: 320px;

	font-size: clamp(17px, 1.8vw, 24px);
	line-height: 1.25;
}


.break-mould__orb {
	width: 80px;
	height: 80px;
	border-radius: 50%;

	background:
		radial-gradient(
			circle at 35% 30%,
			#fff,
			#d4c5ff 18%,
			#2c1f53 65%,
			#08080b
		);

	box-shadow:
		0 15px 50px
		rgba(26,15,60,.35);
}



/* ============================================================
   NEXT CHAPTER
   ============================================================ */

.next-chapter {
	min-height: 65vh;
	padding:
		100px
		var(--page-padding);

	background: #f0eee8;
	color: #121214;

	display: flex;
	flex-direction: column;
	justify-content: center;
}


.next-chapter > * {
	width: min(100%, var(--container));
	margin-left: auto;
	margin-right: auto;
}


.next-chapter > span {
	margin-bottom: 35px;
	font-size: 9px;
	letter-spacing: .16em;
	opacity: .45;
}


.next-chapter h2 {
	margin-top: 0;
	margin-bottom: 0;
	max-width: 1100px;

	font-size: clamp(4rem, 9vw, 9rem);
	line-height: .86;
	letter-spacing: -.07em;
	font-weight: 500;
}



/* ============================================================
   WHAT WE DO — TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.what-we-do__intro {
		grid-template-columns: 1fr;
	}

	.pillar-system {
		grid-template-columns: 1fr;
	}

	.pillar {
		min-height: 420px;
		border-right: 0;
		border-bottom:
			1px solid
			rgba(255,255,255,.15);
	}

	.pillar:last-child {
		border-bottom: 0;
	}

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

	.touchpoint:nth-child(n) {
		padding-left: 0;
		border-left: 0;
	}

	.touchpoint:nth-child(even) {
		padding-left: 20px;
		border-left:
			1px solid
			rgba(255,255,255,.12);
	}

}



/* ============================================================
   WHAT WE DO — MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.what-we-do {
		padding-top: 90px;
		padding-bottom: 100px;
	}


	.what-we-do__headline h2 {
		font-size:
			clamp(
				4rem,
				19vw,
				6.2rem
			);
	}


	.pillar {
		min-height: 370px;
		padding: 25px 20px;
	}


	.pillar__center h3 {
		font-size:
			clamp(
				3.6rem,
				17vw,
				5rem
			);
	}


	.pillar__bottom {
		flex-direction: column;
		gap: 8px;
	}


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


	.touchpoint:nth-child(n) {
		padding:
			20px 0;

		border-left: 0;
	}


	.touchpoint {
		min-height: 110px;
	}


	.break-mould {
		min-height: 620px;
		padding: 30px 24px;
	}


	.break-mould h2 {
		font-size:
			clamp(
				4rem,
				18vw,
				6rem
			);
	}


	.break-mould__meta {
		flex-direction: column;
		gap: 6px;
	}


	.break-mould__orb {
		width: 54px;
		height: 54px;
	}


	.next-chapter {
		min-height: 55vh;
	}

}
/* ============================================================
   04 — TRINOVIK SIGNAL
   ============================================================ */

.services-signal {

	--signal-accent:
		#c8b4ff;

	position:
		relative;

	min-height:
		100vh;

	overflow:
		hidden;

	padding:
		clamp(120px, 13vw, 190px)
		var(--page-padding)
		clamp(110px, 13vw, 180px);

	background:
		#070709;

	color:
		#f6f3fb;

}


.services-signal__ambient {

	position:
		absolute;

	z-index:
		0;

	width:
		1000px;

	height:
		1000px;

	top:
		34%;

	left:
		50%;

	transform:
		translate(-50%, -50%);

	border-radius:
		50%;

	background:
		radial-gradient(
			circle,
			color-mix(
				in srgb,
				var(--signal-accent) 21%,
				transparent
			),
			transparent 63%
		);

	filter:
		blur(45px);

	transition:
		background .7s ease;

	pointer-events:
		none;

}


.services-signal__inner {

	position:
		relative;

	z-index:
		2;

	max-width:
		var(--container);

	margin:
		0 auto;

}



/* ============================================================
   INTRO
   ============================================================ */

.services-signal__intro {

	display:
		grid;

	grid-template-columns:
		minmax(170px, .38fr)
		minmax(0, 1.62fr);

	gap:
		clamp(30px, 6vw, 100px);

	margin-bottom:
		clamp(100px, 12vw, 170px);

}


.services-signal__intro-meta {

	display:
		flex;

	align-items:
		flex-start;

	gap:
		16px;

	padding-top:
		13px;

}


.services-signal .section-index {

	color:
		rgba(255,255,255,.3);

}


.services-signal .section-kicker {

	color:
		rgba(255,255,255,.76);

}


.services-signal__eyebrow {

	margin:
		0 0 30px;

	font-size:
		10px;

	text-transform:
		uppercase;

	letter-spacing:
		.17em;

	color:
		rgba(255,255,255,.4);

}


.services-signal__intro-main h2 {

	margin:
		0;

	max-width:
		1100px;

	font-size:
		clamp(
			4.7rem,
			9.7vw,
			10.5rem
		);

	line-height:
		.8;

	letter-spacing:
		-.075em;

	text-transform:
		uppercase;

	font-weight:
		500;

}


.services-signal__intro-main h2 span {

	display:
		inline-block;

	color:
		var(--signal-accent);

	font-style:
		italic;

	font-weight:
		400;

	transition:
		color .6s ease;

}



/* ============================================================
   SIGNAL STAGE
   ============================================================ */

.signal-stage {

	position:
		relative;

	min-height:
		clamp(670px, 67vw, 900px);

	display:
		grid;

	grid-template-columns:
		1fr
		minmax(400px, 1.2fr)
		1fr;

	align-items:
		center;

	gap:
		clamp(25px, 4vw, 70px);

}



/* ============================================================
   SERVICE BUTTON GROUPS
   ============================================================ */

.signal-stage__services {

	position:
		relative;

	z-index:
		5;

	display:
		flex;

	flex-direction:
		column;

	gap:
		clamp(70px, 8vw, 120px);

}


.signal-stage__services--left {

	align-items:
		flex-end;

}


.signal-stage__services--right {

	align-items:
		flex-start;

}



/* ============================================================
   SERVICE BUTTON
   ============================================================ */

.signal-service {

	position:
		relative;

	width:
		100%;

	display:
		grid;

	grid-template-columns:
		auto 1fr auto;

	align-items:
		center;

	gap:
		16px;

	padding:
		0;

	border:
		0;

	background:
		transparent;

	color:
		rgba(255,255,255,.46);

	text-align:
		left;

	cursor:
		pointer;

	transition:
		color .4s ease,
		transform .45s
		cubic-bezier(.2,.8,.2,1);

}


.signal-stage__services--left
.signal-service {

	grid-template-columns:
		auto auto 1fr;

}


.signal-stage__services--right
.signal-service {

	grid-template-columns:
		1fr auto auto;

}


.signal-service:hover,
.signal-service.is-active {

	color:
		#fff;

}


.signal-stage__services--left
.signal-service:hover,
.signal-stage__services--left
.signal-service.is-active {

	transform:
		translateX(12px);

}


.signal-stage__services--right
.signal-service:hover,
.signal-stage__services--right
.signal-service.is-active {

	transform:
		translateX(-12px);

}


.signal-service__number {

	font-size:
		8px;

	letter-spacing:
		.15em;

	color:
		rgba(255,255,255,.28);

}


.signal-service__title {

	font-size:
		clamp(
			1.25rem,
			1.8vw,
			2.2rem
		);

	line-height:
		1;

	letter-spacing:
		-.035em;

	white-space:
		nowrap;

}


.signal-service__line {

	position:
		relative;

	height:
		1px;

	min-width:
		30px;

	background:
		rgba(255,255,255,.15);

	overflow:
		hidden;

}


.signal-service__line::after {

	content:
		"";

	position:
		absolute;

	inset:
		0;

	background:
		var(--signal-accent);

	transform:
		scaleX(0);

	transform-origin:
		center;

	transition:
		transform .5s
		cubic-bezier(.2,.8,.2,1);

}


.signal-service:hover
.signal-service__line::after,
.signal-service.is-active
.signal-service__line::after {

	transform:
		scaleX(1);

}



/* ============================================================
   CENTRAL CORE
   ============================================================ */

.signal-core {

	position:
		relative;

	width:
		min(39vw, 560px);

	aspect-ratio:
		1;

	margin:
		auto;

	display:
		grid;

	place-items:
		center;

}


.signal-core::before {

	content:
		"";

	position:
		absolute;

	inset:
		12%;

	border-radius:
		50%;

	background:
		radial-gradient(
			circle,
			color-mix(
				in srgb,
				var(--signal-accent) 28%,
				transparent
			),
			transparent 67%
		);

	filter:
		blur(25px);

	transition:
		background .65s ease;

}


.signal-core__orbit {

	position:
		absolute;

	top:
		50%;

	left:
		50%;

	border-radius:
		50%;

	border:
		1px solid
		rgba(255,255,255,.13);

	transform:
		translate(-50%, -50%);

	pointer-events:
		none;

}


.signal-core__orbit--one {

	width:
		100%;

	height:
		100%;

	animation:
		signal-spin
		26s linear infinite;

}


.signal-core__orbit--two {

	width:
		76%;

	height:
		76%;

	border-style:
		dashed;

	animation:
		signal-spin-reverse
		18s linear infinite;

}


.signal-core__orbit--three {

	width:
		50%;

	height:
		50%;

	border-color:
		color-mix(
			in srgb,
			var(--signal-accent) 45%,
			transparent
		);

	transition:
		border-color .6s ease;

}


.signal-core__orbit--one::before,
.signal-core__orbit--two::before {

	content:
		"";

	position:
		absolute;

	width:
		7px;

	height:
		7px;

	top:
		-4px;

	left:
		50%;

	border-radius:
		50%;

	background:
		var(--signal-accent);

	box-shadow:
		0 0 22px
		var(--signal-accent);

	transition:
		background .6s ease,
		box-shadow .6s ease;

}



/* ============================================================
   BEAMS
   ============================================================ */

.signal-core__beam {

	position:
		absolute;

	width:
		145%;

	height:
		1px;

	top:
		50%;

	left:
		50%;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255,255,255,.14),
			var(--signal-accent),
			rgba(255,255,255,.14),
			transparent
		);

	transform-origin:
		center;

	pointer-events:
		none;

	opacity:
		.55;

}


.signal-core__beam--one {

	transform:
		translate(-50%, -50%)
		rotate(34deg);

}


.signal-core__beam--two {

	transform:
		translate(-50%, -50%)
		rotate(-34deg);

}



/* ============================================================
   SIGNAL OBJECT
   ============================================================ */

.signal-core__object {

	position:
	relative;

	z-index:
	3;

	width:
	39%;

	aspect-ratio:
	1;

	border-radius:
	45% 55% 52% 48% /
	56% 45% 55% 44%;

	background:

		radial-gradient(
			circle at 30% 25%,
			rgba(255,255,255,.9),
			transparent 9%
		),

		radial-gradient(
			circle at 68% 67%,
			var(--signal-accent),
			transparent 43%
		),

		linear-gradient(
			145deg,
			#f2ecff,
			var(--signal-accent) 33%,
			#2d2350 68%,
			#09090b
		);

	box-shadow:
		inset -30px -35px 70px
		rgba(0,0,0,.48),

		inset 18px 17px 32px
		rgba(255,255,255,.24),

		0 0 90px
		color-mix(
			in srgb,
			var(--signal-accent) 30%,
			transparent
		);

	animation:
		signal-morph
		8s ease-in-out infinite;

	transition:
		background .65s ease,
		box-shadow .65s ease,
		transform .55s
		cubic-bezier(.2,.8,.2,1);

}


.signal-core__object-inner {

	position:
	absolute;

	inset:
	17%;

	border:
	1px solid
	rgba(255,255,255,.27);

	border-radius:
	50%;

	transform:
	rotate(34deg);

}


.services-signal.is-changing
.signal-core__object {

	transform:
	scale(.88)
	rotate(8deg);

}



/* ============================================================
   CORE IDENTITY
   ============================================================ */

.signal-core__identity {

	position:
	absolute;

	z-index:
	5;

	top:
	50%;

	left:
	50%;

	transform:
	translate(-50%, -50%);

	display:
	flex;

	flex-direction:
	column;

	align-items:
	center;

	pointer-events:
	none;

	mix-blend-mode:
	difference;

}


.signal-core__identity span {

	font-size:
	8px;

	letter-spacing:
	.25em;

}


.signal-core__identity strong {

	margin:
	4px 0;

	font-size:
	clamp(
		1.4rem,
		2vw,
		2.4rem
	);

	line-height:
	1;

	letter-spacing:
	-.03em;

	font-weight:
	500;

}


.signal-core__identity small {

	font-size:
	7px;

	letter-spacing:
	.18em;

	opacity:
	.65;

}



/* ============================================================
   COORDINATES
   ============================================================ */

.signal-core__coordinate {

	position:
	absolute;

	font-size:
	7px;

	letter-spacing:
	.15em;

	color:
	rgba(255,255,255,.27);

}


.signal-core__coordinate--one {

	top:
	8%;

	left:
	17%;

}


.signal-core__coordinate--two {

	right:
	8%;

	bottom:
	21%;

	transform:
	rotate(90deg);

}



/* ============================================================
   DETAILS
   ============================================================ */

.signal-details {

	margin-top:
	clamp(85px, 10vw, 140px);

	border-top:
	1px solid
	rgba(255,255,255,.16);

	border-bottom:
	1px solid
	rgba(255,255,255,.16);

}


.signal-details__meta {

	padding:
	18px 0;

	display:
	flex;

	justify-content:
	space-between;

	font-size:
	8px;

	text-transform:
	uppercase;

	letter-spacing:
	.17em;

	color:
	rgba(255,255,255,.36);

	border-bottom:
	1px solid
	rgba(255,255,255,.1);

}


.signal-details__main {

	display:
	grid;

	grid-template-columns:
	1fr 1fr;

	gap:
	clamp(40px, 7vw, 120px);

	padding:
	clamp(50px, 7vw, 90px)
	0;

}


.signal-details__heading {

	display:
	grid;

	grid-template-columns:
	60px 1fr;

	align-items:
	start;

	gap:
	20px;

}


.signal-details__index {

	padding-top:
	12px;

	font-size:
	9px;

	letter-spacing:
	.16em;

	color:
	var(--signal-accent);

	transition:
	color .5s ease;

}


.signal-details__heading h3 {

	margin:
	0;

	font-size:
	clamp(
		3.5rem,
		6.5vw,
		7rem
	);

	line-height:
	.85;

	letter-spacing:
	-.065em;

	font-weight:
	500;

}


.signal-details__content {

	display:
	flex;

	flex-direction:
	column;

	justify-content:
	space-between;

	gap:
	50px;

}


.signal-details__content p {

	margin:
	0;

	max-width:
	540px;

	font-size:
	clamp(
		1.1rem,
		1.55vw,
		1.5rem
	);

	line-height:
	1.45;

	color:
	rgba(255,255,255,.6);

}


.signal-details__tags {

	display:
	flex;

	flex-wrap:
	wrap;

	gap:
	8px;

}


.signal-details__tags span {

	padding:
	10px 13px;

	border:
	1px solid
	rgba(255,255,255,.16);

	border-radius:
	999px;

	font-size:
	9px;

	text-transform:
	uppercase;

	letter-spacing:
	.1em;

	color:
	rgba(255,255,255,.6);

}



/* ============================================================
   SIGNAL FOOTER
   ============================================================ */

.services-signal__footer {

	margin-top:
	32px;

	display:
	flex;

	align-items:
	center;

	gap:
	14px;

	font-size:
	8px;

	text-transform:
	uppercase;

	letter-spacing:
	.15em;

	color:
	rgba(255,255,255,.3);

}


.services-signal__footer-line {

	flex:
	1;

	height:
	1px;

	background:
	rgba(255,255,255,.1);

}



/* ============================================================
   NEXT STORY PREVIEW
   ============================================================ */

.story-preview {

	min-height:
	75vh;

	padding:
	clamp(100px, 12vw, 170px)
	var(--page-padding);

	background:
	#d3ff6d;

	color:
	#10110d;

	display:
	flex;

	flex-direction:
	column;

	justify-content:
	space-between;

}


.story-preview__meta {

	width:
	min(100%, var(--container));

	margin:
	0 auto;

	display:
	flex;

	justify-content:
	space-between;

	font-size:
	9px;

	text-transform:
	uppercase;

	letter-spacing:
	.17em;

}


.story-preview h2 {

	width:
	min(100%, var(--container));

	margin:
	80px auto 0;

	font-size:
	clamp(
		4.8rem,
		10vw,
		11rem
	);

	line-height:
	.78;

	letter-spacing:
	-.08em;

	font-weight:
	500;

	text-transform:
	uppercase;

}


.story-preview h2 span {

	display:
	block;

	font-style:
	italic;

	font-weight:
	400;

}



/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes signal-spin {

	to {
		transform:
			translate(-50%, -50%)
			rotate(360deg);
	}

}


@keyframes signal-spin-reverse {

	to {
		transform:
			translate(-50%, -50%)
			rotate(-360deg);
	}

}


@keyframes signal-morph {

	0%,
	100% {

		border-radius:
			45% 55% 52% 48% /
			56% 45% 55% 44%;

		transform:
			translateY(0)
			rotate(0deg);

	}

	35% {

		border-radius:
			57% 43% 38% 62% /
			45% 60% 40% 55%;

		transform:
			translateY(-8px)
			rotate(4deg);

	}

	70% {

		border-radius:
			40% 60% 57% 43% /
			62% 42% 58% 38%;

		transform:
			translateY(5px)
			rotate(-3deg);

	}

}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

	.services-signal__intro {

		grid-template-columns:
			1fr;

	}


	.signal-stage {

		grid-template-columns:
			1fr 1fr;

		min-height:
			auto;

	}


	.signal-core {

		grid-column:
			1 / -1;

		grid-row:
			1;

		width:
			min(75vw, 540px);

		margin-bottom:
			70px;

	}


	.signal-stage__services {

		grid-row:
			2;

		gap:
			25px;

	}


	.signal-service {

		padding:
			17px 0;

		border-bottom:
			1px solid
			rgba(255,255,255,.1);

	}


	.signal-stage__services--left,
	.signal-stage__services--right {

		align-items:
			stretch;

	}


	.signal-stage__services--left
	.signal-service,
	.signal-stage__services--right
	.signal-service {

		grid-template-columns:
			auto 1fr auto;

	}


	.signal-stage__services--left
	.signal-service:hover,
	.signal-stage__services--left
	.signal-service.is-active,
	.signal-stage__services--right
	.signal-service:hover,
	.signal-stage__services--right
	.signal-service.is-active {

		transform:
			translateX(0);

	}


	.signal-details__main {

		grid-template-columns:
			1fr;

	}


}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.services-signal {

		padding-top:
			90px;

		padding-bottom:
			100px;

	}


	.services-signal__intro {

		margin-bottom:
			75px;

	}


	.services-signal__intro-main h2 {

		font-size:
			clamp(
				4rem,
				18vw,
				6.4rem
			);

	}


	.signal-stage {

		display:
			flex;

		flex-direction:
			column;

		gap:
			0;

	}


	.signal-core {

		order:
			1;

		width:
			92vw;

		max-width:
			400px;

		margin:
			0 auto 65px;

	}


	.signal-stage__services {

		order:
			2;

		width:
			100%;

		gap:
			0;

	}


	.signal-stage__services--right {

		order:
			3;

	}


	.signal-service {

		min-height:
			67px;

	}


	.signal-service__title {

		font-size:
			1.25rem;

		white-space:
			normal;

	}


	.signal-service__line {

		display:
			none;

	}


	.signal-details {

		margin-top:
			80px;

	}


	.signal-details__heading {

		grid-template-columns:
			40px 1fr;

	}


	.signal-details__heading h3 {

		font-size:
			clamp(
				3.5rem,
				16vw,
				5.3rem
			);

	}


	.story-preview {

		min-height:
			65vh;

	}


	.story-preview h2 {

		font-size:
			clamp(
				4rem,
				19vw,
				6.4rem
			);

	}

}
/* ============================================================
   06 — CLIENT UNIVERSE
   ============================================================ */

.client-universe {
	position: relative;

	padding:
		clamp(110px, 13vw, 190px)
		var(--page-padding)
		clamp(120px, 14vw, 200px);

	background:
		#f0eee8;

	color:
		#111214;

	overflow: hidden;
}


.client-universe__cursor {
	position: absolute;

	z-index: 0;

	width: 520px;
	height: 520px;

	top: 50%;
	left: 50%;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(141, 109, 229, .17),
			transparent 68%
		);

	transform:
		translate(-50%, -50%);

	filter:
		blur(35px);

	pointer-events: none;
}


.client-universe__inner {
	position: relative;
	z-index: 2;

	max-width:
		var(--container);

	margin:
		0 auto;
}



/* ============================================================
   INTRO
   ============================================================ */

.client-universe__intro {
	display: grid;

	grid-template-columns:
		minmax(170px, .38fr)
		minmax(0, 1.62fr);

	gap:
		clamp(30px, 6vw, 100px);

	margin-bottom:
		clamp(100px, 12vw, 170px);
}


.client-universe__label {
	display: flex;
	gap: 16px;

	padding-top: 13px;
}


.client-universe__headline > p {
	margin:
		0 0 28px;

	font-size: 10px;

	text-transform:
		uppercase;

	letter-spacing:
		.17em;

	color:
		rgba(17,18,20,.45);
}


.client-universe__headline h2 {
	margin: 0;

	font-size:
		clamp(
			4.8rem,
			9.7vw,
			10.5rem
		);

	line-height:
		.78;

	letter-spacing:
		-.078em;

	text-transform:
		uppercase;

	font-weight:
		500;
}


.client-universe__headline h2 span {
	color:
		#7958cf;

	font-style:
		italic;

	font-weight:
		400;
}



/* ============================================================
   CLIENT FIELD
   ============================================================ */

.client-field {
	--client-x: 0px;
	--client-y: 0px;

	position: relative;

	min-height:
		clamp(
			760px,
			72vw,
			1050px
		);

	border-top:
		1px solid
		rgba(17,18,20,.16);

	border-bottom:
		1px solid
		rgba(17,18,20,.16);

	overflow: hidden;
}


.client-field::before {
	content: "";

	position: absolute;

	inset: 0;

	background-image:
		linear-gradient(
			rgba(17,18,20,.055) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(17,18,20,.055) 1px,
			transparent 1px
		);

	background-size:
		80px 80px;

	pointer-events: none;
}



/* ============================================================
   ORBITS
   ============================================================ */

.client-field__orbit {
	position: absolute;

	top: 50%;
	left: 50%;

	border:
		1px solid
		rgba(17,18,20,.12);

	border-radius: 50%;

	transform:
		translate(-50%, -50%);

	pointer-events: none;
}


.client-field__orbit--one {
	width: 78%;
	aspect-ratio: 1;
}


.client-field__orbit--two {
	width: 53%;
	aspect-ratio: 1;

	border-style: dashed;

	animation:
		client-orbit-spin
		32s
		linear
		infinite;
}


.client-field__orbit--three {
	width: 29%;
	aspect-ratio: 1;

	border-color:
		rgba(121,88,207,.32);
}


@keyframes client-orbit-spin {
	to {
		transform:
			translate(-50%, -50%)
			rotate(360deg);
	}
}


/* ============================================================
   HEADER — INTERACTIVE TRINOVIK CORE MENU
   Rebuilds the existing overlay without changing its navigation URLs.
   ============================================================ */

.site-header--minimal .site-nav--overlay {
	--menu-white: #f6f4fb;
	--menu-muted: rgba(225, 226, 242, .64);
	--menu-line: rgba(132, 143, 204, .19);
	--story-active: #8c72ff;
	--story-active-rgb: 140, 114, 255;
	--core-tilt-x: 0deg;
	--core-tilt-y: 0deg;

	display: block;
	place-items: initial;
	padding: 0;
	background:
		radial-gradient(circle at 78% 44%, rgba(100, 26, 207, .23), transparent 35%),
		radial-gradient(circle at 94% 8%, rgba(224, 0, 223, .17), transparent 28%),
		radial-gradient(circle at 35% 110%, rgba(25, 65, 180, .13), transparent 40%),
		linear-gradient(118deg, #020617 0%, #050722 47%, #12082f 76%, #25093c 100%);
	opacity: 0;
	visibility: hidden;
	transform: none;
	clip-path: circle(0 at calc(100% - var(--page-padding) - 28px) 48px);
	transition:
		clip-path .78s cubic-bezier(.72, 0, .2, 1),
		opacity .24s ease,
		visibility .78s step-end;
}

.site-header--minimal .site-nav--overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(111, 129, 207, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(111, 129, 207, .045) 1px, transparent 1px);
	background-size: clamp(72px, 6.4vw, 112px) clamp(72px, 6.4vw, 112px);
	mask-image: radial-gradient(circle at 72% 48%, #000 0%, transparent 78%);
	pointer-events: none;
}

.site-header--minimal .site-nav--overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(112deg, transparent 0 49.8%, rgba(142, 96, 255, .08) 50%, transparent 50.2%),
		radial-gradient(circle at 72% 50%, rgba(61, 98, 220, .11), transparent 27%);
	opacity: .72;
	pointer-events: none;
}

.site-header--minimal .site-nav--overlay.is-open {
	opacity: 1;
	visibility: visible;
	clip-path: circle(150% at calc(100% - var(--page-padding) - 28px) 48px);
	transition:
		clip-path .86s cubic-bezier(.2, .78, .2, 1),
		opacity .24s ease,
		visibility 0s step-start;
}

.site-header--minimal .site-nav__shell {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: min(calc(100% - (2 * var(--page-padding))), var(--container));
	height: 100%;
	min-height: 0;
	margin: 0 auto;
	padding: clamp(104px, 12vh, 142px) 0 clamp(24px, 4vh, 42px);
}

.site-header--minimal .site-nav__inner {
	display: grid;
	grid-template-columns: minmax(380px, .88fr) minmax(460px, 1.12fr);
	align-items: center;
	gap: clamp(36px, 5vw, 90px);
	width: 100%;
	max-width: none;
	min-height: 0;
	margin: 0;
	flex: 1 1 auto;
}

.site-header--minimal .site-nav__links {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
}

.site-header--minimal .site-nav--overlay .site-nav__item {
	position: relative;
	display: grid;
	grid-template-columns: clamp(42px, 4vw, 62px) minmax(0, 1fr) clamp(42px, 8vw, 138px);
	align-items: center;
	gap: clamp(14px, 1.7vw, 26px);
	width: 100%;
	min-height: clamp(78px, 9.3vh, 106px);
	padding: clamp(13px, 1.8vh, 20px) 0;
	border-top: 0;
	border-bottom: 1px solid var(--menu-line);
	color: var(--menu-white);
	font-size: 1rem;
	line-height: 1;
	letter-spacing: normal;
	font-weight: 400;
	text-transform: none;
	overflow: visible;
	opacity: 0;
	transform: translate3d(-34px, 0, 0);
	transition:
		opacity .42s ease,
		transform .56s cubic-bezier(.2, .78, .2, 1),
		background .35s ease,
		border-color .35s ease;
}

.site-header--minimal .site-nav--overlay .site-nav__item:first-child {
	border-top: 1px solid var(--menu-line);
}

.site-header--minimal .site-nav--overlay .site-nav__item::before {
	display: none;
}

.site-header--minimal .site-nav--overlay .site-nav__item::after {
	display: block;
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(65, 84, 174, .08), transparent 78%);
	opacity: 0;
	transition: opacity .35s ease;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__item {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__item:nth-child(1) {
	transition-delay: .13s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__item:nth-child(2) {
	transition-delay: .18s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__item:nth-child(3) {
	transition-delay: .23s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__item:nth-child(4) {
	transition-delay: .28s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__item:nth-child(5) {
	transition-delay: .33s;
}

.site-header--minimal .site-nav--overlay .site-nav__item:hover::before,
.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible::before {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header--minimal .site-nav--overlay .site-nav__item:hover::after,
.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible::after {
	opacity: 1;
}

.site-header--minimal .site-nav--overlay .site-nav__item:hover,
.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible {
	border-bottom-color: rgba(216, 78, 233, .72);
}

.site-header--minimal .site-nav__item-number {
	font-size: clamp(.76rem, .9vw, .94rem);
	font-weight: 400;
	letter-spacing: .08em;
	color: rgba(111, 130, 213, .86);
	transition: color .3s ease, transform .4s ease;
}

.site-header--minimal .site-nav__item-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(7px, 1vh, 11px);
	min-width: 0;
	transition: transform .44s cubic-bezier(.2, .8, .2, 1);
}

.site-header--minimal .site-nav__item-copy strong {
	display: block;
	font-size: clamp(1.75rem, 2.35vw, 2.65rem);
	line-height: .92;
	letter-spacing: .035em;
	font-weight: 650;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-header--minimal .site-nav__item-copy strong span {
	display: inline-block;
	margin-left: .22em;
	font-weight: 300;
}

.site-header--minimal .site-nav__item-copy small {
	display: block;
	max-width: 100%;
	font-size: clamp(.8rem, 1vw, 1rem);
	line-height: 1.25;
	letter-spacing: .025em;
	font-weight: 400;
	color: var(--menu-muted);
	white-space: normal;
}

.site-header--minimal .site-nav__item-signal {
	position: relative;
	display: block;
	width: 100%;
	height: 1px;
	background: transparent;
	transform: scaleX(.18);
	transform-origin: right;
	opacity: .28;
	transition:
		transform .5s cubic-bezier(.2, .8, .2, 1),
		opacity .35s ease;
}

.site-header--minimal .site-nav__item-signal::before {
	display: none;
}

.site-header--minimal .site-nav__item-signal::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: clamp(24px, 2.1vw, 31px);
	height: clamp(24px, 2.1vw, 31px);
	border: 0;
	background: url("../images/ui/trinovik-o-node.png") center / contain no-repeat;
	filter: drop-shadow(0 0 9px rgba(216, 78, 233, .52));
	opacity: 0;
	transform: translateY(-50%) scale(.58) rotate(-18deg);
	transition: opacity .28s ease, transform .42s cubic-bezier(.2, .8, .2, 1), filter .28s ease;
}

.site-header--minimal .site-nav--overlay .site-nav__item:hover span,
.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible span {
	color: inherit;
}

.site-header--minimal .site-nav--overlay .site-nav__item:hover .site-nav__item-copy,
.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible .site-nav__item-copy {
	transform: translateX(9px);
}

.site-header--minimal .site-nav--overlay .site-nav__item:hover .site-nav__item-number,
.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible .site-nav__item-number {
	color: #e34bec;
	transform: translateX(3px);
}

.site-header--minimal .site-nav--overlay .site-nav__item:hover .site-nav__item-signal,
.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible .site-nav__item-signal {
	transform: scaleX(1);
	opacity: 1;
}

.site-header--minimal .site-nav--overlay .site-nav__item:hover .site-nav__item-signal::after,
.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible .site-nav__item-signal::after {
	opacity: 1;
	transform: translateY(-50%) scale(1) rotate(0deg);
	filter: drop-shadow(0 0 13px rgba(216, 78, 233, .72));
	animation: menu-item-node-float 2.2s ease-in-out infinite;
}

/* The Services index stays anchored while its hover dropdown opens. */
.site-header--minimal .site-nav--overlay .site-nav__item--services:hover .site-nav__item-number,
.site-header--minimal .site-nav--overlay .site-nav__item--services:focus-visible .site-nav__item-number {
	transform: none;
}

.site-header--minimal .site-nav--overlay .site-nav__item--project,
.site-header--minimal .site-nav--overlay .site-nav__item--project .site-nav__item-number {
	color: #c34af0;
}

.site-header--minimal .site-nav--overlay .site-nav__item:focus-visible {
	outline: 1px solid rgba(223, 88, 255, .8);
	outline-offset: 4px;
}


/* Animated four-capability core. */

.site-header--minimal .site-nav__visual {
	position: relative;
	min-width: 0;
	min-height: clamp(440px, 65vh, 650px);
	perspective: 1100px;
	opacity: 0;
	transform: translate3d(34px, 0, 0) scale(.94);
	transition:
		opacity .6s ease .18s,
		transform .8s cubic-bezier(.2, .78, .2, 1) .18s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__visual {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.site-header--minimal .menu-core__orbit {
	position: absolute;
	left: 50%;
	top: 46%;
	border: 1px solid rgba(118, 106, 243, .22);
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(-12deg);
	pointer-events: none;
}

.site-header--minimal .menu-core__orbit::after {
	content: "";
	position: absolute;
	left: 8%;
	top: 14%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #f0eefe;
	box-shadow: 0 0 16px #a85cff, 0 0 36px rgba(72, 126, 255, .7);
}

.site-header--minimal .menu-core__orbit--one {
	width: 92%;
	height: 55%;
}

.site-header--minimal .menu-core__orbit--two {
	width: 76%;
	height: 72%;
	transform: translate(-50%, -50%) rotate(32deg);
}

.site-header--minimal .menu-core__orbit--three {
	width: 62%;
	height: 84%;
	transform: translate(-50%, -50%) rotate(78deg);
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__orbit--one {
	animation: menu-orbit-one 13s linear infinite;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__orbit--two {
	animation: menu-orbit-two 17s linear infinite reverse;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__orbit--three {
	animation: menu-orbit-three 20s linear infinite;
}

.site-header--minimal .menu-core__assembly {
	position: absolute;
	left: 50%;
	top: 45%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(5px, .7vw, 12px);
	width: clamp(320px, 34vw, 520px);
	aspect-ratio: 1;
	transform:
		translate(-50%, -50%)
		rotateX(var(--core-tilt-x))
		rotateY(var(--core-tilt-y));
	transform-style: preserve-3d;
	transition: transform .22s ease-out;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__assembly {
	animation: menu-core-float 7s 1.05s ease-in-out infinite;
}

.site-header--minimal .menu-core__assembly::before {
	content: "";
	position: absolute;
	inset: 10%;
	z-index: -1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(91, 75, 246, .42), rgba(179, 39, 222, .14) 40%, transparent 72%);
	filter: blur(24px);
	transform: translateZ(-30px) scale(1.18);
}

.site-header--minimal .menu-core__module {
	--module-transform: translate3d(0, 0, 0) rotate(0deg);
	position: relative;
	display: grid;
	place-items: center;
	min-width: 0;
	aspect-ratio: 1;
	border: 1px solid rgba(var(--module-rgb), .72);
	border-radius: 28%;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .25), transparent 25%),
		linear-gradient(135deg, rgba(var(--module-rgb), .56), rgba(7, 8, 38, .82) 73%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .32),
		inset -22px -30px 42px rgba(0, 0, 20, .38),
		0 0 30px rgba(var(--module-rgb), .28),
		0 24px 52px rgba(0, 0, 25, .34);
	overflow: hidden;
	opacity: .42;
	transform: var(--module-transform) scale(.74);
	transition:
		opacity .5s ease,
		transform .7s cubic-bezier(.2, .78, .2, 1),
		border-color .4s ease,
		box-shadow .45s ease,
		filter .45s ease;
}

.site-header--minimal .menu-core__module::before {
	content: "";
	position: absolute;
	inset: 10%;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 22%;
	background: linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 48%);
}

.site-header--minimal .menu-core__module::after {
	content: "";
	position: absolute;
	left: -60%;
	top: -15%;
	width: 45%;
	height: 130%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24), transparent);
	transform: skewX(-18deg);
	transition: left .8s cubic-bezier(.2, .8, .2, 1);
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__module {
	opacity: .82;
	transform: var(--module-transform) scale(1);
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__module--ai {
	transition-delay: .31s;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__module--brand {
	transition-delay: .39s;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__module--creative {
	transition-delay: .47s;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__module--growth {
	transition-delay: .55s;
}

.site-header--minimal .menu-core__module--ai {
	--module-rgb: 101, 65, 242;
	--module-transform: translate3d(8%, 6%, 18px) rotate(7deg);
}

.site-header--minimal .menu-core__module--brand {
	--module-rgb: 224, 41, 220;
	--module-transform: translate3d(-8%, 4%, 28px) rotate(-6deg);
}

.site-header--minimal .menu-core__module--creative {
	--module-rgb: 25, 157, 239;
	--module-transform: translate3d(9%, -8%, 30px) rotate(-5deg);
}

.site-header--minimal .menu-core__module--growth {
	--module-rgb: 166, 216, 95;
	--module-transform: translate3d(-7%, -10%, 20px) rotate(6deg);
}

.site-header--minimal .menu-core__module svg {
	position: relative;
	z-index: 2;
	width: 43%;
	height: 43%;
	fill: none;
	stroke: rgba(246, 249, 255, .88);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 8px rgba(var(--module-rgb), .78));
}

.site-header--minimal .menu-core__node {
	position: absolute;
	z-index: 5;
	left: 50%;
	top: 50%;
	display: grid;
	place-items: center;
	width: 22%;
	aspect-ratio: 1;
	padding: 6%;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 50%;
	background: radial-gradient(circle at 38% 32%, #362b95, #090b30 62%, #050618);
	box-shadow: 0 0 34px rgba(97, 83, 255, .52), 0 0 76px rgba(209, 42, 225, .28);
	transform: translate(-50%, -50%) translateZ(74px);
}

.site-header--minimal .menu-core__node img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__node {
	animation: menu-core-pulse 2.8s .8s ease-in-out infinite;
}

.site-header--minimal .menu-core__label {
	position: absolute;
	display: block;
	max-width: 150px;
	font-size: clamp(.63rem, .72vw, .78rem);
	line-height: 1.25;
	letter-spacing: .085em;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	color: rgba(239, 240, 250, .72);
	opacity: 0;
	transition: opacity .55s ease .58s, color .35s ease;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__label {
	opacity: 1;
}

.site-header--minimal .menu-core__label::before {
	content: "";
	position: absolute;
	left: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 12px currentColor;
}

.site-header--minimal .menu-core__label--ai {
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.site-header--minimal .menu-core__label--ai::before {
	bottom: -13px;
}

.site-header--minimal .menu-core__label--brand {
	right: 0;
	top: 34%;
	color: rgba(236, 91, 235, .76);
}

.site-header--minimal .menu-core__label--brand::before,
.site-header--minimal .menu-core__label--growth::before {
	left: -12px;
	top: 50%;
}

.site-header--minimal .menu-core__label--creative {
	left: 0;
	bottom: 15%;
	color: rgba(74, 188, 250, .8);
}

.site-header--minimal .menu-core__label--creative::before {
	right: -12px;
	left: auto;
	top: 50%;
}

.site-header--minimal .menu-core__label--growth {
	right: 0;
	bottom: 15%;
	color: rgba(194, 225, 150, .8);
}

.site-header--minimal .menu-core__caption {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	transform: translateX(-50%);
	text-align: center;
	opacity: 0;
	transition: opacity .55s ease .65s, transform .65s cubic-bezier(.2, .8, .2, 1) .65s;
}

.site-header--minimal .site-nav--overlay.is-open .menu-core__caption {
	opacity: 1;
	transform: translateX(-50%) translateY(-4px);
}

.site-header--minimal .menu-core__caption span {
	display: block;
	font-size: .66rem;
	letter-spacing: .38em;
	text-transform: uppercase;
	color: rgba(236, 237, 249, .66);
}

.site-header--minimal .menu-core__caption p {
	margin: 13px 0 0;
	font-size: clamp(.92rem, 1.15vw, 1.18rem);
	letter-spacing: .01em;
	color: rgba(244, 244, 250, .84);
}

/* Link-to-core responses. */
.site-header--minimal .site-nav--overlay[data-menu-focus="work"] .menu-core__module--creative,
.site-header--minimal .site-nav--overlay[data-menu-focus="about"] .menu-core__module--brand,
.site-header--minimal .site-nav--overlay[data-menu-focus="insights"] .menu-core__module--ai,
.site-header--minimal .site-nav--overlay[data-menu-focus="services"] .menu-core__module,
.site-header--minimal .site-nav--overlay[data-menu-focus="project"] .menu-core__module {
	opacity: 1;
	filter: brightness(1.2) saturate(1.18);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .38),
		inset -22px -30px 42px rgba(0, 0, 20, .28),
		0 0 42px rgba(var(--module-rgb), .5),
		0 26px 58px rgba(0, 0, 25, .32);
}

.site-header--minimal .site-nav--overlay[data-menu-focus="project"] .menu-core__module {
	border-color: rgba(238, 80, 244, .82);
	box-shadow: 0 0 48px rgba(221, 49, 235, .42), 0 24px 60px rgba(0, 0, 25, .38);
}

.site-header--minimal .site-nav--overlay[data-menu-focus]:not([data-menu-focus="core"]) .menu-core__module::after {
	left: 120%;
}

.site-header--minimal .site-nav--overlay[data-menu-focus="project"] .menu-core__node {
	box-shadow: 0 0 42px rgba(230, 66, 241, .7), 0 0 100px rgba(184, 40, 224, .42);
}

/* Editorial story panel replacing the previous capability diagram. */

.site-header--minimal .site-nav--overlay[data-menu-focus="work"] {
	--story-active: #8c72ff;
	--story-active-rgb: 140, 114, 255;
}

.site-header--minimal .site-nav--overlay[data-menu-focus="services"] {
	--story-active: #d84ee9;
	--story-active-rgb: 216, 78, 233;
}

.site-header--minimal .site-nav--overlay[data-menu-focus="about"] {
	--story-active: #5b8cff;
	--story-active-rgb: 91, 140, 255;
}

.site-header--minimal .site-nav--overlay[data-menu-focus="insights"] {
	--story-active: #b9dc78;
	--story-active-rgb: 185, 220, 120;
}

.site-header--minimal .site-nav--overlay[data-menu-focus="project"] {
	--story-active: #ee50f4;
	--story-active-rgb: 238, 80, 244;
}

.site-header--minimal .site-nav--overlay .site-nav__item.is-menu-active::before {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header--minimal .site-nav--overlay .site-nav__item.is-menu-active::after {
	opacity: 1;
}

.site-header--minimal .site-nav--overlay .site-nav__item.is-menu-active {
	border-bottom-color: rgba(216, 78, 233, .72);
}

.site-header--minimal .site-nav--overlay .site-nav__item.is-menu-active .site-nav__item-copy {
	transform: translateX(9px);
}

.site-header--minimal .site-nav--overlay .site-nav__item.is-menu-active .site-nav__item-number {
	color: var(--story-active);
	transform: translateX(3px);
}

.site-header--minimal .site-nav--overlay .site-nav__item--services.is-menu-active .site-nav__item-number {
	transform: none;
}

.site-header--minimal .site-nav--overlay .site-nav__item.is-menu-active .site-nav__item-signal {
	transform: scaleX(1);
	opacity: 1;
}

.site-header--minimal .site-nav--overlay .site-nav__item.is-menu-active .site-nav__item-signal::after {
	opacity: 1;
	transform: translateY(-50%) scale(1) rotate(0deg);
	filter: drop-shadow(0 0 13px rgba(var(--story-active-rgb), .72));
	animation: menu-item-node-float 2.2s ease-in-out infinite;
}

.site-header--minimal .site-nav__story {
	position: relative;
	isolation: isolate;
	min-height: clamp(440px, 65vh, 650px);
	border-left: 1px solid rgba(124, 137, 202, .16);
	overflow: hidden;
}

.site-header--minimal .site-nav__story::before,
.site-header--minimal .site-nav__story::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.site-header--minimal .site-nav__story::before {
	width: min(70vw, 760px);
	aspect-ratio: 1;
	right: -24%;
	top: 50%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--story-active-rgb), .24), transparent 66%);
	filter: blur(22px);
	transform: translateY(-50%);
	transition: background .7s ease;
}

.site-header--minimal .site-nav__story::after {
	inset: 7% 5%;
	border: 1px solid rgba(var(--story-active-rgb), .16);
	border-radius: 50%;
	transform: rotate(-11deg) scale(1.04);
	transition: border-color .7s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.site-header--minimal .site-nav__story.is-story-engaged::after {
	transform: rotate(-7deg) scale(1.01);
}

.site-header--minimal .site-nav__story-frame {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.site-header--minimal .site-nav__story-panel {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(46px, 5vw, 82px) clamp(42px, 5.6vw, 94px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, 24px, 0);
	transition:
		opacity .36s ease,
		transform .58s cubic-bezier(.2, .8, .2, 1),
		visibility .36s step-end;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__story-panel.is-active {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	transition:
		opacity .46s ease .08s,
		transform .65s cubic-bezier(.2, .8, .2, 1) .04s,
		visibility 0s step-start;
}

.site-header--minimal .site-nav__story-kicker {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0;
	font-size: clamp(.64rem, .75vw, .78rem);
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(236, 237, 249, .64);
}

.site-header--minimal .site-nav__story-kicker::after {
	display: none;
}

.site-header--minimal .site-nav__story-kicker span {
	color: var(--story-accent);
}

.site-header--minimal .site-nav__story-kicker strong {
	font-weight: 500;
}

.site-header--minimal .site-nav__story-copy {
	position: relative;
	max-width: 650px;
	margin-top: clamp(34px, 5vh, 58px);
}

.site-header--minimal .site-nav__story-copy p {
	max-width: 52ch;
	margin: 0;
	font-size: clamp(.88rem, 1.02vw, 1.06rem);
	line-height: 1.55;
	letter-spacing: .005em;
	color: rgba(235, 235, 246, .64);
	opacity: 0;
	transform: translateY(18px);
	clip-path: inset(0 0 100% 0);
	transition:
		opacity .42s ease,
		transform .62s cubic-bezier(.2, .8, .2, 1),
		clip-path .62s cubic-bezier(.2, .8, .2, 1);
}

.site-header--minimal .site-nav__story-copy p + p {
	margin-top: 10px;
}

.site-header--minimal .site-nav__story-copy .site-nav__story-lead {
	max-width: 17ch;
	margin-bottom: clamp(27px, 4vh, 42px);
	font-size: clamp(2.2rem, 3.6vw, 4.25rem);
	line-height: .98;
	letter-spacing: -.045em;
	font-weight: 350;
	color: #f7f5fb;
	text-wrap: balance;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__story-panel.is-active .site-nav__story-copy p {
	opacity: 1;
	transform: translateY(0);
	clip-path: inset(0 0 0 0);
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__story-panel.is-active .site-nav__story-copy p:nth-child(1) {
	transition-delay: .10s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__story-panel.is-active .site-nav__story-copy p:nth-child(2) {
	transition-delay: .28s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__story-panel.is-active .site-nav__story-copy p:nth-child(3) {
	transition-delay: .46s;
}

.site-header--minimal .site-nav__story-progress {
	position: absolute;
	z-index: 8;
	right: clamp(18px, 2vw, 34px);
	top: 50%;
	display: flex;
	flex-direction: column;
	gap: 13px;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity .3s ease;
}

.site-header--minimal .site-nav--overlay:not([data-menu-focus="none"]) .site-nav__story-progress {
	opacity: 1;
}

.site-header--minimal .site-nav__story-progress span {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(236, 237, 249, .28);
	transition: height .38s ease, background .38s ease, box-shadow .38s ease;
}

.site-header--minimal .site-nav--overlay[data-menu-focus="work"] .site-nav__story-progress span:nth-child(1),
.site-header--minimal .site-nav--overlay[data-menu-focus="services"] .site-nav__story-progress span:nth-child(2),
.site-header--minimal .site-nav--overlay[data-menu-focus="about"] .site-nav__story-progress span:nth-child(3),
.site-header--minimal .site-nav--overlay[data-menu-focus="insights"] .site-nav__story-progress span:nth-child(4),
.site-header--minimal .site-nav--overlay[data-menu-focus="project"] .site-nav__story-progress span:nth-child(5) {
	height: 26px;
	background: var(--story-active);
	box-shadow: 0 0 14px rgba(var(--story-active-rgb), .72);
}

.site-header--minimal .site-nav__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: clamp(18px, 2.8vh, 28px);
	border-top: 1px solid rgba(111, 127, 198, .15);
	font-size: clamp(.62rem, .72vw, .76rem);
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(220, 222, 238, .48);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .4s ease .62s, transform .48s ease .62s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__meta {
	opacity: 1;
	transform: translateY(0);
}

@keyframes menu-orbit-one {
	to { transform: translate(-50%, -50%) rotate(348deg); }
}

@keyframes menu-orbit-two {
	to { transform: translate(-50%, -50%) rotate(392deg); }
}

@keyframes menu-orbit-three {
	to { transform: translate(-50%, -50%) rotate(438deg); }
}

@keyframes menu-core-float {
	0%, 100% {
		transform: translate(-50%, -50%) rotateX(var(--core-tilt-x)) rotateY(var(--core-tilt-y));
	}
	50% {
		transform: translate(-50%, calc(-50% - 7px)) rotateX(var(--core-tilt-x)) rotateY(var(--core-tilt-y));
	}
}

@keyframes menu-core-pulse {
	0%, 100% { transform: translate(-50%, -50%) translateZ(74px) scale(1); }
	50% { transform: translate(-50%, -50%) translateZ(84px) scale(1.055); }
}

@keyframes menu-item-node-float {
	0%, 100% {
		transform: translateY(-50%) translateY(0) scale(1) rotate(-6deg);
	}
	50% {
		transform: translateY(-50%) translateY(-4px) scale(1.08) rotate(14deg);
	}
}

@media (max-height: 760px) and (min-width: 1001px) {
	.site-header--minimal .site-nav__shell {
		padding-top: 92px;
		padding-bottom: 20px;
	}

	.site-header--minimal .site-nav--overlay .site-nav__item {
		min-height: 72px;
		padding-block: 10px;
	}

	.site-header--minimal .site-nav__item-copy strong {
		font-size: clamp(1.55rem, 2vw, 2.1rem);
	}

	.site-header--minimal .site-nav__visual {
		min-height: 430px;
	}

	.site-header--minimal .menu-core__assembly {
		width: min(30vw, 410px);
	}

	.site-header--minimal .menu-core__caption p {
		margin-top: 8px;
	}

	.site-header--minimal .site-nav__story-copy {
		margin-top: 28px;
	}

	.site-header--minimal .site-nav__story-copy .site-nav__story-lead {
		margin-bottom: 24px;
		font-size: clamp(2rem, 3vw, 3.2rem);
	}
}

@media (max-width: 1000px) {
	.site-header--minimal .site-nav__shell {
		padding-top: 100px;
	}

	.site-header--minimal .site-nav__inner {
		grid-template-columns: minmax(330px, .95fr) minmax(350px, 1.05fr);
		gap: 28px;
	}

	.site-header--minimal .site-nav--overlay .site-nav__item {
		grid-template-columns: 38px minmax(0, 1fr) 54px;
		min-height: 76px;
	}

	.site-header--minimal .site-nav__item-copy strong {
		font-size: clamp(1.55rem, 3.2vw, 2rem);
	}

	.site-header--minimal .site-nav__item-copy small {
		font-size: .76rem;
	}

	.site-header--minimal .site-nav__visual {
		min-height: 430px;
	}

	.site-header--minimal .menu-core__assembly {
		width: min(38vw, 390px);
	}

	.site-header--minimal .menu-core__label {
		display: none;
	}

	.site-header--minimal .site-nav__story-panel {
		padding-inline: clamp(34px, 4vw, 58px);
	}

	.site-header--minimal .site-nav__story-copy .site-nav__story-lead {
		font-size: clamp(2rem, 4.2vw, 3.35rem);
	}
}

@media (max-width: 760px) {
	.site-header--minimal .site-nav--overlay {
		overflow-y: auto;
		clip-path: circle(0 at calc(100% - 42px) 38px);
	}

	.site-header--minimal .site-nav--overlay.is-open {
		clip-path: circle(180% at calc(100% - 42px) 38px);
	}

	.site-header--minimal .site-nav__shell {
		width: calc(100% - 36px);
		height: auto;
		min-height: 100%;
		padding: 92px 0 28px;
	}

	.site-header--minimal .site-nav__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 34px;
		flex: 0 0 auto;
	}

	.site-header--minimal .site-nav--overlay .site-nav__item {
		grid-template-columns: 34px minmax(0, 1fr) 34px;
		gap: 12px;
		min-height: 76px;
		padding: 12px 0;
	}

	.site-header--minimal .site-nav__item-copy strong {
		font-size: clamp(1.45rem, 7vw, 2rem);
	}

	.site-header--minimal .site-nav__item-copy small {
		font-size: clamp(.7rem, 3.2vw, .84rem);
	}

	.site-header--minimal .site-nav__item-signal {
		transform: scaleX(.42);
	}

	.site-header--minimal .site-nav__visual {
		width: 100%;
		min-height: 330px;
	}

	.site-header--minimal .site-nav__story {
		min-height: 460px;
		border-top: 1px solid rgba(124, 137, 202, .16);
		border-left: 0;
	}

	.site-header--minimal .site-nav__story::after {
		inset: 9% -12%;
	}

	.site-header--minimal .site-nav__story-panel {
		justify-content: flex-start;
		padding: 48px 22px 70px;
	}

	.site-header--minimal .site-nav__story-copy {
		margin-top: 30px;
	}

	.site-header--minimal .site-nav__story-copy .site-nav__story-lead {
		max-width: 20ch;
		margin-bottom: 24px;
		font-size: clamp(1.9rem, 8.8vw, 2.75rem);
	}

	.site-header--minimal .site-nav__story-copy p {
		font-size: .88rem;
	}

	.site-header--minimal .site-nav__story-progress {
		right: 3px;
	}

	.site-header--minimal .menu-core__assembly {
		top: 45%;
		width: min(68vw, 290px);
	}

	.site-header--minimal .menu-core__orbit {
		top: 45%;
	}

	.site-header--minimal .menu-core__caption {
		bottom: 0;
	}

	.site-header--minimal .menu-core__caption p {
		margin-top: 8px;
		font-size: .88rem;
	}

	.site-header--minimal .site-nav__meta {
		margin-top: 30px;
		font-size: .58rem;
		letter-spacing: .13em;
	}
}

@media (max-width: 380px) {
	.site-header--minimal .site-nav__visual {
		min-height: 440px;
	}

	.site-header--minimal .menu-core__assembly {
		width: min(66vw, 250px);
	}

	.site-header--minimal .site-nav__story-panel {
		padding-inline: 16px;
	}

	.site-header--minimal .site-nav__story-copy .site-nav__story-lead {
		font-size: 1.85rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header--minimal .site-nav--overlay {
		clip-path: none;
		transition: opacity .01ms linear, visibility .01ms linear;
	}

	.site-header--minimal .site-nav--overlay .site-nav__item,
	.site-header--minimal .site-nav__visual,
	.site-header--minimal .menu-core__module,
	.site-header--minimal .menu-core__assembly,
	.site-header--minimal .menu-core__node,
	.site-header--minimal .menu-core__orbit,
	.site-header--minimal .menu-core__caption,
	.site-header--minimal .site-nav__item-signal::after,
	.site-header--minimal .site-nav__story,
	.site-header--minimal .site-nav__story::before,
	.site-header--minimal .site-nav__story::after,
	.site-header--minimal .site-nav__story-panel,
	.site-header--minimal .site-nav__story-copy p,
	.site-header--minimal .site-nav__story-progress span,
	.site-header--minimal .site-nav__meta {
		animation: none !important;
		transition-duration: .01ms !important;
	}
}



/* ============================================================
   CENTER
   ============================================================ */

.client-field__center {
	position: absolute;

	z-index: 4;

	top: 50%;
	left: 50%;

	width:
		clamp(
			180px,
			19vw,
			290px
		);

	aspect-ratio: 1;

	transform:
		translate(-50%, -50%);

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	border-radius: 50%;

	background:
		radial-gradient(
			circle at 30% 25%,
			#fff,
			#d6c8ff 19%,
			#8165ce 48%,
			#181321 82%
		);

	color: #fff;

	box-shadow:
		0 30px 100px
		rgba(71,44,143,.28);

	transition:
		transform .5s
		cubic-bezier(.2,.8,.2,1);
}


.client-field:hover
.client-field__center {
	transform:
		translate(
			calc(-50% + var(--client-x)),
			calc(-50% + var(--client-y))
		);
}


.client-field__center span {
	font-size: 8px;

	letter-spacing:
		.22em;
}


.client-field__center strong {
	margin: 8px 0;

	font-size:
		clamp(
			1.4rem,
			2.5vw,
			2.9rem
		);

	line-height: .88;

	letter-spacing: -.045em;

	text-align: center;

	font-weight: 500;
}


.client-field__center small {
	font-size: 7px;

	letter-spacing:
		.18em;

	opacity: .65;
}



/* ============================================================
   CLIENT NODES
   ============================================================ */

.client-node {
	position: absolute;

	z-index: 5;

	padding:
		12px 15px;

	background:
		rgba(240,238,232,.74);

	border:
		1px solid
		rgba(17,18,20,.17);

	backdrop-filter:
		blur(12px);

	transition:
		transform .45s
			cubic-bezier(.2,.8,.2,1),
		background .35s ease,
		color .35s ease,
		border-color .35s ease;

	cursor: default;
}


.client-node:hover {
	z-index: 8;

	transform:
		translateY(-8px)
		scale(1.05);

	background:
		#111214;

	color:
		#fff;

	border-color:
		#111214;
}


.client-node span {
	display: block;

	margin-bottom: 8px;

	font-size: 7px;

	letter-spacing:
		.16em;

	opacity: .42;
}


.client-node strong {
	font-size:
		clamp(
			1rem,
			1.6vw,
			1.8rem
		);

	line-height: 1;

	letter-spacing: -.035em;

	font-weight: 500;

	white-space: nowrap;
}



/* NODE POSITIONS */

.client-node--01 {
	top: 9%;
	left: 10%;
}

.client-node--02 {
	top: 18%;
	right: 13%;
}

.client-node--03 {
	top: 34%;
	left: 4%;
}

.client-node--04 {
	top: 48%;
	right: 5%;
}

.client-node--05 {
	top: 70%;
	left: 12%;
}

.client-node--06 {
	top: 80%;
	right: 19%;
}

.client-node--07 {
	top: 11%;
	left: 42%;
}

.client-node--08 {
	top: 59%;
	left: 20%;
}

.client-node--09 {
	top: 74%;
	left: 46%;
}

.client-node--10 {
	top: 29%;
	right: 32%;
}

.client-node--11 {
	top: 56%;
	right: 29%;
}

.client-node--12 {
	bottom: 6%;
	left: 29%;
}

.client-node--13 {
	top: 41%;
	left: 28%;
}



/* ============================================================
   CLIENT FOOTER
   ============================================================ */

.client-universe__footer {
	display: grid;

	grid-template-columns:
		1.3fr .7fr;

	gap:
		clamp(40px, 7vw, 120px);

	margin-top:
		clamp(55px, 7vw, 90px);
}


.client-universe__footer p {
	margin: 0;

	max-width: 650px;

	font-size:
		clamp(
			1.5rem,
			2.7vw,
			3rem
		);

	line-height: 1.12;

	letter-spacing: -.035em;
}


.client-universe__footer > div {
	display: flex;

	align-items: flex-end;

	justify-content: flex-end;

	gap: 15px;
}


.client-universe__footer > div span:first-child {
	font-size:
		clamp(
			3rem,
			6vw,
			6rem
		);

	line-height: .8;

	letter-spacing: -.07em;
}


.client-universe__footer > div span:last-child {
	max-width: 110px;

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .14em;

	line-height: 1.4;

	opacity: .45;
}



/* ============================================================
   07 — PROJECT PREVIEW
   ============================================================ */

.project-preview {
	position: relative;

	min-height: 95vh;

	padding:
		clamp(100px, 12vw, 170px)
		var(--page-padding);

	background:
		#100d17;

	color:
		#f5f2fa;

	display: flex;

	flex-direction: column;

	justify-content: space-between;

	overflow: hidden;
}


.project-preview::before {
	content: "";

	position: absolute;

	width: 700px;
	height: 700px;

	right: -15%;
	bottom: -25%;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(156,113,255,.38),
			transparent 67%
		);

	filter: blur(40px);
}


.project-preview__meta,
.project-preview h2,
.project-preview__button {
	position: relative;
	z-index: 2;
}


.project-preview__meta {
	width:
		min(
			100%,
			var(--container)
		);

	margin:
		0 auto;

	display: flex;

	justify-content: space-between;

	font-size: 9px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(255,255,255,.45);
}


.project-preview h2 {
	width:
		min(
			100%,
			var(--container)
		);

	margin:
		70px auto;

	font-size:
		clamp(
			4.5rem,
			10vw,
			10.5rem
		);

	line-height: .78;

	letter-spacing: -.078em;

	text-transform: uppercase;

	font-weight: 500;
}


.project-preview h2 span {
	color: #c7b1ff;

	font-style: italic;

	font-weight: 400;
}


.project-preview__button {
	width:
		min(
			100%,
			var(--container)
		);

	margin:
		0 auto;

	padding:
		25px 0;

	display: flex;

	align-items: center;

	justify-content: space-between;

	border-top:
		1px solid
		rgba(255,255,255,.18);

	border-bottom:
		1px solid
		rgba(255,255,255,.18);

	font-size:
		clamp(
			1.3rem,
			2.2vw,
			2.5rem
		);

	transition:
		padding-left .35s ease,
		padding-right .35s ease,
		background .35s ease,
		color .35s ease;
}


.project-preview__button:hover {
	padding-left: 20px;
	padding-right: 20px;

	background: #f4f0fb;
	color: #100d17;
}



/* ============================================================
   CLIENT UNIVERSE TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.client-universe__intro {
		grid-template-columns: 1fr;
	}


	.client-field {
		min-height: 800px;
	}


	.client-node strong {
		font-size: 1rem;
	}


	.client-universe__footer {
		grid-template-columns: 1fr;
	}


	.client-universe__footer > div {
		justify-content: flex-start;
	}

}



/* ============================================================
   CLIENT UNIVERSE MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.client-universe {
		padding-top: 90px;
		padding-bottom: 100px;
	}


	.client-universe__headline h2 {
		font-size:
			clamp(
				4rem,
				18vw,
				6rem
			);
	}


	.client-field {
		min-height: auto;

		padding:
			270px 0 30px;

		display: grid;

		grid-template-columns:
			1fr 1fr;

		gap: 8px;
	}


	.client-field__orbit {
		display: none;
	}


	.client-field__center {
		top: 35px;

		width: 200px;

		transform:
			translateX(-50%);
	}


	.client-field:hover
	.client-field__center {
		transform:
			translateX(-50%);
	}


	.client-node {
		position: relative;

		inset: auto !important;

		min-height: 85px;

		display: flex;

		flex-direction: column;

		justify-content: space-between;

		padding: 13px;
	}


	.client-node strong {
		white-space: normal;

		font-size: 1.05rem;
	}


	.client-universe__footer p {
		font-size: 1.5rem;
	}


	.project-preview {
		min-height: 80vh;
	}


	.project-preview h2 {
		font-size:
			clamp(
				4rem,
				18vw,
				6rem
			);
	}

}
/* ============================================================
   07 — NEXT BIG PROJECT / PROJECT DIVE
   ============================================================ */

.project-dive {

	--project-x: 50%;
	--project-y: 50%;

	position: relative;

	min-height: 115vh;

	padding:
		clamp(105px, 11vw, 160px)
		var(--page-padding)
		55px;

	background:
		#08070c;

	color:
		#f6f2ff;

	overflow: hidden;
}



/* ============================================================
   ATMOSPHERE
   ============================================================ */

.project-dive__glow {

	position: absolute;

	z-index: 0;

	width: 850px;
	height: 850px;

	left:
		var(--project-x);

	top:
		var(--project-y);

	transform:
		translate(-50%, -50%);

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(122, 88, 225, .35) 0%,
			rgba(74, 54, 145, .17) 35%,
			transparent 68%
		);

	filter:
		blur(50px);

	pointer-events: none;

	transition:
		left .12s linear,
		top .12s linear;
}



/* ============================================================
   GRID
   ============================================================ */

.project-dive__grid {

	position: absolute;

	inset: 0;

	z-index: 1;

	background-image:

		linear-gradient(
			rgba(255,255,255,.035) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(255,255,255,.035) 1px,
			transparent 1px
		);

	background-size:
		80px 80px;

	mask-image:
		radial-gradient(
			circle at center,
			black,
			transparent 80%
		);

	pointer-events: none;
}



/* ============================================================
   PORTAL
   ============================================================ */

.project-portal {

	position: absolute;

	z-index: 2;

	width:
		min(64vw, 900px);

	aspect-ratio: 1;

	top: 50%;
	right: -11%;

	transform:
		translateY(-50%);

	pointer-events: none;
}


.project-portal::before {

	content: "";

	position: absolute;

	inset: 19%;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(194,171,255,.2),
			rgba(102,73,189,.1) 35%,
			transparent 68%
		);

	filter:
		blur(25px);
}



/* ============================================================
   PORTAL RINGS
   ============================================================ */

.project-portal__ring {

	position: absolute;

	top: 50%;
	left: 50%;

	border-radius: 50%;

	transform:
		translate(-50%, -50%);

	border:
		1px solid
		rgba(255,255,255,.13);
}


.project-portal__ring--01 {

	width: 100%;
	height: 100%;

	animation:
		project-ring-spin
		30s linear infinite;
}


.project-portal__ring--02 {

	width: 77%;
	height: 77%;

	border-style: dashed;

	animation:
		project-ring-spin-reverse
		23s linear infinite;
}


.project-portal__ring--03 {

	width: 53%;
	height: 53%;

	border-color:
		rgba(192,169,255,.34);

	animation:
		project-ring-pulse
		5s ease-in-out infinite;
}


.project-portal__ring--04 {

	width: 32%;
	height: 32%;

	border-color:
		rgba(255,255,255,.27);
}


.project-portal__ring--01::after {

	content: "";

	position: absolute;

	width: 10px;
	height: 10px;

	left: 50%;
	top: -5px;

	transform:
		translateX(-50%);

	border-radius: 50%;

	background:
		#c6b4ff;

	box-shadow:
		0 0 35px
		rgba(198,180,255,.8);
}


.project-portal__ring--02::after {

	content: "";

	position: absolute;

	width: 7px;
	height: 7px;

	left: -4px;
	top: 50%;

	border-radius: 50%;

	background:
		#b8ffcf;

	box-shadow:
		0 0 25px
		rgba(184,255,207,.7);
}



/* ============================================================
   PORTAL CORE
   ============================================================ */

.project-portal__core {

	position: absolute;

	z-index: 4;

	top: 50%;
	left: 50%;

	width: 20%;

	aspect-ratio: 1;

	transform:
		translate(-50%, -50%);

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	border-radius:
		47% 53% 44% 56% /
		53% 46% 54% 47%;

	background:

		radial-gradient(
			circle at 32% 28%,
			#fff,
			transparent 8%
		),

		linear-gradient(
			145deg,
			#d9cbff,
			#8a69da 42%,
			#372856 70%,
			#09080c
		);

	box-shadow:

		inset
		-24px -25px 50px
		rgba(0,0,0,.45),

		0 0 80px
		rgba(142,107,229,.35);

	animation:
		project-core-morph
		7s ease-in-out infinite;
}


.project-portal__core span {

	font-size: 7px;

	letter-spacing: .2em;
}


.project-portal__core strong {

	font-size:
		clamp(
			1.8rem,
			3vw,
			3.5rem
		);

	line-height: 1;

	font-weight: 500;
}



/* ============================================================
   CONTENT
   ============================================================ */

.project-dive__inner {

	position: relative;

	z-index: 5;

	width: min(
		100%,
		var(--container)
	);

	min-height:
		calc(
			115vh - 160px
		);

	margin:
		0 auto;

	display: flex;

	flex-direction: column;

	justify-content: space-between;
}



/* ============================================================
   META
   ============================================================ */

.project-dive__meta {

	display: flex;

	align-items: flex-start;

	justify-content: space-between;

	gap: 30px;
}


.project-dive__meta > div {

	display: flex;

	gap: 14px;
}


.project-dive__meta span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.43);
}



/* ============================================================
   HEADLINE
   ============================================================ */

.project-dive__headline {

	position: relative;

	z-index: 6;

	margin:
		clamp(70px, 9vh, 120px)
		0;
}


.project-dive__headline > p {

	margin:
		0 0 25px;

	font-size: 10px;

	text-transform: uppercase;

	letter-spacing: .18em;

	color:
		rgba(255,255,255,.45);
}


.project-dive__headline h2 {

	margin: 0;

	max-width:
		1150px;

	font-size:
		clamp(
			4.8rem,
			10.1vw,
			11.3rem
		);

	line-height: .75;

	letter-spacing: -.08em;

	font-weight: 500;

	text-transform: uppercase;
}


.project-dive__headline h2 span {

	display: block;
}


.project-dive__offset {

	margin-left:
		clamp(
			35px,
			11vw,
			175px
		);
}


.project-dive__accent {

	color:
		#c9b7ff;

	font-style: italic;

	font-weight: 400;
}



/* ============================================================
   BOTTOM
   ============================================================ */

.project-dive__bottom {

	position: relative;

	z-index: 8;

	display: grid;

	grid-template-columns:
		1fr auto;

	align-items: end;

	gap:
		clamp(40px, 7vw, 100px);

	margin-top:
		auto;

	padding-top:
		45px;

	border-top:
		1px solid
		rgba(255,255,255,.15);
}


.project-dive__message span {

	font-size: 8px;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);
}


.project-dive__message p {

	margin:
		14px 0 0;

	font-size:
		clamp(
			1.5rem,
			2.4vw,
			2.8rem
		);

	letter-spacing: -.035em;
}



/* ============================================================
   CTA
   ============================================================ */

.project-dive__cta {

	position: relative;

	width:
		clamp(
			160px,
			16vw,
			230px
		);

	aspect-ratio: 1;

	border-radius: 50%;

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	gap: 12px;

	background:
		#c8b5ff;

	color:
		#0a0810;

	overflow: hidden;

	transition:
		transform .45s
		cubic-bezier(.2,.8,.2,1);
}


.project-dive__cta::before {

	content: "";

	position: absolute;

	inset: 6px;

	border:
		1px solid
		rgba(10,8,16,.2);

	border-radius: 50%;

	transform:
		scale(.84);

	transition:
		transform .45s ease;
}


.project-dive__cta:hover {

	transform:
		scale(1.05);
}


.project-dive__cta:hover::before {

	transform:
		scale(1);
}


.project-dive__cta-label,
.project-dive__cta-arrow {

	position: relative;

	z-index: 3;
}


.project-dive__cta-label {

	font-size:
		clamp(
			1rem,
			1.4vw,
			1.4rem
		);

	font-weight: 500;
}


.project-dive__cta-arrow {

	font-size: 24px;
}


.project-dive__cta-circle {

	position: absolute;

	width: 100%;
	height: 100%;

	top: 75%;
	left: 50%;

	transform:
		translateX(-50%);

	border-radius: 50%;

	background:
		#b5ffcd;

	transition:
		top .55s
		cubic-bezier(.2,.8,.2,1);
}


.project-dive__cta:hover
.project-dive__cta-circle {

	top: 0;
}



/* ============================================================
   COORDINATES
   ============================================================ */

.project-dive__coordinates {

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 20px;

	margin-top: 38px;

	font-size: 7px;

	letter-spacing: .16em;

	color:
		rgba(255,255,255,.27);
}



/* ============================================================
   NEXT — INSIGHTS
   ============================================================ */

.insights-preview {

	min-height: 72vh;

	padding:
		clamp(100px, 12vw, 170px)
		var(--page-padding);

	background:
		#f1efe9;

	color:
		#111214;

	display: flex;

	flex-direction: column;

	justify-content: space-between;
}


.insights-preview__meta {

	width:
		min(
			100%,
			var(--container)
		);

	margin:
		0 auto;

	display: flex;

	justify-content: space-between;

	font-size: 9px;

	text-transform: uppercase;

	letter-spacing: .16em;
}


.insights-preview h2 {

	width:
		min(
			100%,
			var(--container)
		);

	margin:
		80px auto 0;

	font-size:
		clamp(
			4.5rem,
			10vw,
			10.5rem
		);

	line-height: .78;

	letter-spacing: -.078em;

	font-weight: 500;

	text-transform: uppercase;
}


.insights-preview h2 span {

	color:
		#7754ce;

	font-style: italic;

	font-weight: 400;
}



/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes project-ring-spin {

	to {
		transform:
			translate(-50%, -50%)
			rotate(360deg);
	}

}


@keyframes project-ring-spin-reverse {

	to {
		transform:
			translate(-50%, -50%)
			rotate(-360deg);
	}

}


@keyframes project-ring-pulse {

	0%,
	100% {

		transform:
			translate(-50%, -50%)
			scale(1);

		opacity: .7;
	}

	50% {

		transform:
			translate(-50%, -50%)
			scale(1.1);

		opacity: 1;
	}

}


@keyframes project-core-morph {

	0%,
	100% {

		border-radius:
			47% 53% 44% 56% /
			53% 46% 54% 47%;

		transform:
			translate(-50%, -50%)
			rotate(0deg);
	}

	40% {

		border-radius:
			58% 42% 57% 43% /
			44% 59% 41% 56%;

		transform:
			translate(-50%, -50%)
			rotate(7deg);
	}

	70% {

		border-radius:
			42% 58% 46% 54% /
			61% 43% 57% 39%;

		transform:
			translate(-50%, -50%)
			rotate(-5deg);
	}

}



/* ============================================================
   PROJECT DIVE — TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.project-portal {

		width: 80vw;

		right: -34vw;

		opacity: .72;
	}


	.project-dive__bottom {

		grid-template-columns:
			1fr auto;
	}

}



/* ============================================================
   PROJECT DIVE — MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.project-dive {

		min-height: 100svh;

		padding-top: 100px;
	}


	.project-dive__inner {

		min-height:
			calc(
				100svh - 150px
			);
	}


	.project-dive__meta {

		flex-direction: column;

		gap: 8px;
	}


	.project-dive__headline h2 {

		font-size:
			clamp(
				4rem,
				18.5vw,
				6rem
			);
	}


	.project-dive__offset {

		margin-left: 20px;
	}


	.project-portal {

		width: 125vw;

		right: -78vw;

		opacity: .5;
	}


	.project-dive__bottom {

		grid-template-columns: 1fr;

		gap: 35px;
	}


	.project-dive__cta {

		width: 150px;

		justify-self: end;
	}


	.project-dive__coordinates span:nth-child(2) {

		display: none;
	}


	.insights-preview h2 {

		font-size:
			clamp(
				4rem,
				18vw,
				6rem
			);
	}

}
/* ============================================================
   08 — INSIGHT HUB
   ============================================================ */

.insight-hub {

	--insight-x: 70%;
	--insight-y: 50%;

	position: relative;

	padding:
		clamp(110px, 13vw, 190px)
		var(--page-padding)
		clamp(110px, 13vw, 180px);

	background:
		#eeeae3;

	color:
		#111214;

	overflow: hidden;

}


.insight-hub__glow {

	position: absolute;

	z-index: 0;

	width: 720px;
	height: 720px;

	left:
		var(--insight-x);

	top:
		var(--insight-y);

	transform:
		translate(-50%, -50%);

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(123, 85, 213, .14),
			transparent 67%
		);

	filter:
		blur(40px);

	pointer-events: none;

}


.insight-hub__inner {

	position: relative;

	z-index: 2;

	max-width:
		var(--container);

	margin:
		0 auto;

}



/* ============================================================
   INTRO
   ============================================================ */

.insight-hub__intro {

	display: grid;

	grid-template-columns:
		minmax(170px, .38fr)
		minmax(0, 1.62fr);

	gap:
		clamp(30px, 6vw, 100px);

}


.insight-hub__label {

	display: flex;

	gap: 16px;

	padding-top: 14px;

}


.insight-hub__heading > p {

	margin:
		0 0 28px;

	font-size: 10px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(17,18,20,.43);

}


.insight-hub__heading h2 {

	margin: 0;

	font-size:
		clamp(
			4.7rem,
			9.7vw,
			10.4rem
		);

	line-height: .78;

	letter-spacing: -.078em;

	text-transform: uppercase;

	font-weight: 500;

}


.insight-hub__heading h2 span {

	display: block;

}


.insight-hub__accent {

	margin-left:
		clamp(
			25px,
			9vw,
			145px
		);

	color:
		#7754cf;

	font-style: italic;

	font-weight: 400;

}



/* ============================================================
   STATEMENT
   ============================================================ */

.insight-hub__statement {

	margin:
		clamp(80px, 10vw, 140px)
		0
		clamp(85px, 11vw, 155px);

	padding-top:
		28px;

	border-top:
		1px solid
		rgba(17,18,20,.16);

	display: grid;

	grid-template-columns:
		1fr .55fr;

	gap:
		clamp(40px, 8vw, 130px);

}


.insight-hub__statement > p {

	margin: 0;

	max-width: 730px;

	font-size:
		clamp(
			1.5rem,
			2.6vw,
			3rem
		);

	line-height: 1.12;

	letter-spacing: -.04em;

}


.insight-hub__statement-meta {

	display: flex;

	align-items: flex-end;

	justify-content: space-between;

	gap: 20px;

}


.insight-hub__statement-meta span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(17,18,20,.42);

}



/* ============================================================
   FEATURED INSIGHT
   ============================================================ */

.featured-insight {

	display: grid;

	grid-template-columns:
		1.25fr .75fr;

	min-height:
		clamp(600px, 54vw, 760px);

	background:
		#111115;

	color:
		#f4f0fa;

	overflow: hidden;

}



/* ============================================================
   FEATURE VISUAL
   ============================================================ */

.featured-insight__visual {

	position: relative;

	overflow: hidden;

	background:

		radial-gradient(
			circle at 65% 35%,
			rgba(181,150,255,.32),
			transparent 29%
		),

		linear-gradient(
			145deg,
			#17131e,
			#342450 52%,
			#0b0a0d
		);

}


.featured-insight__grid {

	position: absolute;

	inset: 0;

	background-image:

		linear-gradient(
			rgba(255,255,255,.055) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(255,255,255,.055) 1px,
			transparent 1px
		);

	background-size:
		70px 70px;

	mask-image:
		radial-gradient(
			circle at center,
			black,
			transparent 80%
		);

}



/* ============================================================
   INSIGHT ORB
   ============================================================ */

.featured-insight__orb {

	position: absolute;

	width:
		min(43vw, 570px);

	aspect-ratio: 1;

	top: 50%;
	left: 52%;

	transform:
		translate(-50%, -50%);

}


.featured-insight__orbit {

	position: absolute;

	top: 50%;
	left: 50%;

	border-radius: 50%;

	border:
		1px solid
		rgba(255,255,255,.18);

	transform:
		translate(-50%, -50%);

}


.featured-insight__orbit--one {

	width: 100%;
	height: 100%;

	animation:
		insight-spin
		28s linear infinite;

}


.featured-insight__orbit--two {

	width: 67%;
	height: 67%;

	border-style: dashed;

	animation:
		insight-spin-reverse
		19s linear infinite;

}


.featured-insight__core {

	position: absolute;

	top: 50%;
	left: 50%;

	width: 34%;

	aspect-ratio: 1;

	transform:
		translate(-50%, -50%);

	border-radius:
		43% 57% 62% 38% /
		52% 40% 60% 48%;

	background:

		radial-gradient(
			circle at 33% 28%,
			#fff,
			transparent 8%
		),

		linear-gradient(
			145deg,
			#e1d6ff,
			#906de1 41%,
			#33244f 70%,
			#0c0a0f
		);

	box-shadow:

		inset
		-22px -28px 50px
		rgba(0,0,0,.45),

		0 0 90px
		rgba(145,105,225,.35);

	animation:
		insight-core
		7s ease-in-out infinite;

}



/* ============================================================
   VISUAL META
   ============================================================ */

.featured-insight__visual-meta {

	position: absolute;

	z-index: 4;

	left: 25px;
	right: 25px;
	top: 23px;

	display: flex;

	justify-content: space-between;

	font-size: 7px;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.45);

}


.featured-insight__watermark {

	position: absolute;

	z-index: 2;

	left: -3%;

	bottom: -5%;

	font-size:
		clamp(
			8rem,
			17vw,
			18rem
		);

	line-height: .7;

	letter-spacing: -.08em;

	font-weight: 600;

	color:
		rgba(255,255,255,.045);

}



/* ============================================================
   FEATURE CONTENT
   ============================================================ */

.featured-insight__content {

	padding:
		clamp(30px, 4vw, 60px);

	display: flex;

	flex-direction: column;

	justify-content: space-between;

	border-left:
		1px solid
		rgba(255,255,255,.13);

}


.featured-insight__top {

	display: flex;

	justify-content: space-between;

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(255,255,255,.42);

}


.featured-insight__content h3 {

	margin:
		auto 0;

	font-size:
		clamp(
			2.7rem,
			4.8vw,
			5.5rem
		);

	line-height: .89;

	letter-spacing: -.06em;

	font-weight: 500;

}


.featured-insight__bottom {

	padding-top: 24px;

	border-top:
		1px solid
		rgba(255,255,255,.14);

	display: flex;

	align-items: center;

	justify-content: space-between;

}


.featured-insight__bottom span:first-child {

	font-size: 9px;

	text-transform: uppercase;

	letter-spacing: .14em;

	color:
		rgba(255,255,255,.5);

}


.featured-insight__arrow {

	display: grid;

	place-items: center;

	width: 46px;
	height: 46px;

	border:
		1px solid
		rgba(255,255,255,.25);

	border-radius: 50%;

	transition:
		background .3s ease,
		color .3s ease,
		transform .3s ease;

}


.featured-insight:hover
.featured-insight__arrow {

	background:
		#f4f0fa;

	color:
		#111115;

	transform:
		rotate(45deg);

}



/* ============================================================
   INSIGHT TAPE
   ============================================================ */

.insight-tape {

	margin:
		clamp(70px, 9vw, 120px)
		calc(
			var(--page-padding) * -1
		)
		0;

	overflow: hidden;

	border-top:
		1px solid
		rgba(17,18,20,.15);

	border-bottom:
		1px solid
		rgba(17,18,20,.15);

}


.insight-tape__track {

	width: max-content;

	display: flex;

	align-items: center;

	gap: 38px;

	padding:
		19px 0;

	animation:
		insight-marquee
		27s linear infinite;

}


.insight-tape__track span {

	font-size:
		clamp(
			1.2rem,
			2.1vw,
			2.2rem
		);

	letter-spacing: -.025em;

	white-space: nowrap;

}


.insight-tape__track i {

	font-style: normal;

	color:
		#7754cf;

}



/* ============================================================
   FOOTER LINE
   ============================================================ */

.insight-hub__footer {

	display: flex;

	align-items: center;

	gap: 14px;

	margin-top: 32px;

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .15em;

	color:
		rgba(17,18,20,.37);

}


.insight-hub__footer-line {

	flex: 1;

	height: 1px;

	background:
		rgba(17,18,20,.13);

}



/* ============================================================
   09 — FOOTER PREVIEW
   ============================================================ */

.footer-preview {

	min-height: 72vh;

	padding:
		clamp(100px, 12vw, 170px)
		var(--page-padding);

	background:
		#0b0a0e;

	color:
		#f5f1fa;

	display: flex;

	flex-direction: column;

	justify-content: space-between;

}


.footer-preview__top {

	width:
		min(
			100%,
			var(--container)
		);

	margin:
		0 auto;

	display: flex;

	justify-content: space-between;

	font-size: 9px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(255,255,255,.4);

}


.footer-preview h2 {

	width:
		min(
			100%,
			var(--container)
		);

	margin:
		70px auto 0;

	font-size:
		clamp(
			5rem,
			11vw,
			11rem
		);

	line-height: .76;

	letter-spacing: -.08em;

	text-transform: uppercase;

	font-weight: 500;

}


.footer-preview h2 span {

	display: block;

}


.footer-preview h2 span:last-child {

	margin-left:
		clamp(
			20px,
			10vw,
			160px
		);

	color:
		#c7b4ff;

	font-style: italic;

	font-weight: 400;

}



/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes insight-spin {

	to {
		transform:
			translate(-50%, -50%)
			rotate(360deg);
	}

}


@keyframes insight-spin-reverse {

	to {
		transform:
			translate(-50%, -50%)
			rotate(-360deg);
	}

}


@keyframes insight-core {

	0%,
	100% {

		transform:
			translate(-50%, -50%)
			rotate(0deg);

		border-radius:
			43% 57% 62% 38% /
			52% 40% 60% 48%;

	}

	50% {

		transform:
			translate(-50%, -53%)
			rotate(8deg);

		border-radius:
			58% 42% 39% 61% /
			43% 57% 43% 57%;

	}

}


@keyframes insight-marquee {

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

}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.insight-hub__intro {

		grid-template-columns: 1fr;

	}


	.insight-hub__statement {

		grid-template-columns: 1fr;

	}


	.featured-insight {

		grid-template-columns: 1fr;

	}


	.featured-insight__visual {

		min-height: 550px;

	}


	.featured-insight__content {

		min-height: 470px;

		border-left: 0;

		border-top:
			1px solid
			rgba(255,255,255,.13);

	}

}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.insight-hub {

		padding-top: 90px;

		padding-bottom: 100px;

	}


	.insight-hub__heading h2 {

		font-size:
			clamp(
				4rem,
				18vw,
				6.1rem
			);

	}


	.insight-hub__accent {

		margin-left: 15px;

	}


	.insight-hub__statement > p {

		font-size: 1.5rem;

	}


	.insight-hub__statement-meta {

		flex-direction: column;

		align-items: flex-start;

		gap: 7px;

	}


	.featured-insight__visual {

		min-height: 460px;

	}


	.featured-insight__orb {

		width: 120vw;

	}


	.featured-insight__content {

		min-height: 410px;

		padding: 25px 20px;

	}


	.featured-insight__content h3 {

		font-size:
			clamp(
				2.8rem,
				13vw,
				4rem
			);

	}


	.footer-preview h2 {

		font-size:
			clamp(
				4rem,
				18vw,
				6rem
			);

	}

}
/* ============================================================
   09 — FINAL FOOTER
   ============================================================ */

.site-footer {
	position: relative;

	background:
		#09080c;

	color:
		#f5f1fa;

	padding:
		clamp(100px, 11vw, 160px)
		var(--page-padding)
		0;

	overflow: hidden;
}


.site-footer__inner {
	position: relative;

	max-width:
		var(--container);

	margin:
		0 auto;
}



/* ============================================================
   FOOTER HERO
   ============================================================ */

.site-footer__hero {
	padding-bottom:
		clamp(110px, 14vw, 200px);
}


.site-footer__meta {
	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 25px;

	padding-bottom: 25px;

	border-bottom:
		1px solid
		rgba(255,255,255,.14);

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);
}


.site-footer__hero h2 {
	margin:
		clamp(65px, 8vw, 115px)
		0
		clamp(60px, 8vw, 110px);

	font-size:
		clamp(
			5rem,
			11.5vw,
			12rem
		);

	line-height: .74;

	letter-spacing: -.085em;

	text-transform: uppercase;

	font-weight: 500;
}


.site-footer__hero h2 span {
	display: block;
}


.site-footer__hero h2 span:nth-child(2) {
	margin-left:
		clamp(
			20px,
			9vw,
			145px
		);
}


.site-footer__accent {
	margin-left:
		clamp(
			50px,
			17vw,
			270px
		);

	color:
		#c8b5ff;

	font-style: italic;

	font-weight: 400;
}



/* ============================================================
   PROJECT LINK
   ============================================================ */

.site-footer__project {
	position: relative;

	display: flex;

	align-items: center;

	justify-content: space-between;

	padding:
		27px 0;

	border-top:
		1px solid
		rgba(255,255,255,.17);

	border-bottom:
		1px solid
		rgba(255,255,255,.17);

	font-size:
		clamp(
			1.4rem,
			2.5vw,
			2.8rem
		);

	transition:
		padding .4s
		cubic-bezier(.2,.8,.2,1),
		background .35s ease,
		color .35s ease;
}


.site-footer__project:hover {
	padding-left: 25px;
	padding-right: 25px;

	background:
		#c8b5ff;

	color:
		#09080c;
}



/* ============================================================
   INFORMATION
   ============================================================ */

.site-footer__information {
	display: grid;

	grid-template-columns:
		1.15fr
		.85fr
		.85fr;

	gap:
		clamp(35px, 6vw, 95px);

	padding:
		clamp(75px, 9vw, 125px)
		0;

	border-bottom:
		1px solid
		rgba(255,255,255,.14);
}


.site-footer__label {
	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);
}



/* ============================================================
   SERVICES
   ============================================================ */

.site-footer__services {
	display: flex;

	flex-direction: column;

	gap: 35px;
}


.site-footer__service-links {
	display: flex;

	flex-direction: column;
}


.site-footer__service-links span {
	display: block;

	padding:
		11px 0;

	border-bottom:
		1px solid
		rgba(255,255,255,.08);

	font-size:
		clamp(
			1.15rem,
			1.8vw,
			1.9rem
		);

	line-height: 1;

	letter-spacing: -.03em;

	color:
		rgba(255,255,255,.75);

	transition:
		color .3s ease,
		padding-left .3s ease;
}


.site-footer__service-links span:hover {
	padding-left: 10px;

	color:
		#c8b5ff;
}



/* ============================================================
   OFFICES
   ============================================================ */

.site-footer__office {
	position: relative;
}


.site-footer__office-top {
	display: flex;

	align-items: center;

	justify-content: space-between;

	margin-bottom: 40px;
}


.site-footer__office-number {
	font-size: 8px;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.25);
}


.site-footer__office h3 {
	margin: 0;

	font-size:
		clamp(
			1.8rem,
			2.6vw,
			3rem
		);

	line-height: .94;

	letter-spacing: -.045em;

	font-weight: 500;

	text-transform: uppercase;
}


.site-footer__registration {
	margin:
		24px 0;

	font-size: 8px;

	letter-spacing: .13em;

	color:
		rgba(255,255,255,.35);
}


.site-footer__office address {
	font-style: normal;

	font-size:
		clamp(
			.95rem,
			1.25vw,
			1.18rem
		);

	line-height: 1.55;

	color:
		rgba(255,255,255,.58);
}



/* ============================================================
   BOTTOM
   ============================================================ */

.site-footer__bottom {
	position: relative;

	z-index: 4;

	padding:
		35px 0
		45px;

	display: grid;

	grid-template-columns:
		1fr auto 1fr;

	align-items: center;

	gap: 30px;
}


.site-footer__brand {
	display: flex;

	align-items: center;

	gap: 12px;
}


.site-footer__brand-mark {
	width: 36px;
	height: 36px;

	display: grid;

	place-items: center;

	border:
		1px solid
		rgba(255,255,255,.4);

	border-radius: 50%;

	font-size: 11px;
}


.site-footer__brand > div {
	display: flex;

	flex-direction: column;

	font-size: 9px;

	line-height: 1;

	letter-spacing: .16em;
}


.site-footer__brand strong {
	font-weight: 600;
}


.site-footer__brand > div span {
	margin-top: 3px;

	color:
		rgba(255,255,255,.5);
}



/* ============================================================
   LOCATIONS
   ============================================================ */

.site-footer__locations {
	display: flex;

	align-items: center;

	gap: 12px;

	font-size: 8px;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);
}


.site-footer__bottom-line {
	width: 36px;
	height: 1px;

	background:
		rgba(255,255,255,.2);
}



/* ============================================================
   BACK TO TOP
   ============================================================ */

.site-footer__top {
	justify-self: end;

	display: flex;

	align-items: center;

	gap: 15px;

	font-size: 9px;

	text-transform: uppercase;

	letter-spacing: .14em;

	color:
		rgba(255,255,255,.6);

	transition:
		color .3s ease;
}


.site-footer__top:hover {
	color:
		#c8b5ff;
}



/* ============================================================
   GIANT WORDMARK
   ============================================================ */

.site-footer__wordmark {
	position: relative;

	left: 50%;

	width:
		100vw;

	transform:
		translateX(-50%);

	margin-top:
		clamp(30px, 5vw, 80px);

	margin-bottom:
		-.11em;

	font-size:
		clamp(
			7rem,
			19vw,
			22rem
		);

	line-height: .72;

	letter-spacing: -.09em;

	text-align: center;

	font-weight: 600;

	color:
		rgba(255,255,255,.055);

	white-space: nowrap;

	user-select: none;

	pointer-events: none;
}



/* ============================================================
   FOOTER TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.site-footer__information {
		grid-template-columns:
			1fr 1fr;
	}


	.site-footer__services {
		grid-column:
			1 / -1;
	}


	.site-footer__service-links {
		display: grid;

		grid-template-columns:
			1fr 1fr;
	}


	.site-footer__service-links span:nth-child(even) {
		padding-left: 20px;

		border-left:
			1px solid
			rgba(255,255,255,.08);
	}

}



/* ============================================================
   FOOTER MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.site-footer {
		padding-top: 90px;
	}


	.site-footer__meta {
		align-items: flex-start;

		flex-direction: column;

		gap: 8px;
	}


	.site-footer__hero h2 {
		font-size:
			clamp(
				4.2rem,
				19vw,
				6.3rem
			);
	}


	.site-footer__hero h2 span:nth-child(2),
	.site-footer__accent {
		margin-left: 18px;
	}


	.site-footer__information {
		grid-template-columns: 1fr;

		gap: 70px;
	}


	.site-footer__services {
		grid-column: auto;
	}


	.site-footer__service-links {
		grid-template-columns: 1fr;
	}


	.site-footer__service-links span:nth-child(even) {
		padding-left: 0;

		border-left: 0;
	}


	.site-footer__bottom {
		grid-template-columns:
			1fr auto;
	}


	.site-footer__locations {
		display: none;
	}


	.site-footer__wordmark {
		font-size: 30vw;
	}

}
/* ============================================================
   TRINOVIK SIGNAL HERO — V2
   ============================================================ */

.signal-hero {
	--signal-accent: #cdbdff;

	position: relative;

	width: 100%;
	min-height: 100svh;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 50% 38%,
			rgba(98, 70, 170, .14),
			transparent 31%
		),
		#070709;

	color: #f6f3fa;
}


/* ============================================================
   CANVAS
   ============================================================ */

.signal-hero__canvas {
	position: absolute;

	z-index: 2;

	inset: 0;

	width: 100%;
	height: 100%;

	pointer-events: none;
}


/* ============================================================
   ATMOSPHERE
   ============================================================ */

.signal-hero__ambient {
	position: absolute;

	z-index: 1;

	width: 70vw;
	height: 70vw;

	max-width: 1050px;
	max-height: 1050px;

	top: 38%;
	left: 50%;

	transform: translate(-50%, -50%);

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(172, 143, 255, .11),
			transparent 67%
		);

	filter: blur(50px);

	pointer-events: none;
}


/* ============================================================
   ARCHITECTURAL FRAME
   ============================================================ */

.signal-hero__frame {
	position: absolute;

	z-index: 1;

	inset:
		88px
		var(--page-padding)
		45px;

	border-left:
		1px solid
		rgba(255,255,255,.045);

	border-right:
		1px solid
		rgba(255,255,255,.045);

	pointer-events: none;
}


.signal-hero__frame::before,
.signal-hero__frame::after {
	content: "";

	position: absolute;

	top: 0;
	bottom: 0;

	width: 1px;

	background:
		rgba(255,255,255,.035);
}


.signal-hero__frame::before {
	left: 33.333%;
}


.signal-hero__frame::after {
	right: 33.333%;
}


/* ============================================================
   INNER
   ============================================================ */

.signal-hero__inner {
	position: relative;

	z-index: 4;

	width:
		min(
			calc(
				100% -
				2 * var(--page-padding)
			),
			var(--container)
		);

	min-height: 100svh;

	margin: 0 auto;

	padding:
		clamp(112px, 13vh, 150px)
		0
		34px;

	display: flex;
	flex-direction: column;
}


/* ============================================================
   TOP
   ============================================================ */

.signal-hero__top {
	display: flex;

	justify-content: space-between;
	align-items: center;

	gap: 30px;

	font-size: 8px;

	line-height: 1;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.38);
}


.signal-hero__top-left,
.signal-hero__top-right {
	display: flex;

	align-items: center;

	gap: 12px;
}


.signal-hero__live-dot {
	width: 6px;
	height: 6px;

	border-radius: 50%;

	background: #baffcb;

	box-shadow:
		0 0 18px
		rgba(186,255,203,.75);
}


.signal-hero__top-line {
	width: 28px;
	height: 1px;

	background:
		rgba(255,255,255,.18);
}


/* ============================================================
   PARTICLE STAGE
   ============================================================ */

.signal-hero__stage {
	position: relative;

	flex: 1;

	min-height:
		clamp(300px, 46vh, 570px);

	display: flex;

	align-items: flex-start;
	justify-content: center;

	pointer-events: none;
}


.signal-hero__sequence {
	position: absolute;

	z-index: 5;

	top: 13%;
	left: 0;

	display: flex;

	flex-direction: column;

	gap: 5px;

	font-size: 7px;

	text-transform: uppercase;

	letter-spacing: .2em;

	color:
		rgba(255,255,255,.28);
}


.signal-hero__sequence strong {
	font-size: 8px;

	font-weight: 500;

	color:
		var(--signal-accent);

	transition:
		color .4s ease;
}


/* ============================================================
   HERO CONTENT
   ============================================================ */

.signal-hero__content {
	position: relative;

	z-index: 8;

	display: grid;

	grid-template-columns:
		.32fr
		1.68fr;

	gap:
		clamp(30px, 5vw, 80px);

	align-items: start;

	opacity: .16;

	transform:
		translateY(24px);

	transition:
		opacity 1s ease,
		transform 1s
		cubic-bezier(.2,.8,.2,1);
}


.signal-hero.is-resolved
.signal-hero__content {
	opacity: 1;

	transform:
		translateY(0);
}


.signal-hero__eyebrow {
	margin: 11px 0 0;

	max-width: 210px;

	font-size: 9px;

	line-height: 1.5;

	text-transform: uppercase;

	letter-spacing: .15em;

	color:
		rgba(255,255,255,.44);
}


/* ============================================================
   MAIN TITLE
   ============================================================ */

.signal-hero__title {
	grid-column: 2;

	margin: 0;

	font-size:
		clamp(
			4.9rem,
			9.5vw,
			10.2rem
		);

	line-height: .77;

	letter-spacing: -.078em;

	font-weight: 500;

	text-transform: uppercase;
}


.signal-hero__title span {
	display: block;
}


.signal-hero__title span:nth-child(2) {
	margin-left:
		clamp(
			20px,
			8vw,
			130px
		);
}


.signal-hero__title em {
	color:
		var(--signal-accent);

	font-style: italic;

	font-weight: 400;
}


/* ============================================================
   LOWER COPY
   ============================================================ */

.signal-hero__content-bottom {
	grid-column: 2;

	margin-top:
		clamp(30px, 4vw, 55px);

	display: grid;

	grid-template-columns:
		minmax(250px, 450px)
		auto;

	align-items: end;

	gap:
		clamp(35px, 6vw, 100px);
}


.signal-hero__description {
	margin: 0;

	font-size:
		clamp(
			14px,
			1.15vw,
			17px
		);

	line-height: 1.55;

	color:
		rgba(255,255,255,.58);
}


.signal-hero__actions {
	display: flex;

	align-items: center;

	gap: 23px;

	flex-wrap: wrap;
}


/* ============================================================
   HERO BUTTON
   ============================================================ */

.signal-button {
	min-width: 205px;

	padding:
		14px
		17px;

	display: inline-flex;

	justify-content: space-between;
	align-items: center;

	gap: 30px;

	border-radius: 999px;

	background: #f4f0f8;

	color: #09080b;

	font-size: 11px;

	transition:
		transform .35s ease,
		background .35s ease;
}


.signal-button:hover {
	transform:
		translateY(-3px);

	background:
		var(--signal-accent);
}


.signal-text-link {
	display: inline-flex;

	align-items: center;

	gap: 8px;

	padding: 10px 0;

	border-bottom:
		1px solid
		rgba(255,255,255,.25);

	font-size: 11px;
}


/* ============================================================
   BOTTOM
   ============================================================ */

.signal-hero__bottom {
	position: relative;

	z-index: 10;

	margin-top:
		clamp(30px, 5vh, 60px);

	padding-top: 18px;

	display: flex;

	justify-content: space-between;
	align-items: center;

	gap: 30px;

	border-top:
		1px solid
		rgba(255,255,255,.11);

	font-size: 7px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.35);
}


.signal-hero__pillars {
	display: flex;

	gap:
		clamp(18px, 3vw, 45px);
}


.signal-hero__scroll {
	display: flex;

	align-items: center;

	gap: 12px;
}


.signal-hero__scroll-arrow {
	font-size: 13px;

	animation:
		signal-scroll
		1.6s
		ease-in-out
		infinite;
}


@keyframes signal-scroll {

	0%,
	100% {
		transform:
			translateY(-2px);
	}

	50% {
		transform:
			translateY(4px);
	}

}


/* ============================================================
   SCREEN READER
   ============================================================ */

.screen-reader-text {
	position: absolute !important;

	width: 1px !important;
	height: 1px !important;

	padding: 0 !important;
	margin: -1px !important;

	overflow: hidden !important;

	clip:
		rect(
			0,
			0,
			0,
			0
		) !important;

	white-space: nowrap !important;

	border: 0 !important;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.signal-hero__stage {
		min-height: 43vh;
	}


	.signal-hero__content {
		grid-template-columns: 1fr;
	}


	.signal-hero__eyebrow,
	.signal-hero__title,
	.signal-hero__content-bottom {
		grid-column: 1;
	}


	.signal-hero__eyebrow {
		margin-bottom: 23px;
	}


	.signal-hero__content-bottom {
		grid-template-columns:
			1fr;
	}


	.signal-hero__title {
		font-size:
			clamp(
				5rem,
				13vw,
				8rem
			);
	}

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.signal-hero__inner {
		padding:
			110px
			0
			22px;
	}


	.signal-hero__top-right span:nth-child(2),
	.signal-hero__top-line,
	.signal-hero__top-right span:nth-child(4) {
		display: none;
	}


	.signal-hero__stage {
		min-height: 39vh;
	}


	.signal-hero__sequence {
		top: 12%;
	}


	.signal-hero__title {
		font-size:
			clamp(
				3.9rem,
				18.5vw,
				6rem
			);
	}


	.signal-hero__title span:nth-child(2) {
		margin-left: 15px;
	}


	.signal-hero__eyebrow {
		max-width: 260px;
	}


	.signal-hero__content-bottom {
		margin-top: 28px;

		gap: 25px;
	}


	.signal-hero__actions {
		align-items: flex-start;

		flex-direction: column;
	}


	.signal-button {
		width: 100%;
	}


	.signal-hero__bottom {
		margin-top: 34px;
	}


	.signal-hero__pillars {
		display: none;
	}

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (
	prefers-reduced-motion: reduce
) {

	.signal-hero__content {
		opacity: 1;
		transform: none;
	}

}
/* ============================================================
   02 — CINEMATIC SELECTED WORK
   ============================================================ */

.cinema-work {

	position: relative;

	height: 400vh;

	background:
		#09090b;

	color:
		#f6f3fa;

}


/* ============================================================
   STICKY VIEWPORT
   ============================================================ */

.cinema-work__sticky {

	position: sticky;

	top: 0;

	height: 100svh;

	overflow: hidden;

	background:
		#09090b;

}


/* ============================================================
   TOP
   ============================================================ */

.cinema-work__top {

	position: absolute;

	z-index: 20;

	top:
		clamp(
			95px,
			11vh,
			125px
		);

	left:
		var(--page-padding);

	right:
		var(--page-padding);

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 30px;

	pointer-events: none;

}


.cinema-work__top > div {

	display: flex;

	align-items: center;

	gap: 12px;

}


.cinema-work__top span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .18em;

	color:
		rgba(255,255,255,.46);

}



/* ============================================================
   STAGE
   ============================================================ */

.cinema-work__stage {

	position: absolute;

	inset: 0;

}



/* ============================================================
   PROJECT
   ============================================================ */

.cinema-project {

	position: absolute;

	inset: 0;

	opacity: 0;

	visibility: hidden;

	transform:
		scale(1.055);

	transition:

		opacity .75s ease,

		visibility .75s ease,

		transform 1.15s
		cubic-bezier(.2,.8,.2,1);

}


.cinema-project.is-active {

	opacity: 1;

	visibility: visible;

	transform:
		scale(1);

}



/* ============================================================
   MEDIA
   ============================================================ */

.cinema-project__media {

	--project-x: 0px;
	--project-y: 0px;

	position: absolute;

	inset:
		clamp(
			150px,
			16vh,
			185px
		)

		clamp(
			38px,
			6vw,
			95px
		)

		clamp(
			90px,
			10vh,
			120px
		);

	overflow: hidden;

	background:
		#18171b;

	transform:
		translate(
			var(--project-x),
			var(--project-y)
		);

	transition:
		transform .15s linear;

}


.cinema-project__media img {

	position: absolute;

	inset: 0;

	width: 100%;

	height: 100%;

	object-fit: cover;

	transform:
		scale(1.07);

	transition:
		transform 1.8s
		cubic-bezier(.2,.8,.2,1);

}


.cinema-project.is-active
.cinema-project__media img {

	transform:
		scale(1);

}



/* ============================================================
   IMAGE WASH
   ============================================================ */

.cinema-project__wash {

	position: absolute;

	z-index: 2;

	inset: 0;

	pointer-events: none;

	background:

		linear-gradient(
			90deg,
			rgba(7,7,9,.78),
			rgba(7,7,9,.18) 45%,
			rgba(7,7,9,.12)
		),

		linear-gradient(
			0deg,
			rgba(7,7,9,.52),
			transparent 45%
		);

}



/* ============================================================
   GRID
   ============================================================ */

.cinema-project__grid {

	position: absolute;

	z-index: 3;

	inset: 0;

	background-image:

		linear-gradient(
			rgba(255,255,255,.045) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(255,255,255,.045) 1px,
			transparent 1px
		);

	background-size:
		90px 90px;

	mix-blend-mode:
		overlay;

	opacity: .5;

	pointer-events: none;

}



/* ============================================================
   FALLBACK ARTWORK
   ============================================================ */

.cinema-project__fallback {

	position: absolute;

	inset: 0;

	display: flex;

	align-items: center;

	justify-content: center;

	overflow: hidden;

}


.cinema-project__fallback span {

	font-size:
		clamp(
			18rem,
			37vw,
			45rem
		);

	line-height: .7;

	letter-spacing: -.12em;

	font-weight: 600;

	color:
		rgba(255,255,255,.08);

}



/* SHELL */

.cinema-project__fallback--01 {

	background:

		radial-gradient(
			circle at 72% 28%,
			rgba(255,224,120,.55),
			transparent 20%
		),

		linear-gradient(
			135deg,
			#5a151b,
			#dc312d 42%,
			#efa52b 100%
		);

}



/* SUN LIFE */

.cinema-project__fallback--02 {

	background:

		radial-gradient(
			circle at 70% 32%,
			rgba(255,255,255,.38),
			transparent 22%
		),

		linear-gradient(
			135deg,
			#452044,
			#cb5658 50%,
			#f4a849
		);

}



/* AXIATA */

.cinema-project__fallback--03 {

	background:

		radial-gradient(
			circle at 65% 28%,
			rgba(177,234,255,.36),
			transparent 22%
		),

		linear-gradient(
			135deg,
			#121f3d,
			#375ca1 48%,
			#8a66cc
		);

}



/* MISC */

.cinema-project__fallback--04 {

	background:

		radial-gradient(
			circle at 68% 30%,
			rgba(104,243,224,.28),
			transparent 22%
		),

		linear-gradient(
			135deg,
			#09262c,
			#126f77 50%,
			#60bd9d
		);

}



/* ============================================================
   PROJECT COPY
   ============================================================ */

.cinema-project__copy {

	position: absolute;

	z-index: 10;

	left:
		clamp(
			38px,
			7vw,
			110px
		);

	top: 50%;

	transform:
		translateY(-50%);

	max-width:
		min(
			70vw,
			1050px
		);

	pointer-events: none;

}



/* ============================================================
   INDEX
   ============================================================ */

.cinema-project__index {

	display: flex;

	align-items: center;

	gap: 13px;

	margin-bottom:
		clamp(
			25px,
			3vw,
			45px
		);

}


.cinema-project__index span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .18em;

	color:
		rgba(255,255,255,.54);

}



/* ============================================================
   TITLE
   ============================================================ */

.cinema-project__copy h2 {

	margin: 0;

	font-size:
		clamp(
			5rem,
			10.8vw,
			11.5rem
		);

	line-height: .73;

	letter-spacing: -.085em;

	text-transform: uppercase;

	font-weight: 500;

}


.cinema-project__copy h2 span {

	display: block;

	opacity: 0;

	transform:
		translateY(55px);

	transition:

		opacity .7s ease,

		transform .9s
		cubic-bezier(.2,.8,.2,1);

}


.cinema-project.is-active
.cinema-project__copy h2 span {

	opacity: 1;

	transform:
		translateY(0);

}



/*
 * Cascading title movement.
 */

.cinema-project.is-active
.cinema-project__copy h2 span:nth-child(1) {

	transition-delay:
		.08s;

}


.cinema-project.is-active
.cinema-project__copy h2 span:nth-child(2) {

	transition-delay:
		.14s;

}


.cinema-project.is-active
.cinema-project__copy h2 span:nth-child(3) {

	transition-delay:
		.20s;

}


.cinema-project.is-active
.cinema-project__copy h2 span:nth-child(4) {

	transition-delay:
		.26s;

}



/* ============================================================
   PROGRESS
   ============================================================ */

.cinema-work__progress {

	position: absolute;

	z-index: 25;

	left:
		var(--page-padding);

	right:
		var(--page-padding);

	bottom: 20px;

	display: grid;

	grid-template-columns:
		1fr auto;

	align-items: center;

	gap: 16px;

}


.cinema-work__progress-track {

	position: relative;

	height: 1px;

	background:
		rgba(255,255,255,.15);

}


.cinema-work__progress-fill {

	position: absolute;

	inset:
		0 auto 0 0;

	width: 0%;

	background:
		#cab8ff;

}


.cinema-work__progress > span {

	font-size: 7px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.38);

}



/* ============================================================
   PROJECT TRANSITION FLASH
   ============================================================ */

.cinema-work::before {

	content: "";

	position: absolute;

	z-index: 40;

	top: 0;

	left: 50%;

	width: 1px;

	height: 100vh;

	background:

		linear-gradient(
			to bottom,
			transparent,
			rgba(205,189,255,.55),
			transparent
		);

	transform:
		translateX(-50%);

	opacity: .28;

	pointer-events: none;

}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.cinema-project__media {

		inset:
			150px
			30px
			95px;

	}


	.cinema-project__copy {

		left: 50px;

		max-width: 80vw;

	}


	.cinema-project__copy h2 {

		font-size:
			clamp(
				4.8rem,
				13vw,
				8rem
			);

	}

}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	/*
	 * On mobile we keep the cinematic
	 * feel but use normal document flow
	 * instead of trapping the user in
	 * a very long sticky sequence.
	 */

	.cinema-work {

		height: auto;

		background:
			#09090b;

	}


	.cinema-work__sticky {

		position: relative;

		height: auto;

		overflow: visible;

		padding:
			95px
			var(--page-padding)
			75px;

	}


	.cinema-work__top {

		position: relative;

		inset: auto;

		margin-bottom: 55px;

	}


	.cinema-work__stage {

		position: relative;

		display: flex;

		flex-direction: column;

		gap: 90px;

	}


	.cinema-project {

		position: relative;

		inset: auto;

		min-height: 82svh;

		opacity: 1;

		visibility: visible;

		transform: none;

	}


	.cinema-project__media {

		position: absolute;

		inset: 0;

	}


	.cinema-project__copy {

		left: 22px;

		right: 22px;

		top: auto;

		bottom: 85px;

		transform: none;

		max-width: none;

	}


	.cinema-project__copy h2 {

		font-size:
			clamp(
				4rem,
				17vw,
				5.8rem
			);

	}


	.cinema-project__copy h2 span {

		opacity: 1;

		transform: none;

	}

	.cinema-work__progress {

		display: none;

	}

}
/* ============================================================
   03 — TRINOVIK METHOD
   ============================================================ */

.trinovik-method {

	--method-accent:
		#c8b5ff;

	position: relative;

	height: 300vh;

	background:
		#f0eee8;

	color:
		#111214;

}


/* ============================================================
   STICKY
   ============================================================ */

.trinovik-method__sticky {

	position: sticky;

	top: 0;

	height: 100svh;

	overflow: hidden;

	padding:
		clamp(95px, 11vh, 125px)
		var(--page-padding)
		32px;

	background:
		#f0eee8;

}


/* ============================================================
   GRID BACKGROUND
   ============================================================ */

.trinovik-method__sticky::before {

	content: "";

	position: absolute;

	inset: 0;

	background-image:

		linear-gradient(
			rgba(17,18,20,.055) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(17,18,20,.055) 1px,
			transparent 1px
		);

	background-size:
		82px 82px;

	mask-image:
		radial-gradient(
			circle at center,
			black,
			transparent 82%
		);

	pointer-events: none;

}


/* ============================================================
   TOP
   ============================================================ */

.trinovik-method__top {

	position: relative;

	z-index: 10;

	width:
		min(
			100%,
			var(--container)
		);

	margin:
		0 auto;

	display: flex;

	justify-content: space-between;

	align-items: center;

}


.trinovik-method__top > div {

	display: flex;

	gap: 12px;

}


.trinovik-method__top span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(17,18,20,.42);

}


/* ============================================================
   INTRO
   ============================================================ */

.trinovik-method__intro {

	position: absolute;

	z-index: 10;

	top:
		clamp(
			135px,
			16vh,
			180px
		);

	left:
		var(--page-padding);

}


.trinovik-method__intro p {

	margin:
		0 0 16px;

	font-size: 9px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(17,18,20,.42);

}


.trinovik-method__intro h2 {

	margin: 0;

	font-size:
		clamp(
			1.7rem,
			2.6vw,
			3rem
		);

	line-height: 1;

	letter-spacing: -.04em;

	font-weight: 500;

}


.trinovik-method__intro h2 span {

	color:
		#7957ce;

	font-style: italic;

}


/* ============================================================
   CENTRAL SIGNAL LINE
   ============================================================ */

.method-signal {

	position: absolute;

	z-index: 5;

	left:
		var(--page-padding);

	right:
		var(--page-padding);

	top: 49%;

	transform:
		translateY(-50%);

	height: 80px;

}


.method-signal__track {

	position: absolute;

	left: 0;

	right: 0;

	top: 50%;

	height: 1px;

	background:
		rgba(17,18,20,.14);

}


.method-signal__progress {

	position: absolute;

	left: 0;

	top: 0;

	width: 0%;

	height: 100%;

	background:
		var(--method-accent);

	box-shadow:
		0 0 25px
		rgba(121,87,206,.4);

	transition:
		background .5s ease;

}


/* ============================================================
   NODES
   ============================================================ */

.method-signal__node {

	position: absolute;

	top: 50%;

	width: 48px;

	height: 48px;

	transform:
		translate(-50%, -50%);

	display: grid;

	place-items: center;

	border:
		1px solid
		rgba(17,18,20,.18);

	border-radius: 50%;

	background:
		#f0eee8;

	transition:
		background .45s ease,
		color .45s ease,
		transform .45s ease;

}


.method-signal__node span {

	font-size: 8px;

	letter-spacing: .14em;

}


.method-signal__node--01 {
	left: 0%;
}


.method-signal__node--02 {
	left: 50%;
}


.method-signal__node--03 {
	left: 100%;
}


.trinovik-method[data-method-step="0"]
.method-signal__node--01,

.trinovik-method[data-method-step="1"]
.method-signal__node--02,

.trinovik-method[data-method-step="2"]
.method-signal__node--03 {

	background:
		#111214;

	color:
		#f0eee8;

	transform:
		translate(-50%, -50%)
		scale(1.16);

}


/* ============================================================
   STAGE
   ============================================================ */

.trinovik-method__stage {

	position: absolute;

	z-index: 7;

	inset: 0;

	pointer-events: none;

}


/* ============================================================
   PANEL
   ============================================================ */

.method-panel {

	position: absolute;

	left:
		50%;

	top:
		50%;

	width:
		min(
			86vw,
			1300px
		);

	transform:
		translate(-50%, -43%)
		scale(.93);

	opacity: 0;

	visibility: hidden;

	transition:

		opacity .7s ease,

		transform .9s
		cubic-bezier(.2,.8,.2,1),

		visibility .7s ease;

}


.method-panel.is-active {

	opacity: 1;

	visibility: visible;

	transform:
		translate(-50%, -50%)
		scale(1);

}


/* ============================================================
   BIG NUMBER
   ============================================================ */

.method-panel__number {

	position: absolute;

	z-index: -1;

	right: -2%;

	top: -65%;

	font-size:
		clamp(
			17rem,
			35vw,
			40rem
		);

	line-height: .7;

	letter-spacing: -.12em;

	font-weight: 600;

	color:
		rgba(17,18,20,.055);

	user-select: none;

}


/* ============================================================
   TITLE
   ============================================================ */

.method-panel h3 {

	margin: 0;

	font-size:
		clamp(
			7rem,
			16vw,
			17rem
		);

	line-height: .68;

	letter-spacing: -.095em;

	text-transform: uppercase;

	font-weight: 500;

}


.method-panel--strategy h3 {
	color: #111214;
}


.method-panel--creative h3 {
	color: #7957ce;

	font-style: italic;
}


.method-panel--technology h3 {
	color: #111214;
}


/* ============================================================
   PANEL FOOT
   ============================================================ */

.method-panel__footer {

	margin-top:
		clamp(
			38px,
			5vw,
			65px
		);

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 30px;

	padding-top: 16px;

	border-top:
		1px solid
		rgba(17,18,20,.15);

}


.method-panel__footer span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(17,18,20,.48);

}


/* ============================================================
   RESULT
   ============================================================ */

.trinovik-method__result {

	position: absolute;

	z-index: 12;

	left:
		var(--page-padding);

	right:
		var(--page-padding);

	bottom:
		80px;

	display: flex;

	justify-content: space-between;

	align-items: flex-end;

	gap: 40px;

	opacity: .22;

	transition:
		opacity .55s ease,
		transform .55s ease;

}


.trinovik-method.is-complete
.trinovik-method__result {

	opacity: 1;

}


.trinovik-method__result span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(17,18,20,.46);

}


.trinovik-method__result strong {

	max-width: 560px;

	font-size:
		clamp(
			1.8rem,
			3.4vw,
			3.8rem
		);

	line-height: .98;

	letter-spacing: -.045em;

	text-align: right;

	font-weight: 500;

}


/* ============================================================
   BOTTOM
   ============================================================ */

.trinovik-method__bottom {

	position: absolute;

	z-index: 14;

	left:
		var(--page-padding);

	right:
		var(--page-padding);

	bottom: 25px;

	display: flex;

	align-items: center;

	gap: 10px;

	font-size: 7px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(17,18,20,.35);

}


.trinovik-method__bottom-line {

	width: 28px;

	height: 1px;

	background:
		rgba(17,18,20,.18);

}


.trinovik-method__scroll {

	margin-left: auto;

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.method-panel {

		width:
			calc(
				100% -
				2 * var(--page-padding)
			);

	}


	.method-panel h3 {

		font-size:
			clamp(
				6rem,
				17vw,
				11rem
			);

	}


	.trinovik-method__result {

		bottom: 90px;

	}

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	/*
	 * Avoid long sticky trapping
	 * on small screens.
	 */

	.trinovik-method {

		height: auto;

		padding:
			95px
			var(--page-padding)
			85px;

	}


	.trinovik-method__sticky {

		position: relative;

		height: auto;

		overflow: visible;

		padding: 0;

	}


	.trinovik-method__top {

		margin-bottom: 65px;

	}


	.trinovik-method__intro {

		position: relative;

		inset: auto;

		margin-bottom: 70px;

	}


	.method-signal {

		display: none;

	}


	.trinovik-method__stage {

		position: relative;

		inset: auto;

		display: flex;

		flex-direction: column;

		gap: 65px;

	}


	.method-panel {

		position: relative;

		inset: auto;

		width: 100%;

		opacity: 1;

		visibility: visible;

		transform: none;

	}


	.method-panel.is-active {

		transform: none;

	}


	.method-panel__number {

		top: -25px;

		right: 0;

		font-size: 8rem;

	}


	.method-panel h3 {

		font-size:
			clamp(
				4.4rem,
				20vw,
				6.5rem
			);

	}


	.trinovik-method__result {

		position: relative;

		inset: auto;

		margin-top: 85px;

		padding-top: 25px;

		border-top:
			1px solid
			rgba(17,18,20,.15);

		opacity: 1;

		flex-direction: column;

		align-items: flex-start;

	}


	.trinovik-method__result strong {

		text-align: left;

	}


	.trinovik-method__bottom {

		position: relative;

		inset: auto;

		margin-top: 65px;

	}


	.trinovik-method__scroll {

		display: none;

	}

}
/* ============================================================
   04 — SERVICE GENERATOR
   ============================================================ */

.service-generator {
	--service-accent: #c7b5ff;
	--service-bg: #08080b;

	position: relative;

	height: 600vh;

	background:
		var(--service-bg);

	color:
		#f5f2f9;
}


/* ============================================================
   STICKY VIEWPORT
   ============================================================ */

.service-generator__sticky {
	position: sticky;

	top: 0;

	height: 100svh;

	overflow: hidden;

	padding:
		clamp(95px, 11vh, 125px)
		var(--page-padding)
		28px;

	background:
		var(--service-bg);

	transition:
		background .65s ease;
}


/* ============================================================
   BACKGROUND
   ============================================================ */

.service-generator__sticky::before {
	content: "";

	position: absolute;

	inset: 0;

	background:

		radial-gradient(
			circle at 72% 50%,
			color-mix(
				in srgb,
				var(--service-accent) 15%,
				transparent
			),
			transparent 31%
		),

		#08080b;

	transition:
		background .7s ease;

	pointer-events: none;
}


/* ============================================================
   TOP
   ============================================================ */

.service-generator__top {
	position: relative;

	z-index: 20;

	width:
		min(
			100%,
			var(--container)
		);

	margin:
		0 auto;

	display: flex;

	justify-content: space-between;

	align-items: center;
}


.service-generator__top > div {
	display: flex;

	align-items: center;

	gap: 12px;
}


.service-generator__top span {
	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.42);
}


/* ============================================================
   INTRO
   ============================================================ */

.service-generator__intro {
	position: absolute;

	z-index: 12;

	top:
		clamp(
			135px,
			16vh,
			180px
		);

	left:
		var(--page-padding);
}


.service-generator__intro > p {
	margin:
		0 0 16px;

	font-size: 9px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);
}


.service-generator__formula {
	display: flex;

	align-items: center;

	gap: 10px;
}


.service-generator__formula span {
	font-size:
		clamp(
			1rem,
			1.5vw,
			1.35rem
		);

	letter-spacing: -.025em;
}


.service-generator__formula i {
	font-style: normal;

	color:
		var(--service-accent);

	transition:
		color .45s ease;
}


/* ============================================================
   SIGNAL
   ============================================================ */

.service-generator__signal {
	position: absolute;

	z-index: 5;

	top: 50%;

	left:
		var(--page-padding);

	right:
		var(--page-padding);

	transform:
		translateY(-50%);

	height: 65px;

	pointer-events: none;
}


.service-generator__signal-track {
	position: absolute;

	top: 50%;

	left: 0;
	right: 0;

	height: 1px;

	background:
		rgba(255,255,255,.13);
}


.service-generator__signal-progress {
	position: absolute;

	inset:
		0 auto 0 0;

	width: 0%;

	background:
		var(--service-accent);

	box-shadow:
		0 0 35px
		color-mix(
			in srgb,
				var(--service-accent) 50%,
				transparent
		);
}


/* ============================================================
   SIGNAL ENDS
   ============================================================ */

.service-generator__signal-source,
.service-generator__signal-output {
	position: absolute;

	top: 50%;

	transform:
		translateY(-50%);

	width: 72px;
	height: 72px;

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	border:
		1px solid
		rgba(255,255,255,.22);

	border-radius: 50%;

	background:
		#08080b;
}


.service-generator__signal-source {
	left: -2px;
}


.service-generator__signal-output {
	right: -2px;

	border-color:
		var(--service-accent);
}


.service-generator__signal-source span,
.service-generator__signal-output span {
	font-size: 6px;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);
}


.service-generator__signal-source strong,
.service-generator__signal-output strong {
	margin-top: 4px;

	font-size: 10px;

	font-weight: 500;

	letter-spacing: .08em;
}


/* ============================================================
   STAGE
   ============================================================ */

.service-generator__stage {
	position: absolute;

	z-index: 9;

	inset: 0;

	pointer-events: none;
}


/* ============================================================
   SERVICE OUTPUT
   ============================================================ */

.service-output {
	position: absolute;

	inset: 0;

	opacity: 0;

	visibility: hidden;

	transition:
		opacity .65s ease,
		visibility .65s ease;
}


.service-output.is-active {
	opacity: 1;

	visibility: visible;
}


/* ============================================================
   COPY
   ============================================================ */

.service-output__copy {
	position: absolute;

	z-index: 10;

	left:
		clamp(
			35px,
			6vw,
			95px
		);

	top: 54%;

	transform:
		translateY(-50%);

	max-width: 58vw;
}


.service-output__number {
	display: block;

	margin-bottom: 25px;

	font-size: 8px;

	letter-spacing: .17em;

	color:
		var(--service-accent);
}


.service-output__copy h2 {
	margin: 0;

	font-size:
		clamp(
			5.5rem,
			11vw,
			12rem
		);

	line-height: .72;

	letter-spacing: -.09em;

	font-weight: 500;

	text-transform: uppercase;
}


.service-output__copy h2 span {
	display: block;

	color:
		var(--service-accent);

	font-style: italic;

	font-weight: 400;
}


.service-output__copy h2,
.service-output__tags {
	opacity: 0;

	transform:
		translateY(40px);

	transition:
		opacity .65s ease,
		transform .85s
		cubic-bezier(.2,.8,.2,1);
}


.service-output.is-active
.service-output__copy h2,
.service-output.is-active
.service-output__tags {
	opacity: 1;

	transform:
		translateY(0);
}


.service-output.is-active
.service-output__tags {
	transition-delay:
		.14s;
}


/* ============================================================
   TAGS
   ============================================================ */

.service-output__tags {
	margin-top:
		clamp(
			35px,
			5vw,
			60px
		);

	display: flex;

	flex-wrap: wrap;

	gap: 8px;
}


.service-output__tags span {
	padding:
		9px 12px;

	border:
		1px solid
		rgba(255,255,255,.17);

	border-radius:
		999px;

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .11em;

	color:
		rgba(255,255,255,.55);
}


/* ============================================================
   SHARED VISUAL
   ============================================================ */

.service-visual {
	--visual-x: 0px;
	--visual-y: 0px;

	position: absolute;

	z-index: 7;

	width:
		min(
			40vw,
			560px
		);

	aspect-ratio: 1;

	right:
		clamp(
			25px,
			7vw,
			110px
		);

	top: 50%;

	transform:
		translate(
			var(--visual-x),
			calc(
				-50% +
				var(--visual-y)
			)
		);

	opacity: 0;

	transition:
		opacity .75s ease,
		transform .15s linear;
}


.service-output.is-active
.service-visual {
	opacity: 1;
}


/* ============================================================
   01 BRANDING
   ============================================================ */

.service-visual--branding {
	display: grid;

	place-items: center;
}


.brand-shape {
	position: absolute;

	border:
		1px solid
		rgba(203,181,255,.5);
}


.brand-shape--01 {
	width: 82%;
	height: 82%;

	transform:
		rotate(12deg);

	animation:
		brand-rotate
		16s linear infinite;
}


.brand-shape--02 {
	width: 60%;
	height: 60%;

	transform:
		rotate(-20deg);

	animation:
		brand-rotate-reverse
		12s linear infinite;
}


.brand-shape--03 {
	width: 34%;
	height: 34%;

	background:
		var(--service-accent);

	transform:
		rotate(45deg);

	box-shadow:
		0 0 70px
		rgba(199,181,255,.2);
}


.brand-letter {
	position: relative;

	z-index: 4;

	font-size:
		clamp(
			7rem,
			13vw,
			13rem
		);

	line-height: 1;

	font-weight: 600;

	color:
		#09090b;
}


/* ============================================================
   02 CONTENT
   ============================================================ */

.service-visual--content {
	display: flex;

	flex-direction: column;

	justify-content: center;

	gap: 10px;

	overflow: hidden;

	border-top:
		1px solid
		rgba(255,255,255,.14);

	border-bottom:
		1px solid
		rgba(255,255,255,.14);
}


.content-line {
	width: max-content;

	font-size:
		clamp(
			2.8rem,
			5.5vw,
			6rem
		);

	line-height: .9;

	letter-spacing: -.06em;

	font-weight: 500;

	color:
		rgba(255,255,255,.16);

	animation:
		content-slide
		9s linear infinite;
}


.content-line:nth-child(even) {
	color:
		var(--service-accent);

	animation-direction:
		reverse;
}


/* ============================================================
   03 CREATIVE
   ============================================================ */

.service-visual--creative {
	display: grid;

	place-items: center;

	perspective:
		1000px;
}


.creative-plane {
	position: absolute;

	width: 65%;
	height: 65%;

	border:
		1px solid
		rgba(255,255,255,.23);

	backdrop-filter:
		blur(5px);
}


.creative-plane--01 {
	transform:
		rotateX(58deg)
		rotateZ(15deg);
}


.creative-plane--02 {
	transform:
		rotateY(58deg)
		rotateZ(-17deg);

	border-color:
		var(--service-accent);
}


.creative-plane--03 {
	transform:
		rotateX(35deg)
		rotateY(35deg)
		rotateZ(42deg);

	background:
		color-mix(
			in srgb,
				var(--service-accent) 25%,
				transparent
		);
}


.creative-mark {
	position: relative;

	z-index: 4;

	font-size:
		clamp(
			5rem,
			9vw,
			9rem
		);

	color:
		var(--service-accent);

	animation:
		creative-pulse
		3s ease-in-out infinite;
}


/* ============================================================
   04 DIGITAL
   ============================================================ */

.service-visual--digital {
	perspective:
		1100px;
}


.digital-window {
	position: absolute;

	background:
		rgba(255,255,255,.055);

	border:
		1px solid
		rgba(255,255,255,.24);

	backdrop-filter:
		blur(12px);

	box-shadow:
		0 35px 80px
		rgba(0,0,0,.25);
}


.digital-window--desktop {
	width: 82%;
	height: 58%;

	left: 0;
	top: 15%;

	transform:
		rotateY(-12deg)
		rotateX(5deg);
}


.digital-window--mobile {
	width: 28%;
	height: 55%;

	right: 0;
	bottom: 7%;

	border-radius:
		22px;

	transform:
		rotateY(13deg)
		rotateX(-4deg);
}


.digital-window__bar {
	height: 28px;

	border-bottom:
		1px solid
		rgba(255,255,255,.15);
}


.digital-window__content {
	padding: 25px;

	display: flex;

	flex-direction: column;

	gap: 15px;
}


.digital-window__content span {
	display: block;

	height: 10px;

	background:
		var(--service-accent);

	opacity: .7;
}


.digital-window__content span:nth-child(2) {
	width: 65%;
}


.digital-window__content span:nth-child(3) {
	width: 42%;
}


/* ============================================================
   05 MARKETING
   ============================================================ */

.service-visual--marketing {
	display: flex;

	align-items: flex-end;

	justify-content: center;
}


.marketing-chart {
	width: 85%;
	height: 75%;

	display: flex;

	align-items: flex-end;

	gap: 10px;

	border-left:
		1px solid
		rgba(255,255,255,.15);

	border-bottom:
		1px solid
		rgba(255,255,255,.15);

	padding:
		0 15px 0;
}


.marketing-chart span {
	flex: 1;

	height:
		var(--bar-height);

	background:
		linear-gradient(
			to top,
			color-mix(
				in srgb,
					var(--service-accent) 40%,
					transparent
			),
			var(--service-accent)
		);

	transform-origin:
		bottom;

	animation:
		marketing-rise
		2.8s ease-in-out infinite alternate;
}


.marketing-chart span:nth-child(2n) {
	animation-delay:
		-.8s;
}


.marketing-chart span:nth-child(3n) {
	animation-delay:
		-1.4s;
}


.marketing-pulse {
	position: absolute;

	width: 42%;
	aspect-ratio: 1;

	right: 0;
	top: 0;

	border:
		1px solid
		var(--service-accent);

	border-radius: 50%;

	animation:
		marketing-pulse
		2.4s ease-out infinite;
}


/* ============================================================
   06 SOCIAL
   ============================================================ */

.service-visual--social {
	display: grid;

	place-items: center;
}


.social-network {
	position: relative;

	width: 100%;
	height: 100%;
}


.social-node {
	position: absolute;

	width: 34px;
	height: 34px;

	border-radius: 50%;

	background:
		var(--service-accent);

	box-shadow:
		0 0 35px
		color-mix(
			in srgb,
				var(--service-accent) 50%,
				transparent
		);
}


.social-node--01 {
	left: 46%;
	top: 45%;

	width: 62px;
	height: 62px;
}


.social-node--02 {
	left: 15%;
	top: 20%;
}


.social-node--03 {
	right: 13%;
	top: 18%;
}


.social-node--04 {
	left: 18%;
	bottom: 15%;
}


.social-node--05 {
	right: 16%;
	bottom: 19%;
}


.social-line {
	position: absolute;

	height: 1px;

	background:
		linear-gradient(
			90deg,
			transparent,
			var(--service-accent),
			transparent
		);

	transform-origin:
		left center;
}


.social-line--01 {
	width: 39%;

	left: 20%;
	top: 28%;

	transform:
		rotate(27deg);
}


.social-line--02 {
	width: 40%;

	left: 52%;
	top: 48%;

	transform:
		rotate(-35deg);
}


.social-line--03 {
	width: 40%;

	left: 20%;
	top: 67%;

	transform:
		rotate(-30deg);
}


.social-line--04 {
	width: 37%;

	left: 52%;
	top: 54%;

	transform:
		rotate(34deg);
}


/* ============================================================
   BOTTOM
   ============================================================ */

.service-generator__bottom {
	position: absolute;

	z-index: 20;

	left:
		var(--page-padding);

	right:
		var(--page-padding);

	bottom: 24px;

	display: flex;

	align-items: center;

	gap: 10px;

	font-size: 7px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(255,255,255,.34);
}


.service-generator__bottom-line {
	width: 30px;

	height: 1px;

	background:
		rgba(255,255,255,.18);
}


.service-generator__scroll {
	margin-left: auto;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes brand-rotate {
	to {
		transform:
			rotate(372deg);
	}
}


@keyframes brand-rotate-reverse {
	to {
		transform:
			rotate(-380deg);
	}
}


@keyframes content-slide {
	from {
		transform:
			translateX(-15%);
	}

	to {
		transform:
			translateX(15%);
	}
}


@keyframes creative-pulse {
	0%,
	100% {
		transform:
			scale(.9)
			rotate(0deg);
	}

	50% {
		transform:
			scale(1.08)
			rotate(18deg);
	}
}


@keyframes marketing-rise {
	from {
		transform:
			scaleY(.7);
	}

	to {
		transform:
			scaleY(1);
	}
}


@keyframes marketing-pulse {
	0% {
		transform:
			scale(.55);

		opacity: .9;
	}

	100% {
		transform:
			scale(1.4);

		opacity: 0;
	}
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.service-output__copy {
		max-width: 65vw;
	}


	.service-output__copy h2 {
		font-size:
			clamp(
				5rem,
				13vw,
				8rem
			);
	}


	.service-visual {
		width:
			min(
				45vw,
				480px
			);

		right: 20px;

		opacity: .65;
	}

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.service-generator {
		height: auto;

		background:
			#08080b;
	}


	.service-generator__sticky {
		position: relative;

		height: auto;

		overflow: visible;

		padding:
			95px
			var(--page-padding)
			85px;
	}


	.service-generator__intro {
		position: relative;

		inset: auto;

		margin:
			55px 0
			75px;
	}


	.service-generator__formula {
		flex-wrap: wrap;
	}


	.service-generator__signal {
		display: none;
	}


	.service-generator__stage {
		position: relative;

		inset: auto;

		display: flex;

		flex-direction: column;

		gap: 100px;
	}


	.service-output {
		position: relative;

		inset: auto;

		min-height:
			75svh;

		opacity: 1;

		visibility: visible;

		display: flex;

		flex-direction: column;

		justify-content: space-between;
	}


	.service-output__copy {
		position: relative;

		inset: auto;

		transform: none;

		max-width: none;

		z-index: 4;
	}


	.service-output__copy h2,
	.service-output__tags {
		opacity: 1;

		transform: none;
	}


	.service-output__copy h2 {
		font-size:
			clamp(
				4rem,
				18vw,
				6rem
			);
	}


	.service-visual {
		position: relative;

		inset: auto;

		width: 100%;

		max-width: 430px;

		margin:
			50px auto 0;

		transform: none;

		opacity: 1;
	}


	.service-generator__bottom {
		position: relative;

		inset: auto;

		margin-top: 90px;
	}


	.service-generator__scroll {
		display: none;
	}

}
/* ============================================================
   05 — SELECTED CLIENTS / MOVING BRAND WALL
   ============================================================ */

.client-marquee {
	--client-gap: 18px;
	--client-half-gap: 9px;
	--client-card-radius: 30px;
	position: relative;
	padding:
		clamp(100px, 11vw, 155px)
		0
		clamp(95px, 10vw, 145px);
	background: #eeeae3;
	color: #111214;
	overflow: hidden;
}


/* ============================================================
   INNER
   ============================================================ */

.client-marquee__inner {
	width:
		min(
			calc(
				100% -
				2 * var(--page-padding)
			),
			var(--container)
		);
	margin: 0 auto;
}


/* ============================================================
   TOP
   ============================================================ */

.client-marquee__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-bottom: 20px;
	border-bottom:
		1px solid
		rgba(17,18,20,.13);
}


.client-marquee__top > div {
	display: flex;
	align-items: center;
	gap: 12px;
}


.client-marquee__top span {
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: .17em;
	color:
		rgba(17,18,20,.42);
}


/* ============================================================
   INTRO
   ============================================================ */

.client-marquee__intro {
	margin-top:
		clamp(55px, 7vw, 95px);
	display: grid;
	grid-template-columns:
		minmax(180px, .42fr)
		minmax(0, 1.58fr);
	align-items: start;
	gap:
		clamp(35px, 7vw, 110px);
}


.client-marquee__intro > p {
	margin: 10px 0 0;
	max-width: 250px;
	font-size: 9px;
	line-height: 1.55;
	text-transform: uppercase;
	letter-spacing: .16em;
	color:
		rgba(17,18,20,.44);
}


.client-marquee__intro h2 {
	margin: 0;
	font-size:
		clamp(
			4rem,
			8.2vw,
			8.8rem
		);
	line-height: .79;
	letter-spacing: -.075em;
	text-transform: uppercase;
	font-weight: 500;
}


.client-marquee__intro h2 span {
	display: block;
	margin-left:
		clamp(
			25px,
			9vw,
			145px
		);
	color: #7754cf;
	font-style: italic;
	font-weight: 400;
}


/* ============================================================
   ROWS
   ============================================================ */

.client-marquee__rows {
	margin-top:
		clamp(70px, 9vw, 125px);
	display: flex;
	flex-direction: column;
	gap: var(--client-gap);
}


.client-marquee__row {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 2px 0 14px;
	-webkit-mask-image:
		linear-gradient(
			90deg,
			transparent 0,
			#000 5%,
			#000 95%,
			transparent 100%
		);
	mask-image:
		linear-gradient(
			90deg,
			transparent 0,
			#000 5%,
			#000 95%,
			transparent 100%
		);
}


.client-marquee__track {
	width: max-content;
	display: flex;
	align-items: stretch;
	gap: var(--client-gap);
	will-change: transform;
	animation:
		client-marquee-left
		34s
		linear
		infinite;
}


.client-marquee__row--reverse
.client-marquee__track {
	animation-name:
		client-marquee-right;
	animation-duration:
		38s;
}


.client-marquee__row:hover
.client-marquee__track {
	animation-play-state: paused;
}


.client-marquee__group {
	display: flex;
	align-items: stretch;
	gap: var(--client-gap);
}


/* ============================================================
   CLIENT CARD
   ============================================================ */

.client-marquee__card {
	position: relative;
	flex: 0 0
		clamp(
			230px,
			21vw,
			350px
		);
	height:
		clamp(
			150px,
			14vw,
			225px
		);
	display: flex;
	align-items: center;
	justify-content: center;
	padding:
		clamp(22px, 2.3vw, 34px);
	border:
		1px solid
		rgba(17,18,20,.10);
	border-radius:
		var(--client-card-radius);
	background:
		rgba(255,255,255,.70);
	box-shadow:
		0 14px 45px
		rgba(31,24,45,.035);
	overflow: hidden;
	transition:
		transform .38s
			cubic-bezier(.2,.8,.2,1),
		background .35s ease,
		border-color .35s ease,
		box-shadow .35s ease;
}


.client-marquee__card::before {
	content: "";
	position: absolute;
	width: 190px;
	height: 190px;
	right: -85px;
	bottom: -100px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(119,84,207,.16),
			transparent 67%
		);
	opacity: 0;
	transform: scale(.75);
	transition:
		opacity .35s ease,
		transform .45s
			cubic-bezier(.2,.8,.2,1);
	pointer-events: none;
}


.client-marquee__card:hover {
	transform: translateY(-7px);
	background:
		rgba(255,255,255,.92);
	border-color:
		rgba(119,84,207,.28);
	box-shadow:
		0 24px 70px
		rgba(66,45,108,.10);
}


.client-marquee__card:hover::before {
	opacity: 1;
	transform: scale(1);
}


/* ============================================================
   CARD META
   ============================================================ */

.client-marquee__card-index,
.client-marquee__card-label {
	position: absolute;
	z-index: 4;
	font-size: 6px;
	text-transform: uppercase;
	letter-spacing: .16em;
	color:
		rgba(17,18,20,.33);
}


.client-marquee__card-index {
	left: 18px;
	top: 16px;
}


.client-marquee__card-label {
	right: 18px;
	bottom: 15px;
}


/* ============================================================
   LOGOS
   ============================================================ */

.client-marquee__logo {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}


.client-marquee__logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 64%;
	max-height: 58%;
	object-fit: contain;
	filter:
		grayscale(1)
		contrast(1.03);
	opacity: .82;
	transition:
		filter .35s ease,
		opacity .35s ease,
		transform .4s
			cubic-bezier(.2,.8,.2,1);
}


.client-marquee__card:hover
.client-marquee__logo img {
	filter:
		grayscale(0)
		contrast(1);
	opacity: 1;
	transform: scale(1.035);
}


.client-marquee__logo strong {
	max-width: 82%;
	font-size:
		clamp(
			1.5rem,
			2.4vw,
			2.5rem
		);
	line-height: .95;
	letter-spacing: -.045em;
	text-align: center;
	font-weight: 500;
}


/* ============================================================
   BOTTOM
   ============================================================ */

.client-marquee__bottom {
	margin-top:
		clamp(65px, 8vw, 105px);
	padding-top: 27px;
	border-top:
		1px solid
		rgba(17,18,20,.13);
	display: grid;
	grid-template-columns:
		1fr auto;
	align-items: end;
	gap:
		clamp(40px, 8vw, 120px);
}


.client-marquee__bottom > p {
	margin: 0;
	max-width: 650px;
	font-size:
		clamp(
			1.35rem,
			2.2vw,
			2.4rem
		);
	line-height: 1.14;
	letter-spacing: -.035em;
}


.client-marquee__count {
	display: flex;
	align-items: flex-end;
	gap: 13px;
}


.client-marquee__count strong {
	font-size:
		clamp(
			4rem,
			7vw,
			7rem
		);
	line-height: .72;
	letter-spacing: -.075em;
	font-weight: 500;
}


.client-marquee__count span {
	max-width: 95px;
	font-size: 7px;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: .13em;
	color:
		rgba(17,18,20,.42);
}


/* ============================================================
   ANIMATION
   ============================================================ */

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

	to {
		transform:
			translateX(
				calc(
					-50% -
					var(--client-half-gap)
				)
			);
	}
}


@keyframes client-marquee-right {
	from {
		transform:
			translateX(
				calc(
					-50% -
					var(--client-half-gap)
				)
			);
	}

	to {
		transform:
			translateX(0);
	}
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.client-marquee__intro {
		grid-template-columns: 1fr;
	}


	.client-marquee__intro > p {
		max-width: 330px;
	}


	.client-marquee__card {
		flex-basis:
			clamp(
				220px,
				32vw,
				310px
			);
		height:
			clamp(
				145px,
				22vw,
				205px
			);
	}


	.client-marquee__bottom {
		grid-template-columns: 1fr;
	}


	.client-marquee__count {
		justify-self: start;
	}

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.client-marquee {
		--client-gap: 10px;
		--client-half-gap: 5px;
		--client-card-radius: 22px;
		padding:
			90px
			0
			90px;
	}


	.client-marquee__top {
		align-items: flex-start;
	}


	.client-marquee__top > div:last-child {
		display: none;
	}


	.client-marquee__intro {
		margin-top: 48px;
		gap: 28px;
	}


	.client-marquee__intro h2 {
		font-size:
			clamp(
				3.6rem,
				17vw,
				5.4rem
			);
	}


	.client-marquee__intro h2 span {
		margin-left: 14px;
	}


	.client-marquee__rows {
		margin-top: 65px;
	}


	.client-marquee__row {
		-webkit-mask-image:
			linear-gradient(
				90deg,
				transparent,
				#000 4%,
				#000 96%,
				transparent
			);
		mask-image:
			linear-gradient(
				90deg,
				transparent,
				#000 4%,
				#000 96%,
				transparent
			);
	}


	.client-marquee__track {
		animation-duration: 28s;
	}


	.client-marquee__row--reverse
	.client-marquee__track {
		animation-duration: 31s;
	}


	.client-marquee__card {
		flex-basis: 205px;
		height: 138px;
		padding: 19px;
	}


	.client-marquee__logo img {
		max-width: 68%;
		max-height: 58%;
	}


	.client-marquee__card-label {
		display: none;
	}


	.client-marquee__bottom {
		margin-top: 62px;
	}


	.client-marquee__bottom > p {
		font-size: 1.45rem;
	}

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

	.client-marquee__row {
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-mask-image: none;
		mask-image: none;
	}


	.client-marquee__row::-webkit-scrollbar {
		display: none;
	}


	.client-marquee__track {
		animation: none;
		transform: none !important;
	}


	.client-marquee__group[aria-hidden="true"] {
		display: none;
	}

}


/* ============================================================
   06 — SIGNAL CONVERGENCE
   ============================================================ */

.project-convergence {

	--convergence-progress: 0;

	position: relative;

	height: 190vh;

	background:
		#08080b;

	color:
		#f5f2f9;

}



/* ============================================================
   STICKY VIEWPORT
   ============================================================ */

.project-convergence__sticky {

	position: sticky;

	top: 0;

	height: 100svh;

	overflow: hidden;

	background:

		radial-gradient(
			circle at center,
			rgba(115,82,196,.13),
			transparent 31%
		),

		#08080b;

}



/* ============================================================
   SIGNAL PATHS
   ============================================================ */

.project-convergence__signal {

	position: absolute;

	z-index: 1;

	inset: 0;

	width: 100%;

	height: 100%;

	pointer-events: none;

}


.project-convergence__path {

	fill: none;

	stroke:
		rgba(203,184,255,.32);

	stroke-width: 1;

	stroke-linecap: round;

}



/* ============================================================
   CENTRAL GLOW
   ============================================================ */

.project-convergence__glow {

	position: absolute;

	z-index: 0;

	left: 50%;

	top: 50%;

	width:
		min(62vw, 850px);

	aspect-ratio: 1;

	transform:
		translate(-50%, -50%);

	border-radius: 50%;

	background:

		radial-gradient(
			circle,
			rgba(190,168,255,.18),
			rgba(108,75,192,.07) 37%,
			transparent 67%
		);

	filter:
		blur(30px);

	pointer-events: none;

}



/* ============================================================
   INNER
   ============================================================ */

.project-convergence__inner {

	position: relative;

	z-index: 5;

	width:
		min(
			calc(
				100% -
				2 * var(--page-padding)
			),
			var(--container)
		);

	height: 100%;

	margin: 0 auto;

	padding:
		clamp(95px, 11vh, 125px)
		0
		28px;

}



/* ============================================================
   TOP
   ============================================================ */

.project-convergence__top {

	position: relative;

	z-index: 15;

	display: flex;

	justify-content: space-between;

	align-items: center;

}


.project-convergence__top > div {

	display: flex;

	gap: 12px;

}


.project-convergence__top span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);

}



/* ============================================================
   HEADLINE
   ============================================================ */

.project-convergence__headline {

	position: absolute;

	z-index: 8;

	left: 0;

	top: 50%;

	width: 100%;

	transform:
		translateY(-50%);

	pointer-events: none;

}


.project-convergence__headline > p {

	margin:
		0 0 25px;

	font-size: 9px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);

}


.project-convergence__headline h2 {

	margin: 0;

	font-size:
		clamp(
			4.9rem,
			10.8vw,
			11.4rem
		);

	line-height: .73;

	letter-spacing: -.085em;

	text-transform: uppercase;

	font-weight: 500;

}


.project-convergence__line {

	display: block;

	will-change:
		transform,
		opacity;

}


.project-convergence__line--02 {

	margin-left:
		clamp(
			35px,
			10vw,
			160px
		);

}


.project-convergence__line--03 {

	margin-left:
		clamp(
			8px,
			4vw,
			65px
		);

}


.project-convergence__line--04 {

	margin-left:
		clamp(
			60px,
			16vw,
			255px
		);

}


.project-convergence__headline em {

	color:
		#cab8ff;

	font-style: italic;

	font-weight: 400;

}



/* ============================================================
   CENTRAL DESTINATION
   ============================================================ */

.project-convergence__destination {

	position: absolute;

	z-index: 12;

	left: 72%;

	top: 50%;

	width:
		clamp(
			185px,
			18vw,
			270px
		);

	aspect-ratio: 1;

	transform:
		translate(-50%, -50%)
		scale(.72);

	opacity: .15;

	transition:
		opacity .4s ease;

}



/* ============================================================
   RINGS
   ============================================================ */

.project-convergence__ring {

	position: absolute;

	left: 50%;

	top: 50%;

	border-radius: 50%;

	transform:
		translate(-50%, -50%);

	pointer-events: none;

}


.project-convergence__ring--outer {

	width: 145%;

	height: 145%;

	border:
		1px solid
		rgba(202,184,255,.25);

	animation:
		convergence-ring-spin
		18s linear infinite;

}


.project-convergence__ring--outer::before {

	content: "";

	position: absolute;

	width: 8px;

	height: 8px;

	left: 50%;

	top: -4px;

	transform:
		translateX(-50%);

	border-radius: 50%;

	background:
		#cab8ff;

	box-shadow:
		0 0 25px
		rgba(202,184,255,.8);

}


.project-convergence__ring--inner {

	width: 118%;

	height: 118%;

	border:
		1px dashed
		rgba(255,255,255,.16);

	animation:
		convergence-ring-spin-reverse
		14s linear infinite;

}



/* ============================================================
   CTA
   ============================================================ */

.project-convergence__cta {

	position: absolute;

	inset: 0;

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	border-radius: 50%;

	background:

		radial-gradient(
			circle at 32% 27%,
			#fff,
			transparent 8%
		),

		linear-gradient(
			145deg,
			#d9cbff,
			#987ae2 42%,
			#423062 72%,
			#16121c
		);

	color: #fff;

	box-shadow:

		inset
		-25px -28px 50px
		rgba(0,0,0,.35),

		0 25px 90px
		rgba(116,77,207,.34);

	transition:
		transform .45s
		cubic-bezier(.2,.8,.2,1);

}


.project-convergence__cta:hover {

	transform:
		scale(1.07);

}


.project-convergence__cta strong {

	margin:
		0 0 14px;

	font-size:
		clamp(
			1.8rem,
			3vw,
			3.2rem
		);

	line-height: .88;

	letter-spacing: -.05em;

	text-align: center;

	text-transform: uppercase;

	font-weight: 500;

}


.project-convergence__cta-arrow {
	display: grid;
	place-items: center;

	width:
		clamp(
			28px,
			3vw,
			42px
		);

	line-height: 0;

	transition:
		transform .4s
		cubic-bezier(.2,.8,.2,1),
		filter .3s ease;

}


.project-convergence__cta-arrow img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter:
		drop-shadow(
			0 0 12px
			rgba(91, 116, 184, .44)
		);

}


.project-convergence__cta:hover
.project-convergence__cta-arrow,
.project-convergence__cta:focus-visible
.project-convergence__cta-arrow {
	transform: rotate(45deg) scale(1.08);
	filter: brightness(1.12);

}



/* ============================================================
   BOTTOM
   ============================================================ */

.project-convergence__bottom {

	position: absolute;

	z-index: 15;

	left: 0;

	right: 0;

	bottom: 0;

	padding-top: 18px;

	border-top:
		1px solid
		rgba(255,255,255,.12);

	display: flex;

	align-items: center;

	gap:
		clamp(
			14px,
			2.5vw,
			35px
		);

	font-size: 7px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(255,255,255,.34);

}


.project-convergence__bottom-line {

	flex: 1;

	height: 1px;

	background:
		rgba(255,255,255,.1);

}



/* ============================================================
   ANIMATION
   ============================================================ */

@keyframes convergence-ring-spin {

	to {

		transform:
			translate(-50%, -50%)
			rotate(360deg);

	}

}


@keyframes convergence-ring-spin-reverse {

	to {

		transform:
			translate(-50%, -50%)
			rotate(-360deg);

	}

}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.project-convergence__headline h2 {

		font-size:
			clamp(
				4.8rem,
				13vw,
				8rem
			);

	}


	.project-convergence__destination {

		left: 76%;

		width:
			clamp(
				170px,
				22vw,
				230px
			);

	}

}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.project-convergence {

		height: auto;

		min-height: 100svh;

	}


	.project-convergence__sticky {

		position: relative;

		height: auto;

		min-height: 100svh;

		padding:
			95px
			var(--page-padding)
			35px;

	}


	.project-convergence__inner {

		width: 100%;

		height: auto;

		min-height:
			calc(
				100svh -
				130px
			);

		padding: 0;

		display: flex;

		flex-direction: column;

	}


	.project-convergence__top {

		align-items: flex-start;

	}


	.project-convergence__top
	> div:last-child {

		display: none;

	}


	.project-convergence__headline {

		position: relative;

		inset: auto;

		transform: none;

		margin:
			auto
			0
			65px;

		padding-top: 90px;

	}


	.project-convergence__headline h2 {

		font-size:
			clamp(
				4rem,
				18vw,
				5.8rem
			);

	}


	.project-convergence__line--02,
	.project-convergence__line--03,
	.project-convergence__line--04 {

		margin-left: 15px;

	}


	.project-convergence__destination {

		position: relative;

		inset: auto;

		width: 175px;

		margin:
			0 0
			65px
			auto;

		transform: none;

		opacity: 1;

	}


	.project-convergence__signal {

		opacity: .35;

	}


	.project-convergence__bottom {

		position: relative;

		inset: auto;

		margin-top: auto;

	}


	.project-convergence__bottom
	span:nth-child(-n+3) {

		display: none;

	}

}
/* ============================================================
   07 — INSIGHT HUB / FULL SCREEN SCROLL
   ============================================================ */

.insight-scroll {

	--insight-accent: #c9b7ff;

	position: relative;

	height: 300vh;

	background: #eeeae3;

	color: #111214;

}



/* ============================================================
   STICKY VIEWPORT
   ============================================================ */

.insight-scroll__sticky {

	position: sticky;

	top: 0;

	height: 100svh;

	overflow: hidden;

	background:

		radial-gradient(
			circle at 65% 45%,
			rgba(119,84,207,.11),
			transparent 32%
		),

		#eeeae3;

}



/* ============================================================
   GLOW
   ============================================================ */

.insight-scroll__glow {

	position: absolute;

	z-index: 0;

	width:
		min(
			65vw,
			900px
		);

	aspect-ratio: 1;

	left: 70%;

	top: 50%;

	transform:
		translate(-50%, -50%);

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(119,84,207,.14),
			transparent 67%
		);

	filter:
		blur(40px);

	pointer-events: none;

}



/* ============================================================
   GRID
   ============================================================ */

.insight-scroll__grid {

	position: absolute;

	z-index: 1;

	inset: 0;

	background-image:

		linear-gradient(
			rgba(17,18,20,.045) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(17,18,20,.045) 1px,
			transparent 1px
		);

	background-size:
		82px 82px;

	mask-image:
		radial-gradient(
			circle at center,
			black,
			transparent 82%
		);

	pointer-events: none;

}



/* ============================================================
   CONTINUOUS SIGNAL
   ============================================================ */

.insight-scroll__signal {

	position: absolute;

	z-index: 2;

	inset: 0;

	width: 100%;

	height: 100%;

	pointer-events: none;

}


.insight-scroll__signal-base {

	fill: none;

	stroke:
		rgba(119,84,207,.11);

	stroke-width: 1;

}


.insight-scroll__signal-progress {

	fill: none;

	stroke:
		var(--insight-accent);

	stroke-width: 1.5;

	stroke-linecap: round;

	filter:
		drop-shadow(
			0 0 7px
			rgba(119,84,207,.3)
		);

}



/* ============================================================
   INNER
   ============================================================ */

.insight-scroll__inner {

	position: relative;

	z-index: 5;

	width:
		min(
			calc(
				100% -
				2 * var(--page-padding)
			),
			var(--container)
		);

	height: 100%;

	margin: 0 auto;

	padding:
		clamp(
			95px,
			11vh,
			125px
		)
		0
		27px;

}



/* ============================================================
   TOP
   ============================================================ */

.insight-scroll__top {

	position: relative;

	z-index: 20;

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 30px;

}


.insight-scroll__top > div {

	display: flex;

	gap: 12px;

}


.insight-scroll__top span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(17,18,20,.42);

}



/* ============================================================
   STAGE
   ============================================================ */

.insight-scroll__stage {

	position: absolute;

	z-index: 8;

	inset: 0;

}



/* ============================================================
   SCENES
   ============================================================ */

.insight-scene {

	position: absolute;

	inset: 0;

	padding:
		clamp(
			150px,
			17vh,
			190px
		)
		0
		75px;

	display: flex;

	flex-direction: column;

	justify-content: center;

	opacity: 0;

	visibility: hidden;

	transform:
		translateY(40px)
		scale(.985);

	transition:

		opacity .65s ease,

		transform .9s
		cubic-bezier(.2,.8,.2,1),

		visibility .65s ease;

}


.insight-scene.is-active {

	opacity: 1;

	visibility: visible;

	transform:
		translateY(0)
		scale(1);

}



/* ============================================================
   SCENE 01 — INTRO
   ============================================================ */

.insight-scene--intro {

	justify-content: center;

}


.insight-scene__small {

	display: flex;

	justify-content: space-between;

	gap: 30px;

	margin-bottom:
		clamp(
			30px,
			4vw,
			55px
		);

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(17,18,20,.42);

}


.insight-scene--intro h2 {

	margin: 0;

	font-size:
		clamp(
			5rem,
			11vw,
			11.6rem
		);

	line-height: .73;

	letter-spacing: -.085em;

	text-transform: uppercase;

	font-weight: 500;

}


.insight-scene--intro h2 span {

	display: block;

	opacity: 0;

	transform:
		translateY(45px);

	transition:

		opacity .65s ease,

		transform .85s
		cubic-bezier(.2,.8,.2,1);

}


.insight-scene--intro.is-active
h2 span {

	opacity: 1;

	transform:
		translateY(0);

}


.insight-scene--intro.is-active
h2 span:nth-child(1) {

	transition-delay: .08s;

}


.insight-scene--intro.is-active
h2 span:nth-child(2) {

	transition-delay: .15s;

}


.insight-scene--intro.is-active
h2 span:nth-child(3) {

	transition-delay: .22s;

}


.insight-scene--intro
h2 span:nth-child(2) {

	margin-left:
		clamp(
			25px,
			8vw,
			130px
		);

}


.insight-scene__accent {

	margin-left:
		clamp(
			55px,
			16vw,
			255px
		) !important;

	color:
		#7754cf;

	font-style: italic;

	font-weight: 400;

}


.insight-scene__intro-copy {

	margin:
		clamp(
			35px,
			5vw,
			70px
		)
		0
		0 auto;

	max-width: 390px;

	font-size:
		clamp(
			1rem,
			1.4vw,
			1.3rem
		);

	line-height: 1.5;

	color:
		rgba(17,18,20,.56);

}



/* ============================================================
   SCENE 02 — KNOWLEDGE
   ============================================================ */

.insight-scene--knowledge {

	justify-content: center;

}


.knowledge-signal {

	position: relative;

	width: 100%;

	min-height:
		clamp(
			480px,
			57vh,
			650px
		);

}


.knowledge-signal::before {

	content: "";

	position: absolute;

	left: 0;

	right: 0;

	top: 50%;

	height: 1px;

	background:
		rgba(17,18,20,.14);

}



/* ============================================================
   KNOWLEDGE META
   ============================================================ */

.knowledge-signal__meta {

	position: absolute;

	left: 0;

	right: 0;

	top: 0;

	display: flex;

	justify-content: space-between;

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(17,18,20,.42);

}



/* ============================================================
   WORDS
   ============================================================ */

.knowledge-signal__word {

	position: absolute;

	z-index: 7;

}


.knowledge-signal__word > span {

	display: block;

	margin-bottom: 10px;

	font-size: 7px;

	letter-spacing: .16em;

	color:
		rgba(17,18,20,.38);

}


.knowledge-signal__word strong {

	display: block;

	font-size:
		clamp(
			2.5rem,
			4.5vw,
			5rem
		);

	line-height: .88;

	letter-spacing: -.055em;

	font-weight: 500;

	text-transform: uppercase;

}


.knowledge-signal__word--01 {

	left: 0;

	top: 23%;

}


.knowledge-signal__word--02 {

	left: 50%;

	top: 9%;

	transform:
		translateX(-50%);

	text-align: center;

}


.knowledge-signal__word--03 {

	right: 0;

	bottom: 17%;

	text-align: right;

}



/* ============================================================
   KNOWLEDGE CORE
   ============================================================ */

.knowledge-signal__core {

	position: absolute;

	z-index: 8;

	left: 50%;

	top: 59%;

	width:
		clamp(
			140px,
			15vw,
			220px
		);

	aspect-ratio: 1;

	transform:
		translate(-50%, -50%);

}


.knowledge-signal__core-ring {

	position: absolute;

	inset: -25%;

	border:
		1px dashed
		rgba(119,84,207,.27);

	border-radius: 50%;

	animation:
		knowledge-spin
		17s linear infinite;

}


.knowledge-signal__core-ring::before {

	content: "";

	position: absolute;

	width: 8px;
	height: 8px;

	top: -4px;
	left: 50%;

	transform:
		translateX(-50%);

	border-radius: 50%;

	background:
		#7754cf;

	box-shadow:
		0 0 25px
		rgba(119,84,207,.6);

}


.knowledge-signal__core-inner {

	position: absolute;

	inset: 0;

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	border-radius:
		44% 56% 52% 48% /
		58% 43% 57% 42%;

	background:

		radial-gradient(
			circle at 31% 27%,
			#fff,
			transparent 8%
		),

		linear-gradient(
			145deg,
			#ded2ff,
			#9273de 42%,
			#463363 70%,
			#17131d
		);

	color: #fff;

	box-shadow:
		0 25px 80px
		rgba(81,53,148,.25);

	animation:
		knowledge-morph
		6s ease-in-out infinite;

}


.knowledge-signal__core-inner span {

	font-size: 7px;

	letter-spacing: .19em;

}


.knowledge-signal__core-inner strong {

	margin-top: 5px;

	font-size:
		clamp(
			1.2rem,
			2vw,
			1.9rem
		);

	font-weight: 500;

}



/* ============================================================
   KNOWLEDGE COPY
   ============================================================ */

.knowledge-signal__copy {

	margin:
		30px
		0
		0 auto;

	max-width: 460px;

	font-size:
		clamp(
			1rem,
			1.35vw,
			1.25rem
		);

	line-height: 1.5;

	color:
		rgba(17,18,20,.56);

}



/* ============================================================
   SCENE 03 — FEATURE
   ============================================================ */

.insight-scene--feature {

	justify-content: center;

}


.insight-article {

	display: grid;

	grid-template-columns:
		1.25fr
		.75fr;

	width: 100%;

	min-height:
		clamp(
			540px,
			67vh,
			720px
		);

	background:
		#0b0a0e;

	color:
		#f5f1fa;

	overflow: hidden;

	box-shadow:
		0 35px 120px
		rgba(34,24,51,.15);

}



/* ============================================================
   ARTICLE VISUAL
   ============================================================ */

.insight-article__visual {

	position: relative;

	overflow: hidden;

	background:

		radial-gradient(
			circle at 62% 38%,
			rgba(179,149,255,.3),
			transparent 23%
		),

		linear-gradient(
			145deg,
			#15111c,
			#35264e 50%,
			#0b0a0e
		);

}


.insight-article__visual::before {

	content: "";

	position: absolute;

	inset: 0;

	background-image:

		linear-gradient(
			rgba(255,255,255,.045) 1px,
			transparent 1px
		),

		linear-gradient(
			90deg,
			rgba(255,255,255,.045) 1px,
			transparent 1px
		);

	background-size:
		74px 74px;

}



/* ============================================================
   ARTICLE ORBITS
   ============================================================ */

.insight-article__orbit {

	position: absolute;

	left: 50%;

	top: 50%;

	border-radius: 50%;

	transform:
		translate(-50%, -50%);

}


.insight-article__orbit--outer {

	width: 68%;

	aspect-ratio: 1;

	border:
		1px solid
		rgba(255,255,255,.18);

	animation:
		knowledge-spin
		22s linear infinite;

}


.insight-article__orbit--inner {

	width: 46%;

	aspect-ratio: 1;

	border:
		1px dashed
		rgba(202,184,255,.34);

	animation:
		knowledge-spin-reverse
		15s linear infinite;

}



/* ============================================================
   ARTICLE CORE
   ============================================================ */

.insight-article__core {

	position: absolute;

	z-index: 4;

	left: 50%;

	top: 50%;

	width: 26%;

	aspect-ratio: 1;

	transform:
		translate(-50%, -50%);

	display: grid;

	place-items: center;

	border-radius:
		49% 51% 45% 55% /
		58% 43% 57% 42%;

	background:

		radial-gradient(
			circle at 32% 27%,
			#fff,
			transparent 9%
		),

		linear-gradient(
			145deg,
			#dfd3ff,
			#9473df 42%,
			#41305e 69%,
			#0b0a0e
		);

	box-shadow:
		0 0 100px
		rgba(134,95,217,.32);

	animation:
		knowledge-morph
		7s ease-in-out infinite;

}


.insight-article__core span {

	font-size:
		clamp(
			1rem,
			1.7vw,
			1.6rem
		);

	letter-spacing: .14em;

}



/* ============================================================
   ARTICLE META
   ============================================================ */

.insight-article__visual-meta {

	position: absolute;

	z-index: 6;

	top: 22px;

	left: 24px;
	right: 24px;

	display: flex;

	justify-content: space-between;

	font-size: 7px;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.42);

}


.insight-article__watermark {

	position: absolute;

	left: -3%;

	bottom: -6%;

	font-size:
		clamp(
			9rem,
			18vw,
			19rem
		);

	line-height: .68;

	letter-spacing: -.1em;

	font-weight: 600;

	color:
		rgba(255,255,255,.045);

}



/* ============================================================
   ARTICLE CONTENT
   ============================================================ */

.insight-article__content {

	padding:
		clamp(
			28px,
			4vw,
			58px
		);

	display: flex;

	flex-direction: column;

	border-left:
		1px solid
		rgba(255,255,255,.12);

}


.insight-article__top {

	display: flex;

	justify-content: space-between;

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(255,255,255,.4);

}


.insight-article__main {

	margin: auto 0;

}


.insight-article__main > span {

	display: block;

	margin-bottom: 25px;

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		#cab8ff;

}


.insight-article__main h3 {

	margin: 0;

	font-size:
		clamp(
			3rem,
			5vw,
			5.6rem
		);

	line-height: .88;

	letter-spacing: -.06em;

	font-weight: 500;

}


.insight-article__bottom {

	padding-top: 22px;

	border-top:
		1px solid
		rgba(255,255,255,.12);

	display: flex;

	justify-content: space-between;

	align-items: center;

}


.insight-article__bottom
> span:first-child {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .15em;

	color:
		rgba(255,255,255,.44);

}


.insight-article__arrow {

	width: 48px;

	height: 48px;

	display: grid;

	place-items: center;

	border:
		1px solid
		rgba(255,255,255,.21);

	border-radius: 50%;

}



/* ============================================================
   PROGRESS
   ============================================================ */

.insight-scroll__progress {

	position: absolute;

	z-index: 25;

	left: 0;

	right: 0;

	bottom: 0;

	display: grid;

	grid-template-columns:
		1fr auto;

	align-items: center;

	gap: 15px;

}


.insight-scroll__progress-track {

	position: relative;

	height: 1px;

	background:
		rgba(17,18,20,.14);

}


.insight-scroll__progress-fill {

	position: absolute;

	inset:
		0 auto 0 0;

	width: 0%;

	background:
		#7754cf;

}


.insight-scroll__progress > span {

	font-size: 7px;

	text-transform: uppercase;

	letter-spacing: .16em;

	color:
		rgba(17,18,20,.38);

}



/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes knowledge-spin {

	to {

		transform:
			translate(-50%, -50%)
			rotate(360deg);

	}

}


@keyframes knowledge-spin-reverse {

	to {

		transform:
			translate(-50%, -50%)
			rotate(-360deg);

	}

}


@keyframes knowledge-morph {

	0%,
	100% {

		border-radius:
			44% 56% 52% 48% /
			58% 43% 57% 42%;

	}

	50% {

		border-radius:
			59% 41% 43% 57% /
			45% 59% 41% 55%;

	}

}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.insight-scene--intro h2 {

		font-size:
			clamp(
				4.8rem,
				13vw,
				8rem
			);

	}


	.insight-article {

		grid-template-columns: 1fr 1fr;

	}


	.knowledge-signal__word strong {

		font-size:
			clamp(
				2.2rem,
				5vw,
				4rem
			);

	}

}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	/*
	 * Mobile uses normal flow.
	 * No 300vh scroll trapping.
	 */

	.insight-scroll {

		height: auto;

		padding:
			95px
			var(--page-padding)
			90px;

	}


	.insight-scroll__sticky {

		position: relative;

		height: auto;

		overflow: visible;

	}


	.insight-scroll__inner {

		width: 100%;

		height: auto;

		padding: 0;

	}


	.insight-scroll__top {

		margin-bottom: 70px;

	}


	.insight-scroll__stage {

		position: relative;

		inset: auto;

		display: flex;

		flex-direction: column;

		gap: 100px;

	}


	.insight-scene {

		position: relative;

		inset: auto;

		padding: 0;

		opacity: 1;

		visibility: visible;

		transform: none;

	}


	.insight-scene--intro h2 {

		font-size:
			clamp(
				4rem,
				18vw,
				6rem
			);

	}


	.insight-scene--intro
	h2 span {

		opacity: 1;

		transform: none;

	}


	.insight-scene--intro
	h2 span:nth-child(2),
	.insight-scene__accent {

		margin-left:
			15px !important;

	}


	.insight-scene__small {

		flex-direction: column;

		gap: 8px;

	}


	.insight-scene__intro-copy {

		margin:
			40px
			0 0;

	}


	.knowledge-signal {

		min-height: 620px;

	}


	.knowledge-signal__word--01 {

		left: 0;

		top: 15%;

	}


	.knowledge-signal__word--02 {

		left: auto;

		right: 0;

		top: 38%;

		transform: none;

		text-align: right;

	}


	.knowledge-signal__word--03 {

		left: 0;

		right: auto;

		bottom: 8%;

		text-align: left;

	}


	.knowledge-signal__core {

		width: 140px;

		top: 63%;

	}


	.insight-article {

		grid-template-columns: 1fr;

	}


	.insight-article__visual {

		min-height: 430px;

	}


	.insight-article__content {

		min-height: 390px;

		border-left: 0;

		border-top:
			1px solid
			rgba(255,255,255,.12);

	}


	.insight-article__main h3 {

		font-size:
			clamp(
				2.8rem,
				13vw,
				4rem
			);

	}


	.insight-scroll__signal {

		display: none;

	}


	.insight-scroll__progress {

		display: none;

	}

}
/* ============================================================
   08 — FINAL TRINOVIK FOOTER
   ============================================================ */

.signal-footer {

	position: relative;

	min-height: 100svh;

	padding:

		clamp(
			95px,
			11vh,
			125px
		)

		var(--page-padding)

		0;

	background:
		#08080b;

	color:
		#f5f2f9;

	overflow: hidden;

}



/* ============================================================
   SUBTLE FINAL ATMOSPHERE
   ============================================================ */

.signal-footer::before {

	content: "";

	position: absolute;

	width: 900px;

	height: 900px;

	left: 68%;

	top: 40%;

	transform:
		translate(-50%, -50%);

	border-radius: 50%;

	background:

		radial-gradient(
			circle,
			rgba(117,82,205,.12),
			transparent 68%
		);

	filter:
		blur(50px);

	pointer-events: none;

}



/* ============================================================
   INNER
   ============================================================ */

.signal-footer__inner {

	position: relative;

	z-index: 4;

	max-width:
		var(--container);

	margin:
		0 auto;

}



/* ============================================================
   TOP
   ============================================================ */

.signal-footer__top {

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 30px;

	padding-bottom: 20px;

	border-bottom:
		1px solid
		rgba(255,255,255,.13);

}


.signal-footer__top > div {

	display: flex;

	align-items: center;

	gap: 12px;

}


.signal-footer__top span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.4);

}



/* ============================================================
   FINAL IDENTITY
   ============================================================ */

.signal-footer__identity {

	padding:

		clamp(
			70px,
			9vw,
			130px
		)

		0

		clamp(
			90px,
			11vw,
			160px
		);

}



/* ============================================================
   PILLARS
   ============================================================ */

.signal-footer__identity-meta {

	display: flex;

	align-items: center;

	gap:
		clamp(
			18px,
			3vw,
			45px
		);

	margin-bottom: 32px;

}


.signal-footer__identity-meta span {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.38);

}



/* ============================================================
   WORDMARK
   ============================================================ */

.signal-footer__identity h2 {

	position: relative;

	margin: 0;

	display: flex;

	align-items: flex-start;

	width: fit-content;

	font-size:
		clamp(
			7rem,
			18vw,
			19rem
		);

	line-height: .66;

	letter-spacing: -.095em;

	font-weight: 500;

}


.signal-footer__identity h2 > span {

	background:

		linear-gradient(
			110deg,
			#f5f1fa 0%,
			#f5f1fa 45%,
			#c9b7ff 72%,
			#8e6ada 100%
		);

	-webkit-background-clip:
		text;

	background-clip:
		text;

	color:
		transparent;

}


.signal-footer__identity h2 small {

	margin:
		8px
		0 0
		18px;

	font-size:
		clamp(
			.8rem,
			1.1vw,
			1rem
		);

	line-height: 1;

	letter-spacing: .22em;

	font-weight: 500;

}



/* ============================================================
   FINAL SIGNAL
   ============================================================ */

.signal-footer__signal {

	margin-top:
		clamp(
			35px,
			5vw,
			65px
		);

	display: grid;

	grid-template-columns:
		1fr auto 1fr;

	align-items: center;

	gap: 15px;

}


.signal-footer__signal span {

	height: 1px;

	background:

		linear-gradient(
			90deg,
			transparent,
			rgba(201,183,255,.5)
		);

}


.signal-footer__signal span:last-child {

	background:

		linear-gradient(
			90deg,
			rgba(201,183,255,.5),
			transparent
		);

}


.signal-footer__signal i {

	width: 10px;
	height: 10px;

	border-radius: 50%;

	background:
		#c9b7ff;

	box-shadow:
		0 0 30px
		rgba(201,183,255,.75);

}



/* ============================================================
   INFORMATION GRID
   ============================================================ */

.signal-footer__grid {

	display: grid;

	grid-template-columns:

		minmax(0, 1.2fr)

		minmax(220px, .8fr)

		minmax(220px, .8fr);

	gap:
		clamp(
			35px,
			6vw,
			95px
		);

	padding:

		clamp(
			65px,
			8vw,
			110px
		)

		0;

	border-top:
		1px solid
		rgba(255,255,255,.13);

	border-bottom:
		1px solid
		rgba(255,255,255,.13);

}



/* ============================================================
   LABEL
   ============================================================ */

.signal-footer__label {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.38);

}



/* ============================================================
   SERVICES
   ============================================================ */

.signal-footer__column--services {

	display: flex;

	flex-direction: column;

	gap: 35px;

}


.signal-footer__services {

	display: flex;

	flex-direction: column;

}


.signal-footer__services a {

	display: grid;

	grid-template-columns:
		35px 1fr;

	align-items: center;

	gap: 12px;

	padding:
		12px 0;

	border-bottom:
		1px solid
		rgba(255,255,255,.075);

	color:
		rgba(255,255,255,.7);

	transition:

		color .3s ease,

		padding-left .35s ease;

}


.signal-footer__services a:hover {

	padding-left: 10px;

	color:
		#c9b7ff;

}


.signal-footer__services span {

	font-size: 7px;

	letter-spacing: .15em;

	opacity: .35;

}


.signal-footer__services strong {

	font-size:
		clamp(
			1.1rem,
			1.6vw,
			1.65rem
		);

	line-height: 1;

	letter-spacing: -.03em;

	font-weight: 400;

}



/* ============================================================
   OFFICES
   ============================================================ */

.signal-footer__office-head {

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 20px;

	margin-bottom:
		clamp(
			35px,
			5vw,
			55px
		);

}


.signal-footer__office-head > span:last-child {

	font-size: 7px;

	letter-spacing: .15em;

	color:
		rgba(255,255,255,.25);

}


.signal-footer__column--office h3 {

	margin: 0;

	font-size:
		clamp(
			1.7rem,
			2.5vw,
			2.8rem
		);

	line-height: .92;

	letter-spacing: -.045em;

	text-transform: uppercase;

	font-weight: 500;

}


.signal-footer__office-logo {
	display: block;
	width: clamp(180px, 20vw, 310px);
	max-width: 100%;
	line-height: 0;
}


.signal-footer__office-logo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}


.signal-footer__registration {

	margin:
		24px
		0;

	font-size: clamp(8px, .62vw, 10px);

	letter-spacing: .13em;

	color:
		rgba(255,255,255,.72);

}


.signal-footer address {

	font-style: normal;

	font-size:
		clamp(
			.9rem,
			1.15vw,
			1.05rem
		);

	line-height: 1.55;

	color:
		rgba(255,255,255,.78);

}



/* ============================================================
   NAVIGATION
   ============================================================ */

.signal-footer__navigation {

	padding:
		28px 0;

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 30px;

	border-bottom:
		1px solid
		rgba(255,255,255,.1);

}


.signal-footer__navigation-left {

	display: flex;

	align-items: center;

	gap:
		clamp(
			16px,
			3vw,
			40px
		);

}


.signal-footer__navigation a {

	font-size: 8px;

	text-transform: uppercase;

	letter-spacing: .15em;

	color:
		rgba(255,255,255,.47);

	transition:
		color .3s ease;

}


.signal-footer__navigation a:hover {

	color:
		#c9b7ff;

}



/* ============================================================
   BACK TO TOP
   ============================================================ */

.signal-footer__back {

	display: flex;

	align-items: center;

	gap: 13px;

}



/* ============================================================
   BOTTOM
   ============================================================ */

.signal-footer__bottom {

	position: relative;

	z-index: 6;

	padding:
		30px 0
		42px;

	display: grid;

	grid-template-columns:
		1fr auto 1fr;

	align-items: center;

	gap: 30px;

}



/* ============================================================
   BRAND
   ============================================================ */

.signal-footer__brand {

	display: flex;

	align-items: center;

	gap: 11px;

}


.signal-footer__brand-mark {

	width: 35px;

	height: 35px;

	display: grid;

	place-items: center;

	border:
		1px solid
		rgba(255,255,255,.37);

	border-radius: 50%;

	font-size: 10px;

}


.signal-footer__brand > div {

	display: flex;

	flex-direction: column;

	font-size: 8px;

	line-height: 1;

	letter-spacing: .16em;

}


.signal-footer__brand > div strong {

	font-weight: 600;

}


.signal-footer__brand > div span {

	margin-top: 3px;

	color:
		rgba(255,255,255,.45);

}



/* ============================================================
   COORDINATES
   ============================================================ */

.signal-footer__coordinates {

	display: flex;

	gap: 13px;

	font-size: 7px;

	letter-spacing: .15em;

	color:
		rgba(255,255,255,.3);

}



/* ============================================================
   END
   ============================================================ */

.signal-footer__end {

	justify-self: end;

	font-size: 7px;

	letter-spacing: .17em;

	color:
		rgba(255,255,255,.28);

}



/* ============================================================
   GHOST WORD
   ============================================================ */

.signal-footer__ghost {

	position: relative;

	z-index: 1;

	left: 50%;

	width: 100vw;

	margin-top:
		clamp(
			20px,
			4vw,
			55px
		);

	margin-bottom:
		-.11em;

	transform:
		translateX(-50%);

	font-size:
		clamp(
			8rem,
			20vw,
			23rem
		);

	line-height: .68;

	letter-spacing: -.1em;

	font-weight: 600;

	text-align: center;

	white-space: nowrap;

	color:
		rgba(255,255,255,.035);

	pointer-events: none;

	user-select: none;

}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

	.signal-footer__grid {

		grid-template-columns:
			1fr 1fr;

	}


	.signal-footer__column--services {

		grid-column:
			1 / -1;

	}


	.signal-footer__services {

		display: grid;

		grid-template-columns:
			1fr 1fr;

	}


	.signal-footer__services a:nth-child(even) {

		padding-left: 22px;

		border-left:
			1px solid
			rgba(255,255,255,.075);

	}

}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

	.signal-footer {

		padding-top: 90px;

	}


	.signal-footer__top {

		align-items: flex-start;

	}


	.signal-footer__top
	> div:last-child {

		display: none;

	}


	.signal-footer__identity {

		padding:
			75px
			0
			95px;

	}


	.signal-footer__identity-meta {

		gap: 13px;

	}


	.signal-footer__identity h2 {

		font-size:
			clamp(
				5rem,
				24vw,
				7.5rem
			);

		flex-direction: column;

	}


	.signal-footer__identity h2 small {

		margin:
			18px
			0 0;

	}


	.signal-footer__grid {

		grid-template-columns: 1fr;

		gap: 70px;

	}


	.signal-footer__column--services {

		grid-column: auto;

	}


	.signal-footer__services {

		grid-template-columns: 1fr;

	}


	.signal-footer__services
	a:nth-child(even) {

		padding-left: 0;

		border-left: 0;

	}


	.signal-footer__navigation {

		align-items: flex-start;

	}


	.signal-footer__navigation-left {

		flex-direction: column;

		align-items: flex-start;

		gap: 15px;

	}


	.signal-footer__bottom {

		grid-template-columns:
			1fr auto;

	}


	.signal-footer__coordinates {

		display: none;

	}


	.signal-footer__ghost {

		font-size: 31vw;

	}

}


/* ============================================================
   HERO BOSS FEEDBACK — OPTION B
   TRINOVIK LABS + RANDOM PROJECT POPUPS
   ============================================================ */

.signal-hero--project-pop {
	--hero-cursor-size: clamp(132px, 9vw, 176px);
	--hero-project-accent: #cdbdff;
	position: relative;

	/*
	 * Colour atmosphere sampled from the approved reference:
	 * deep navy → royal violet → purple → magenta.
	 * No wording or layout from the reference is reused.
	 */
	background:
		radial-gradient(
			circle at 84% 12%,
			rgba(215, 4, 216, .88) 0%,
			rgba(109, 3, 153, .58) 24%,
			transparent 48%
		),
		radial-gradient(
			circle at 46% 98%,
			rgba(43, 31, 175, .98) 0%,
			rgba(29, 13, 126, .64) 39%,
			transparent 67%
		),
		linear-gradient(
			118deg,
			#090256 0%,
			#1d0d7e 39%,
			#440688 69%,
			#6d0399 100%
		);
}

@media (hover: hover) and (pointer: fine) {
	.signal-hero--project-pop {
		cursor: none;
	}
}


/* ============================================================
   PARTICLE LAYER
   ============================================================ */

.signal-hero--project-pop .signal-hero__canvas {
	z-index: 3;
}

.signal-hero--project-pop .signal-hero__ambient {
	z-index: 1;
}

.signal-hero--project-pop .signal-hero__frame {
	z-index: 2;
}

.signal-hero--project-pop .signal-hero__inner {
	z-index: 8;
}


/* ============================================================
   LARGE CUSTOM CURSOR
   ============================================================ */

.signal-hero__cursor {
	position: absolute;
	z-index: 60;
	left: 0;
	top: 0;
	width: var(--hero-cursor-size);
	height: var(--hero-cursor-size);
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;

	/*
	 * The interaction radius remains large, but the circle itself
	 * is intentionally invisible per the latest direction.
	 */
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	box-shadow: none;
	pointer-events: none;
	opacity: 0;
	will-change: left, top, transform;
	transition: opacity .2s ease;
}

.signal-hero.is-pointer-active .signal-hero__cursor {
	opacity: 1;
}

.signal-hero.is-project-hit .signal-hero__cursor {
	border-color: transparent;
	background: transparent;
	box-shadow: none;
}

.signal-hero__cursor-icon {
	font-size: clamp(24px, 2vw, 33px);
	line-height: 1;
	text-shadow: 0 0 22px rgba(255,255,255,.52);
	transition: transform .3s cubic-bezier(.2,.8,.2,1);
}

.signal-hero.is-project-hit .signal-hero__cursor-icon {
	transform: rotate(45deg) scale(1.12);
}

.signal-hero__cursor small {
	font-size: 7px;
	text-transform: uppercase;
	letter-spacing: .2em;
	white-space: nowrap;
}


/* ============================================================
   RANDOM PROJECT POPUP
   ============================================================ */

.signal-hero__project-pop {
	--pop-x: 50%;
	--pop-y: 32%;
	--pop-rotate: -2deg;
	position: absolute;
	z-index: 48;
	left: var(--pop-x);
	top: var(--pop-y);
	width: clamp(260px, 24vw, 420px);
	padding: 7px;
	background: rgba(10,9,13,.94);
	border: 1px solid rgba(255,255,255,.22);
	box-shadow:
		0 34px 95px rgba(0,0,0,.46),
		0 0 0 1px rgba(205,189,255,.04);
	backdrop-filter: blur(14px);
	opacity: 0;
	visibility: hidden;
	transform:
		rotate(var(--pop-rotate))
		scale(.70)
		translateY(18px);
	transform-origin: center;
	pointer-events: none;
	will-change: left, top, transform, opacity;
	transition:
		opacity .22s ease,
		visibility .22s ease;
}

.signal-hero__project-pop.is-visible {
	opacity: 1;
	visibility: visible;
}

/*
 * Each newly selected project restarts this 3-second expansion.
 * It grows to a deliberately moderate final size, never full-screen.
 */
.signal-hero__project-pop.is-visible.is-growing {
	animation:
		hero-project-expand
		3s
		cubic-bezier(.16,.84,.24,1)
		forwards;
}

.signal-hero__project-pop.is-swapping {
	opacity: .82;
}

@keyframes hero-project-expand {
	0% {
		transform:
			rotate(var(--pop-rotate))
			scale(.70)
			translateY(18px);
	}

	55% {
		transform:
			rotate(var(--pop-rotate))
			scale(.92)
			translateY(5px);
	}

	100% {
		transform:
			rotate(var(--pop-rotate))
			scale(1)
			translateY(0);
	}
}

.signal-hero__project-pop-media {
	position: relative;
	aspect-ratio: 1.48 / 1;
	overflow: hidden;
	background: #19171d;
}

.signal-hero__project-pop-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to top,
			rgba(7,7,9,.25),
			transparent 46%
		);
	pointer-events: none;
}

.signal-hero__project-pop img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.035);
	transition: transform .75s cubic-bezier(.2,.8,.2,1);
}

.signal-hero__project-pop.is-visible img {
	transform: scale(1);
}

.signal-hero__project-pop-meta {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 14px;
	padding: 11px 4px 5px;
	color: #f5f2fa;
}

.signal-hero__project-pop-meta span {
	padding-top: 2px;
	font-size: 7px;
	letter-spacing: .16em;
	color: rgba(255,255,255,.38);
	white-space: nowrap;
}

.signal-hero__project-pop-meta strong {
	font-size: clamp(.92rem, 1.1vw, 1.08rem);
	line-height: 1.05;
	letter-spacing: -.025em;
	font-weight: 500;
}


/* ============================================================
   PARTICLE STAGE + HIT HINT
   ============================================================ */

.signal-hero--project-pop .signal-hero__stage {
	min-height: clamp(370px, 57vh, 650px);
}

.signal-hero__hit-hint {
	position: absolute;
	right: 0;
	bottom: 9%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	font-size: 7px;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: rgba(255,255,255,.3);
	opacity: 0;
	transform: translateY(7px);
	transition:
		opacity .5s ease .25s,
		transform .5s ease .25s;
}

.signal-hero.is-resolved .signal-hero__hit-hint {
	opacity: 1;
	transform: translateY(0);
}

.signal-hero.is-project-hit .signal-hero__hit-hint {
	opacity: .12;
}


/* ============================================================
   SMALLER SUPPORTING MESSAGE
   ============================================================ */

.signal-hero__message {
	position: relative;
	z-index: 12;
	display: grid;
	grid-template-columns:
		minmax(160px, .38fr)
		minmax(0, 1.62fr);
	gap: clamp(30px, 6vw, 95px);
	align-items: start;
	opacity: .16;
	transform: translateY(20px);
	transition:
		opacity .9s ease,
		transform .9s cubic-bezier(.2,.8,.2,1);
}

.signal-hero.is-resolved .signal-hero__message {
	opacity: 1;
	transform: translateY(0);
}

.signal-hero__message-label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 6px;
	font-size: 8px;
	line-height: 1.45;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: rgba(255,255,255,.42);
}

.signal-hero__message-main h1 {
	margin: 0 0 22px;
	max-width: 650px;
	font-size: clamp(1.85rem, 3.15vw, 3.65rem);
	line-height: .98;
	letter-spacing: -.045em;
	text-transform: uppercase;
	font-weight: 500;
}

.signal-hero__message-main > p {
	margin: 0;
	max-width: 480px;
	font-size: clamp(13px, 1.1vw, 16px);
	line-height: 1.55;
	color: rgba(255,255,255,.56);
}

.signal-hero--project-pop .signal-hero__actions {
	margin-top: 27px;
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1000px) {
	.signal-hero--project-pop {
		--hero-cursor-size: clamp(122px, 14vw, 158px);
	}

	.signal-hero__message {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.signal-hero__message-label {
		max-width: 270px;
	}

	.signal-hero--project-pop .signal-hero__stage {
		min-height: 50vh;
	}

	.signal-hero__project-pop {
		width: clamp(250px, 34vw, 360px);
	}
}


/* ============================================================
   RESPONSIVE — TOUCH DEVICES
   ============================================================ */

@media (hover: none), (pointer: coarse) {
	.signal-hero--project-pop {
		cursor: auto;
	}

	.signal-hero__cursor {
		display: none;
	}

	.signal-hero__hit-hint {
		display: none;
	}

	.signal-hero--project-pop .signal-hero__stage {
		cursor: pointer;
	}

	.signal-hero__project-pop {
		width: min(82vw, 350px);
	}
}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 680px) {
	.signal-hero--project-pop .signal-hero__stage {
		min-height: 46vh;
	}

	.signal-hero__message {
		gap: 21px;
	}

	.signal-hero__message-main h1 {
		font-size: clamp(1.75rem, 8.5vw, 2.65rem);
	}

	.signal-hero__message-main > p {
		max-width: 330px;
	}

	.signal-hero__project-pop-meta {
		grid-template-columns: 48px 1fr;
	}
}


/* ============================================================
   HERO PROJECT EXPANSION — REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
	.signal-hero__project-pop.is-visible.is-growing {
		animation: none;
		transform:
			rotate(var(--pop-rotate))
			scale(1)
			translateY(0);
	}
}

/* ============================================================
   FINAL HERO POPUP UPDATE — SQUARE / CLEAR BACKGROUND
   Latest approved hero behaviour:
   - no visible cursor circle
   - hero background remains fully clear (no blur/dim overlay)
   - square-edged, borderless project image
   - popup image starts gently dim and brightens while expanding
   - slow 3-second expansion
   - responsive desktop / tablet / phone sizing
   ============================================================ */

/* Keep only the cursor icon/label visible; never draw a circle. */
.signal-hero--project-pop .signal-hero__cursor {
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.signal-hero--project-pop.is-project-hit .signal-hero__cursor {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* The old focus overlay is intentionally disabled. */
.signal-hero__focus-dim {
	display: none !important;
}

/* Square-edged popup; same overall sizing as the approved version. */
.signal-hero--project-pop .signal-hero__project-pop {
	z-index: 50;
	width: clamp(330px, 31vw, 570px);
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	filter: drop-shadow(0 28px 44px rgba(0, 0, 0, .18));
	transform: translateY(16px) scale(.60);
	transform-origin: center center;
}

/* Remove torch/circle masking and restore a clean rectangular image. */
.signal-hero--project-pop .signal-hero__project-pop-media {
	position: relative;
	aspect-ratio: 1.35 / 1;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 0;
	-webkit-mask-image: none;
	mask-image: none;
}

.signal-hero--project-pop .signal-hero__project-pop-media::before,
.signal-hero--project-pop .signal-hero__project-pop-media::after {
	content: none;
}

/* Image begins only mildly dim, then becomes fully clear/bright. */
.signal-hero--project-pop .signal-hero__project-pop img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.055);
	filter: brightness(.86) saturate(.94) contrast(1.01);
	transition:
		transform 3s cubic-bezier(.16,.84,.24,1),
		filter 3s cubic-bezier(.16,.84,.24,1);
}

.signal-hero--project-pop .signal-hero__project-pop.is-visible img {
	transform: scale(1);
	filter: brightness(1) saturate(1.02) contrast(1.02);
}

/* Keep metadata hidden so the popup remains pure imagery. */
.signal-hero--project-pop .signal-hero__project-pop-meta {
	display: none;
}

.signal-hero--project-pop .signal-hero__project-pop.is-visible.is-growing {
	animation:
		hero-project-square-expand
		3s
		cubic-bezier(.16,.84,.24,1)
		forwards;
}

@keyframes hero-project-square-expand {
	0% {
		transform: translateY(16px) scale(.60);
		opacity: .88;
	}

	48% {
		transform: translateY(6px) scale(.84);
		opacity: .96;
	}

	100% {
		transform: translateY(0) scale(1.08);
		opacity: 1;
	}
}

.signal-hero--project-pop .signal-hero__project-pop.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Tablet */
@media (max-width: 1000px) {
	.signal-hero--project-pop .signal-hero__project-pop {
		width: clamp(300px, 42vw, 500px);
	}
}

/* Touch devices: no fake desktop cursor; image remains centered by hero.js. */
@media (hover: none), (pointer: coarse) {
	.signal-hero--project-pop .signal-hero__cursor {
		display: none;
	}

	.signal-hero--project-pop .signal-hero__project-pop {
		width: min(86vw, 470px);
	}
}

/* Phone */
@media (max-width: 680px) {
	.signal-hero--project-pop .signal-hero__project-pop {
		width: min(88vw, 390px);
	}

	.signal-hero--project-pop .signal-hero__project-pop-media {
		aspect-ratio: 1.25 / 1;
	}
}

@media (max-width: 430px) {
	.signal-hero--project-pop .signal-hero__project-pop {
		width: min(90vw, 350px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.signal-hero--project-pop .signal-hero__project-pop.is-visible.is-growing {
		animation: none;
		transform: scale(1);
	}

	.signal-hero--project-pop .signal-hero__project-pop img {
		transition: none;
		filter: brightness(1) saturate(1) contrast(1);
	}
}

/* ============================================================
   APPROVED COLOUR UPDATES FROM THE CURRENT WORKING VERSION
   Preserve these in the full ZIP so deploying it does not revert
   the recent Selected Work / Services background changes.
   ============================================================ */

/* Section 02 — Trinovik blue selected work background */
.cinema-work,
.cinema-work__sticky {
	background:
		linear-gradient(
			135deg,
			#2520b8 0%,
			#2d25c0 45%,
			#3f2bc8 100%
		);
}

.cinema-project__wash {
	background:
		linear-gradient(
			90deg,
			rgba(0, 4, 53, .72),
			rgba(45, 37, 192, .16) 48%,
			rgba(0, 4, 53, .08)
		),
		linear-gradient(
			0deg,
			rgba(0, 4, 53, .42),
			transparent 48%
		);
}

/* Section 04 — deep Trinovik blue services background */
.service-generator {
	--service-bg: #000050;
	background: #000050;
}

.service-generator__sticky {
	background: #000050;
}

.service-generator__sticky::before {
	background:
		radial-gradient(
			circle at 72% 50%,
			color-mix(
				in srgb,
				var(--service-accent) 18%,
				transparent
			),
			transparent 34%
		),
		#000050;
}

.service-generator__signal-source,
.service-generator__signal-output {
	background: #000050;
}

.service-generator__signal-track {
	background: rgba(255, 255, 255, .18);
}

.service-generator__top span,
.service-generator__intro > p,
.service-generator__bottom {
	color: rgba(255, 255, 255, .55);
}

/* ============================================================
   HERO — REGION-ANCHORED PROJECT PREVIEW
   Latest approved behaviour:
   - TRINOVIK / LABS is larger and remains the hero identity
   - tagline is one centered line on desktop
   - project preview is square, borderless and moderate in size
   - preview sits above the touched identity region
   - preview moves horizontally only; vertical position stays fixed
   - TRI / NOV / IK / LABS map to Shell / Sun Life / Axiata / MISC
   - project switching speed responds to cursor speed
   - no visible cursor circle
   ============================================================ */

.signal-hero--identity-reveal {
	--identity-main-size: clamp(8rem, 17vw, 18rem);
	--identity-labs-size: clamp(3.8rem, 8vw, 8.6rem);
	--identity-line-gap: 8px;
	--identity-center-y: 40%;
	--project-anchor-x: 50%;
	--project-transition-duration: 520ms;
	--project-move-duration: 520ms;

	position: relative;
	cursor: auto !important;

	background:
		radial-gradient(
			circle at 84% 12%,
			rgba(215, 4, 216, .88) 0%,
			rgba(109, 3, 153, .58) 24%,
			transparent 48%
		),
		radial-gradient(
			circle at 46% 98%,
			rgba(43, 31, 175, .98) 0%,
			rgba(29, 13, 126, .64) 39%,
			transparent 67%
		),
		linear-gradient(
			118deg,
			#090256 0%,
			#1d0d7e 39%,
			#440688 69%,
			#6d0399 100%
		);
}

.signal-hero--identity-reveal .signal-hero__canvas {
	z-index: 3;
}

.signal-hero--identity-reveal .signal-hero__ambient {
	z-index: 1;
}

.signal-hero--identity-reveal .signal-hero__frame {
	z-index: 2;
}

.signal-hero--identity-reveal .signal-hero__inner {
	z-index: 8;
	padding-top: clamp(95px, 10vh, 125px);
}

/* ------------------------------------------------------------
   Square project preview.
   X position changes to the active word region.
   Y position never follows the pointer.
   ------------------------------------------------------------ */

.signal-hero__project-reveal {
	position: absolute;
	z-index: 7;
	left: var(--project-anchor-x);
	top: clamp(102px, 12vh, 138px);

	width: clamp(225px, 20vw, 340px);
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: 0;

	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;

	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) scale(.90);
	transform-origin: center center;
	pointer-events: none;

	transition:
		left var(--project-move-duration) cubic-bezier(.22,.72,.18,1),
		opacity var(--project-transition-duration) ease,
		visibility var(--project-transition-duration) ease;

	will-change: left, opacity, transform;
}

.signal-hero.is-project-reveal .signal-hero__project-reveal {
	opacity: 1;
	visibility: visible;
}

.signal-hero__project-reveal.is-switching {
	opacity: .28 !important;
}

.signal-hero__project-reveal.is-growing {
	animation:
		hero-region-project-grow
		var(--project-transition-duration)
		cubic-bezier(.16,.84,.24,1)
		forwards;
}

.signal-hero__project-reveal-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;

	filter:
		brightness(.91)
		saturate(.98)
		contrast(1.01);

	transition:
		filter var(--project-transition-duration) cubic-bezier(.16,.84,.24,1),
		opacity var(--project-transition-duration) ease;
}

.signal-hero.is-project-reveal .signal-hero__project-reveal-image {
	filter:
		brightness(1)
		saturate(1.03)
		contrast(1.02);
}

@keyframes hero-region-project-grow {
	0% {
		transform: translateX(-50%) scale(.90);
	}

	100% {
		transform: translateX(-50%) scale(1);
	}
}

/* ------------------------------------------------------------
   Larger particle identity stage
   ------------------------------------------------------------ */

.signal-hero--identity-reveal .signal-hero__stage {
	flex: 1;
	min-height: clamp(470px, 64vh, 740px);
	width: 100%;
	cursor: default;
}

/* ------------------------------------------------------------
   Centered one-line supporting statement on desktop
   ------------------------------------------------------------ */

.signal-hero--identity-reveal .signal-hero__message {
	display: block;
	width: min(100%, 1180px);
	margin: 0 auto;
	text-align: center;
	opacity: .12;
	transform: translateY(16px);
	transition:
		opacity .8s ease,
		transform .8s cubic-bezier(.2,.8,.2,1);
}

.signal-hero--identity-reveal.is-resolved .signal-hero__message {
	opacity: 1;
	transform: translateY(0);
}

.signal-hero--identity-reveal .signal-hero__message-main h1 {
	margin: 0 auto 18px;
	max-width: none;
	font-size: clamp(1.65rem, 2.65vw, 3rem);
	line-height: 1;
	letter-spacing: -.042em;
	text-transform: uppercase;
	font-weight: 500;
	white-space: nowrap;
	text-align: center;
}

.signal-hero--identity-reveal .signal-hero__message-main > p {
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.signal-hero--identity-reveal .signal-hero__actions {
	margin-top: 25px;
	justify-content: center;
}

.signal-hero--identity-reveal .signal-hero__bottom {
	margin-top: clamp(20px, 2.5vh, 34px);
}

/* Tablet */
@media (max-width: 1000px) {
	.signal-hero__project-reveal {
		top: clamp(96px, 11vh, 124px);
		width: clamp(210px, 29vw, 310px);
	}

	.signal-hero--identity-reveal .signal-hero__stage {
		min-height: 57vh;
	}

	.signal-hero--identity-reveal .signal-hero__message {
		width: min(100%, 820px);
	}

	.signal-hero--identity-reveal .signal-hero__message-main h1 {
		font-size: clamp(1.55rem, 3.4vw, 2.45rem);
	}
}

/* Touch / mobile: tap an actual letter to select a project region. */
@media (hover: none), (pointer: coarse) {
	.signal-hero--identity-reveal .signal-hero__stage {
		cursor: pointer;
	}
}

@media (max-width: 680px) {
	.signal-hero--identity-reveal .signal-hero__inner {
		padding-top: 82px;
	}

	.signal-hero__project-reveal {
		top: 78px;
		width: min(54vw, 230px);
	}

	.signal-hero--identity-reveal .signal-hero__stage {
		min-height: 50vh;
	}

	.signal-hero--identity-reveal .signal-hero__message {
		width: 100%;
	}

	.signal-hero--identity-reveal .signal-hero__message-main h1 {
		font-size: clamp(1.4rem, 7.1vw, 2rem);
		white-space: normal;
	}

	.signal-hero--identity-reveal .signal-hero__message-main > p {
		max-width: 340px;
	}

	.signal-hero--identity-reveal .signal-hero__pillars {
		display: none;
	}
}

@media (max-width: 430px) {
	.signal-hero__project-reveal {
		width: min(56vw, 205px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.signal-hero__project-reveal {
		transition: none;
		transform: translateX(-50%) scale(1);
	}

	.signal-hero__project-reveal.is-growing {
		animation: none;
	}

	.signal-hero__project-reveal-image {
		transition: none;
		filter: brightness(1) saturate(1) contrast(1);
	}

	.signal-hero--identity-reveal .signal-hero__message {
		opacity: 1;
		transform: none;
	}
}


/* ============================================================
   HEADER — TRINOVIK MINIMAL FULL-SCREEN MENU
   ============================================================ */

body.menu-open {
	overflow: hidden;
}

.site-header.site-header--minimal {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	padding:
		clamp(16px, 2vw, 24px)
		var(--page-padding);

	border-bottom: 1px solid rgba(255,255,255,.055);

	background:
		linear-gradient(
			90deg,
			rgba(0,4,53,.32) 0%,
			rgba(22,14,112,.18) 55%,
			rgba(86,3,128,.12) 100%
		);

	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);

	transition:
		padding .35s ease,
		background .35s ease,
		border-color .35s ease,
		backdrop-filter .35s ease;
}

.site-header.site-header--minimal.is-scrolled {
	padding:
		clamp(13px, 1.6vw, 18px)
		var(--page-padding);

	background:
		rgba(0,4,53,.78);

	border-color:
		rgba(255,255,255,.09);

	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.site-header.site-header--minimal.is-menu-open {
	background: transparent;
	border-color: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.site-header.site-header--minimal
.site-header__inner {
	position: relative;
	z-index: 1002;

	width: 100%;
	max-width: var(--container);
	margin: 0 auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-header--minimal .site-header__controls {
	position: relative;
	z-index: 1003;
	display: flex;
	align-items: center;
	gap: clamp(18px, 2vw, 32px);
}

.site-header--minimal .site-header__project-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 43px;
	padding: 5px 6px 5px 18px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 999px;
	background:
		linear-gradient(110deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.12),
		0 8px 30px rgba(17,0,87,.16);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition:
		color .3s ease,
		border-color .3s ease,
		background .3s ease,
		box-shadow .3s ease,
		transform .3s ease,
		opacity .25s ease;
}

.site-header--minimal .site-header__project-node {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	padding: 5px;
	border-radius: 50%;
	background: rgba(255,255,255,.92);
	box-shadow: 0 0 0 1px rgba(255,255,255,.28), 0 0 18px rgba(211,24,205,.22);
	transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}

.site-header--minimal .site-header__project-node img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-header--minimal .site-header__project-link:hover,
.site-header--minimal .site-header__project-link:focus-visible {
	color: #fff;
	border-color: rgba(255,255,255,.58);
	background:
		linear-gradient(110deg, rgba(255,255,255,.19), rgba(208,16,201,.10));
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.18),
		0 10px 32px rgba(105,0,166,.22);
	transform: translateY(-2px);
}

.site-header--minimal .site-header__project-link:hover .site-header__project-node,
.site-header--minimal .site-header__project-link:focus-visible .site-header__project-node {
	transform: rotate(45deg) scale(1.04);
	box-shadow: 0 0 0 1px rgba(255,255,255,.38), 0 0 22px rgba(211,24,205,.38);
}

.site-header--minimal.is-menu-open .site-header__project-link {
	opacity: 0;
	pointer-events: none;
}


/* ============================================================
   REAL TRINOVIK LOGO
   ============================================================ */

.site-header--minimal .site-logo--image {
	position: relative;
	z-index: 1003;

	display: block;
	width:
		clamp(118px, 9vw, 154px);
	height: auto;

	line-height: 0;
}

.site-header--minimal .site-logo--image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}


/* ============================================================
   TWO-LINE HAMBURGER
   ============================================================ */

.site-header--minimal .menu-toggle {
	position: relative;
	z-index: 1003;

	display: flex;
	width: 56px;
	height: 44px;
	padding: 0;

	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 9px;

	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;

	-webkit-tap-highlight-color: transparent;
}

.site-header--minimal .menu-toggle::before {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 999px;
	background: rgba(255,255,255,0);
	transition: background .3s ease;
}

.site-header--minimal .menu-toggle:hover::before,
.site-header--minimal .menu-toggle:focus-visible::before {
	background: rgba(255,255,255,.055);
}

.site-header--minimal .menu-toggle span {
	position: relative;
	z-index: 1;

	display: block;
	width: 34px;
	height: 2px;
	margin: 0;

	background: currentColor;
	transform-origin: center;

	transition:
		transform .45s cubic-bezier(.2,.8,.2,1),
		width .35s ease,
		opacity .25s ease;
}

.site-header--minimal .menu-toggle span:nth-child(2) {
	width: 25px;
	margin-left: 9px;
}

.site-header--minimal .menu-toggle[aria-expanded="true"] span:first-child {
	width: 32px;
	transform: translateY(5.5px) rotate(45deg);
}

.site-header--minimal .menu-toggle[aria-expanded="true"] span:nth-child(2) {
	width: 32px;
	margin-left: 0;
	transform: translateY(-5.5px) rotate(-45deg);
}


/* ============================================================
   FULL-SCREEN MENU OVERLAY
   ============================================================ */

.site-header--minimal .site-nav--overlay {
	position: fixed;
	z-index: 1001;
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
	width: 100vw;
	height: 100dvh;
	min-height: 100vh;
	max-height: 100dvh;

	display: grid;
	place-items: center;

	padding:
		clamp(110px, 13vh, 155px)
		var(--page-padding)
		clamp(45px, 7vh, 80px);

	background:
		radial-gradient(
			circle at 86% 12%,
			rgba(210,0,209,.58) 0%,
			rgba(109,3,153,.30) 26%,
			transparent 53%
		),
		radial-gradient(
			circle at 26% 88%,
			rgba(43,31,175,.55) 0%,
			rgba(29,13,126,.28) 35%,
			transparent 62%
		),
		linear-gradient(
			118deg,
			#000435 0%,
			#12096b 42%,
			#3b087f 72%,
			#69038f 100%
		);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-14px);

	overflow-y: auto;
	overscroll-behavior: contain;

	transition:
		opacity .30s ease,
		visibility .30s ease,
		transform .34s cubic-bezier(.2,.8,.2,1);
}

.site-header--minimal .site-nav--overlay::before {
	content: "";
	position: absolute;
	inset: 0;

	background-image:
		linear-gradient(
			rgba(255,255,255,.035) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255,255,255,.035) 1px,
			transparent 1px
		);

	background-size: 90px 90px;
	mask-image:
		radial-gradient(circle at center, #000 0%, transparent 85%);
	pointer-events: none;
}

.site-header--minimal .site-nav--overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.site-header--minimal .site-nav__inner {
	position: relative;
	z-index: 2;

	width: min(100%, 1120px);
	margin: 0 auto;

	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.site-header--minimal .site-nav--overlay a {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: flex-start;

	width: 100%;
	padding:
		clamp(10px, 1.4vh, 17px)
		0;

	border-bottom:
		1px solid rgba(255,255,255,.14);

	color: #fff;
	text-decoration: none;

	font-size:
		clamp(3.4rem, 6.6vw, 7rem);
	line-height: .84;
	letter-spacing: -.065em;
	font-weight: 500;
	text-transform: uppercase;

	overflow: hidden;
}

.site-header--minimal .site-nav--overlay a:first-child {
	border-top:
		1px solid rgba(255,255,255,.14);
}

.site-header--minimal .site-nav--overlay a::after {
	display: none;
}

.site-header--minimal .site-nav--overlay a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;

	background:
		linear-gradient(
			90deg,
			#fff,
			#c8b4ff 52%,
			#e800df
		);

	transform: scaleX(0);
	transform-origin: right;
	transition:
		transform .45s cubic-bezier(.2,.8,.2,1);
}

.site-header--minimal .site-nav--overlay a span {
	display: inline-block;
	transition:
		transform .45s cubic-bezier(.2,.8,.2,1),
		color .3s ease;
}

.site-header--minimal .site-nav--overlay a:hover::before,
.site-header--minimal .site-nav--overlay a:focus-visible::before {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header--minimal .site-nav--overlay a:hover span,
.site-header--minimal .site-nav--overlay a:focus-visible span {
	transform: translateX(14px);
	color: #d6c8ff;
}

.site-header--minimal .site-nav--overlay a:focus-visible,
.site-header--minimal .menu-toggle:focus-visible,
.site-header--minimal .site-logo--image:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 6px;
}


/* ============================================================
   MENU ENTRANCE CASCADE
   ============================================================ */

.site-header--minimal .site-nav--overlay a {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity .30s ease,
		transform .38s cubic-bezier(.2,.8,.2,1);
}

.site-header--minimal .site-nav--overlay.is-open a {
	opacity: 1;
	transform: translateY(0);
}

.site-header--minimal .site-nav--overlay.is-open a:nth-child(1) {
	transition-delay: .04s;
}

.site-header--minimal .site-nav--overlay.is-open a:nth-child(2) {
	transition-delay: .07s;
}

.site-header--minimal .site-nav--overlay.is-open a:nth-child(3) {
	transition-delay: .10s;
}

.site-header--minimal .site-nav--overlay.is-open a:nth-child(4) {
	transition-delay: .13s;
}

.site-header--minimal .site-nav--overlay.is-open a:nth-child(5) {
	transition-delay: .16s;
}


/* ============================================================
   HEADER RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {

	.site-header.site-header--minimal
	.site-header__inner {
		grid-template-columns: none;
	}

	.site-header--minimal .site-nav--overlay {
		padding-top:
			clamp(105px, 13vh, 135px);
	}

	.site-header--minimal .site-nav--overlay a {
		font-size:
			clamp(3.5rem, 11vw, 7rem);
	}

}

@media (max-width: 680px) {

	.site-header.site-header--minimal {
		padding:
			14px
			18px;
	}

	.site-header.site-header--minimal.is-scrolled {
		padding:
			12px
			18px;
	}

	.site-header--minimal .site-logo--image {
		width:
			clamp(104px, 31vw, 122px);
	}

	.site-header--minimal .site-header__controls {
		gap: 10px;
	}

	.site-header--minimal .site-header__project-link {
		font-size: 11px;
		gap: 8px;
		min-height: 38px;
		padding: 4px 5px 4px 13px;
	}

	.site-header--minimal .site-header__project-node {
		width: 28px;
		height: 28px;
	}

	.site-header--minimal .menu-toggle {
		width: 46px;
		height: 40px;
	}

	.site-header--minimal .menu-toggle span {
		width: 29px;
	}

	.site-header--minimal .menu-toggle span:nth-child(2) {
		width: 21px;
		margin-left: 8px;
	}

	.site-header--minimal .site-nav--overlay {
		padding:
			100px
			18px
			36px;

		place-items: center stretch;
	}

	.site-header--minimal .site-nav__inner {
		width: 100%;
	}

	.site-header--minimal .site-nav--overlay a {
		padding:
			20px 0;

		font-size:
			clamp(3rem, 15vw, 5.3rem);
		line-height: .88;
	}

}

@media (prefers-reduced-motion: reduce) {

	.site-header--minimal .site-nav--overlay,
	.site-header--minimal .site-nav--overlay a,
	.site-header--minimal .site-nav--overlay a span,
	.site-header--minimal .menu-toggle span {
		transition-duration: .01ms !important;
	}

}

/* ============================================================
   HERO — FULL BACKGROUND PROJECT REVEAL
   Updates the identity reveal hero so touching TRI / NOV / IK / LABS
   swaps the entire hero background instead of showing a popup.
   ============================================================ */

.signal-hero--identity-reveal {
	--project-transition-duration: 520ms;
	--project-exit-duration: 160ms;
	position: relative;
	overflow: hidden;
}

.signal-hero--identity-reveal .signal-hero__project-backgrounds {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.signal-hero--identity-reveal .signal-hero__project-background {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
	transform: scale(1.02);
	filter: brightness(.92) saturate(1.02) contrast(1.01);
	transition:
		opacity var(--project-transition-duration) cubic-bezier(.22,.72,.18,1),
		transform var(--project-transition-duration) cubic-bezier(.22,.72,.18,1),
		filter var(--project-transition-duration) ease;
		
	will-change: opacity, transform, filter;
}

.signal-hero--identity-reveal .signal-hero__project-background.is-active {
	opacity: 1;
	transform: scale(1);
	filter: brightness(.97) saturate(1.03) contrast(1.02);
}

.signal-hero--identity-reveal .signal-hero__project-background-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(0, 4, 53, .18) 0%,
			rgba(0, 4, 53, .12) 36%,
			rgba(0, 4, 53, .20) 100%
		),
		radial-gradient(
			circle at 50% 42%,
			rgba(0, 4, 53, .03) 0%,
			rgba(0, 4, 53, .12) 72%,
			rgba(0, 4, 53, .20) 100%
		);
	opacity: 0;
	transition: opacity var(--project-transition-duration) ease;
}

.signal-hero--identity-reveal.is-project-reveal .signal-hero__project-background-overlay {
	opacity: 1;
}

.signal-hero--identity-reveal .signal-hero__ambient {
	opacity: 1;
	transition: opacity var(--project-transition-duration) ease;
}

.signal-hero--identity-reveal.is-project-reveal .signal-hero__ambient {
	opacity: .16;
}

.signal-hero--identity-reveal .signal-hero__frame {
	opacity: 1;
	transition: opacity var(--project-transition-duration) ease;
}

.signal-hero--identity-reveal.is-project-reveal .signal-hero__frame {
	opacity: .72;
}

.signal-hero--identity-reveal .signal-hero__canvas {
	z-index: 4;
}

.signal-hero--identity-reveal .signal-hero__inner {
	z-index: 8;
}

/* Remove older popup/card preview if legacy markup remains. */
.signal-hero--identity-reveal .signal-hero__project-reveal {
	display: none !important;
}

@media (max-width: 680px) {
	.signal-hero--identity-reveal .signal-hero__project-background {
		background-position: center center;
	}

	.signal-hero--identity-reveal .signal-hero__project-background-overlay {
		background:
			linear-gradient(
				180deg,
				rgba(0, 4, 53, .18) 0%,
				rgba(0, 4, 53, .12) 42%,
				rgba(0, 4, 53, .22) 100%
			),
			radial-gradient(
				circle at 50% 45%,
				rgba(0, 4, 53, .04) 0%,
				rgba(0, 4, 53, .13) 72%,
				rgba(0, 4, 53, .22) 100%
			);
	}
}

@media (prefers-reduced-motion: reduce) {
	.signal-hero--identity-reveal .signal-hero__project-background,
	.signal-hero--identity-reveal .signal-hero__project-background-overlay,
	.signal-hero--identity-reveal .signal-hero__ambient,
	.signal-hero--identity-reveal .signal-hero__frame {
		transition: none;
	}
}


/* ============================================================
   HERO — STRONGER IDENTITY PARTICLES / CLEAN RETURN
   ============================================================ */
.signal-hero--identity-reveal .signal-hero__canvas {
	filter:
		drop-shadow(0 0 12px rgba(223, 214, 255, .18))
		drop-shadow(0 0 22px rgba(223, 214, 255, .10));
}

.signal-hero--identity-reveal .signal-hero__project-background {
	transition:
		opacity var(--project-transition-duration) cubic-bezier(.22,.72,.18,1),
		transform var(--project-transition-duration) cubic-bezier(.22,.72,.18,1),
		filter var(--project-transition-duration) ease;
}

/* ============================================================
   SECTION 02 — SELECTED WORK TYPOGRAPHY / COUNTER POLISH
   Keeps the project artwork visible by reducing the title scale,
   allowing natural two-line wrapping, and improving counters.
   ============================================================ */

.cinema-project__copy {
	max-width: min(62vw, 920px);
}

.cinema-project__copy h2 {
	max-width: min(62vw, 920px);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: clamp(3.4rem, 5.6vw, 6.8rem);
	font-weight: 300;
	line-height: .88;
	letter-spacing: -.055em;
}

/*
 * Keep each word independently animated, but allow the title
 * to wrap naturally instead of forcing every word onto a new line.
 */
.cinema-project__copy h2 span {
	display: inline-block;
	margin-right: .16em;
}

.cinema-project__copy h2 span:last-child {
	margin-right: 0;
}

/* Top-right project counter only. */
.cinema-work__top > div:last-child {
	gap: 9px;
}

.cinema-work__top > div:last-child span {
	font-size: clamp(11px, .9vw, 15px);
	letter-spacing: .12em;
	color: rgba(255,255,255,.68);
}

.cinema-work__top > div:last-child span:first-child {
	font-weight: 600;
	color: rgba(255,255,255,.96);
}

@media (max-width: 1100px) {
	.cinema-project__copy {
		max-width: min(70vw, 760px);
	}

	.cinema-project__copy h2 {
		max-width: min(70vw, 760px);
		font-size: clamp(3rem, 7vw, 5.2rem);
		line-height: .89;
	}
}

@media (max-width: 680px) {
	.cinema-project__copy {
		max-width: none;
	}

	.cinema-project__copy h2 {
		max-width: 100%;
		font-size: clamp(2.4rem, 11vw, 4.4rem);
		font-weight: 300;
		line-height: .9;
		letter-spacing: -.045em;
	}

	.cinema-project__copy h2 span {
		margin-right: .14em;
	}

	.cinema-work__top > div:last-child span {
		font-size: 12px;
	}
}

/* ============================================================
   05 — SELECTED CLIENTS / MOVING BRAND WALL — FINAL
   Ellis-style continuous rows, full-colour Trinovik client logos
   ============================================================ */

/* Keep the section light and clean. */
.client-marquee {
	--client-gap: 14px;
	--client-half-gap: 7px;
	--client-card-radius: 26px;
	background: #eeeae3;
	color: #111214;
}

/* Center the intro and reduce the heading size. */
.client-marquee__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-align: center;
}

.client-marquee__intro > p {
	margin: 0;
	max-width: 430px;
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: rgba(17,18,20,.46);
}

.client-marquee__intro h2 {
	margin: 0 auto;
	max-width: 820px;
	font-size: clamp(2.7rem, 4.6vw, 5.2rem);
	line-height: .9;
	letter-spacing: -.052em;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
}

.client-marquee__intro h2 span {
	display: block;
	margin-left: 0;
	color: #7659d8;
	font-style: italic;
	font-weight: 400;
}

.client-marquee__rows {
	margin-top: clamp(62px, 7vw, 100px);
}

/* Slightly smaller boxes — the logo itself stays visually strong. */
.client-marquee__card {
	flex-basis: clamp(210px, 18.5vw, 300px);
	height: clamp(138px, 11.8vw, 182px);
	padding: clamp(14px, 1.5vw, 22px);
	border-radius: var(--client-card-radius);
	background: rgba(255,255,255,.82);
	box-shadow: 0 12px 36px rgba(31,24,45,.035);
}

/* Full-colour logos at all times. */
.client-marquee__logo img {
	width: auto;
	height: auto;
	max-width: 82%;
	max-height: 72%;
	object-fit: contain;
	filter: none !important;
	-webkit-filter: none !important;
	opacity: 1 !important;
	mix-blend-mode: normal;
}

.client-marquee__card:hover .client-marquee__logo img {
	filter: none !important;
	-webkit-filter: none !important;
	opacity: 1;
	transform: scale(1.035);
}

.client-marquee__card-index {
	left: 15px;
	top: 13px;
}

.client-marquee__card-label {
	right: 15px;
	bottom: 12px;
}

/* Calm continuous motion similar to the earlier approved marquee. */
.client-marquee__track {
	animation-duration: 36s;
}

.client-marquee__row--reverse .client-marquee__track {
	animation-duration: 40s;
}

/* Keep pause-on-hover behavior. */
.client-marquee__row:hover .client-marquee__track {
	animation-play-state: paused;
}

@media (max-width: 1000px) {
	.client-marquee__card {
		flex-basis: clamp(200px, 28vw, 265px);
		height: clamp(132px, 18vw, 168px);
	}

	.client-marquee__logo img {
		max-width: 84%;
		max-height: 72%;
	}
}

@media (max-width: 680px) {
	.client-marquee__intro {
		gap: 14px;
	}

	.client-marquee__intro h2 {
		font-size: clamp(2.25rem, 10.5vw, 3.5rem);
		line-height: .92;
	}

	.client-marquee__intro h2 span {
		margin-left: 0;
	}

	.client-marquee__rows {
		margin-top: 56px;
	}

	.client-marquee__card {
		flex-basis: 185px;
		height: 124px;
		padding: 13px;
		border-radius: 19px;
	}

	.client-marquee__logo img {
		max-width: 86%;
		max-height: 74%;
	}

	.client-marquee__track {
		animation-duration: 28s;
	}

	.client-marquee__row--reverse .client-marquee__track {
		animation-duration: 31s;
	}
}

/* ============================================================
   SECTION 03 — CONTROLLED METHOD TITLE SIZE
   ============================================================ */

.method-panel h3 {
	font-size: clamp(5rem, 11vw, 11.5rem);
	line-height: .72;
	letter-spacing: -.075em;
}

@media (max-width: 1000px) {
	.method-panel h3 {
		font-size: clamp(4.5rem, 13vw, 8rem);
	}
}

@media (max-width: 680px) {
	.method-panel h3 {
		font-size: clamp(3.2rem, 15vw, 5rem);
	}
}
/* ============================================================
   HEADER — BACK TO NORMAL SOLID BACKGROUND
   ============================================================ */

.site-header--minimal {
	background: #000435;

	backdrop-filter: none;
	-webkit-backdrop-filter: none;

	border-bottom:
		1px solid rgba(255, 255, 255, 0.08);
}


/* Scrolled header */

.site-header--minimal.is-scrolled {
	background: #000435;

	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}


/* Mobile */

@media (max-width: 680px) {

	.site-header--minimal,
	.site-header--minimal.is-scrolled {
		background: #000435;

		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

}


/* Final cascade guard: the original menu rules remain earlier in this file
   for legacy templates. These declarations keep the new Core composition
   authoritative after those older rules have finished cascading. */
.site-header--minimal .site-nav--overlay {
	display: block;
	place-items: initial;
	padding: 0;
	background:
		radial-gradient(circle at 78% 44%, rgba(100, 26, 207, .23), transparent 35%),
		radial-gradient(circle at 94% 8%, rgba(224, 0, 223, .17), transparent 28%),
		radial-gradient(circle at 35% 110%, rgba(25, 65, 180, .13), transparent 40%),
		linear-gradient(118deg, #020617 0%, #050722 47%, #12082f 76%, #25093c 100%);
	opacity: 0;
	visibility: hidden;
	transform: none;
	clip-path: circle(0 at calc(100% - var(--page-padding) - 28px) 48px);
	transition:
		clip-path .78s cubic-bezier(.72, 0, .2, 1),
		opacity .24s ease,
		visibility .78s step-end;
}

.site-header--minimal .site-nav--overlay::before {
	background-image:
		linear-gradient(rgba(111, 129, 207, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(111, 129, 207, .045) 1px, transparent 1px);
	background-size: clamp(72px, 6.4vw, 112px) clamp(72px, 6.4vw, 112px);
	mask-image: radial-gradient(circle at 72% 48%, #000 0%, transparent 78%);
}

.site-header--minimal .site-nav--overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	clip-path: circle(150% at calc(100% - var(--page-padding) - 28px) 48px);
	transition:
		clip-path .86s cubic-bezier(.2, .78, .2, 1),
		opacity .24s ease,
		visibility 0s step-start;
}

.site-header--minimal .site-nav--overlay .site-nav__inner {
	display: grid;
	grid-template-columns: minmax(380px, .88fr) minmax(460px, 1.12fr);
	align-items: center;
	gap: clamp(36px, 5vw, 90px);
	width: 100%;
	max-width: none;
	min-height: 0;
	margin: 0;
	flex: 1 1 auto;
}

.site-header--minimal .site-nav--overlay .site-nav__item-number {
	display: inline-block;
	transition: color .3s ease, transform .4s ease;
}

.site-header--minimal .site-nav--overlay .site-nav__item-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: transform .44s cubic-bezier(.2, .8, .2, 1);
}

.site-header--minimal .site-nav--overlay .site-nav__item-signal {
	display: block;
	transition:
		transform .5s cubic-bezier(.2, .8, .2, 1),
		opacity .35s ease;
}

@media (max-width: 1000px) and (min-width: 761px) {
	.site-header--minimal .site-nav--overlay {
		padding: 0;
	}

	.site-header--minimal .site-nav--overlay .site-nav__inner {
		grid-template-columns: minmax(330px, .95fr) minmax(350px, 1.05fr);
		gap: 28px;
	}
}

@media (max-width: 760px) {
	.site-header--minimal .site-nav--overlay {
		display: block;
		place-items: initial;
		padding: 0;
		clip-path: circle(0 at calc(100% - 42px) 38px);
	}

	.site-header--minimal .site-nav--overlay.is-open {
		clip-path: circle(180% at calc(100% - 42px) 38px);
	}

	.site-header--minimal .site-nav--overlay .site-nav__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 34px;
		width: 100%;
		flex: 0 0 auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header--minimal .site-nav--overlay,
	.site-header--minimal .site-nav--overlay.is-open {
		clip-path: none;
	}
}

/* ============================================================
   HEADER — SERVICES SUBMENU
   Extends the existing Core menu without changing its visual system.
   ============================================================ */

.site-header--minimal .site-nav__service-group {
	position: relative;
	display: block;
}

.site-header--minimal .site-nav__service-group .site-nav__item {
	padding-right: clamp(50px, 5vw, 74px);
}

.site-header--minimal .site-nav__submenu-toggle {
	position: absolute;
	z-index: 4;
	top: clamp(18px, 2.6vh, 30px);
	right: 0;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(173, 145, 255, .32);
	border-radius: 50%;
	background: rgba(88, 51, 157, .12);
	color: #f5f1ff;
	cursor: pointer;
	opacity: 0;
	transform: translateX(-24px);
	transition: opacity .42s ease .2s, transform .56s cubic-bezier(.2, .78, .2, 1) .2s, border-color .25s ease, background .25s ease;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__submenu-toggle {
	opacity: 1;
	transform: translateX(0);
}

.site-header--minimal .site-nav__submenu-toggle:hover,
.site-header--minimal .site-nav__submenu-toggle:focus-visible {
	border-color: #d84ee9;
	background: rgba(216, 78, 233, .15);
	outline: none;
}

.site-header--minimal .site-nav__submenu-toggle span,
.site-header--minimal .site-nav__submenu-toggle span::after {
	display: block;
	width: 12px;
	height: 1px;
	background: currentColor;
	transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.site-header--minimal .site-nav__submenu-toggle span::after {
	content: "";
	transform: rotate(90deg);
}

.site-header--minimal .site-nav__service-group.is-submenu-open .site-nav__submenu-toggle span {
	transform: rotate(180deg);
}

.site-header--minimal .site-nav__service-group.is-submenu-open .site-nav__submenu-toggle span::after {
	transform: rotate(0deg);
}

.site-header--minimal .site-nav__submenu {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	max-height: 0;
	padding: 0 0 0 clamp(48px, 5.7vw, 88px);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
	transition: max-height .48s cubic-bezier(.2, .8, .2, 1), padding .48s ease, opacity .28s ease, transform .42s ease, visibility .48s step-end;
}

.site-header--minimal .site-nav__service-group.is-submenu-open .site-nav__submenu {
	max-height: 300px;
	padding-top: 10px;
	padding-bottom: 12px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	transition: max-height .48s cubic-bezier(.2, .8, .2, 1), padding .48s ease, opacity .28s ease, transform .42s ease, visibility 0s step-start;
}

.site-header--minimal .site-nav__submenu a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 11px 0;
	border-bottom: 1px solid rgba(132, 143, 204, .13);
	color: rgba(234, 232, 246, .68);
	font-size: clamp(.82rem, 1vw, 1.02rem);
	line-height: 1.2;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: color .25s ease, transform .3s ease, border-color .25s ease;
}

.site-header--minimal .site-nav__submenu a span {
	color: rgba(118, 139, 228, .82);
	font-size: .72em;
}

.site-header--minimal .site-nav__submenu a strong {
	font-weight: 500;
	transition: transform .3s ease;
}

.site-header--minimal .site-nav__submenu a:hover,
.site-header--minimal .site-nav__submenu a:focus-visible {
	color: #fff;
	border-color: rgba(216, 78, 233, .55);
	transform: none;
	outline: none;
}

.site-header--minimal .site-nav__submenu a:hover strong,
.site-header--minimal .site-nav__submenu a:focus-visible strong {
	transform: translateX(5px);
}

.site-header--minimal .site-nav__submenu a[aria-current="page"] {
	color: #fff;
	border-color: rgba(216, 78, 233, .65);
}

.site-header--minimal .site-nav__submenu a[aria-current="page"] span {
	color: #d84ee9;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__links > :nth-child(1) .site-nav__item,
.site-header--minimal .site-nav--overlay.is-open .site-nav__links > .site-nav__item:nth-child(1) {
	transition-delay: .13s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__links > :nth-child(2) .site-nav__item {
	transition-delay: .18s;
}

.site-header--minimal .site-nav--overlay.is-open .site-nav__links > :nth-child(3),
.site-header--minimal .site-nav--overlay.is-open .site-nav__links > :nth-child(4),
.site-header--minimal .site-nav--overlay.is-open .site-nav__links > :nth-child(5) {
	transition-delay: calc(.13s + (var(--menu-order, 2) * .05s));
}

@media (max-height: 820px) and (min-width: 761px) {
	.site-header--minimal .site-nav__service-group.is-submenu-open .site-nav__submenu {
		max-height: 220px;
		padding-top: 5px;
		padding-bottom: 6px;
	}

	.site-header--minimal .site-nav__submenu a {
		padding-block: 7px;
		font-size: .78rem;
	}
}

@media (max-width: 760px) {
	.site-header--minimal .site-nav__submenu-toggle {
		top: 17px;
		right: 0;
		width: 38px;
		height: 38px;
	}

	.site-header--minimal .site-nav__submenu {
		grid-template-columns: 1fr;
		padding-left: 46px;
	}

	.site-header--minimal .site-nav__service-group.is-submenu-open .site-nav__submenu {
		max-height: 280px;
	}

	.site-header--minimal .site-nav__submenu a {
		font-size: .82rem;
		padding-block: 10px;
	}

	.site-header--minimal .site-nav__item-signal::after {
		width: 24px;
		height: 24px;
	}

}

@media (prefers-reduced-motion: reduce) {
	.site-header--minimal .site-nav__submenu,
	.site-header--minimal .site-nav__submenu-toggle,
	.site-header--minimal .site-nav__submenu a,
	.site-header--minimal .site-nav__submenu a strong,
	.site-header--minimal .site-nav__item-signal::after {
		transition-duration: .01ms !important;
	}
}
