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

:root {
	--accent: #1d93f5;
	--accent2: #5fb2ff;
	--brand-blue: #1d93f5; /* sampled from "Circular" in the logo */
	--ink: #eee8de;
	--dim: rgba(238, 232, 222, 0.45);
	--faint: rgba(238, 232, 222, 0.22);
	--line: rgba(255, 255, 255, 0.07);
	--bg: #050505;
	--sans: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--mono: "Space Mono", "Courier New", Courier, monospace;
	--heading: "Oswald", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	/* Side gutter that caps the content column at 1500px on wide screens */
	--gutter: max(3rem, calc((100vw - 1500px) / 2));
}

html {
	scroll-behavior: auto;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--heading);
	font-weight: 500;
}

.accent {
	color: var(--accent);
}

/* ── Preloader ────────────────────────────────────────────── */
.preloader {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: #050505;
	color: #eee8de;
	display: flex;
	align-items: center;
	justify-content: center;
}

.preloader-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
}

.preloader-logo-img {
	height: 34px;
	width: auto;
}

.preloader-count {
	font-family: var(--mono);
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	color: rgba(242, 237, 229, 0.5);
}

/* ── Custom cursor ────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
	body {
		cursor: none;
	}
	a,
	button {
		cursor: none;
	}
}

#cursor {
	position: fixed;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width 0.2s, height 0.2s, opacity 0.2s;
	mix-blend-mode: screen;
}

#cursor-ring {
	position: fixed;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(29, 147, 245, 0.5);
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(.webgl:hover) #cursor-ring {
	width: 60px;
	height: 60px;
	border-color: var(--accent);
}

@media (hover: none), (pointer: coarse) {
	#cursor,
	#cursor-ring {
		display: none;
	}
}

/* ── Fixed canvas ─────────────────────────────────────────── */
.webgl {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

/* ── Scan line overlay ────────────────────────────────────── */
.scanlines {
	position: fixed;
	inset: 0;
	background: repeating-linear-gradient(
		to bottom,
		transparent 0px,
		transparent 3px,
		rgba(0, 0, 0, 0.08) 3px,
		rgba(0, 0, 0, 0.08) 4px
	);
	pointer-events: none;
	z-index: 5;
	opacity: 0.4;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.6rem var(--gutter);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(8px);
	background: rgba(5, 5, 5, 0.5);
}

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.nav-logo img {
	height: 26px;
	width: auto;
	display: block;
}

.nav-links {
	display: flex;
	gap: 2.2rem;
}

.nav-links a {
	font-family: var(--mono);
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--dim);
	text-decoration: none;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-cta {
	font-family: var(--mono);
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bg);
	background: var(--ink);
	text-decoration: none;
	padding: 0.7rem 1.4rem;
	border-radius: 100px;
	transition: background 0.3s;
}

.nav-cta:hover {
	background: var(--accent);
}

/* ── Scrollable content ───────────────────────────────────── */
.content {
	position: relative;
	z-index: 10;
	pointer-events: none;
}

.content a,
.content .cap-item,
.content .work-card,
.content .team-card {
	pointer-events: all;
}

section,
footer {
	padding: 8rem var(--gutter);
	position: relative;
}

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
	min-height: 100vh;
	margin-bottom: 40vh;
	display: flex;
	flex-direction: column;
	padding: 0 var(--gutter);
	position: relative;
}

.hero-top {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.hero-title .accent {
	color: var(--brand-blue);
}

.hero-title {
	font-size: clamp(3rem, 6.5vw, 6.8rem);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: 0;
	opacity: 0;
	transform: translateY(30px);
	text-align: left;
	text-transform: uppercase;
}

.hero-meta {
	text-align: left;
	opacity: 0;
	transform: translateY(20px);
	margin-top: 2.4rem;
}

.hero-meta .tag {
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--accent);
	display: block;
	margin-bottom: 0.8rem;
}

.hero-meta .desc {
	font-size: clamp(1.125rem, 1.4vw, 1.25rem);
	color: var(--dim);
	max-width: 46ch;
	line-height: 1.65;
	display: block;
}

.hover-hint {
	position: absolute;
	bottom: 16rem;
	left: 72%;
	transform: translateX(-50%);
	font-family: var(--mono);
	font-size: 0.6rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--faint);
	white-space: nowrap;
	opacity: 0;
}

.hero-bottom {
	position: absolute;
	bottom: 3rem;
	left: var(--gutter);
	right: var(--gutter);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.hero-line-left,
.hero-line-right {
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--faint);
	line-height: 1.9;
	opacity: 0;
	max-width: 220px;
}

.hero-line-right {
	text-align: right;
}

.hero-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.3rem;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: all;
}

.cta-label {
	font-family: var(--mono);
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--dim);
}

.cta-arrow {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	transition: border-color 0.3s, background 0.3s;
	animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

.cta-arrow:hover {
	border-color: var(--accent);
	background: rgba(29, 147, 245, 0.08);
}

/* ── Shared section bits ──────────────────────────────────── */
.sec-num {
	font-family: var(--mono);
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	color: var(--faint);
	margin-bottom: 2.5rem;
}

.sec-tag {
	font-family: var(--mono);
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.sec-h2 {
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: 0;
	margin-bottom: 1.8rem;
}

.sec-h2.huge {
	font-size: clamp(2.4rem, 5vw, 5rem);
	text-transform: uppercase;
}

.sec-body {
	font-size: 0.92rem;
	line-height: 1.8;
	color: var(--dim);
	max-width: 44ch;
	margin-bottom: 1.6rem;
}

.sec-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.link-arrow {
	font-family: var(--mono);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 0.4rem;
	transition: color 0.3s, border-color 0.3s;
	white-space: nowrap;
}

.link-arrow::after {
	content: " →";
	color: var(--accent);
}

.link-arrow:hover {
	color: var(--accent);
	border-color: var(--accent);
}

/* ── About split ──────────────────────────────────────────── */
.split-section {
	min-height: 100vh;
	margin-bottom: 30vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.empty-col {
	min-height: 50vh;
}

.text-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: clamp(2rem, 6vh, 5rem) clamp(0rem, 3vw, 4rem);
}

/* ── Work grid ────────────────────────────────────────────── */
#work {
	background: var(--bg);
	border-top: 1px solid var(--line);
}

.work-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem 3rem;
}

.work-card {
	text-decoration: none;
	color: var(--ink);
	display: block;
}

.work-card:nth-child(even) {
	transform: translateY(5rem);
}

.work-thumb {
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	border: 1px solid var(--line);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-thumb {
	transform: scale(0.97);
}

.work-thumb span {
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.5rem);
	letter-spacing: -0.03em;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-thumb span {
	transform: scale(1.08);
}

.thumb-1 { background: linear-gradient(135deg, #16130f 0%, #4a3728 100%); }
.thumb-2 { background: linear-gradient(135deg, #1d93f5 0%, #5fb2ff 100%); }
.thumb-3 { background: linear-gradient(135deg, #2f3b33 0%, #7d9b76 100%); }
.thumb-4 { background: linear-gradient(135deg, #1d2440 0%, #5a6fae 100%); }
.thumb-5 { background: linear-gradient(135deg, #402038 0%, #a05c8e 100%); }
.thumb-6 { background: linear-gradient(135deg, #3d3324 0%, #c2a878 100%); }

.work-info {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: 1.2rem;
	gap: 1rem;
}

.work-info h3 {
	font-size: 1.15rem;
	letter-spacing: 0.01em;
}

.work-info p {
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dim);
	text-align: right;
}

.work-info em {
	font-style: normal;
	color: var(--accent);
}

/* ── Capabilities ─────────────────────────────────────────── */
.cap-list {
	list-style: none;
	border-top: 1px solid var(--line);
}

.cap-item {
	display: flex;
	align-items: center;
	gap: 3rem;
	padding: 2.4rem 1rem;
	border-bottom: 1px solid var(--line);
	transition: background 0.4s, padding-left 0.4s;
}

.cap-item:hover {
	background: rgba(29, 147, 245, 0.05);
	padding-left: 2rem;
}

.cap-idx {
	font-family: var(--mono);
	font-size: 0.65rem;
	color: var(--faint);
	letter-spacing: 0.15em;
}

.cap-name {
	font-size: clamp(1.6rem, 3.2vw, 3rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	flex: 1;
	transition: color 0.3s;
}

.cap-item:hover .cap-name {
	color: var(--accent);
}

.cap-arrow {
	font-size: 1.6rem;
	color: var(--faint);
	transition: transform 0.4s, color 0.4s;
}

.cap-item:hover .cap-arrow {
	transform: translateX(10px) rotate(-45deg);
	color: var(--accent);
}

/* ── Team ─────────────────────────────────────────────────── */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.team-card h3 {
	font-size: 1rem;
	letter-spacing: 0.02em;
	margin-top: 1.1rem;
}

.team-card p {
	font-family: var(--mono);
	font-size: 0.6rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--dim);
	margin-top: 0.3rem;
}

.team-avatar {
	aspect-ratio: 3 / 3.6;
	border-radius: 6px;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 2.2rem;
	color: rgba(255, 255, 255, 0.85);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-avatar {
	transform: translateY(-6px);
}

.av-1 { background: linear-gradient(160deg, #16130f, #574434); }
.av-2 { background: linear-gradient(160deg, #1d93f5, #8ec8ff); }
.av-3 { background: linear-gradient(160deg, #26382d, #6f9a71); }
.av-4 { background: linear-gradient(160deg, #232b4a, #7285c7); }

/* ── Feature chips (products) ─────────────────────────────── */
.chips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 2.4rem;
	max-width: 46ch;
}

.chips li {
	font-family: var(--mono);
	font-size: 0.58rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dim);
	padding: 0.55em 1.1em;
	border: 1px solid var(--line);
	border-radius: 100px;
	transition: color 0.3s, border-color 0.3s;
}

.chips li:hover {
	color: var(--accent);
	border-color: var(--accent);
}

/* ── Stat grid ────────────────────────────────────────────── */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem 1rem;
	border-top: 1px solid var(--line);
	padding-top: 2rem;
	width: 100%;
	max-width: 36rem;
}

.stat-n {
	font-family: var(--heading);
	font-weight: 600;
	font-size: 2rem;
	color: var(--accent);
	line-height: 1;
}

.stat-l {
	font-family: var(--mono);
	font-size: 0.58rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--faint);
	margin-top: 0.5rem;
}

.stats.two {
	grid-template-columns: repeat(2, 1fr);
	max-width: 30rem;
}

/* ── Pillar grid (vision & values) ────────────────────────── */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

/* Animated angle for the moving gradient borders */
@property --angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: true;
}

.pillar {
	position: relative;
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 2.2rem 2rem;
	/* Card fill in padding-box, rotating gradient ring in border-box */
	background:
		linear-gradient(#0a0b0d, #0a0b0d) padding-box,
		conic-gradient(
			from var(--angle),
			rgba(255, 255, 255, 0.08) 0deg,
			rgba(29, 147, 245, 0.9) 65deg,
			#8ecfff 90deg,
			rgba(29, 147, 245, 0.9) 115deg,
			rgba(255, 255, 255, 0.08) 180deg,
			rgba(255, 255, 255, 0.08) 360deg
		) border-box;
	animation: border-spin 5s linear infinite;
}

/* Soft glow that travels with the bright segment */
.pillar::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: conic-gradient(
		from var(--angle),
		transparent 0deg,
		rgba(29, 147, 245, 0.55) 65deg,
		rgba(142, 207, 255, 0.7) 90deg,
		rgba(29, 147, 245, 0.55) 115deg,
		transparent 180deg,
		transparent 360deg
	);
	filter: blur(16px);
	opacity: 0.5;
	z-index: -2;
	transition: opacity 0.4s;
}

.pillar:hover::before {
	opacity: 0.9;
}

/* Opaque box background above the glow — confines it to the border */
.pillar::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 5px;
	background: #0a0b0d;
	z-index: -1;
}

/* Desynchronise the six cards */
.pillar:nth-child(1) { animation-delay: 0s; }
.pillar:nth-child(2) { animation-delay: -0.8s; }
.pillar:nth-child(3) { animation-delay: -1.6s; }
.pillar:nth-child(4) { animation-delay: -2.4s; }
.pillar:nth-child(5) { animation-delay: -3.2s; }
.pillar:nth-child(6) { animation-delay: -4s; }

@keyframes border-spin {
	to {
		--angle: 360deg;
	}
}

.pillar h3 {
	font-size: 1.15rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin-bottom: 0.9rem;
	color: var(--ink);
}

.pillar p {
	font-size: 0.8rem;
	line-height: 1.7;
	color: var(--dim);
}

/* ── Tech / industry list rows ────────────────────────────── */
.tech-list {
	list-style: none;
	border-top: 1px solid var(--line);
}

.tech-list li {
	display: grid;
	grid-template-columns: 3rem 1.2fr 1fr;
	align-items: baseline;
	gap: 2.5rem;
	padding: 2.2rem 1rem;
	border-bottom: 1px solid var(--line);
	transition: background 0.4s, padding-left 0.4s;
}

.tech-list li:hover {
	background: rgba(29, 147, 245, 0.05);
	padding-left: 2rem;
}

.tech-idx {
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.15em;
	color: var(--faint);
}

.tech-name {
	font-family: var(--heading);
	font-weight: 500;
	font-size: clamp(1.4rem, 2.6vw, 2.4rem);
	letter-spacing: 0.01em;
	text-transform: uppercase;
	transition: color 0.3s;
}

.tech-list li:hover .tech-name {
	color: var(--accent);
}

.tech-desc {
	font-size: 0.78rem;
	line-height: 1.7;
	color: var(--dim);
}

/* ── Insight cards ────────────────────────────────────────── */
.insight-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.insight-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 2.2rem 2rem;
	text-decoration: none;
	color: var(--ink);
	transition: border-color 0.4s, background 0.4s, transform 0.4s;
}

.insight-card:hover {
	border-color: rgba(29, 147, 245, 0.4);
	background: rgba(29, 147, 245, 0.04);
	transform: translateY(-4px);
}

.insight-meta {
	font-family: var(--mono);
	font-size: 0.58rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--faint);
}

.insight-card h3 {
	font-size: 1.1rem;
	letter-spacing: 0.02em;
	line-height: 1.3;
	margin: 1rem 0 0.9rem;
}

.insight-card p {
	font-size: 0.78rem;
	line-height: 1.7;
	color: var(--dim);
	margin-bottom: 1.6rem;
}

.insight-read {
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-top: auto;
}

/* ── Marquee ──────────────────────────────────────────────── */
.marquee {
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 2.2rem 0;
	white-space: nowrap;
}

.marquee-track {
	display: inline-flex;
	animation: marquee 18s linear infinite;
}

.marquee-track span {
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: var(--ink);
	-webkit-text-stroke: 1px var(--ink);
}

.marquee-track span:nth-child(even) {
	color: transparent;
}

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

/* ── Awards ───────────────────────────────────────────────── */
.award-list {
	list-style: none;
	border-top: 1px solid var(--line);
}

.award-list li {
	display: grid;
	grid-template-columns: 1fr 2fr auto;
	align-items: baseline;
	gap: 2rem;
	padding: 1.6rem 1rem;
	border-bottom: 1px solid var(--line);
	transition: background 0.4s;
}

.award-list li:hover {
	background: rgba(29, 147, 245, 0.05);
}

.award-org {
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: -0.01em;
}

.award-what {
	font-family: var(--mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dim);
}

.award-year {
	font-family: var(--mono);
	font-size: 0.7rem;
	color: var(--accent);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-top: 1px solid var(--line);
}

.footer-title {
	font-size: clamp(3.2rem, 9vw, 9rem);
	font-weight: 600;
	line-height: 1.0;
	letter-spacing: 0;
	text-transform: uppercase;
	margin: 1rem 0 2.5rem;
}

.footer-mails {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.1rem;
}

.footer-mail {
	font-family: var(--mono);
	font-size: clamp(0.85rem, 1.6vw, 1.15rem);
	letter-spacing: 0.08em;
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 0.4rem;
	transition: color 0.3s, border-color 0.3s;
}

.footer-mail.sub {
	font-size: clamp(0.62rem, 1vw, 0.72rem);
	color: var(--dim);
	border-bottom-color: var(--line);
}

.footer-mail:hover {
	color: var(--accent);
	border-color: var(--accent);
}

.footer-bottom {
	position: absolute;
	bottom: 2rem;
	left: var(--gutter);
	right: var(--gutter);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	font-family: var(--mono);
	font-size: 0.6rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--faint);
	flex-wrap: wrap;
}

.footer-socials {
	display: flex;
	gap: 1.6rem;
}

.footer-socials a {
	color: var(--dim);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-socials a:hover {
	color: var(--accent);
}

.mono-dim {
	color: var(--faint);
}

/* ── Reveal helpers (animated by GSAP) ───────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(30px);
}


/* Centered variant — content column in the middle (About page: the ring
   splits into two and rotates either side of this) */
.split-section.centered {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.split-section.centered .text-col {
	max-width: 660px;
	align-items: center;
}

.split-section.centered .sec-body {
	margin-left: auto;
	margin-right: auto;
}

.split-section.centered .stats {
	width: 100%;
}

/* ── Sub-page header ──────────────────────────────────────── */
.page-head {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 6rem;
	padding-bottom: 4rem;
}

.page-head-intro {
	max-width: 52ch;
}

/* Flow sections share the same vertical rhythm: content centered in a
   comfortable full-ish viewport band (split sections manage their own). */
.content section:not(.split-section):not(.page-head) {
	min-height: 82vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
	:root {
		--gutter: 1.5rem;
	}

	.nav {
		padding: 1.2rem var(--gutter);
	}

	.nav-links {
		display: none;
	}

	section,
	footer {
		padding: 5rem var(--gutter);
	}

	#hero {
		margin-bottom: 20vh;
	}

	.hero-bottom {
		bottom: 2rem;
	}

	.hero-line-left,
	.hero-line-right {
		display: none;
	}

	.hero-bottom {
		justify-content: center;
	}

	.hover-hint {
		bottom: 12rem;
		left: 50%;
	}

	.split-section {
		grid-template-columns: 1fr;
		margin-bottom: 10vh;
	}

	.empty-col {
		display: none;
	}

	.work-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.work-card:nth-child(even) {
		transform: none;
	}

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

	.award-list li {
		grid-template-columns: 1fr auto;
	}

	.award-what {
		grid-column: 1 / -1;
		order: 3;
	}

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

	.tech-list li {
		grid-template-columns: 3rem 1fr;
	}

	.tech-desc {
		grid-column: 2;
	}

	.stats.two {
		max-width: none;
	}

	.footer-bottom {
		justify-content: center;
		text-align: center;
	}
}
