/*
 * Pillar Delta — design tokens
 * Palette from research/axiom/axiom_dl.html.
 * Type scale and line heights follow the Apple HIG pairs
 * (Body 17/26 is deliberately looser than 17/22 for long-form
 * reading on a dark background).
 * Spacing step: 8px — every gap is a multiple of it.
 * Contrast on #000: #F5F5F7 = 19.1:1, #86868B = 5.8:1 (AA pass).
 */
:root {
	--bg:             #000000;
	--text:           #F5F5F7;
	--text-secondary: #86868B;
	--surface:        #0B0B0D;
	--surface-raised: #1D1D1F;
	--border:         #1D1D1F;
	--border-strong:  #333336;
	--accent:         #2997FF;

	--font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-6: 48px;
	--space-8: 64px;
	--space-12: 96px;
	--space-15: 120px;

	--radius-card: 18px;
	--radius-pill: 999px;

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 26px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
	overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

/* ---------- Background layers ---------- */
.glow {
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	max-width: 100vw;
	height: 400px;
	background: rgba(29, 29, 31, 0.55);
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
	z-index: -2;
}
#fractal {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: -1;
}

/* ---------- Layout ---------- */
.container {
	max-width: 1104px;
	margin: 0 auto;
	padding-left: var(--space-3);
	padding-right: var(--space-3);
}

/* ---------- Navigation ---------- */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.5s ease, background-color 0.5s ease;
}
nav.scrolled {
	background: rgba(0, 0, 0, 0.75);
	border-bottom-color: var(--border);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	min-height: 72px;
}
.nav-logo {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: var(--space-1) 0;
}
.nav-logo img {
	height: 16px;
	width: auto;
	display: block;
}

/* ---------- Buttons (44px min hit region) ---------- */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 28px;
	border-radius: var(--radius-pill);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 21px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn:active { transform: scale(0.97); }

.btn-primary {
	background: var(--text);
	color: #000;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}
.btn-primary:hover {
	background: #ffffff;
	box-shadow: 0 0 44px rgba(255, 255, 255, 0.14);
}
/* sheen sweep */
.btn-primary::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	left: -80%;
	width: 50%;
	background: linear-gradient(105deg, transparent, rgba(0, 0, 0, 0.07), transparent);
	transform: skewX(-20deg);
	transition: left 0.7s var(--ease-out);
}
.btn-primary:hover::after { left: 130%; }

.btn-secondary {
	background: var(--surface-raised);
	color: var(--text);
	border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
	background: #2D2D2F;
	border-color: #444448;
}

.btn-nav {
	min-height: 44px;
	padding: 10px 24px;
	font-size: 15px;
	line-height: 20px;
}

a:focus-visible,
.btn:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
}
.btn:focus-visible { border-radius: var(--radius-pill); }

/* ---------- Hero ---------- */
.hero {
	padding-top: 144px;
	padding-bottom: var(--space-15);
}
.eyebrow {
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-secondary);
	margin-bottom: var(--space-3);
}
.hero h1 {
	font-size: clamp(44px, 7vw, 76px);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.025em;
	max-width: 880px;
	margin-bottom: var(--space-4);
}
.hero h1 .muted { color: var(--text-secondary); }
/* decode reveal (spans injected by JS): the hidden sizer reserves the
   final word width so the scramble never reflows the line */
.hero h1 .dw,
.ai-lab-copy .dw {
	position: relative;
	display: inline-block;
	white-space: pre;
}
.hero h1 .dw .sizer,
.ai-lab-copy .dw .sizer { visibility: hidden; }
.hero h1 .dw .scr,
.ai-lab-copy .dw .scr {
	position: absolute;
	left: 0;
	top: 0;
	white-space: pre;
}
.hero h1 .dw .ch,
.ai-lab-copy .dw .ch {
	opacity: 0;
	filter: blur(0.12em);
	transition: opacity 0.15s ease, filter 0.35s ease;
}
.hero h1 .dw .ch.pre,
.ai-lab-copy .dw .ch.pre {
	opacity: 0.5;
	filter: blur(0.015em);
}
.hero h1 .dw .ch.on,
.ai-lab-copy .dw .ch.on {
	opacity: 1;
	filter: blur(0);
	transition: opacity 0.45s ease, filter 0.6s ease;
}
.hero .lede {
	font-size: 21px;
	line-height: 32px;
	font-weight: 500;
	color: var(--text-secondary);
	max-width: 720px;
	margin-bottom: var(--space-6);
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-bottom: var(--space-8);
}

/* ---------- HUD status line ---------- */
.hud {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-1) var(--space-4);
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	color: var(--text-secondary);
	border-top: 1px solid var(--border);
	padding-top: var(--space-3);
	max-width: 720px;
}
.hud span { color: var(--text); font-weight: 500; }

/* ---------- Sections ---------- */
section { padding-bottom: var(--space-15); }
.section-title {
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
	letter-spacing: -0.015em;
	margin-bottom: var(--space-6);
}

/* ---------- Pillars grid ---------- */
.pillars {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-3);
}
.pillar {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent 24%),
		#09090B;
	border: 1px solid #232327;
	border-radius: var(--radius-card);
	padding: var(--space-4);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.pillar:hover {
	border-color: #3A3A40;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}
.pillar .eyebrow { margin-bottom: var(--space-2); }
.pillar h3 {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: var(--space-2);
}
.pillar p {
	font-size: 17px;
	line-height: 26px;
	color: var(--text-secondary);
}

/* ---------- Product spotlight — ZeroTrace ---------- */
.product-showcase {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	width: calc(100% - (var(--space-3) * 2));
	max-width: 1056px;
	margin: 0 auto var(--space-15);
	padding: var(--space-12) 0;
	background: #000000;
	color: #F5F5F7;
	border: 1px solid #29292D;
	border-radius: 40px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.055),
		inset 0 -36px 90px rgba(255, 255, 255, 0.018),
		0 28px 90px rgba(0, 0, 0, 0.42);
}
.product-showcase::before {
	content: "";
	position: absolute;
	top: -42%;
	right: -12%;
	width: min(58vw, 720px);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.055);
	border-radius: 50%;
	box-shadow:
		0 0 0 42px rgba(255, 255, 255, 0.02),
		0 0 0 92px rgba(255, 255, 255, 0.012);
	pointer-events: none;
	z-index: -1;
}
.product-showcase-inner {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	align-items: start;
	gap: clamp(56px, 8vw, 112px);
}
.product-showcase-copy {
	position: sticky;
	top: 128px;
}
.product-showcase-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--space-3);
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #86868B;
}
.product-showcase-kicker span {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #F5F5F7;
	border-radius: 50%;
	box-shadow: 13px 0 0 rgba(245, 245, 247, 0.28);
	margin-right: 13px;
}
.product-showcase h2 {
	font-size: clamp(44px, 7vw, 78px);
	line-height: 0.92;
	font-weight: 800;
	letter-spacing: -0.055em;
	margin-bottom: var(--space-4);
	color: #F5F5F7;
	white-space: nowrap;
}
.product-showcase-tm {
	position: relative;
	top: 0.18em;
	display: inline-block;
	margin-left: 0.12em;
	font-size: 0.18em;
	line-height: 1;
	letter-spacing: 0;
	vertical-align: top;
}
.product-showcase-lede {
	max-width: 500px;
	font-size: clamp(20px, 2vw, 25px);
	line-height: 1.45;
	font-weight: 500;
	color: #A1A1A6;
}
.product-showcase-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	margin-top: var(--space-4);
	padding: 0 22px;
	background: #F5F5F7;
	color: #171719;
	border: 1px solid #F5F5F7;
	border-radius: var(--radius-pill);
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s var(--ease-out),
		box-shadow 0.3s ease;
}
.product-showcase-cta span {
	font-size: 18px;
	line-height: 1;
	transition: transform 0.3s var(--ease-out);
}
.product-showcase-cta:hover {
	background: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
}
.product-showcase-cta:hover span { transform: translate(2px, -2px); }
.product-showcase-points {
	display: grid;
	gap: var(--space-6);
}
.product-showcase-item {
	padding: var(--space-1) 0 var(--space-1) var(--space-4);
	border-left: 2px solid rgba(245, 245, 247, 0.16);
}
.product-showcase-item:nth-child(2) { border-left-color: #F5F5F7; }
.product-showcase-index {
	margin-bottom: 10px;
	font-family: var(--font-mono);
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: #86868B;
}
.product-showcase-item h3 {
	margin-bottom: 12px;
	font-size: clamp(24px, 2.5vw, 32px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: #F5F5F7;
}
.product-showcase-item > p:last-child {
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.55;
	font-weight: 500;
	color: #A1A1A6;
}

/* ---------- Cursor spotlight (pillars + projects) ---------- */
.card-fx {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.card-fx::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.042), transparent 68%);
	transition: opacity 0.45s ease;
	pointer-events: none;
}
.card-fx:hover::before { opacity: 1; }
.card-fx::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	background: linear-gradient(
		90deg,
		transparent 8%,
		rgba(255, 255, 255, 0.075) 38%,
		rgba(255, 255, 255, 0.025) 58%,
		transparent 84%
	) top / 100% 1px no-repeat;
	opacity: 0.7;
	pointer-events: none;
}
.card-fx > * { position: relative; z-index: 1; }

/* ---------- Projects ---------- */
.projects {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-3);
}
.project-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	min-height: 88px;
	padding: var(--space-3) var(--space-4);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%),
		#09090B;
	border: 1px solid #232327;
	border-radius: var(--radius-card);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
	text-decoration: none;
	color: var(--text);
	transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s var(--ease-out);
}
.project-link:hover {
	border-color: #3A3A40;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%),
		#0C0C0F;
	transform: translateY(-2px);
}
.project-name {
	font-size: 17px;
	line-height: 22px;
	font-weight: 600;
}
.project-tag {
	display: block;
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	color: var(--text-secondary);
	margin-top: 4px;
}
.project-arrow {
	color: var(--text-secondary);
	font-size: 20px;
	line-height: 25px;
	flex-shrink: 0;
	transition: color 0.3s ease, transform 0.3s var(--ease-out);
}
.project-link:hover .project-arrow {
	color: var(--text);
	transform: translate(3px, -3px);
}

/* ---------- AI Lab — reversed light section ---------- */
.ai-lab {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	width: calc(100% - (var(--space-3) * 2));
	max-width: 1056px;
	margin: 0 auto var(--space-15);
	padding: var(--space-12) 0;
	background:
		radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.46), transparent 38%),
		linear-gradient(135deg, rgba(218, 218, 223, 0.96), rgba(174, 174, 181, 0.92));
	-webkit-backdrop-filter: blur(30px) saturate(115%);
	backdrop-filter: blur(30px) saturate(115%);
	color: #171719;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 40px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.62),
		inset 0 0 0 1px rgba(29, 29, 31, 0.1),
		inset 0 -28px 70px rgba(29, 29, 31, 0.07),
		0 28px 90px rgba(0, 0, 0, 0.34);
}
.ai-lab::before {
	content: "";
	position: absolute;
	top: -42%;
	right: -12%;
	width: min(58vw, 720px);
	aspect-ratio: 1;
	border: 1px solid rgba(29, 29, 31, 0.07);
	border-radius: 50%;
	box-shadow:
		0 0 0 42px rgba(29, 29, 31, 0.025),
		0 0 0 92px rgba(29, 29, 31, 0.018);
	pointer-events: none;
	z-index: -1;
}
.ai-lab-inner {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	align-items: start;
	gap: clamp(56px, 8vw, 112px);
}
.ai-lab-copy {
	position: sticky;
	top: 128px;
}
.ai-lab-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--space-3);
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #515154;
}
.ai-lab-kicker span {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #1D1D1F;
	border-radius: 50%;
	box-shadow: 13px 0 0 rgba(29, 29, 31, 0.28);
	margin-right: 13px;
}
.ai-lab h2 {
	font-size: clamp(64px, 8.5vw, 112px);
	line-height: 0.88;
	font-weight: 800;
	letter-spacing: -0.065em;
	margin-bottom: var(--space-4);
	color: #171719;
}
.ai-lab-lede {
	max-width: 490px;
	font-size: clamp(20px, 2vw, 25px);
	line-height: 1.45;
	font-weight: 500;
	color: #3F3F43;
}
.ai-lab-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	margin-top: var(--space-4);
	padding: 0 22px;
	background: #171719;
	color: #F5F5F7;
	border: 1px solid #171719;
	border-radius: var(--radius-pill);
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(29, 29, 31, 0.16);
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s var(--ease-out),
		box-shadow 0.3s ease;
}
.ai-lab-cta span {
	font-size: 18px;
	line-height: 1;
	transition: transform 0.3s var(--ease-out);
}
.ai-lab-cta:hover {
	background: #000;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(29, 29, 31, 0.22);
}
.ai-lab-cta:hover span { transform: translate(2px, -2px); }
.ai-lab-cta:focus-visible {
	outline: 2px solid #171719;
	outline-offset: 3px;
}
.ai-lab-programs {
	display: grid;
	gap: var(--space-6);
}
.ai-lab-item {
	padding: var(--space-1) 0 var(--space-1) var(--space-4);
	border-left: 2px solid rgba(29, 29, 31, 0.16);
}
.ai-lab-item:nth-child(2) { border-left-color: #1D1D1F; }
.ai-lab-index {
	margin-bottom: 10px;
	font-family: var(--font-mono);
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: #86868B;
}
.ai-lab-item h3 {
	margin-bottom: 12px;
	font-size: clamp(24px, 2.5vw, 32px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: #171719;
}
.ai-lab-item > p:last-child {
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.55;
	font-weight: 500;
	color: #4B4B50;
}

/* ---------- Mission band ---------- */
#mission { padding-bottom: 0; }
.mission {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: var(--space-12) 0;
}
.mission blockquote {
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.25;
	font-weight: 600;
	letter-spacing: -0.02em;
	max-width: 880px;
}
.mission blockquote .muted { color: var(--text-secondary); }
/* scroll-driven word fill (spans injected by JS) */
.mission blockquote .mw {
	color: #3A3A3C;
	transition: color 0.45s ease;
}
.mission blockquote .mw.lit { color: var(--text); }

/* ---------- Scroll reveals (states applied by JS only) ---------- */
.sr-init {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
	transition-delay: var(--sr-delay, 0s);
}
.sr-in {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Footer ---------- */
footer { padding: var(--space-6) 0; }
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	color: var(--text-secondary);
}
.footer-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-2);
}
footer a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}
footer a:hover { color: var(--text); }
.linkedin-link {
	justify-content: center;
	min-width: 44px;
}
.linkedin-link svg { display: block; fill: currentColor; }

/* ---------- Load-in motion ---------- */
.fade-in {
	animation: fadeIn 1.2s var(--ease-out) forwards;
	opacity: 0;
}
.delay-1 { animation-delay: 0.35s; }
.delay-2 { animation-delay: 0.55s; }
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.fade-in { animation: none; opacity: 1; }
	.btn, .btn-primary::after, .project-link, .project-arrow, .pillar, .product-showcase-cta, footer a, nav { transition: none; }
	.btn:hover, .project-link:hover { transform: none; }
	.sr-init { opacity: 1; transform: none; transition: none; }
	.card-fx::before { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.hero { padding-top: 96px; padding-bottom: var(--space-12); }
	section { padding-bottom: var(--space-12); }
	.pillars, .projects { grid-template-columns: 1fr; }
	.pillar, .project-link {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%),
			#09090B;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	}
	.card-fx::after { opacity: 0.62; }
	.product-showcase {
		margin: 0 auto var(--space-12);
		padding: var(--space-8) 0;
		border-radius: 28px;
	}
	.product-showcase::before {
		top: -10%;
		right: -48%;
		width: 420px;
	}
	.product-showcase-inner {
		grid-template-columns: 1fr;
		gap: var(--space-8);
	}
	.product-showcase-copy { position: static; }
	.product-showcase h2 {
		font-size: clamp(44px, 14vw, 64px);
		margin-bottom: var(--space-3);
	}
	.product-showcase-item { padding-left: var(--space-3); }
	.ai-lab {
		margin: 0 auto var(--space-12);
		padding: var(--space-8) 0;
		border-radius: 28px;
	}
	.ai-lab::before {
		top: -10%;
		right: -48%;
		width: 420px;
	}
	.ai-lab-inner {
		grid-template-columns: 1fr;
		gap: var(--space-8);
	}
	.ai-lab-copy { position: static; }
	.ai-lab h2 {
		font-size: clamp(64px, 21vw, 88px);
		margin-bottom: var(--space-3);
	}
	.ai-lab-item { padding-left: var(--space-3); }
	.hero-actions .btn { width: 100%; }
	.mission { padding: var(--space-8) 0; }
	.footer-inner {
		flex-direction: column-reverse;
		align-items: center;
		gap: var(--space-2);
		text-align: center;
	}
	.footer-links {
		width: 100%;
		justify-content: center;
		gap: var(--space-1) var(--space-3);
	}
	.footer-inner > div:first-child {
		width: 100%;
		padding-top: var(--space-2);
		border-top: 1px solid var(--border);
		font-size: 13px;
		line-height: 18px;
	}
}
