/* ==========================================================================
   SpaceTech AI — Front Page · "Orbital Mission Control"
   A spacecraft-HUD aesthetic: true-black void, luminous electric-blue + cyan
   instrument UI, JetBrains Mono telemetry labels, hairline instrument grid,
   gold reserved for a single vital highlight, generous negative space.

   EVERY selector is scoped under .stcai-landing so the blog/inner pages keep
   the cobalt "Deep Field Blue" system untouched. The neon palette is defined
   LOCALLY in the .stcai-landing scope below, overriding the global --stc-*
   tokens only on the front page. Web fonts apply only under .stcai-landing.
   Enqueued (handle "stcai-front") on is_front_page() only.
   ========================================================================== */

/* ── Front-page palette + 8px spatial scale (scoped; does not touch the blog) ── */
.stcai-landing {
	--la-bg: #05070b;            /* deep-space void */
	--la-bg-2: #080b12;
	--la-surface: #0b0f17;       /* card base */
	--la-surface-2: #13182e;     /* card hover — more perceptible lift */
	--la-acc: #00d2ff;           /* electric blue — primary */
	--la-acc-2: #00ffcc;         /* cyan — secondary */
	--la-gold: #ffd700;          /* vital highlight, used sparingly */
	--la-ink: #021016;           /* dark text on a neon fill */
	--la-text: #e8eef6;          /* primary text  ~16:1 on bg */
	--la-muted: #97a4b6;         /* secondary text ~7.7:1 */
	--la-dim: #93a1b8;           /* meta / de-emphasized — measured 7.71:1 on --la-bg: passes AA + AAA-small */
	--la-line: rgba(255, 255, 255, 0.07);
	--la-line-2: rgba(255, 255, 255, 0.12);
	--la-acc-soft: rgba(0, 210, 255, 0.14);
	--la-acc-glow: rgba(0, 210, 255, 0.45);
	--la-cyan-glow: rgba(0, 255, 204, 0.35);
	--la-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--la-r: 14px;
	--la-r-sm: 10px;
	--la-r-lg: 22px;
	--s1: 8px;  --s2: 16px;  --s3: 24px;  --s4: 32px;
	--s5: 48px; --s6: 64px;  --s7: 96px;  --s8: 128px;

	position: relative;
	background: var(--la-bg);
	color: var(--la-text);
	font-family: "Inter", system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* ── Atmospheric backdrop: instrument grid + deep radial glow + grain ── */
.stcai-landing::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(120% 90% at 50% -20%, rgba(0, 110, 160, 0.20) 0%, transparent 55%),
		radial-gradient(80% 60% at 85% 10%, rgba(0, 255, 204, 0.06) 0%, transparent 50%),
		linear-gradient(var(--la-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--la-line) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
	-webkit-mask-image: radial-gradient(130% 100% at 50% 0%, #000 35%, transparent 90%);
	        mask-image: radial-gradient(130% 100% at 50% 0%, #000 35%, transparent 90%);
	opacity: 0.6;
}

/* grain overlay for depth */
.stcai-landing::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.07;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* lift real content above the fixed backdrop */
.stcai-landing .stcai-hero,
.stcai-landing .stcai-landing-section,
.stcai-landing .site-header,
.stcai-landing .site-footer {
	position: relative;
	z-index: 1;
}
.stcai-landing .site-header { z-index: 100; }

/* ── Typography ── */
.stcai-landing h1,
.stcai-landing h2,
.stcai-landing h3 {
	font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
	color: var(--la-text);
}
.stcai-landing h2 {
	font-size: clamp(1.8rem, 3.2vw, 2.4rem);
	line-height: 1.16;
	font-weight: 600;
	letter-spacing: -0.02em;
	text-wrap: balance;
}
/* pillar tier — the two evidence/research anchor sections lead louder than prose heads */
.stcai-landing #evidence h2,
.stcai-landing #technology h2 {
	font-size: clamp(2.4rem, 4.6vw, 3.4rem);
}
.stcai-landing h3 {
	font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.6rem);
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.stcai-landing p { color: var(--la-muted); }
.stcai-landing a { color: var(--la-acc); text-decoration: none; }
.stcai-landing p a:hover,
.stcai-landing .stcai-founder-body a:hover {
	text-decoration: underline;
	text-decoration-color: var(--la-acc-2);
	text-underline-offset: 4px;
	text-shadow: 0 0 10px var(--la-cyan-glow);
	transition: text-shadow 0.25s;
}

/* ── Keyboard focus — visible HUD ring on every interactive element (WCAG 2.4.7) ── */
.stcai-landing a:focus-visible,
.stcai-landing button:focus-visible,
.stcai-landing .nav-toggle:focus-visible,
.stcai-landing [tabindex]:focus-visible {
	outline: 2px solid var(--la-acc-2);
	outline-offset: 3px;
	border-radius: var(--la-r-sm);
	box-shadow: 0 0 0 4px rgba(0, 255, 204, 0.18);
}
/* don't double up the browser default alongside our ring */
.stcai-landing a:focus:not(:focus-visible),
.stcai-landing button:focus:not(:focus-visible) { outline: none; }

/* ── Eyebrow / telemetry labels (mono) ── */
.stcai-landing .stcai-eyebrow {
	font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--la-acc-2);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--s2);
}
.stcai-landing .stcai-eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--la-acc-2);
	box-shadow: 0 0 8px var(--la-cyan-glow);
}

/* ── Buttons ── */
.stcai-landing .stcai-btn-primary,
.stcai-landing .stcai-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.01em;
	padding: 15px 28px;
	border-radius: var(--la-r-sm);
	cursor: pointer;
	transition: box-shadow 0.3s var(--la-ease), transform 0.18s var(--la-ease),
		background 0.25s, border-color 0.25s, color 0.25s;
}
/* primary: bright neon fill needs DARK text for AA (≈ 9:1) */
.stcai-landing .stcai-btn-primary {
	background: var(--la-acc);
	color: var(--la-ink);
	border: 1px solid transparent;
	box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.2);
}
.stcai-landing .stcai-btn-primary::after {
	content: "→";
	font-size: 1.05em;
	transition: transform 0.25s var(--la-ease);
}
.stcai-landing .stcai-btn-primary:hover {
	background: #4ce6ff;
	color: var(--la-ink);
	box-shadow: 0 0 28px var(--la-acc-glow), 0 0 2px rgba(0, 210, 255, 0.9);
	transform: translateY(-2px);
}
.stcai-landing .stcai-btn-primary:hover::after { transform: translateX(4px); }
.stcai-landing .stcai-btn-primary:active { transform: translateY(0); }
/* Ghost CTA — clearly subordinate to the filled primary so one action dominates */
.stcai-landing .stcai-btn-secondary {
	background: transparent;
	color: var(--la-muted);
	border: 1px solid var(--la-line-2);
}
.stcai-landing .stcai-btn-secondary:hover {
	border-color: var(--la-acc-2);
	color: var(--la-text);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 0 16px rgba(0, 210, 255, 0.1);
	transform: translateY(-2px);
}
.stcai-landing .stcai-btn-secondary:active { transform: translateY(0); }

/* ── Hero ── */
.stcai-landing .stcai-hero {
	min-height: clamp(640px, 92vh, 940px); /* commanding but not airy on tall/ultrawide */
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-block: clamp(64px, 9vh, 112px);
}
/* HUD viewport reticle — corner brackets framing the hero, the signature motif
   echoed on the flagship card. Reads "spacecraft instrument," not "dark SaaS." */
.stcai-landing .stcai-hero::after {
	content: "";
	position: absolute;
	inset: clamp(16px, 3vw, 40px);
	z-index: 4;
	pointer-events: none;
	opacity: 0.58;
	filter: drop-shadow(0 0 6px var(--la-acc-glow));
	background:
		linear-gradient(var(--la-acc), var(--la-acc)) left top / 32px 1px no-repeat,
		linear-gradient(var(--la-acc), var(--la-acc)) left top / 1px 32px no-repeat,
		linear-gradient(var(--la-acc), var(--la-acc)) right top / 32px 1px no-repeat,
		linear-gradient(var(--la-acc), var(--la-acc)) right top / 1px 32px no-repeat,
		linear-gradient(var(--la-acc), var(--la-acc)) left bottom / 32px 1px no-repeat,
		linear-gradient(var(--la-acc), var(--la-acc)) left bottom / 1px 32px no-repeat,
		linear-gradient(var(--la-acc), var(--la-acc)) right bottom / 32px 1px no-repeat,
		linear-gradient(var(--la-acc), var(--la-acc)) right bottom / 1px 32px no-repeat;
}
@media (max-width: 767px) { .stcai-landing .stcai-hero::after { inset: 12px; } }
@keyframes stcai-dash { to { stroke-dashoffset: -220; } }
.stcai-landing #stcai-starfield {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.stcai-landing .stcai-hero-glow {
	position: absolute;
	top: 2%;
	left: 50%;
	transform: translateX(-50%);
	width: clamp(600px, 50vw, 780px);
	max-width: 120vw;
	height: 560px;
	z-index: 3;
	pointer-events: none;
	background: radial-gradient(closest-side, rgba(0, 210, 255, 0.16), transparent);
	filter: blur(24px);
}
.stcai-landing .stcai-hero .stc-container { position: relative; z-index: 10; }
.stcai-landing .stcai-hero-content { max-width: 820px; }

/* telemetry strip — decorative HUD chrome (true qualitative descriptors) */
.stcai-landing .stcai-telemetry {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s2) var(--s3);
	margin-bottom: var(--s4);
	font-family: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--la-dim);
}
/* keep the three telemetry chips on one row only where the wide hero has room */
@media (min-width: 980px) {
	.stcai-landing .stcai-telemetry { flex-wrap: nowrap; }
	.stcai-landing .stcai-telemetry span { white-space: nowrap; }
}
.stcai-landing .stcai-telemetry span { display: inline-flex; align-items: center; gap: 8px; }
.stcai-landing .stcai-telemetry span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--la-acc-2);
	box-shadow: 0 0 8px var(--la-cyan-glow);
}
.stcai-landing .stcai-telemetry b { color: var(--la-muted); font-weight: 500; }

.stcai-landing .stcai-hero h1 {
	font-size: clamp(2.4rem, 4.4vw, 3.6rem);
	line-height: 1.04;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: #f4fbff; /* readable solid fallback — stands alone if gradient/clip unsupported */
	text-wrap: balance; /* avoid heading widows */
	margin-bottom: var(--s3);
}
/* Gradient text is progressive enhancement only, gated on clip support, so the
   solid fallback above survives Windows High Contrast and automated checkers. */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
	.stcai-landing .stcai-hero h1 {
		background: linear-gradient(120deg, #ffffff 0%, #eafcff 58%, #9ff3ff 100%);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		text-shadow: 0 0 1px rgba(255, 255, 255, 0.3); /* stabilize clip edges on subpixel rendering */
	}
}
@media (forced-colors: active) {
	.stcai-landing .stcai-hero h1 {
		-webkit-text-fill-color: CanvasText;
		color: CanvasText;
		background: none;
	}
}
.stcai-landing .stcai-hero .stcai-sub {
	font-size: 1.2rem;
	line-height: 1.6;
	max-width: 62ch;
	margin-bottom: var(--s4);
	color: var(--la-muted);
}
.stcai-landing .stcai-hero-cta { display: flex; gap: var(--s2); flex-wrap: wrap; }

/* breathing glow on the primary hero CTA */
.stcai-landing .stcai-btn-primary.stcai-glow { animation: stcai-breathe 4s ease-in-out 5 forwards; } /* attract on load, then rest */
@keyframes stcai-breathe {
	0%, 100% { box-shadow: 0 0 16px rgba(0, 210, 255, 0.28), 0 0 0 1px rgba(0, 210, 255, 0.2); }
	50%      { box-shadow: 0 0 30px var(--la-acc-glow), 0 0 0 1px rgba(0, 210, 255, 0.35); }
}
.stcai-landing .stcai-btn-primary.stcai-glow:hover { animation: none; }

/* staggered hero load reveal */
.stcai-landing .stcai-hero-content > * {
	opacity: 0;
	transform: translateY(24px);
	animation: stcai-rise 0.85s var(--la-ease) forwards;
}
.stcai-landing .stcai-hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.stcai-landing .stcai-hero-content > *:nth-child(2) { animation-delay: 0.16s; }
.stcai-landing .stcai-hero-content > *:nth-child(3) { animation-delay: 0.27s; }
.stcai-landing .stcai-hero-content > *:nth-child(4) { animation-delay: 0.38s; }
.stcai-landing .stcai-hero-content > *:nth-child(5) { animation-delay: 0.49s; }
@keyframes stcai-rise { to { opacity: 1; transform: translateY(0); } }

/* ── Sections / rhythm ── */
.stcai-landing .stcai-landing-section section { padding-block: clamp(88px, 14vh, 168px); }
.stcai-landing .stcai-section-head { margin-bottom: var(--s5); max-width: 720px; }
.stcai-landing .stcai-section-head p { font-size: 1.0625rem; }
.stcai-landing .stcai-lead { margin-top: var(--s3); font-size: 1.0625rem; max-width: 68ch; text-wrap: pretty; }
.stcai-landing .stcai-section-head p { max-width: 68ch; }
.stcai-landing .stcai-divider {
	height: 1px;
	border: 0;
	background: linear-gradient(90deg, transparent, var(--la-line-2) 20%, var(--la-line-2) 80%, transparent);
}

/* ── Cards / grid ── */
.stcai-landing .stcai-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s3);
}
.stcai-landing .stcai-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.stcai-landing .stcai-card {
	background: var(--la-surface);
	border: 1px solid var(--la-line);
	border-radius: var(--la-r);
	padding: var(--s4);
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s, transform 0.3s var(--la-ease), box-shadow 0.3s, background 0.3s;
}
.stcai-landing .stcai-card:hover {
	border-color: rgba(0, 210, 255, 0.35);
	background: var(--la-surface-2);
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 210, 255, 0.10);
}
/* scanline sweep on the top edge */
.stcai-landing .stcai-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--la-acc-2) 50%, transparent);
	box-shadow: 0 0 10px var(--la-cyan-glow);
	transform: translateX(-100%);
	transition: transform 0.7s var(--la-ease);
}
.stcai-landing .stcai-card:hover::before { transform: translateX(100%); }
.stcai-landing .stcai-card h3 { margin-bottom: 12px; }
.stcai-landing .stcai-card > p { color: var(--la-muted); max-width: 64ch; text-wrap: pretty; }
.stcai-landing .stcai-card-eyebrow {
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--la-acc);
	display: block;
	margin-bottom: 12px;
}
.stcai-landing .stcai-card ul { list-style: none; margin-top: var(--s2); padding: 0; }
.stcai-landing .stcai-card ul li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: var(--la-muted);
	font-size: 0.95rem;
}
.stcai-landing .stcai-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--la-acc-2);
	box-shadow: 0 0 8px var(--la-cyan-glow);
}

/* ── Founder ── */
.stcai-landing .stcai-founder {
	display: flex;
	gap: var(--s4);
	align-items: center;
	margin-top: var(--s3);
	background: var(--la-surface);
	border: 1px solid var(--la-line);
	border-radius: var(--la-r-lg);
	padding: var(--s5);
}
.stcai-landing .stcai-avatar {
	position: relative;
	flex: 0 0 88px;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	font-size: 1.7rem;
	letter-spacing: 0.02em;
	color: var(--la-ink);
	background: linear-gradient(135deg, var(--la-acc), var(--la-acc-2));
	box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.25), 0 0 28px rgba(0, 210, 255, 0.25);
}
/* orbital HUD ring — a slow tracking arc around the monogram (decorative) */
.stcai-landing .stcai-avatar::before {
	content: "";
	position: absolute;
	inset: -9px;
	border-radius: 50%;
	border: 1px solid rgba(0, 210, 255, 0.4);
	border-right-color: transparent;
	border-bottom-color: transparent;
	animation: stcai-spin 12s linear infinite;
}
@keyframes stcai-spin { to { transform: rotate(360deg); } }
.stcai-landing .stcai-role {
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--la-acc);
	margin-top: 8px;
}
.stcai-landing .stcai-founder-body h3 { margin-bottom: 0; }
.stcai-landing .stcai-founder-body p { margin-top: 14px; margin-bottom: 0; color: var(--la-muted); }

/* ── Contact ── */
.stcai-landing .stcai-contact { text-align: center; }
.stcai-landing .stcai-contact .stc-container { max-width: 720px; }
.stcai-landing .stcai-contact h2 { margin-bottom: var(--s2); }
.stcai-landing .stcai-contact .stcai-lead { margin-left: auto; margin-right: auto; font-size: 1.0625rem; }
.stcai-landing .stcai-contact-cta { margin-top: var(--s4); }
.stcai-landing .stcai-email {
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 1.05rem;
	color: var(--la-acc-2);
	margin-top: var(--s4);
	display: inline-block;
	transition: text-shadow 0.25s;
}
.stcai-landing .stcai-email:hover { text-shadow: 0 0 14px var(--la-cyan-glow); }

/* ── Hero: two-column + inspection-swarm illustration ── */
.stcai-landing .stcai-hero-grid {
	display: grid;
	/* minmax(0,…) lets the long headline wrap so the art gets TRUE co-equal width
	   (default min-width:auto would let the headline's min-content steal the row) */
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--s5);
	align-items: center;
	width: 100%;
}
.stcai-landing .stcai-hero-art-wrap {
	position: relative;
	display: flex;
	justify-content: center; /* fill + center the schematic in its column */
	align-items: center;
	opacity: 0;
	animation: stcai-rise 0.9s var(--la-ease) 0.55s forwards;
}
/* soft circular backing so the art carries visual mass against the dense copy */
.stcai-landing .stcai-hero-art-wrap::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(84%, 520px);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 210, 255, 0.5), rgba(0, 210, 255, 0.12) 46%, transparent 70%);
	z-index: 0;
}
/* second concentric instrument ring fills the band between art and reticle */
.stcai-landing .stcai-hero-art-wrap::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(96%, 600px);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 1px dashed rgba(0, 210, 255, 0.16);
	z-index: 0;
}
/* thicken the inline drone glyphs so the swarm reads as a swarm, not scattered specks */
.stcai-landing .stcai-art-swarm line,
.stcai-landing .stcai-art-swarm circle,
.stcai-landing .stcai-art-swarm rect { stroke-width: 1.9; }
.stcai-landing .stcai-hero-art {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: clamp(560px, 48vw, 720px);
	aspect-ratio: 420 / 500; /* reserve space → no layout shift while fonts/SVG paint */
	height: auto;
	overflow: visible;
	filter: drop-shadow(0 0 52px rgba(0, 210, 255, 0.26)) drop-shadow(0 0 100px rgba(0, 210, 255, 0.08));
}
.stcai-landing .stcai-art-rocket {
	stroke: rgba(236, 242, 250, 0.97);
	stroke-width: 3.4;
	fill: rgba(255, 255, 255, 0.06);
	stroke-linejoin: round;
	stroke-linecap: round;
}
.stcai-landing .stcai-art-gantry { stroke: rgba(255, 255, 255, 0.3); stroke-width: 2; }
.stcai-landing .stcai-art-pad { stroke: rgba(255, 255, 255, 0.26); stroke-width: 2; }
.stcai-landing .stcai-art-reticle { stroke: var(--la-acc); stroke-width: 1.4; opacity: 0.7; stroke-linecap: round; }
.stcai-landing .stcai-art-swarm {
	filter: drop-shadow(0 0 5px var(--la-acc-glow));
	transform-box: view-box;
	transform-origin: center;
	animation: stcai-swarm-hover 8s ease-in-out infinite;
}
/* Idle float on the PARENT swarm group only — composes with each drone's own
   placement translate (safe), giving the swarm life. Auto-disabled by the
   reduced-motion rule. Individual drones stay inlined <g> for Safari. */
@keyframes stcai-swarm-hover {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-6px); }
}
.stcai-landing .stcai-art-beam {
	stroke: var(--la-acc-2);
	stroke-width: 1.2;
	stroke-dasharray: 3 5;
	opacity: 0.85;
	animation: stcai-dash 8s linear infinite;
}
.stcai-landing .stcai-art-target { stroke: var(--la-acc-2); stroke-width: 1.4; fill: none; }
/* inter-drone comms mesh — fainter than scan beams, behind the drones */
.stcai-landing .stcai-art-link {
	stroke: var(--la-acc);
	stroke-width: 1;
	stroke-dasharray: 2 6;
	opacity: 0.35;
	animation: stcai-dash 12s linear infinite;
}

/* ── "Mission-boot" hero reveal: the schematic assembles in sequence ──
   structure → vehicle → targeting reticle → targets, after the copy stagger.
   Reset to full opacity under prefers-reduced-motion (below) so nothing sticks hidden. */
@keyframes stcai-boot { from { opacity: 0; transform: scale(0.985); } to { opacity: 1; transform: none; } }
.stcai-landing .stcai-art-gantry,
.stcai-landing .stcai-art-pad { opacity: 0; animation: stcai-boot 0.5s var(--la-ease) 0.75s forwards; }
.stcai-landing .stcai-art-rocket { opacity: 0; animation: stcai-boot 0.6s var(--la-ease) 0.95s forwards; transform-box: fill-box; transform-origin: center; }
.stcai-landing .stcai-art-reticle { opacity: 0; animation: stcai-boot 0.5s var(--la-ease) 1.25s forwards; }
.stcai-landing .stcai-art-target { opacity: 0; animation: stcai-boot 0.4s var(--la-ease) 1.45s forwards; }

/* ── How it works — illustrated explainer ── */
.stcai-landing .stcai-how {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s4);
	margin-top: var(--s6);
	position: relative;
}
.stcai-landing .stcai-how::before {
	content: "";
	position: absolute;
	top: 34px;
	left: 16%;
	right: 16%;
	height: 1px;
	background: repeating-linear-gradient(90deg, var(--la-line-2) 0 6px, transparent 6px 13px);
	z-index: 0;
}
.stcai-landing .stcai-how-step { position: relative; z-index: 1; text-align: center; }
.stcai-landing .stcai-how-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto var(--s3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--la-acc);
	border: 1px solid var(--la-line-2);
	background: radial-gradient(circle at 50% 38%, rgba(0, 210, 255, 0.12), var(--la-bg) 72%);
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--la-ease);
}
.stcai-landing .stcai-how-icon svg { width: 40px; height: 40px; }
.stcai-landing .stcai-how-step:hover .stcai-how-icon {
	border-color: var(--la-acc);
	box-shadow: 0 0 26px rgba(0, 210, 255, 0.25);
	transform: translateY(-3px);
}
.stcai-landing .stcai-how-no {
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--la-acc-2);
	display: block;
	margin-bottom: 6px;
}
.stcai-landing .stcai-how-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.stcai-landing .stcai-how-step p { font-size: 0.95rem; margin: 0 auto; max-width: 32ch; color: var(--la-muted); text-wrap: pretty; }

/* ── Evidence / research trade-space module ── */
.stcai-landing .stcai-simulation-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
	gap: var(--s3);
	align-items: stretch;
	margin-top: var(--s3);
	margin-bottom: var(--s3);
}
.stcai-landing .stcai-simulation-brief,
.stcai-landing .stcai-simulation-method {
	position: relative;
	border: 1px solid var(--la-line-2);
	border-radius: var(--la-r);
	background:
		linear-gradient(180deg, rgba(0, 255, 204, 0.055), transparent 54%),
		linear-gradient(135deg, rgba(0, 210, 255, 0.045), transparent 48%),
		rgba(255, 255, 255, 0.018);
	overflow: hidden;
}
.stcai-landing .stcai-simulation-brief {
	padding: clamp(28px, 4vw, 44px);
}
.stcai-landing .stcai-simulation-brief::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--la-acc-2), var(--la-gold), transparent);
	opacity: 0.85;
}
.stcai-landing .stcai-sim-kicker {
	display: block;
	margin-bottom: var(--s2);
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--la-acc-2);
}
.stcai-landing .stcai-simulation-brief h3 {
	max-width: 19ch;
	margin-bottom: var(--s3);
	font-size: clamp(2rem, 4.3vw, 3.15rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
}
.stcai-landing .stcai-simulation-brief p {
	max-width: 68ch;
	margin-bottom: 0;
	color: var(--la-text);
}
.stcai-landing .stcai-sim-scope {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--s2);
	margin: var(--s4) 0 0;
}
.stcai-landing .stcai-sim-scope div {
	padding-top: var(--s2);
	border-top: 1px solid var(--la-line-2);
}
.stcai-landing .stcai-sim-scope dt {
	margin: 0 0 4px;
	font-family: "Space Grotesk", system-ui, sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.45rem);
	font-weight: 700;
	line-height: 1;
	color: var(--la-acc-2);
	font-variant-numeric: tabular-nums;
}
.stcai-landing .stcai-sim-scope dd {
	margin: 0;
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.66rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--la-muted);
}
.stcai-landing .stcai-simulation-method {
	padding: var(--s4);
}
.stcai-landing .stcai-simulation-method ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.stcai-landing .stcai-simulation-method li {
	position: relative;
	padding: 0 0 var(--s3) var(--s3);
	border-left: 1px solid rgba(0, 210, 255, 0.24);
}
.stcai-landing .stcai-simulation-method li:last-child { padding-bottom: 0; }
.stcai-landing .stcai-simulation-method li::before {
	content: "";
	position: absolute;
	left: -5px;
	top: 4px;
	width: 9px;
	height: 9px;
	border: 1px solid var(--la-acc-2);
	border-radius: 50%;
	background: var(--la-bg);
	box-shadow: 0 0 14px rgba(0, 255, 204, 0.34);
}
.stcai-landing .stcai-simulation-method strong {
	display: block;
	margin-bottom: 4px;
	color: var(--la-text);
	font-family: "Space Grotesk", system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 600;
}
.stcai-landing .stcai-simulation-method span {
	display: block;
	color: var(--la-muted);
	font-size: 0.94rem;
	line-height: 1.65;
}
.stcai-landing .stcai-evidence .stcai-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s2);
	margin-top: var(--s3);
}
.stcai-landing .stcai-stat {
	position: relative;
	padding: var(--s3);
	border: 1px solid var(--la-line);
	border-radius: var(--la-r);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
	overflow: hidden;
	transition: border-color 0.3s, transform 0.3s var(--la-ease);
}
.stcai-landing .stcai-stat:hover {
	border-color: rgba(0, 210, 255, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 210, 255, 0.12);
}
.stcai-landing .stcai-stat::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 2px;
	background: var(--la-acc);
	opacity: 0.5;
}
.stcai-landing .stcai-stat-value {
	display: block;
	font-family: "Space Grotesk", system-ui, sans-serif;
	font-size: clamp(2.3rem, 4.6vw, 3.2rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--la-acc-2);
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1;
}
.stcai-landing .stcai-stat-label {
	display: block;
	margin-top: var(--s2);
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--la-muted);
}
.stcai-landing .stcai-stat-detail {
	display: block;
	margin-top: var(--s2);
	color: var(--la-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}
.stcai-landing .stcai-stat.is-gold::before { background: var(--la-gold); opacity: 0.85; }
.stcai-landing .stcai-stat.is-gold .stcai-stat-value {
	color: var(--la-gold);
	font-size: clamp(2.7rem, 5.4vw, 3.7rem); /* the single vital metric leads by scale, not just hue */
	text-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
}

/* ── Composites PoC schematic — IR thermography imaging a CFRP laminate while a
   U-Net model segments a subsurface defect. Pictures the real proof-of-concept IP:
   modality in (IR scan head) → specimen (woven carbon-fiber slab) → AI out (mask). ── */
.stcai-landing .stcai-poc-art {
	width: 100%;
	max-width: 340px;
	height: auto;
	margin-bottom: var(--s3);
	display: block;
	filter: drop-shadow(0 0 22px rgba(0, 210, 255, 0.1));
}
/* HUD frame */
.stcai-landing .stcai-poc-tick { stroke: var(--la-acc-2); stroke-width: 1.4; opacity: 0.55; }
/* carbon-fiber twill weave (seamless tile: corner diagonals in two directions) */
.stcai-landing .stcai-poc-weave-bg { fill: rgba(255, 255, 255, 0.02); }
.stcai-landing .stcai-poc-weave-warp { stroke: rgba(232, 238, 246, 0.15); stroke-width: 0.8; }
.stcai-landing .stcai-poc-weave-weft { stroke: rgba(232, 238, 246, 0.06); stroke-width: 0.6; }
/* IR scan head */
.stcai-landing .stcai-poc-yoke { stroke: rgba(232, 238, 246, 0.55); stroke-width: 1.2; }
.stcai-landing .stcai-poc-head { stroke: var(--la-acc); stroke-width: 1.3; fill: rgba(0, 210, 255, 0.08); }
.stcai-landing .stcai-poc-lens { stroke: var(--la-acc); stroke-width: 1.3; fill: rgba(0, 210, 255, 0.12); }
.stcai-landing .stcai-poc-lens-in { fill: var(--la-acc); opacity: 0.85; }
.stcai-landing .stcai-poc-led { fill: var(--la-acc-2); }
/* scan cone (volumetric gradient) + sweeping line (widens as it descends via cone clip) */
.stcai-landing .stcai-poc-beam-top { stop-color: var(--la-acc); stop-opacity: 0.16; }
.stcai-landing .stcai-poc-beam-bot { stop-color: var(--la-acc); stop-opacity: 0; }
.stcai-landing .stcai-poc-cone { fill: url(#stcaiPocBeam); }
.stcai-landing .stcai-poc-cone-edge { stroke: var(--la-acc); stroke-width: 1; opacity: 0.5; }
.stcai-landing .stcai-poc-sweep { fill: var(--la-acc-2); opacity: 0.5; animation: stcai-poc-sweep 2.4s var(--la-ease) infinite alternate; }
/* CFRP laminate */
.stcai-landing .stcai-poc-panel { fill: url(#stcaiPocWeave); stroke: rgba(232, 238, 246, 0.45); stroke-width: 1.4; }
.stcai-landing .stcai-poc-edge { fill: rgba(0, 0, 0, 0.4); stroke: rgba(232, 238, 246, 0.3); stroke-width: 1; }
.stcai-landing .stcai-poc-ply { stroke: rgba(232, 238, 246, 0.14); stroke-width: 0.7; }
/* subsurface thermal signature */
.stcai-landing .stcai-poc-th-core { stop-color: #bff4ff; stop-opacity: 0.85; }
.stcai-landing .stcai-poc-th-mid { stop-color: var(--la-acc); stop-opacity: 0.32; }
.stcai-landing .stcai-poc-th-edge { stop-color: var(--la-acc); stop-opacity: 0; }
.stcai-landing .stcai-poc-bloom { animation: stcai-poc-pulse 3.2s ease-in-out infinite; }
/* U-Net segmentation mask + target lock */
.stcai-landing .stcai-poc-mask { stroke: var(--la-acc); stroke-width: 1.6; fill: rgba(0, 210, 255, 0.06); filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.5)); }
.stcai-landing .stcai-poc-lock { stroke: var(--la-acc-2); stroke-width: 1.3; opacity: 0.9; }
.stcai-landing .stcai-poc-cross { stroke: var(--la-acc); stroke-width: 1; opacity: 0.8; }
/* callout + dimension */
.stcai-landing .stcai-poc-leader { stroke: rgba(232, 238, 246, 0.4); stroke-width: 0.8; }
.stcai-landing .stcai-poc-leader-dot { fill: var(--la-acc-2); }
.stcai-landing .stcai-poc-tag { fill: var(--la-dim); font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 6.5px; letter-spacing: 0.12em; }
.stcai-landing .stcai-poc-dim { stroke: rgba(232, 238, 246, 0.22); stroke-width: 0.8; }
@keyframes stcai-poc-sweep { from { transform: translateY(-18px); } to { transform: translateY(28px); } }
@keyframes stcai-poc-pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

/* ── "Honest Evaluation" card figure — qualitative accuracy-collapse (NO raw metrics, by brand):
   the same model looks near-perfect on an easy same-specimen test, then drops sharply as the test
   gets honest, and collapses on unseen locations. The flattering bar is hatched/dashed (not the
   real number); the honest low bar is solid + bright (the trustworthy read). ── */
.stcai-landing .stcai-eval-art { width: 100%; max-width: 340px; height: auto; margin-bottom: var(--s3); display: block; filter: drop-shadow(0 0 22px rgba(0, 210, 255, 0.08)); }
.stcai-landing .stcai-eval-tick { stroke: var(--la-acc-2); stroke-width: 1.4; opacity: 0.55; }
.stcai-landing .stcai-eval-cap { fill: var(--la-dim); font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 7px; letter-spacing: 0.14em; }
.stcai-landing .stcai-eval-axis { stroke: rgba(232, 238, 246, 0.3); stroke-width: 1; }
.stcai-landing .stcai-eval-bar-soft { fill: rgba(0, 210, 255, 0.07); }
.stcai-landing .stcai-eval-hatchline { stroke: rgba(0, 210, 255, 0.18); stroke-width: 1; }
.stcai-landing .stcai-eval-bar-edge { fill: none; stroke: var(--la-acc); stroke-width: 1.1; stroke-dasharray: 3 3; opacity: 0.7; }
.stcai-landing .stcai-eval-bar-mid { fill: rgba(0, 210, 255, 0.3); stroke: var(--la-acc); stroke-width: 1; }
.stcai-landing .stcai-eval-bar-real { fill: rgba(0, 255, 204, 0.55); stroke: var(--la-acc-2); stroke-width: 1.3; filter: drop-shadow(0 0 6px rgba(0, 255, 204, 0.45)); }
.stcai-landing .stcai-eval-arrow { stroke: rgba(232, 238, 246, 0.5); stroke-width: 1.2; stroke-dasharray: 4 4; fill: none; }
.stcai-landing .stcai-eval-arrowhead { fill: var(--la-acc-2); }
.stcai-landing .stcai-eval-sub { fill: var(--la-muted); font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 7px; letter-spacing: 0.06em; }
.stcai-landing .stcai-eval-sub-on { fill: var(--la-acc-2); }
.stcai-landing .stcai-eval-tag { fill: var(--la-dim); font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 6.5px; letter-spacing: 0.1em; }
/* methodology figures (swarm size, iteration count) — subordinate to the outcome stats */
.stcai-landing .stcai-stat.is-method::before { background: var(--la-line-2); opacity: 1; }
.stcai-landing .stcai-stat.is-method .stcai-stat-value {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--la-muted);
}
.stcai-landing .stcai-evidence-note {
	margin-top: var(--s4);
	max-width: 920px;
	padding-left: var(--s2);
	border-left: 2px solid var(--la-acc-2);
	font-family: "Inter", system-ui, -apple-system, sans-serif; /* readable long-form; mono reserved for short telemetry */
	font-size: clamp(0.9rem, 1.3vw, 1rem); /* the honesty caveat must travel, even screenshotted */
	line-height: 1.7;
	color: var(--la-muted);
}
@media (max-width: 860px) {
	.stcai-landing .stcai-simulation-grid { grid-template-columns: 1fr; }
	.stcai-landing .stcai-evidence .stcai-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.stcai-landing .stcai-sim-scope { grid-template-columns: 1fr; }
	.stcai-landing .stcai-evidence .stcai-stats { grid-template-columns: 1fr; gap: var(--s2); }
}

/* ── Flagship FEATURE card — the deliberate grid-break: a full-width banner above
   the 3-card row, so the research-stage flagship carries the visual weight
   its maturity earns (honesty encoded in hierarchy). ── */
.stcai-landing .stcai-card.is-flagship {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: var(--s5);
	align-items: stretch;
	border-color: rgba(0, 210, 255, 0.3);
	box-shadow: 0 0 30px rgba(0, 210, 255, 0.08);
}
.stcai-landing .stcai-flagship-text { align-self: center; }
.stcai-landing .stcai-card.is-flagship:hover {
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 40px var(--la-acc-glow);
}
.stcai-landing .stcai-flagship-text h3 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); }
/* instrument corner-brackets — frames the flagship like a HUD readout */
.stcai-landing .stcai-card.is-flagship::after {
	content: "";
	position: absolute;
	inset: 12px;
	pointer-events: none;
	opacity: 0.55;
	transition: opacity 0.4s var(--la-ease), inset 0.4s var(--la-ease);
	background:
		linear-gradient(var(--la-acc-2), var(--la-acc-2)) left top / 16px 1.5px no-repeat,
		linear-gradient(var(--la-acc-2), var(--la-acc-2)) left top / 1.5px 16px no-repeat,
		linear-gradient(var(--la-acc-2), var(--la-acc-2)) right top / 16px 1.5px no-repeat,
		linear-gradient(var(--la-acc-2), var(--la-acc-2)) right top / 1.5px 16px no-repeat,
		linear-gradient(var(--la-acc-2), var(--la-acc-2)) left bottom / 16px 1.5px no-repeat,
		linear-gradient(var(--la-acc-2), var(--la-acc-2)) left bottom / 1.5px 16px no-repeat,
		linear-gradient(var(--la-acc-2), var(--la-acc-2)) right bottom / 16px 1.5px no-repeat,
		linear-gradient(var(--la-acc-2), var(--la-acc-2)) right bottom / 1.5px 16px no-repeat;
}
/* "lock-on": the HUD brackets expand to the card edge + brighten on hover */
.stcai-landing .stcai-card.is-flagship:hover::after { opacity: 0.95; inset: 7px; }
.stcai-landing .stcai-flagship-text > p { max-width: 56ch; }

/* honest maturity readout — research → V&V → real-world, as a HUD status track */
.stcai-landing .stcai-flagship-track {
	border-left: 1px solid var(--la-line-2);
	padding-left: var(--s4);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
/* closing baseline so the column reaches a deliberate bottom edge (no dead gap) */
.stcai-landing .stcai-track-foot {
	margin-top: var(--s3);
	padding-top: var(--s2);
	border-top: 1px dashed var(--la-line-2);
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.66rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--la-dim);
}
.stcai-landing .stcai-track-label {
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--la-acc-2);
	display: block;
}
.stcai-landing .stcai-track {
	list-style: none;
	margin: var(--s3) 0 0;
	padding: 0;
}
.stcai-landing .stcai-track li {
	position: relative;
	padding-left: 26px;
	padding-bottom: 16px;
	font-family: "Inter", system-ui, sans-serif; /* sentence content reads as prose; mono reserved for labels */
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--la-muted); /* stays ≥AAA even on the hovered flagship surface */
}
.stcai-landing .stcai-track li:last-child { padding-bottom: 0; }
.stcai-landing .stcai-track li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 1px solid var(--la-line-2);
	background: var(--la-bg);
}
.stcai-landing .stcai-track li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 15px;
	width: 1px;
	bottom: 1px;
	background: var(--la-line-2);
}
.stcai-landing .stcai-track li.is-done { color: var(--la-text); }
.stcai-landing .stcai-track li.is-done::before {
	background: var(--la-acc-2);
	border-color: var(--la-acc-2);
	box-shadow: 0 0 9px var(--la-cyan-glow);
}
.stcai-landing .stcai-track li.is-next { color: var(--la-muted); }
.stcai-landing .stcai-track li.is-next::before {
	border-color: var(--la-acc);
	box-shadow: 0 0 9px var(--la-acc-glow);
}
/* visually-hidden utility — carries maturity-ladder state to assistive tech without
   altering the visual, so "done/next/planned" isn't conveyed by dot color alone (WCAG 1.4.1) */
.stcai-landing .stcai-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
@media (max-width: 767px) {
	.stcai-landing .stcai-card.is-flagship { grid-template-columns: 1fr; gap: var(--s4); }
	.stcai-landing .stcai-flagship-track { border-left: 0; border-top: 1px solid var(--la-line-2); padding-left: 0; padding-top: var(--s3); }
}

.stcai-landing .stcai-card-eyebrow.stcai-eyebrow-muted { color: var(--la-dim); }
/* dampen the lowest-maturity ("Exploring") card body, not just its eyebrow — honesty in weight */
/* muted via a recessed surface + dimmed heading — body text keeps full --la-muted contrast */
.stcai-landing #technology .stcai-grid > .stcai-card:last-child {
	background: rgba(255, 255, 255, 0.008);
	border-color: rgba(255, 255, 255, 0.04);
}
.stcai-landing #technology .stcai-grid > .stcai-card:last-child h3 { color: var(--la-muted); }
.stcai-landing #technology .stcai-grid > .stcai-card:last-child:hover { background: var(--la-surface-2); }
.stcai-landing #technology .stcai-grid > .stcai-card:last-child:hover h3 { color: var(--la-text); }

/* ==========================================================================
   SECTION RHYTHM — break the flat-black metronome with two branded "panel"
   moments: the Evidence section reads as a luminous instrument readout, and
   the Contact section as a focused comms terminal. Full-bleed bands (the inner
   .stc-container keeps the copy aligned) so the page breathes between sections.
   ========================================================================== */
.stcai-landing #evidence {
	position: relative;
	border-block: 1px solid var(--la-line-2);
	background:
		radial-gradient(90% 130% at 50% 0%, rgba(0, 210, 255, 0.16), transparent 60%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 45%, transparent),
		rgba(255, 255, 255, 0.035);
}
/* a faint scanning sweep line across the top edge of the readout panel */
.stcai-landing #evidence::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--la-acc-2) 50%, transparent);
	opacity: 0.6;
}

/* faint luminosity cadence on the prose sections so the page breathes (bright→dark→bright) */
/* bright→dark→bright cadence, amplitudes pushed clearly above the perceptual floor.
   Bright beats: #about, #evidence (peak), #capabilities. Dark troughs: #how, #founder. */
/* The section FLOOR steps (flat tint under the gradient), so luminance changes
   section-to-section instead of a sub-threshold vignette. Lit: about/evidence/
   capabilities. Troughs: how/founder. The instrument grid still reads through. */
.stcai-landing #about {
	background: linear-gradient(180deg, rgba(0, 210, 255, 0.16), transparent 50%), rgba(255, 255, 255, 0.022);
}
.stcai-landing #how {
	/* deliberate dark trough between the lit About and Evidence bands */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 40%), rgba(0, 0, 0, 0.22);
}
.stcai-landing #founder {
	border-top: 1px solid var(--la-line);
	background: rgba(0, 0, 0, 0.2);
}
/* asymmetric "split intro" — breaks the centered-column rhythm (desktop only) */
@media (min-width: 861px) {
	.stcai-landing #about .stc-container {
		display: grid;
		grid-template-columns: 0.82fr 1.18fr;
		column-gap: var(--s6);
		align-items: start;
	}
	.stcai-landing #about .stcai-eyebrow { grid-column: 1; grid-row: 1; }
	.stcai-landing #about h2 { grid-column: 1; grid-row: 2; margin: 0; }
	.stcai-landing #about .stcai-lead { grid-column: 2; grid-row: 1 / span 2; margin-top: 0; align-self: center; max-width: 62ch; }

	/* second split-intro on How It Works — asymmetry recurs as a system, not an exception */
	.stcai-landing #how .stcai-section-head {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: var(--s6);
		align-items: end;
	}
	.stcai-landing #how .stcai-section-head .stcai-eyebrow { grid-column: 1; grid-row: 1; }
	.stcai-landing #how .stcai-section-head h2 { grid-column: 1; grid-row: 2; margin: 0; }
	.stcai-landing #how .stcai-section-head .stcai-lead { grid-column: 2; grid-row: 1 / span 2; margin-top: 0; align-self: end; max-width: 60ch; }

	/* asymmetric capability cards (distinct from the equal Technology grid below) */
	.stcai-landing #capabilities .stcai-two-col { grid-template-columns: 1.15fr 0.85fr; }
}
.stcai-landing #capabilities {
	border-block: 1px solid var(--la-line-2);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 55%),
		radial-gradient(80% 60% at 50% 100%, rgba(0, 210, 255, 0.05), transparent 60%),
		rgba(255, 255, 255, 0.022);
	padding-block: clamp(72px, 11vh, 128px); /* tighter than default so the rhythm isn't metronomic */
}
/* the full-width flagship banner is this section's asymmetric beat; the 3-card row stays a clean equal grid */
/* carry one asymmetric beat into the tablet band so composition doesn't flatten */
@media (min-width: 601px) and (max-width: 860px) {
	.stcai-landing #capabilities .stcai-two-col > .stcai-card:nth-child(2) { margin-top: var(--s3); }
}
/* Technology reads as a distinct instrument module, not another card slab */
.stcai-landing #technology {
	border-block-start: 1px solid var(--la-line-2);
	background:
		radial-gradient(80% 120% at 50% 0%, rgba(0, 255, 204, 0.08), transparent 60%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
}
.stcai-landing #technology::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--la-acc-2) 50%, transparent);
	opacity: 0.5;
}
.stcai-landing #technology { position: relative; }

/* one more asymmetric beat: stagger the two capability cards on desktop */
@media (min-width: 861px) {
	.stcai-landing #capabilities .stcai-two-col > .stcai-card:nth-child(2) { margin-top: var(--s5); }
}
/* keep the founder block from claiming pillar-level airtime */
.stcai-landing #founder .stc-container { max-width: 940px; }
.stcai-landing #founder { padding-block: clamp(64px, 9vh, 104px); }

.stcai-landing .stcai-contact {
	position: relative;
	overflow: hidden;
	/* tightened lead-in so the eyebrow doesn't open under a dead void */
	padding-block: clamp(72px, 9vh, 112px) clamp(48px, 6vh, 80px);
}
.stcai-landing .stcai-contact::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 760px;
	max-width: 120vw;
	height: 480px;
	transform: translate(-50%, -50%);
	z-index: 0;
	pointer-events: none;
	background: radial-gradient(closest-side, rgba(0, 210, 255, 0.10), transparent 75%);
	filter: blur(20px);
}
.stcai-landing .stcai-contact .stc-container { position: relative; z-index: 1; }

/* ── Scroll reveal ── */
.stcai-landing .stcai-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.55s var(--la-ease), transform 0.55s var(--la-ease);
}
.stcai-landing .stcai-reveal.is-visible { opacity: 1; transform: translateY(0); }
/* reveal cascade: grouped cards power on left-to-right rather than all at once */
.stcai-landing .stcai-grid > .stcai-reveal:nth-child(2) { transition-delay: 0.07s; }
.stcai-landing .stcai-grid > .stcai-reveal:nth-child(3) { transition-delay: 0.14s; }
.stcai-landing .stcai-grid > .stcai-reveal:nth-child(4) { transition-delay: 0.21s; }
.stcai-landing .stcai-two-col > .stcai-reveal:nth-child(2) { transition-delay: 0.09s; }
/* reveal-vector variety: pillar heads travel more; the stat strip scales rather than just rising */
.stcai-landing #evidence .stcai-section-head.stcai-reveal,
.stcai-landing #technology .stcai-section-head.stcai-reveal { transform: translateY(40px); transition-duration: 0.7s; }
.stcai-landing .stcai-stats.stcai-reveal { transform: translateY(16px) scale(0.975); }
.stcai-landing .stcai-stats.stcai-reveal.is-visible { transform: translateY(0) scale(1); }
/* the maturity ladder "powers on" rung-by-rung when the flagship enters view (its own motion beat) */
.stcai-landing .stcai-card.is-flagship.is-visible .stcai-track li::before { animation: stcai-boot 0.45s var(--la-ease) backwards; }
.stcai-landing .stcai-card.is-flagship.is-visible .stcai-track li:nth-child(1)::before { animation-delay: 0.25s; }
.stcai-landing .stcai-card.is-flagship.is-visible .stcai-track li:nth-child(2)::before { animation-delay: 0.45s; }
.stcai-landing .stcai-card.is-flagship.is-visible .stcai-track li:nth-child(3)::before { animation-delay: 0.65s; }

/* ==========================================================================
   HEADER / FOOTER reconciliation (front page only, scoped)
   ========================================================================== */
.stcai-landing .site-header {
	background: rgba(5, 7, 11, 0.6);
	backdrop-filter: blur(16px) saturate(150%);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	border-bottom: 1px solid var(--la-line);
	transition: background 0.3s;
}
.stcai-landing .site-header.is-scrolled { background: rgba(5, 7, 11, 0.9); }
.stcai-landing .site-header .stc-container { height: 104px; }
.stcai-landing .stcai-brand-logo {
	height: 92px;
	max-width: 230px;
	filter: drop-shadow(0 0 14px rgba(0, 210, 255, 0.16));
}
.stcai-landing .nav-toggle { color: var(--la-text); border-color: var(--la-line-2); min-width: 44px; min-height: 44px; }
/* the mobile dropdown anchors below the front page's taller header + uses the void palette (not blog cobalt) */
.stcai-landing .primary-nav.is-open {
	top: 104px;
	background: rgba(5, 7, 11, 0.97);
	backdrop-filter: blur(16px) saturate(150%);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	border-bottom: 1px solid var(--la-line-2);
}
.stcai-landing .stcai-brand-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--la-acc-2);
	box-shadow: 0 0 12px var(--la-cyan-glow);
	flex: 0 0 auto;
}
.stcai-landing .stcai-brand-mark {
	height: 34px;
	width: auto;
	display: block;
	flex: 0 0 auto;
}
.stcai-landing .site-title {
	font-family: "Space Grotesk", system-ui, sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.stcai-landing .site-title a,
.stcai-landing .site-title a:hover { color: var(--la-text); }
.stcai-landing .site-title .stcai-wordmark-accent { color: var(--la-acc-2); }

.stcai-landing .primary-nav a {
	color: var(--la-muted);
	font-family: "Inter", system-ui, sans-serif;
	font-weight: 500;
	font-size: 15px;
	position: relative;
	background: none;
	border-radius: 0;
	padding: 11px 0; /* desktop nav link ≈46px tall; mobile stacked targets set in @media ≤767 */
	margin: 0 16px;
	transition: color 0.2s;
}
.stcai-landing .primary-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	background: var(--la-acc-2);
	box-shadow: 0 0 8px var(--la-cyan-glow);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s var(--la-ease);
}
.stcai-landing .primary-nav a:hover,
.stcai-landing .primary-nav .current-menu-item a,
.stcai-landing .primary-nav .current_page_item a { color: var(--la-text); background: none; }
.stcai-landing .primary-nav a:hover::after,
.stcai-landing .primary-nav .current-menu-item a::after { transform: scaleX(1); }

/* ghost CTA in the nav — the filled fill is reserved for the hero + contact funnel stages */
.stcai-landing .primary-nav .menu-cta a,
.stcai-landing .primary-nav a.menu-cta {
	background: transparent;
	color: var(--la-acc-2);
	border: 1px solid var(--la-acc);
	border-radius: var(--la-r-sm);
	padding: 9px 19px;
	margin-left: 16px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	white-space: nowrap; /* keep "Start a Conversation" on one line at tablet */
	transition: box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}
.stcai-landing .primary-nav .menu-cta a:hover,
.stcai-landing .primary-nav a.menu-cta:hover {
	background: var(--la-acc-soft);
	color: var(--la-text);
	border-color: var(--la-acc-2);
	box-shadow: 0 0 18px rgba(0, 210, 255, 0.16);
}
.stcai-landing .primary-nav .menu-cta a::after,
.stcai-landing .primary-nav a.menu-cta::after { display: none; }

.stcai-landing .site-footer { border-top: 1px solid var(--la-line); background: transparent; }
.stcai-landing .site-footer .footer-copy { color: var(--la-dim); margin: 0; font-size: 0.85rem; }
.stcai-landing .site-footer .stcai-brand-dot { display: inline-block; }
.stcai-landing .footer-brand-mark {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	box-shadow: 0 0 18px rgba(0, 210, 255, 0.2);
}
/* 3-part footer: brand · nav · copyright */
.stcai-landing .site-footer .stc-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: var(--s3);
	flex-wrap: wrap;
	padding-block: var(--s4);
}
.stcai-landing .footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.stcai-landing .footer-wordmark {
	font-family: "Space Grotesk", system-ui, sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.01em;
	color: var(--la-text);
}
.stcai-landing .footer-wordmark .stcai-wordmark-accent { color: var(--la-acc-2); }
.stcai-landing .footer-nav ul { display: flex; gap: var(--s3); list-style: none; margin: 0; padding: 0; }
.stcai-landing .footer-nav a { color: var(--la-muted); font-size: 0.9rem; transition: color 0.2s; }
.stcai-landing .footer-nav a:hover { color: var(--la-acc-2); }
@media (max-width: 640px) {
	.stcai-landing .site-footer .stc-container { flex-direction: column; text-align: center; gap: var(--s2); }
	.stcai-landing .footer-nav ul { justify-content: center; flex-wrap: wrap; }
}

/* ── Responsive ── */
/* Large screens: let big h2s breathe a touch more */
@media (min-width: 1440px) {
	.stcai-landing h2 { line-height: 1.18; }
	.stcai-landing .stcai-hero-art { filter: drop-shadow(0 0 50px rgba(0, 210, 255, 0.24)) drop-shadow(0 0 110px rgba(0, 210, 255, 0.08)); }
}
/* Tablet band (768–979): two-up grids instead of a hard 3→1 column jump */
@media (min-width: 768px) and (max-width: 979px) {
	/* keep the 3-up rows 3-col so step 03 / the 3rd tech card don't orphan into a 2+1 */
	.stcai-landing .stcai-how { grid-template-columns: repeat(3, 1fr); gap: var(--s2); }
	.stcai-landing .stcai-how-icon { width: 56px; height: 56px; }
	.stcai-landing .stcai-how-icon svg { width: 32px; height: 32px; }
	.stcai-landing .stcai-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s2); }
	.stcai-landing .stcai-hero-grid { gap: var(--s4); }
	.stcai-landing .stcai-hero-art { max-width: clamp(340px, 44vw, 440px); }
	.stcai-landing .primary-nav a { margin: 0 12px; } /* keep nav + CTA on one line */
	.stcai-landing .stcai-telemetry { flex-wrap: nowrap; gap: var(--s2); font-size: 0.62rem; }
	.stcai-landing .stcai-telemetry span { white-space: nowrap; }
}
@media (max-width: 979px) {
	.stcai-landing .stcai-how::before { display: none; }
	.stcai-landing .stcai-how-step p { max-width: 42ch; }
}
@media (max-width: 860px) {
	.stcai-landing .stcai-two-col { grid-template-columns: 1fr; gap: var(--s2); }
}
/* Below tablet (≤767): stack the hero; convert the process row into a vertical timeline */
@media (max-width: 767px) {
	.stcai-landing .stcai-hero-grid { grid-template-columns: 1fr; gap: var(--s4); }
	.stcai-landing .stcai-hero-art { max-width: 300px; margin-top: var(--s3); }
	.stcai-landing .stcai-grid { grid-template-columns: 1fr; gap: var(--s3); } /* tech cards 1-col — was clipping at 3-col */
	.stcai-landing .stcai-how {
		grid-template-columns: 1fr;
		gap: var(--s5);
		margin-top: var(--s4);
		margin-left: var(--s1);
		padding-left: var(--s4);
		border-left: 2px dashed var(--la-line-2);
		text-align: left;
	}
	.stcai-landing .stcai-how-step { text-align: left; }
	.stcai-landing .stcai-how-icon { margin: 0 0 var(--s2); }
	.stcai-landing .stcai-how-step p { margin: 0; max-width: 52ch; }
	.stcai-landing p { line-height: 1.8; }   /* looser leading at narrow measure */
	.stcai-landing .stcai-lead { line-height: 1.75; }
		.stcai-landing .site-header .stc-container { height: 82px; }
		.stcai-landing .stcai-brand-logo { height: 66px; max-width: 170px; }
		.stcai-landing .primary-nav.is-open { top: 82px; }
	.stcai-landing .primary-nav a { margin: 0; }
	/* stacked mobile menu — guarantee ≥44px tap targets (WCAG 2.5.5) */
	.stcai-landing .primary-nav.is-open a {
		display: block;
		padding: 13px 0;
		min-height: 44px;
		line-height: 1.4;
		box-sizing: border-box;
	}
	.stcai-landing .primary-nav .menu-cta a,
	.stcai-landing .primary-nav a.menu-cta { display: inline-block; margin-left: 0; }
}
@media (max-width: 620px) {
	.stcai-landing .stcai-founder { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
	.stcai-landing .stcai-hero-art { max-width: 240px; margin-top: var(--s3); }
	.stcai-landing .stcai-telemetry { gap: var(--s2); }
}
@media (max-width: 390px) {
	.stcai-landing .stcai-hero-grid { gap: var(--s5); }
	.stcai-landing .stcai-hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
	.stcai-landing .stcai-hero-art { max-width: 220px; }
		.stcai-landing .site-header .stc-container { height: 72px; }
		.stcai-landing .stcai-brand-logo { height: 58px; max-width: 150px; }
		.stcai-landing .primary-nav.is-open { top: 72px; }
}
@media (max-width: 340px) {
	.stcai-landing .stcai-hero h1 { font-size: clamp(1.95rem, 7.5vw, 2.4rem); }
	.stcai-landing .stcai-hero-art { max-width: 200px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
	.stcai-landing * { animation: none !important; transition: none !important; }
	.stcai-landing .stcai-reveal,
	.stcai-landing .stcai-hero-art-wrap,
	.stcai-landing .stcai-hero-content > *,
	.stcai-landing .stcai-art-gantry,
	.stcai-landing .stcai-art-pad,
	.stcai-landing .stcai-art-rocket,
	.stcai-landing .stcai-art-target,
	.stcai-landing .stcai-hero-content > * { opacity: 1; transform: none; }
	.stcai-landing .stcai-art-reticle { opacity: 0.7; transform: none; } /* preserve its baseline */
}

/* ════════════════════════════════════════════════════════════════════════
   RESEARCH DEEP-DIVE PAGE  (template-research.php · body .stcai-landing.stcai-research)
   Reuses the landing palette, type, and HUD language. No light "pasted slide"
   plates — figures are real on-brand raster (thermography) or bespoke dark SVG,
   so the premium feel is unbroken. ════════════════════════════════════════════ */
.stcai-landing .stcai-research-back {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.8rem; letter-spacing: 0.06em; color: var(--la-dim);
	text-decoration: none; margin-bottom: var(--s3);
	transition: color 0.25s var(--la-ease);
}
.stcai-landing .stcai-research-back:hover { color: var(--la-acc); }
.stcai-landing .stcai-research-hero { padding: calc(var(--s7) + 8px) 0 var(--s5); position: relative; }
.stcai-landing .stcai-research-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.07; margin: var(--s2) 0 var(--s3); text-wrap: balance; }
.stcai-landing .stcai-research-hero .stcai-lead { max-width: 64ch; }
.stcai-landing .stcai-research-streams { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }
.stcai-landing .stcai-stream {
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.72rem; letter-spacing: 0.04em; color: var(--la-muted);
	border: 1px solid var(--la-line-2); border-radius: 999px; padding: 7px 14px;
}
.stcai-landing .stcai-stream.is-active { color: var(--la-acc-2); border-color: rgba(0, 255, 204, 0.4); }
.stcai-landing .stcai-stream a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.stcai-landing .stcai-research-section { padding: var(--s6) 0; border-top: 1px solid var(--la-line); }
.stcai-landing .stcai-research-section.is-lift { background: rgba(255, 255, 255, 0.022); }
.stcai-landing .stcai-research-section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: var(--s2) 0 var(--s3); max-width: 24ch; text-wrap: balance; }
.stcai-landing .stcai-research-subhead { font-family: "Space Grotesk", system-ui, sans-serif; font-size: 1.15rem; margin: var(--s5) 0 var(--s3); color: var(--la-text); }
.stcai-landing .stcai-research-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); margin-top: var(--s2); }
.stcai-landing .stcai-rp { border-left: 2px solid var(--la-line-2); padding-left: var(--s3); }
.stcai-landing .stcai-rp h3 { font-size: 1.05rem; color: var(--la-acc-2); margin: 0 0 8px; font-family: "Space Grotesk", system-ui, sans-serif; }
.stcai-landing .stcai-rp p { color: var(--la-muted); font-size: 0.95rem; line-height: 1.65; text-wrap: pretty; margin: 0; }
.stcai-landing .stcai-research-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: center; margin-top: var(--s2); }
.stcai-landing .stcai-research-copy p { color: var(--la-muted); line-height: 1.7; margin: 0 0 var(--s3); text-wrap: pretty; }
.stcai-landing .stcai-research-copy p:last-child { margin-bottom: 0; }
.stcai-landing .stcai-research-copy b { color: var(--la-text); }
.stcai-landing .stcai-figure { margin: 0; position: relative; }
.stcai-landing .stcai-figure img,
.stcai-landing .stcai-figure svg { display: block; width: 100%; height: auto; border: 1px solid var(--la-line-2); border-radius: 10px; background: var(--la-surface); }
.stcai-landing .stcai-figure img { box-shadow: 0 0 30px rgba(0, 210, 255, 0.08); }
.stcai-landing .stcai-figure figcaption { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 0.72rem; line-height: 1.55; color: var(--la-dim); margin-top: var(--s2); letter-spacing: 0.02em; }
.stcai-landing .stcai-figure-wide { margin: var(--s5) auto 0; max-width: 880px; }
.stcai-landing .stcai-figure-wide svg { padding: var(--s3) var(--s2); }
.stcai-landing .stcai-research-list { list-style: none; margin: var(--s2) 0 0; padding: 0; }
.stcai-landing .stcai-research-list li { position: relative; padding-left: 20px; margin-bottom: var(--s2); color: var(--la-muted); line-height: 1.6; text-wrap: pretty; }
.stcai-landing .stcai-research-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--la-acc); box-shadow: 0 0 8px var(--la-acc-glow); }
.stcai-landing .stcai-research-list b { color: var(--la-text); }
.stcai-landing .stcai-diag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); margin-top: var(--s2); }
.stcai-landing .stcai-diag { border: 1px solid var(--la-line-2); border-radius: 10px; padding: var(--s3); background: var(--la-surface); transition: border-color 0.3s var(--la-ease), transform 0.3s var(--la-ease); }
.stcai-landing .stcai-diag:hover { border-color: rgba(0, 210, 255, 0.35); transform: translateY(-2px); }
.stcai-landing .stcai-diag span { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 0.7rem; color: var(--la-acc); letter-spacing: 0.1em; }
.stcai-landing .stcai-diag h4 { font-family: "Space Grotesk", system-ui, sans-serif; font-size: 0.98rem; margin: 6px 0; color: var(--la-text); }
.stcai-landing .stcai-diag p { font-size: 0.86rem; color: var(--la-muted); line-height: 1.55; margin: 0; text-wrap: pretty; }
.stcai-landing .stcai-unet { width: 100%; height: auto; }
.stcai-landing .stcai-unet-block { fill: rgba(0, 210, 255, 0.14); stroke: var(--la-acc); stroke-width: 1.2; }
.stcai-landing .stcai-unet-bottleneck { fill: rgba(0, 255, 204, 0.2); stroke: var(--la-acc-2); stroke-width: 1.3; }
.stcai-landing .stcai-unet-io { fill: var(--la-surface-2); stroke: rgba(232, 238, 246, 0.5); stroke-width: 1.2; }
.stcai-landing .stcai-unet-skip { stroke: var(--la-acc-2); stroke-width: 1; stroke-dasharray: 3 3; fill: none; opacity: 0.6; }
.stcai-landing .stcai-unet-flow { stroke: var(--la-acc); stroke-width: 1.1; opacity: 0.5; }
.stcai-landing .stcai-unet-arrowhead { fill: var(--la-acc); }
.stcai-landing .stcai-unet-label { fill: var(--la-dim); font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 8px; letter-spacing: 0.06em; }
.stcai-landing .stcai-unet-io-label { fill: var(--la-muted); font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 8px; }
.stcai-landing .stcai-research-more { text-align: center; }
.stcai-landing .stcai-research-more .stcai-lead { margin: var(--s3) auto var(--s4); max-width: 56ch; }
@media (max-width: 860px) {
	.stcai-landing .stcai-research-points,
	.stcai-landing .stcai-diag-grid { grid-template-columns: 1fr 1fr; }
	.stcai-landing .stcai-research-split { grid-template-columns: 1fr; gap: var(--s4); }
}
@media (max-width: 560px) {
	.stcai-landing .stcai-research-points,
	.stcai-landing .stcai-diag-grid { grid-template-columns: 1fr; }
}

/* in-page section nav (research deep-dive) + anchor offset under the sticky header */
.stcai-landing .stcai-research-section { scroll-margin-top: 84px; }
.stcai-landing .stcai-research-nav { display: flex; flex-wrap: wrap; gap: var(--s1); padding: var(--s3) 0 0; }
.stcai-landing .stcai-research-nav a {
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.72rem; letter-spacing: 0.03em; color: var(--la-muted);
	text-decoration: none; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--la-line-2);
	transition: color 0.25s var(--la-ease), border-color 0.25s var(--la-ease);
}
.stcai-landing .stcai-research-nav a:hover { color: var(--la-acc-2); border-color: rgba(0, 255, 204, 0.4); }
.stcai-landing .stcai-research-source {
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.72rem; line-height: 1.6; color: var(--la-dim);
	margin-top: var(--s3); padding-left: var(--s2); border-left: 2px solid var(--la-line-2); max-width: 72ch;
}
.stcai-landing .stcai-research-source i { color: var(--la-muted); font-style: italic; }
/* swarm trade-space schematic (research #more) — on-brand recreation of the modeled
   diminishing-returns relationship (not raw data points); the 10–20 window highlighted */
.stcai-landing .stcai-swarm-fig { width: 100%; height: auto; }
.stcai-landing .stcai-swarm-grid { stroke: rgba(232, 238, 246, 0.08); stroke-width: 1; }
.stcai-landing .stcai-swarm-axis { stroke: rgba(232, 238, 246, 0.3); stroke-width: 1; fill: none; }
.stcai-landing .stcai-swarm-band { fill: rgba(0, 255, 204, 0.1); stroke: rgba(0, 255, 204, 0.35); stroke-width: 1; stroke-dasharray: 3 3; }
.stcai-landing .stcai-swarm-curve { stroke: var(--la-acc); stroke-width: 2; fill: none; filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.45)); }
.stcai-landing .stcai-swarm-dot { fill: var(--la-acc-2); }
.stcai-landing .stcai-swarm-tag { fill: var(--la-dim); font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 9px; letter-spacing: 0.04em; }
.stcai-landing .stcai-swarm-tag-on { fill: var(--la-acc-2); }
.stcai-landing #more .stcai-btn-primary { margin-top: var(--s4); }

/* inline prose links must be distinguishable by more than color (WCAG 1.4.1) */
.stcai-landing .stcai-research-section .stcai-lead a,
.stcai-landing .stcai-research-hero .stcai-lead a,
.stcai-landing .stcai-research-copy a,
.stcai-landing .stcai-rp a { color: var(--la-acc); text-decoration: underline; text-underline-offset: 2px; }

/* card → research deep-dive link (homepage PoC + Research-Integrity cards) */
.stcai-landing .stcai-card-link {
	display: inline-flex; align-items: center; gap: 5px; margin-top: var(--s2);
	font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
	font-size: 0.78rem; letter-spacing: 0.04em; color: var(--la-acc);
	text-decoration: none; transition: gap 0.25s var(--la-ease), color 0.25s var(--la-ease);
}
.stcai-landing .stcai-card-link:hover { color: var(--la-acc-2); gap: 9px; }
