/*
Theme Name: ExoVectory Child
Template: hello-elementor
Version: 0.1.0
Text Domain: exovectory-child
*/

:root {
	--exo-navy: #004071;
	--exo-blue: #1580d2;
	--exo-deep-blue: #0347b5;
	--exo-red: #cf0709;
	--exo-grey: #bfbcbc;
	--exo-text: #101820;
	--exo-muted: #4b5563;
	--exo-white: #ffffff;
	--exo-radius: 20px;
	--exo-max: 1184px;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--exo-white);
	color: var(--exo-text);
	font-family: "Poppins", Arial, sans-serif;
}

body.home,
body.front-page,
body.wp-child-theme-exovectory-child {
	overflow-x: hidden;
}

.exo-frontpage {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--exo-white);
	font-family: "Poppins", Arial, sans-serif;
}

.exo-frontpage::before,
.exo-frontpage::after {
	content: "";
	position: fixed;
	inset: auto auto 8vh -12vw;
	width: 34vw;
	aspect-ratio: 1;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(21, 128, 210, 0.12), transparent 64%);
	pointer-events: none;
	z-index: -1;
	animation: exo-ambient-orbit 24s ease-in-out infinite alternate;
}

.exo-frontpage::after {
	inset: 18vh -14vw auto auto;
	background: radial-gradient(circle, rgba(0, 64, 113, 0.1), transparent 66%);
	animation-duration: 30s;
	animation-direction: alternate-reverse;
}

.exo-shell {
	width: min(var(--exo-max), calc(100% - 48px));
	margin: 0 auto;
}

.exo-site-header {
	position: relative;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 rgba(0, 64, 113, 0.08);
	transition: background-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.exo-site-header.exo-header-scrolled {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 50px rgba(0, 64, 113, 0.12);
	animation: exo-header-slide 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
	will-change: transform;
}

.exo-header-placeholder {
	height: 0;
}

.exo-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 132px;
	gap: 36px;
	transition: min-height 240ms ease;
}

.exo-header-scrolled .exo-header-inner {
	min-height: 88px;
}

.exo-logo {
	display: inline-flex;
	align-items: center;
	width: clamp(190px, 18.5vw, 266px);
	transition: width 240ms ease;
}

.exo-header-scrolled .exo-logo {
	width: clamp(156px, 13vw, 202px);
}

.exo-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.exo-nav {
	display: flex;
	align-items: center;
	gap: clamp(16px, 1.55vw, 24px);
	font-family: "Roboto", Arial, sans-serif;
	font-size: clamp(13px, 1.05vw, 16px);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.01em;
}

.exo-nav a {
	position: relative;
	color: var(--exo-navy);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.exo-nav a:not(.exo-nav-license)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	border-radius: 999px;
	background: var(--exo-blue);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 220ms ease;
}

.exo-nav a:hover,
.exo-nav a:focus-visible {
	color: var(--exo-blue);
	transform: translateY(-1px);
}

.exo-nav a:not(.exo-nav-license):hover::after,
.exo-nav a:not(.exo-nav-license):focus-visible::after,
.exo-nav-active::after {
	transform: scaleX(1) !important;
}

.exo-nav-license {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: #0077b5;
	color: var(--exo-white) !important;
	font: 700 15px/1 Arial, sans-serif;
	letter-spacing: -0.05em;
	text-transform: none !important;
	box-shadow: none;
}

.exo-nav-license span {
	transform: translateY(-1px);
}

.exo-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
	background-image: linear-gradient(90deg, rgba(0, 64, 113, 0.52), rgba(0, 64, 113, 0.08)), var(--exo-hero-bg);
	background-size: cover;
	background-position: center;
	color: var(--exo-white);
}

.exo-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(circle at 72% 44%, rgba(21, 128, 210, 0.18), transparent 31%),
		linear-gradient(90deg, rgba(0, 34, 62, 0.64) 0%, rgba(0, 64, 113, 0.44) 42%, rgba(0, 23, 43, 0.22) 100%);
	pointer-events: none;
}

.exo-hero-media {
	position: absolute;
	inset: -2px;
	z-index: 0;
	overflow: hidden;
	background-image: var(--exo-hero-bg);
	background-size: cover;
	background-position: center;
}

.exo-hero-media iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
	border: 0;
	transform: translate(-50%, -50%) scale(1.16);
	pointer-events: none;
}

.exo-hero-content {
	position: relative;
	z-index: 2;
	padding-top: clamp(70px, 8vw, 104px);
	max-width: 720px;
}

.exo-hero h1 {
	margin: 0 0 24px;
	font-size: clamp(38px, 4.1vw, 40px);
	font-weight: 700;
	line-height: 1.225;
	letter-spacing: -0.02em;
}

.exo-hero p {
	max-width: 590px;
	margin: 0;
	font-size: clamp(18px, 2vw, 20px);
	font-weight: 400;
	line-height: 1.6;
}

.exo-section {
	position: relative;
	padding: clamp(76px, 8vw, 104px) 0;
}

.exo-section h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 40px);
	font-weight: 800;
	line-height: 1.225;
	text-transform: uppercase;
}

.exo-section p {
	font-size: clamp(17px, 1.55vw, 18px);
	line-height: 1.78;
}

.exo-kicker-blue {
	color: var(--exo-blue);
}

.exo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	padding: 0 28px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--exo-blue), #3ca8e8);
	color: var(--exo-white);
	font-family: "Roboto", Arial, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 14px 32px rgba(21, 128, 210, 0.2);
	transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.exo-btn:hover,
.exo-btn:focus-visible {
	color: var(--exo-white);
	filter: saturate(1.08);
	transform: translateY(-2px);
	box-shadow: 0 20px 44px rgba(21, 128, 210, 0.28);
}

.exo-btn-outline {
	border: 2px solid var(--exo-white);
	box-shadow: none;
}

.exo-about-grid,
.exo-team-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 406px);
	align-items: center;
	gap: clamp(60px, 10vw, 148px);
}

.exo-about-grid {
	min-height: 413px;
}

.exo-about-copy,
.exo-team-copy {
	max-width: 710px;
}

.exo-about-copy p,
.exo-team-copy p {
	margin: 28px 0 36px;
}

.exo-orb {
	position: relative;
	isolation: isolate;
	width: min(100%, 406px);
	aspect-ratio: 1;
	border-radius: 999px;
	justify-self: end;
	opacity: 1;
}

.exo-orb-glow {
	position: absolute;
	inset: -21.8% -22.2%;
	display: block;
	width: 144.4%;
	height: 143.6%;
	max-width: none;
	z-index: -1;
}

.exo-orb-photo {
	position: relative;
	display: block;
	width: 84.7%;
	height: 84.7%;
	margin: 7.6%;
	border-radius: 999px;
	object-fit: cover;
	z-index: 1;
}

.exo-about-orb .exo-orb-photo {
	object-position: center;
}

.exo-technology {
	background: var(--exo-navy);
	color: var(--exo-white);
	padding-top: clamp(84px, 8vw, 102px);
	padding-bottom: clamp(62px, 7vw, 72px);
}

.exo-technology h2 {
	max-width: 424px;
	margin: 0 auto clamp(54px, 6vw, 72px);
	text-align: center;
}

.exo-technology-grid {
	display: grid;
	grid-template-columns: minmax(320px, 390px) minmax(0, 640px);
	align-items: center;
	justify-content: space-between;
	gap: clamp(64px, 8vw, 96px);
}

.exo-tech-image {
	position: relative;
	width: min(100%, 390px);
	aspect-ratio: 1;
	border-radius: 999px;
}

.exo-tech-glow {
	position: absolute;
	inset: -25.2%;
	display: block;
	width: 150.3%;
	height: 150.3%;
	max-width: none;
}

.exo-tech-photo {
	position: relative;
	display: block;
	width: 96%;
	height: 96%;
	margin: 2%;
	object-fit: contain;
}

.exo-technology .exo-tech-image,
.exo-technology .exo-tech-glow {
	animation: none;
	transform: none;
}

.exo-technology-copy p {
	max-width: 640px;
	margin: 0;
	color: var(--exo-white);
	font-size: 18px;
	line-height: 1.78;
}

.exo-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	margin: 72px 0 46px;
	text-align: center;
}

.exo-benefit {
	position: relative;
	padding-top: 78px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: capitalize;
}

.exo-benefit img {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 60px;
	height: auto;
	max-width: none;
	transform: translateX(-50%) rotate(90deg);
}

.exo-center {
	text-align: center;
}

.exo-evolution {
	position: relative;
	padding-top: clamp(92px, 10vw, 136px);
	padding-bottom: clamp(96px, 10vw, 140px);
}

.exo-evolution h2,
.exo-pipeline h2 {
	text-align: center;
}

.exo-evolution h2,
.exo-evolution-stage-title,
.exo-milestone {
	position: relative;
	z-index: 3;
}

.exo-evolution-stage-title {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 600px;
	margin: 44px auto 0;
	font-size: clamp(32px, 4vw, 40px);
	font-weight: 800;
	line-height: 1.225;
	text-align: center;
	text-transform: capitalize;
}

.exo-evolution-stage-title span:first-child {
	color: var(--exo-deep-blue);
}

.exo-evolution-stage-title span:last-child {
	color: var(--exo-red);
}

.exo-timeline {
	position: relative;
	min-height: 710px;
	margin-top: 42px;
}

.exo-dna-media {
	position: absolute;
	left: 50%;
	top: 8px;
	z-index: 1;
	width: min(34vw, 335px);
	height: 671px;
	max-height: 671px;
	margin: 0;
	transform: translateX(-50%);
	pointer-events: none;
}

.exo-dna-video {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 220%;
	height: 124%;
	border: 0;
	opacity: 1;
	transform: translate(-50%, -50%);
}

.exo-dna {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.16;
	animation: none;
}

.exo-milestone {
	position: absolute;
	max-width: 294px;
}

.exo-milestone:nth-of-type(1) {
	right: 7%;
	top: 86px;
}

.exo-milestone:nth-of-type(2) {
	left: 8%;
	top: 342px;
}

.exo-milestone:nth-of-type(3) {
	right: 5%;
	top: 506px;
}

.exo-milestone-line {
	position: absolute;
	top: 15px;
	display: block;
	width: 187px;
	height: auto;
	max-width: none;
}

.exo-milestone:nth-of-type(1) .exo-milestone-line,
.exo-milestone:nth-of-type(3) .exo-milestone-line {
	right: calc(100% + 26px);
}

.exo-milestone:nth-of-type(2) .exo-milestone-line {
	left: calc(100% + 26px);
}

.exo-milestone time {
	display: block;
	margin-bottom: 20px;
	color: var(--exo-grey);
	font-size: clamp(28px, 3.2vw, 32px);
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
}

.exo-milestone ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 20px;
	line-height: 1.38;
}

.exo-milestone li + li {
	margin-top: 5px;
}

.exo-pipeline {
	background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), var(--exo-pipeline-bg);
	background-size: cover;
	background-position: center;
}

.exo-pipeline-intro {
	max-width: 720px;
	margin: 42px auto 56px;
	text-align: center;
}

.exo-programmes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(40px, 7vw, 101px);
}

.exo-programme {
	padding: 48px 44px 20px;
	min-height: 328px;
	border-radius: 13px;
	color: var(--exo-white);
	text-align: center;
}

.exo-programme-dark {
	background: var(--exo-navy);
}

.exo-programme-blue {
	background: var(--exo-blue);
}

.exo-programme h3 {
	margin: 0 0 28px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}

.exo-programme p {
	margin: 0 0 24px;
	text-align: left;
	color: var(--exo-white);
}

.exo-tags {
	display: flex;
	justify-content: center;
	gap: 38px;
	flex-wrap: wrap;
}

.exo-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 146px;
	min-height: 35px;
	border: 2px solid var(--exo-white);
	border-radius: 999px;
	font-size: 18px;
}

.exo-team {
	padding-top: clamp(90px, 9vw, 95px);
}

.exo-team-grid {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 406px);
}

.exo-cta {
	position: relative;
	padding: clamp(118px, 13vw, 155px) 0 clamp(96px, 11vw, 128px);
	background-image: linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)), var(--exo-cta-bg);
	background-size: cover;
	background-position: center;
	text-align: center;
}

.exo-cta h2 {
	max-width: 890px;
	margin: 0 auto 40px;
	color: var(--exo-navy);
	font-size: clamp(36px, 4.8vw, 48px);
	font-weight: 700;
	line-height: 1.19;
	letter-spacing: -0.02em;
}

.exo-cta p {
	max-width: 965px;
	margin: 0 auto 46px;
}

.exo-footer-partners {
	padding: clamp(58px, 7vw, 86px) 0 clamp(42px, 5vw, 58px);
	background: var(--exo-white);
}

.exo-footer-partners h2 {
	margin-bottom: 0;
}

.exo-footer-strip {
	width: 100%;
	height: 33px;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.exo-header-inner {
		min-height: 104px;
		align-items: flex-start;
		flex-direction: column;
		padding: 18px 0 22px;
		gap: 18px;
	}

	.exo-nav {
		width: 100%;
		justify-content: space-between;
		gap: 14px;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.exo-about-grid,
	.exo-team-grid,
	.exo-technology-grid,
	.exo-programmes {
		grid-template-columns: 1fr;
	}

	.exo-orb,
	.exo-tech-image {
		justify-self: center;
	}

	.exo-technology-copy {
		max-width: 760px;
		margin: 0 auto;
	}

	.exo-timeline {
		min-height: auto;
		padding-top: 38px;
	}

	.exo-dna-media {
		position: relative;
		display: block;
		left: auto;
		top: auto;
		width: min(72vw, 335px);
		height: min(120vw, 671px);
		min-height: 420px;
		margin: 0 auto 42px;
		transform: none;
	}

	.exo-milestone,
	.exo-milestone:nth-of-type(1),
	.exo-milestone:nth-of-type(2),
	.exo-milestone:nth-of-type(3) {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		max-width: 720px;
		margin: 0 auto 34px;
		padding-left: 28px;
	}

	.exo-milestone-line,
	.exo-milestone:nth-of-type(1) .exo-milestone-line,
	.exo-milestone:nth-of-type(2) .exo-milestone-line,
	.exo-milestone:nth-of-type(3) .exo-milestone-line {
		left: -32px;
		right: auto;
		top: 0;
		width: 60px;
		transform: rotate(90deg);
		transform-origin: 30px 30px;
	}
}

@media (max-width: 767px) {
	.exo-shell {
		width: min(100% - 32px, var(--exo-max));
	}

	.exo-header-inner {
		min-height: 92px;
	}

	.exo-logo {
		width: 188px;
	}

	.exo-nav {
		font-size: 12px;
		justify-content: flex-start;
	}

	.exo-nav-license {
		width: 32px;
		height: 32px;
		flex: 0 0 auto;
		font-size: 16px;
	}

	.exo-hero {
		min-height: 540px;
		background-position: 58% center;
	}

	.exo-hero-content {
		padding-top: 78px;
	}

	.exo-hero h1 {
		font-size: 34px;
	}

	.exo-hero p {
		font-size: 18px;
	}

	.exo-section {
		padding: 72px 0;
	}

	.exo-section h2 {
		font-size: 32px;
	}

	.exo-benefits {
		grid-template-columns: 1fr;
		gap: 26px;
		margin: 48px 0;
	}

	.exo-benefit {
		padding-top: 0;
		padding-left: 24px;
		text-align: left;
	}

	.exo-benefit img {
		left: -32px;
		top: 0;
		width: 60px;
		transform: rotate(90deg);
		transform-origin: 30px 30px;
	}

	.exo-evolution-stage-title {
		grid-template-columns: 1fr;
		gap: 8px;
		font-size: 32px;
	}

	.exo-milestone ul {
		font-size: 18px;
	}

	.exo-programme {
		padding: 38px 26px 28px;
	}

	.exo-tags {
		gap: 14px;
	}

	.exo-tag {
		min-width: 116px;
	}

	.exo-cta h2 {
		font-size: 34px;
	}
}

.exo-nav-active {
	color: var(--exo-blue) !important;
}

.exo-page-hero {
	position: relative;
	min-height: 579px;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
	padding-top: 148px;
	background-image: linear-gradient(90deg, rgba(0, 64, 113, 0.26), rgba(0, 64, 113, 0.02)), var(--exo-page-hero-bg);
	background-size: cover;
	background-position: center;
}

.exo-page-hero-video::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(circle at 70% 42%, rgba(21, 128, 210, 0.16), transparent 34%),
		linear-gradient(90deg, rgba(0, 34, 62, 0.62) 0%, rgba(0, 64, 113, 0.38) 45%, rgba(0, 23, 43, 0.18) 100%);
	pointer-events: none;
}

.exo-page-hero > .exo-shell {
	position: relative;
	z-index: 2;
}

.exo-page-hero-media {
	position: absolute;
	inset: -2px;
	z-index: 0;
	overflow: hidden;
	background-image: var(--exo-page-hero-bg);
	background-size: cover;
	background-position: center;
}

.exo-page-hero-media iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
	border: 0;
	transform: translate(-50%, -50%) scale(1.16);
	pointer-events: none;
}

.exo-page-hero h1 {
	margin: 0;
	color: var(--exo-white);
	font-size: clamp(38px, 4.2vw, 40px);
	font-weight: 700;
	line-height: 1.225;
}

.exo-about-page .exo-page-hero {
	background-position: center top;
	animation-name: exo-about-hero-drift;
}

.exo-subpage .exo-section-title-center {
	text-align: center;
}

.exo-subpage h3 {
	color: var(--exo-navy);
}

.exo-mission {
	margin: clamp(56px, 7vw, 92px) auto 0;
	max-width: 1180px;
	color: var(--exo-blue);
	font-size: clamp(26px, 3.4vw, 36px) !important;
	line-height: 1.36 !important;
	text-align: center;
}

.exo-person-grid {
	display: grid;
	gap: clamp(28px, 4vw, 44px);
	margin-top: 54px;
}

.exo-person-grid-four {
	grid-template-columns: repeat(4, 1fr);
}

.exo-person {
	text-align: center;
}

.exo-person img {
	display: block;
	width: min(100%, 240px);
	aspect-ratio: 1;
	margin: 0 auto 24px;
	object-fit: cover;
	object-position: center 16%;
	-webkit-mask: url("assets/images/circle-mask.svg") center / 100% 100% no-repeat;
	mask: url("assets/images/circle-mask.svg") center / 100% 100% no-repeat;
}

.exo-person:nth-child(2) img {
	object-position: center 10%;
}

.exo-person:nth-child(3) img,
.exo-person:nth-child(4) img {
	object-position: center 8%;
}

.exo-person h3,
.exo-info-card h3 {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.38;
}

.exo-person p,
.exo-info-card p,
.exo-info-card span {
	margin: 0;
	color: var(--exo-navy);
	font-size: 20px;
	line-height: 1.55;
}

.exo-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 53px 55px;
	margin-top: 54px;
}

.exo-info-card {
	min-height: 223px;
	padding: 44px 28px;
	border-radius: 13px;
	background: #e8f5ff;
	text-align: center;
}

.exo-about-logo-carousel {
	overflow: hidden;
	margin-top: 58px;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.exo-about-logo-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((min(1180px, 100vw - 48px) - 72px) / 4);
	align-items: center;
	gap: 24px;
	width: max-content;
	animation: exo-logo-scroll 46s linear infinite;
}

.exo-about-logo-carousel:hover .exo-about-logo-track {
	animation-play-state: paused;
}

.exo-about-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 118px;
}

.exo-about-logo-item img {
	display: block;
	max-width: 82%;
	max-height: 86px;
	object-fit: contain;
}

@keyframes exo-logo-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 12px));
	}
}

.exo-tech-overview {
	padding-top: clamp(86px, 8vw, 116px);
	padding-bottom: clamp(52px, 6vw, 76px);
}

.exo-tech-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
	align-items: center;
	gap: clamp(52px, 8vw, 96px);
}

.exo-tech-overview-copy {
	max-width: 680px;
}

.exo-tech-overview-copy h2 {
	max-width: 640px;
	font-size: clamp(32px, 3.3vw, 40px);
	line-height: 1.17;
}

.exo-tech-overview-copy > p {
	max-width: 610px;
	margin: 28px 0 0;
	font-size: 18px;
	line-height: 1.78;
}

.exo-key-features {
	background: #ffffff;
	padding-top: clamp(48px, 5vw, 72px);
}

.exo-feature-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin: 38px 0 0;
}

.exo-feature-point {
	display: grid;
	grid-template-columns: 39px 1fr;
	gap: 16px;
	align-items: start;
}

.exo-feature-point span,
.exo-tech-callout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 39px;
	height: 39px;
	border-radius: 999px;
	background: #e8f5ff;
	color: #101820;
	font-weight: 700;
	box-shadow: 0 14px 32px rgba(0, 64, 113, 0.13);
}

.exo-feature-point p {
	margin: 2px 0 0;
	font-size: 18px;
	line-height: 1.65;
}

.exo-tech-page-orb {
	width: min(100%, 430px);
	justify-self: center;
}

.exo-tech-callout {
	position: absolute;
	z-index: 3;
}

.exo-tech-callout-1 {
	left: 18%;
	bottom: 24%;
}

.exo-tech-callout-2 {
	left: 53%;
	top: 16%;
}

.exo-tech-callout-3 {
	right: 16%;
	bottom: 21%;
}

.exo-feature-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(34px, 6vw, 83px);
	padding: 58px 56px;
	border-radius: 13px;
	background: #e8f5ff;
}

.exo-feature-cards article {
	min-height: 370px;
	padding: 16px 24px 28px;
	border-radius: 13px;
	background: var(--exo-white);
	text-align: center;
}

.exo-feature-cards img {
	display: block;
	width: 55px;
	height: 55px;
	margin: 0 auto 26px;
	object-fit: contain;
}

.exo-feature-cards h3 {
	margin: 0 0 24px;
	font-size: 24px;
	line-height: 1.15;
	text-transform: capitalize;
}

.exo-feature-cards p,
.exo-centered-copy {
	font-size: 18px;
	line-height: 1.78;
}

.exo-centered-copy {
	max-width: 1085px;
	margin: 0 auto;
	text-align: center;
}

.exo-wide-visual {
	display: block;
	width: 100%;
	max-width: 1154px;
	margin: 54px auto 0;
	border-radius: 13px;
}

.exo-data-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
	margin-top: 54px;
}

.exo-data-grid img {
	width: 100%;
	border-radius: 13px;
}

.exo-news-hero {
	background-position: center 42%;
}

.exo-news-section {
	background:
		radial-gradient(circle at 14% 28%, rgba(21, 128, 210, 0.12), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.exo-news-intro {
	max-width: 780px;
	margin: 0 auto 56px;
	text-align: center;
}

.exo-news-intro h2 {
	margin-bottom: 18px;
}

.exo-news-intro p {
	margin: 0;
	color: var(--exo-muted);
}

.exo-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.exo-news-card {
	min-height: 100%;
	border: 1px solid rgba(0, 64, 113, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 20px 55px rgba(0, 64, 113, 0.08);
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.exo-news-card:hover,
.exo-news-card:focus-within {
	border-color: rgba(21, 128, 210, 0.28);
	box-shadow: 0 28px 70px rgba(0, 64, 113, 0.14);
	transform: translateY(-5px);
}

.exo-news-card a {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.exo-news-card-media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	background:
		radial-gradient(circle at 68% 42%, rgba(21, 128, 210, 0.23), transparent 32%),
		linear-gradient(135deg, rgba(0, 64, 113, 0.96), rgba(21, 128, 210, 0.58));
	color: rgba(255, 255, 255, 0.85);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.exo-news-card-media img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.exo-news-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px;
}

.exo-news-card time,
.exo-news-single time {
	color: var(--exo-muted);
	font-size: 15px;
	font-weight: 600;
}

.exo-news-card h3 {
	margin: 14px 0 16px;
	color: var(--exo-blue);
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.05;
}

.exo-news-card p {
	margin: 0 0 24px;
	color: var(--exo-muted);
	font-size: 17px;
	line-height: 1.6;
}

.exo-news-link {
	margin-top: auto;
	color: var(--exo-navy);
	font-weight: 700;
}

.exo-news-empty {
	max-width: 620px;
	margin: 0 auto;
	padding: 46px;
	border-radius: 20px;
	background: #e8f5ff;
	text-align: center;
}

.exo-news-single-header {
	padding: clamp(96px, 10vw, 144px) 0 clamp(58px, 7vw, 86px);
	background:
		radial-gradient(circle at 82% 32%, rgba(21, 128, 210, 0.2), transparent 34%),
		linear-gradient(135deg, #f8fcff 0%, #ffffff 68%);
}

.exo-back-link {
	display: inline-block;
	margin-bottom: 32px;
	color: var(--exo-navy);
	font-weight: 700;
	text-decoration: none;
}

.exo-back-link:hover,
.exo-back-link:focus-visible {
	color: var(--exo-blue);
}

.exo-news-single h1 {
	max-width: 940px;
	margin: 18px 0 0;
	color: var(--exo-navy);
	font-size: clamp(42px, 5vw, 72px);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.exo-news-single-layout {
	max-width: 940px;
	padding-top: clamp(58px, 7vw, 86px);
	padding-bottom: clamp(86px, 9vw, 124px);
}

.exo-news-single-media {
	margin: 0 0 44px;
	border-radius: 22px;
	overflow: hidden;
}

.exo-news-single-media img {
	display: block;
	width: 100%;
	height: auto;
}

.exo-news-single-content {
	color: var(--exo-text);
	font-size: 20px;
	line-height: 1.8;
}

.exo-news-single-content p {
	margin: 0 0 28px;
}

.exo-pipeline-programmes {
	margin-top: 70px;
}

.exo-target-row,
.exo-brochure-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 406px);
	align-items: center;
	gap: clamp(54px, 8vw, 92px);
	margin-top: 72px;
}

.exo-target-row-alt {
	grid-template-columns: minmax(300px, 406px) minmax(0, 1fr);
}

.exo-target-row h3,
.exo-brochure h2 {
	margin: 0 0 22px;
	color: var(--exo-blue);
	font-size: clamp(30px, 3.4vw, 40px);
	font-weight: 800;
	line-height: 1.225;
	text-transform: uppercase;
}

.exo-development {
	padding-top: 58px;
}

.exo-roadmap {
	margin-top: 60px;
	color: var(--exo-navy);
}

.exo-roadmap-years,
.exo-roadmap-row {
	display: grid;
	grid-template-columns: 2fr repeat(6, 1fr);
	gap: 0;
	align-items: center;
}

.exo-roadmap-years {
	font-size: 24px;
	text-align: center;
}

.exo-roadmap-years span:first-child {
	grid-column: 2;
}

.exo-roadmap-row {
	position: relative;
	min-height: 112px;
	border-top: 2px solid rgba(0, 64, 113, 0.45);
}

.exo-roadmap-row:last-child {
	border-bottom: 2px solid rgba(0, 64, 113, 0.45);
}

.exo-roadmap-row strong,
.exo-roadmap-row span {
	font-size: 24px;
	line-height: 1.25;
}

.exo-roadmap-row span {
	grid-column: 1;
	align-self: end;
	padding-bottom: 14px;
}

.exo-roadmap-row b {
	grid-column: var(--start) / span var(--span);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 35px;
	padding: 0 16px;
	background: var(--exo-navy);
	color: var(--exo-white);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}

.exo-roadmap-row:nth-child(3) b {
	background: var(--exo-blue);
}

.exo-brochure h2 {
	color: var(--exo-navy);
}

.exo-brochure img {
	width: min(100%, 235px);
	justify-self: center;
	border: 1px solid #d9d9d9;
	border-radius: 19px;
}

.exo-contact-stage {
	position: relative;
	padding: clamp(78px, 8vw, 112px) 0 clamp(86px, 8vw, 118px);
	background-color: var(--exo-navy);
	background-image: linear-gradient(90deg, rgba(0, 75, 121, 0.94) 0%, rgba(0, 75, 121, 0.82) 48%, rgba(0, 75, 121, 0.96) 100%), var(--exo-contact-bg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.exo-contact-stage::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 18% 22%, rgba(69, 169, 231, 0.34), transparent 360px), radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.18), transparent 280px);
	pointer-events: none;
}

.exo-contact-stage > .exo-shell {
	position: relative;
	z-index: 1;
}

.exo-contact-hero {
	max-width: 760px;
	margin-bottom: clamp(38px, 5vw, 62px);
	color: var(--exo-white);
}

.exo-contact-eyebrow {
	margin: 0 0 18px;
	color: #7bc5f4;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.exo-contact-hero h1 {
	max-width: 720px;
	margin: 0 0 22px;
	color: var(--exo-white);
	font-size: clamp(42px, 5.8vw, 78px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 0.96;
}

.exo-contact-hero p {
	max-width: 660px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(18px, 1.5vw, 22px);
	line-height: 1.65;
}

.exo-contact-panel {
	position: relative;
	display: grid;
	scroll-margin-top: 118px;
	grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(32px, 5vw, 64px);
	padding: clamp(32px, 4.5vw, 58px);
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 36px 90px rgba(0, 29, 62, 0.24);
	backdrop-filter: blur(18px);
}

.exo-contact-intro h2,
.exo-contact-card h2 {
	margin: 0 0 16px;
	color: var(--exo-navy);
	font-size: clamp(26px, 2.4vw, 34px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.exo-contact-intro p {
	max-width: 360px;
	margin: 0;
	color: rgba(0, 75, 121, 0.78);
	font-size: 17px;
	line-height: 1.7;
}

.exo-contact-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 32px;
}

.exo-contact-topics span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid rgba(49, 130, 200, 0.24);
	border-radius: 999px;
	background: #e8f5ff;
	color: var(--exo-navy);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.exo-contact-form {
	display: grid;
	gap: 18px;
}

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

.exo-contact-fields label:first-child {
	grid-column: 1 / -1;
}

.exo-contact-form label {
	display: grid;
	gap: 8px;
	color: var(--exo-navy);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.exo-contact-form input,
.exo-contact-form textarea {
	width: 100%;
	border: 1px solid rgba(0, 75, 121, 0.2);
	border-radius: 18px;
	background: #f7fbff;
	padding: 16px 18px;
	color: var(--exo-navy);
	font: 400 16px/1.45 "Poppins", Arial, sans-serif;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.exo-contact-form input::placeholder,
.exo-contact-form textarea::placeholder {
	color: rgba(0, 75, 121, 0.45);
}

.exo-contact-form input:focus,
.exo-contact-form textarea:focus {
	border-color: #45a9e7;
	background: var(--exo-white);
	box-shadow: 0 0 0 4px rgba(69, 169, 231, 0.16);
}

.exo-contact-form textarea {
	min-height: 174px;
	resize: vertical;
}

.exo-contact-send {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: start;
	min-width: 178px;
	min-height: 52px;
	border: 0;
	border-radius: 999px;
	background: #45a9e7;
	color: var(--exo-white);
	font: 700 15px/1 "Poppins", Arial, sans-serif;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	box-shadow: 0 16px 34px rgba(49, 130, 200, 0.28);
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.exo-contact-send:hover,
.exo-contact-send:focus-visible {
	background: #3182c8;
	box-shadow: 0 18px 38px rgba(49, 130, 200, 0.34);
	transform: translateY(-2px);
}

.exo-contact-info-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 22px;
	margin-top: 24px;
}

.exo-contact-card {
	min-height: 210px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--exo-white);
	backdrop-filter: blur(12px);
}

.exo-contact-card > span {
	display: block;
	margin-bottom: 28px;
	color: #7bc5f4;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.exo-contact-card h2 {
	color: var(--exo-white);
	font-size: 22px;
}

.exo-contact-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	line-height: 1.7;
}

.exo-contact-card a:not(.exo-linkedin) {
	color: var(--exo-white);
	font-weight: 700;
	text-decoration: none;
}

.exo-linkedin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-top: 20px;
	border-radius: 999px;
	background: #3182c8;
	color: var(--exo-white);
	font: 700 22px/1 Arial, sans-serif;
	letter-spacing: -0.05em;
	text-decoration: none;
}

.exo-page-footer {
	background: var(--exo-white);
}

.exo-motion-ready .exo-will-reveal:not(.exo-in-view) {
	opacity: 0;
	transform: translateY(28px);
}

.exo-motion-ready .exo-will-reveal {
	transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: calc(var(--exo-reveal-index, 0) * 42ms);
}

.exo-motion-ready .exo-will-reveal.exo-in-view {
	opacity: 1;
	transform: translateY(0);
}

.exo-page-hero,
.exo-cta,
.exo-contact-stage {
	animation: exo-bg-drift 22s ease-in-out infinite alternate;
}

.exo-orb,
.exo-tech-image {
	animation: exo-float 9s ease-in-out infinite alternate;
}

.exo-tech-image {
	animation-delay: -2.5s;
}

.exo-orb-glow,
.exo-tech-glow {
	animation: exo-glow-pulse 6s ease-in-out infinite alternate;
}

.exo-programme,
.exo-info-card,
.exo-feature-cards article,
.exo-person {
	position: relative;
	overflow: hidden;
}

.exo-programme::after,
.exo-info-card::after,
.exo-feature-cards article::after,
.exo-person::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.34), transparent 130px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
}

.exo-programme:hover::after,
.exo-info-card:hover::after,
.exo-feature-cards article:hover::after,
.exo-person:hover::after {
	opacity: 1;
}

.exo-programme,
.exo-info-card,
.exo-feature-cards article,
.exo-person img,
.exo-data-grid img,
.exo-wide-visual {
	transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.exo-programme:hover,
.exo-info-card:hover,
.exo-feature-cards article:hover,
.exo-data-grid img:hover,
.exo-wide-visual:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 48px rgba(0, 64, 113, 0.12);
}

.exo-person:hover img {
	filter: saturate(1.06) contrast(1.03);
	transform: translateY(-3px) scale(1.02);
}

@keyframes exo-ambient-orbit {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}
	to {
		transform: translate3d(18vw, -8vh, 0) scale(1.18);
	}
}

@keyframes exo-bg-drift {
	from {
		background-position: center center;
	}
	to {
		background-position: 54% 48%;
	}
}

@keyframes exo-about-hero-drift {
	from {
		background-position: center top;
	}
	to {
		background-position: center 7%;
	}
}

@keyframes exo-float {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(0, -14px, 0);
	}
}

@keyframes exo-glow-pulse {
	from {
		opacity: 0.74;
		transform: scale(0.98);
	}
	to {
		opacity: 1;
		transform: scale(1.04);
	}
}

@keyframes exo-dna-drift {
	from {
		transform: translateX(-50%) translateY(0) rotate(-1.5deg);
	}
	to {
		transform: translateX(-50%) translateY(-10px) rotate(1.5deg);
	}
}

@keyframes exo-header-slide {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

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

	.exo-motion-ready .exo-will-reveal {
		opacity: 1;
		transform: none;
	}

	.exo-hero-media iframe,
	.exo-page-hero-media iframe,
	.exo-dna-video {
		display: none;
	}

	.exo-dna {
		opacity: 1;
	}
}

@media (max-width: 1024px) {
	.exo-dna {
		animation: none;
		transform: none;
	}

	.exo-person-grid-four,
	.exo-card-grid,
	.exo-feature-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.exo-tech-overview-grid {
		grid-template-columns: 1fr;
	}

	.exo-tech-overview-copy {
		max-width: none;
	}

	.exo-tech-page-orb {
		order: -1;
		max-width: 390px;
	}

	.exo-about-logo-track {
		grid-auto-columns: calc((100vw - 72px) / 3);
	}

	.exo-news-grid,
	.exo-target-row,
	.exo-target-row-alt,
	.exo-brochure-grid,
	.exo-contact-panel,
	.exo-contact-info-grid {
		grid-template-columns: 1fr;
	}

	.exo-target-row-alt figure {
		order: 2;
	}

	.exo-roadmap {
		overflow-x: auto;
		padding-bottom: 12px;
	}

	.exo-roadmap-years,
	.exo-roadmap-row {
		min-width: 920px;
	}
}

@media (max-width: 767px) {
	.exo-hero {
		min-height: 520px;
	}

	.exo-hero-media iframe,
	.exo-page-hero-media iframe {
		width: 260vw;
		height: 146.25vw;
	}

	.exo-page-hero {
		min-height: 420px;
		padding-top: 96px;
	}

	.exo-person-grid-four,
	.exo-card-grid,
	.exo-feature-list,
	.exo-feature-cards,
	.exo-data-grid {
		grid-template-columns: 1fr;
	}

	.exo-about-logo-track {
		grid-auto-columns: calc((100vw - 56px) / 2);
	}

	.exo-feature-cards {
		padding: 28px 18px;
	}

	.exo-contact-stage {
		padding: 64px 0 78px;
		background-size: cover;
	}

	.exo-contact-hero h1 {
		font-size: 42px;
	}

	.exo-contact-panel {
		padding: 28px 18px;
		border-radius: 24px;
	}

	.exo-contact-fields,
	.exo-contact-info-grid {
		grid-template-columns: 1fr;
	}

	.exo-contact-card {
		min-height: auto;
		padding: 24px;
	}
}
