:root {
	--navy-dk: #050e1a;
	--navy: #0d2137;
	--navy-md: #162e4d;
	--navy-lt: #1f4068;
	--teal: #0e8fa0;
	--teal-lt: #12b0c5;
	--teal-gl: #2fd3ea;
	--teal-bright: #5ae6f5;
	--amber: #d4841a;
	--amber-lt: #e89a30;
	--amber-gl: #ffb659;
	--red: #e63946;
	--green: #69d990;
	--cream: #fdfaf5;
	--text: #e8f0f5;
	--muted: rgba(232, 240, 245, 0.65);

	--r-lg: 18px;
	--shadow-glow: 0 0 60px rgba(47, 211, 234, 0.18);
	--trans: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a {
	transition: var(--trans);
}

/* ═══════════════════════════ NAV ═══════════════════════════ */
nav {
	background: rgba(5, 14, 26, 0.85);
	border-bottom: 1px solid rgba(47, 211, 234, 0.15);
}

.nav-container-logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-sub {
	font-size: 0.65rem;
	letter-spacing: 0.18em;
	color: var(--muted);
	text-transform: uppercase;
}

.nav-links a:hover {
	color: #fff;
}

.nav-cta {
	box-shadow: 0 4px 20px rgba(212, 132, 26, 0.4);
}

.nav-cta:hover {
	transform: translateY(-2px);
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
	overflow: hidden;
	background:
		radial-gradient(
			ellipse at 75% 30%,
			rgba(47, 211, 234, 0.18),
			transparent 55%
		),
		radial-gradient(
			ellipse at 20% 90%,
			rgba(212, 132, 26, 0.14),
			transparent 60%
		),
		linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 50%, #08304c 100%);
  padding: 100px 0;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(47, 211, 234, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(47, 211, 234, 0.05) 1px, transparent 1px);
	background-size: 64px 64px;
	pointer-events: none;
}

.hero-scan-line {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--teal-gl), transparent);
	animation: scanLine 8s ease-in-out infinite;
	pointer-events: none;
	box-shadow: 0 0 20px var(--teal-gl);
}

@keyframes scanLine {
	0%,
	100% {
		transform: translateY(0);
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		transform: translateY(100vh);
		opacity: 0;
	}
}

.hero-inner {
	position: relative;
  min-height: calc(100vh - 200px);
  display: grid;
  align-items: center;
	z-index: 3;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	background: rgba(47, 211, 234, 0.12);
	border: 1px solid rgba(47, 211, 234, 0.45);
	border-radius: 50px;
	padding: 0.5rem 14px;
	font-size: clamp(10px, calc(9.712px + 0.09vw), 11px);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--teal-gl);
	margin-bottom: 2rem;
}

.eyebrow-dot {
	min-width: 8px;
	min-height: 8px;
	border-radius: 50%;
	background: var(--teal-gl);
	box-shadow: 0 0 12px var(--teal-gl);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.4;
		transform: scale(0.7);
	}
}

.hero h1 {
	font-weight: 900;
	font-size: clamp(42px, calc(32.775px + 2.883vw), 74px);
	line-height: 0.95;
	letter-spacing: 5px;
	text-transform: uppercase;
	margin-bottom: 2rem;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  max-width: 925px;
}

.hero h1 .accent {
	color: var(--teal-gl);
	text-shadow: 0 0 40px rgba(47, 211, 234, 0.4);
}

.hero h1 .amber-acc {
	color: var(--amber-gl);
}

.hero-tagline {
	font-style: italic;
	font-weight: 500;
	font-size: clamp(18px, calc(16.27px + 0.541vw), 24px);
	color: rgba(232, 240, 245, 0.92);
	margin-bottom: 1.5rem;
	letter-spacing: 0.01em;
}

.hero-tagline .win {
	color: var(--teal-gl);
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.04em;
}

.hero-lead {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	line-height: 1.75;
	color: rgba(232, 240, 245, 0.78);
	margin-bottom: 2.5rem;
	font-weight: 300;
  max-width: 670px;
}

.hero-lead strong {
	color: #fff;
	font-weight: 700;
}

.hero-mantra {
	margin-bottom: 2.5rem;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	background: rgba(47, 211, 234, 0.06);
	border-left: 3px solid var(--teal-gl);
	border-radius: 0 8px 8px 0;
  display: inline-block;
}

.hero-mantra .label {
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--teal-gl);
	margin-bottom: 0.5rem;
}

.hero-mantra .text {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.02em;
}

.hero-mantra .text em {
	color: var(--amber-gl);
	font-style: normal;
}

.hero-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  padding: clamp(10px, calc(8.559px + 0.45vw), 15px) clamp(15px, calc(12.117px + 0.901vw), 25px);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--trans);
}

.btn-primary {
	background: linear-gradient(135deg, var(--amber) 0%, var(--amber-lt) 100%);
	box-shadow: 0 4px 24px rgba(212, 132, 26, 0.45);
}

.btn-primary:hover {
	transform: translateY(-3px);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
	background: rgba(47, 211, 234, 0.15);
	border-color: var(--teal-gl);
	color: var(--teal-gl);
}

.gap-card,
.platform-description,
.scn,
.cond,
.neuro-description,
.cta-inner {
	opacity: 0;
	transform: translateY(20px);
}

.gap-card.fade-in-up,
.platform-description.fade-in-up,
.scn.fade-in-up,
.cond.fade-in-up,
.neuro-description.fade-in-up,
.cta-inner.fade-in-up {
	opacity: 1;
	transform: translateY(0);
	transition: 0.6s ease;
}

.platform-stack {
	opacity: 0;
}

.platform-stack.fade-in {
	opacity: 1;
	transition: 0.6s ease;
}

.pulse-card,
.outcome,
.eco-tag {
	opacity: 0;
}

.pulse-card.fade-in-delay,
.outcome.fade-in-delay,
.eco-tag.fade-in-delay {
	opacity: 1;
	transition: 0.6s ease;
}

/* ═══════════════════════════ SECTION BASE ═══════════════════════════ */
section {
	position: relative;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	font-size: clamp(11px, calc(10.712px + 0.09vw), 12px);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--amber-gl);
	margin-bottom: 1rem;
}

.section-eyebrow::before {
	content: '';
	width: 20px;
	height: 1px;
	background: var(--amber-gl);
}

.section-title {
	font-weight: 900;
	font-size: clamp(33px, calc(26.081px + 2.162vw), 57px);
	line-height: 1;
	color: #fff;
	margin-bottom: 1.4rem;
	text-transform: uppercase;
}

.section-title em {
	font-style: normal;
	color: var(--teal-gl);
	text-shadow: 0 0 24px rgba(47, 211, 234, 0.35);
}

.section-lead {
	font-size: clamp(16px, calc(14.847px + 0.36vw), 20px);
	line-height: 1.55;
	color: rgba(232, 240, 245, 0.82);
	max-width: 840px;
	margin-bottom: clamp(30px, calc(22.793px + 2.252vw), 55px);
	font-style: italic;
}

.section-lead strong {
	color: var(--teal-gl);
	font-style: normal;
	font-weight: 700;
}

/* ═══════════════════════════ THE GAP ═══════════════════════════ */
.gap-section {
	background: linear-gradient(180deg, var(--navy-dk) 0%, var(--navy) 100%);
	position: relative;
  padding: var(--vertical-padding) 0;
}

.gap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(449px, 1fr));
	gap: 25px;
	margin-top: 3rem;
}

.gap-card {
	background: rgba(47, 211, 234, 0.04);
	border: 1px solid rgba(47, 211, 234, 0.15);
	border-top: 3px solid var(--red);
	border-radius: var(--r);
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	transition: var(--trans);
}

.gap-card:hover {
	transform: translateY(-4px);
	border-color: rgba(47, 211, 234, 0.4);
	border-top-color: var(--red);
	box-shadow: var(--shadow-glow);
}

.gap-card .num {
	font-size: 13px;
	letter-spacing: 0.16em;
	color: var(--red);
	font-weight: 700;
	margin-bottom: 0.6rem;
}

.gap-card h3 {
	font-weight: 700;
	font-size: clamp(18px, calc(16.847px + 0.36vw), 22px);
	color: #fff;
	margin-bottom: 0.7rem;
	line-height: 1.2;
}

.gap-card p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: rgba(232, 240, 245, 0.75);
	line-height: 1.6;
}

/* ═══════════════════════════ PLATFORM ═══════════════════════════ */
.platform {
	background: linear-gradient(135deg, var(--navy) 0%, #0f2b45 100%);
  padding: var(--vertical-padding) 0;
}

.platform::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--teal-gl), transparent);
}

.platform-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	margin-top: clamp(30px, calc(24.234px + 1.802vw), 50px);
}

.platform-body p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	line-height: 1.75;
	color: rgba(232, 240, 245, 0.82);
	margin-bottom: clamp(10px, calc(7.117px + 0.901vw), 20px);
}

.platform-body p:last-of-type {
  margin-bottom: 0;
}

.platform-body strong {
	color: var(--teal-gl);
	font-weight: 700;
}

.platform-body em {
	color: var(--amber-gl);
	font-style: normal;
	font-weight: 600;
}

.platform-stack {
	background: rgba(5, 14, 26, 0.6);
	border: 1px solid rgba(47, 211, 234, 0.25);
	border-radius: var(--r-lg);
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	position: relative;
}

.platform-stack::before {
	content: 'STACK';
	position: absolute;
	top: -10px;
	left: 24px;
	backdrop-filter: blur(3px);
	padding: 0 10px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--teal-gl);
}

.stack-layer {
	padding: clamp(10px, calc(8.27px + 0.541vw), 16px) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 15px;
}

.stack-layer:first-child {
  padding-top: 0;
}

.stack-layer:last-child {
	border-bottom: none;
  padding-bottom: 0;
}

.stack-num {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--amber-gl);
	font-weight: 700;
	letter-spacing: 0.1em;
}

.stack-name {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 700;
	color: #fff;
}

.stack-desc {
	font-size: 14px;
	color: rgba(232, 240, 245, 0.7);
	margin-top: 2px;
}

/* ═══════════════════════════ SCENARIOS ═══════════════════════════ */
.scenarios {
	background: var(--navy-dk);
  padding: var(--vertical-padding) 0;
}

.scenario-domain {
	margin-bottom: 5rem;
}

.scenario-domain:last-child {
	margin-bottom: 0;
}

.domain-header {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(47, 211, 234, 0.2);
}

.domain-tag {
	font-size: clamp(11px, calc(10.712px + 0.09vw), 12px);
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--amber-gl);
	text-transform: uppercase;
}

.domain-title {
	font-weight: 900;
	font-size: clamp(18px, calc(14.541px + 1.081vw), 30px);
	color: #fff;
	text-transform: uppercase;
	line-height: 1;
}

.domain-title em {
	color: var(--teal-gl);
	font-style: normal;
}

.domain-lead {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	line-height: 1.55;
	color: rgba(232, 240, 245, 0.78);
	max-width: 820px;
	margin-bottom: 2rem;
	font-style: italic;
}

.scenario-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(334px, 1fr));
	gap: 1.4rem;
}

.scenario-grid.cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.scn {
	background: linear-gradient(
		160deg,
		rgba(22, 46, 77, 0.6) 0%,
		rgba(13, 33, 55, 0.6) 100%
	);
	border: 1px solid rgba(47, 211, 234, 0.15);
	border-radius: var(--r);
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	transition: var(--trans);
	position: relative;
	overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--teal-gl), transparent);
}

.scn:hover {
	transform: translateY(-4px);
	border-color: rgba(47, 211, 234, 0.4);
	box-shadow:
		0 12px 36px rgba(5, 14, 26, 0.5),
		0 0 24px rgba(47, 211, 234, 0.15);
}

.scn .code {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--amber-gl);
	margin-bottom: 0.6rem;
	text-transform: uppercase;
}

.scn h4 {
	font-weight: 700;
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: #fff;
	margin-bottom: 0.55rem;
	line-height: 1.25;
}

.scn p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	line-height: 1.6;
	color: rgba(232, 240, 245, 0.72);
}

.scn .biomarkers {
	margin-top: 0.85rem;
	padding-top: 0.7rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--teal-gl);
	text-transform: uppercase;
}

/* ═══════════════════════════ CONDITIONS MATRIX ═══════════════════════════ */
.conditions {
	background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dk) 100%);
	padding: var(--vertical-padding) 0;
}

.conditions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(338px, 1fr));
	gap: 1rem;
	margin-top: 3rem;
}

.cond {
	background: rgba(5, 14, 26, 0.5);
	border: 1px solid rgba(47, 211, 234, 0.15);
	border-radius: var(--r);
	padding: clamp(15px, calc(13.559px + 0.45vw), 20px);
	text-align: center;
	transition: var(--trans);
}

.cond:hover {
	border-color: var(--teal-gl);
	background: rgba(47, 211, 234, 0.08);
}

.cond .icon {
	width: clamp(38px, calc(36.27px + 0.541vw), 44px);
	height: clamp(38px, calc(36.27px + 0.541vw), 44px);
	margin: 0 auto 0.7rem;
	display: grid;
	place-items: center;
	background: rgba(47, 211, 234, 0.12);
	border: 1px solid rgba(47, 211, 234, 0.35);
	border-radius: clamp(7px, calc(6.135px + 0.27vw), 10px);
	color: var(--teal-gl);
}

.cond .icon svg {
	width: clamp(20px, calc(18.847px + 0.36vw), 24px);
	height: clamp(20px, calc(18.847px + 0.36vw), 24px);
}

.cond .name {
	font-weight: 700;
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: #fff;
	margin-bottom: 0.3rem;
}

.cond .d {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: rgba(232, 240, 245, 0.65);
}

/* ═══════════════════════════ NEURO DIFFERENCE ═══════════════════════════ */
.neuro {
	background:
		radial-gradient(
			ellipse at 80% 50%,
			rgba(47, 211, 234, 0.12),
			transparent 55%
		),
		radial-gradient(
			ellipse at 10% 30%,
			rgba(212, 132, 26, 0.1),
			transparent 55%
		),
		linear-gradient(135deg, var(--navy-dk) 0%, #0a1f33 100%);
	padding: var(--vertical-padding) 0;
	overflow: hidden;
}

.neuro::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(47, 211, 234, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(47, 211, 234, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
}

.neuro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	margin-top: 3rem;
	position: relative;
	z-index: 2;
}

.neuro-body p {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	line-height: 1.75;
	color: rgba(232, 240, 245, 0.82);
	margin-bottom: clamp(10px, calc(7.117px + 0.901vw), 20px);
}

.neuro-body p:last-child {
	margin-bottom: 0;
}

.neuro-body strong {
	color: var(--teal-gl);
	font-weight: 700;
}

.neuro-body em {
	color: var(--amber-gl);
	font-style: normal;
	font-weight: 600;
}

.pulse-card {
	background: rgba(5, 14, 26, 0.6);
	border: 1px solid rgba(47, 211, 234, 0.3);
	border-radius: var(--r-lg);
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	margin-bottom: 1rem;
}

.pulse-card:last-child {
	margin-bottom: 0;
}

.pulse-card .head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
	padding-bottom: clamp(8px, calc(6.847px + 0.36vw), 12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: clamp(13px, calc(12.135px + 0.27vw), 16px);
}

.pulse-card .head .t {
	font-weight: 700;
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: #fff;
}

.pulse-card .head .sub {
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--teal-gl);
	text-transform: uppercase;
}

.pulse-card-description {
	color: rgba(232,240,245,0.8); 
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px); 
	line-height: 1.55;
}

.pulse-rows {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.pulse-row .lab {
	font-size: clamp(10px, calc(9.423px + 0.18vw), 12px);
	letter-spacing: 0.1em;
	color: var(--muted);
	text-transform: uppercase;
	margin-bottom: 5px;
}

.pulse-row .val {
	font-weight: 700;
	font-size: clamp(18px, calc(16.847px + 0.36vw), 22px);
	color: var(--teal-gl);
	line-height: 1.1;
}

.pulse-row .val .unit {
	font-size: 0.85rem;
	opacity: 0.7;
	margin-left: 0.2rem;
}

.pulse-row .val.green {
	color: var(--green);
}

.pulse-row .val.amber {
	color: var(--amber-gl);
}

/* ═══════════════════════════ OUTCOMES ═══════════════════════════ */
.outcomes {
	background:
		radial-gradient(
			ellipse at 50% 50%,
			rgba(47, 211, 234, 0.18),
			transparent 60%
		),
		linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
	color: #fff;
	padding: var(--vertical-padding) 0;
	overflow: hidden;
}

.outcomes::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
}

.outcomes-inner {
	position: relative;
	z-index: 2;
	text-align: center;
}

.outcomes-title em {
	font-style: normal;
	color: var(--amber-gl);
	text-shadow: 0 0 30px rgba(255, 182, 89, 0.4);
}

.outcomes-lead {
	font-style: italic;
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	opacity: 0.9;
	max-width: 720px;
	margin: 0 auto clamp(30px, calc(20.198px + 3.063vw), 64px);
}

.outcomes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, calc(17.117px + 0.901vw), 30px);
}

.outcome {
	text-align: center;
}

.outcome .num {
	font-weight: 900;
	font-size: clamp(36px, calc(31.964px + 1.261vw), 50px);
	line-height: 1;
	color: #fff;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
	margin-bottom: 0.4rem;
}

.outcome .num .sign {
	color: var(--amber-gl);
}

.outcome .num .unit {
	font-size: 0.5em;
	opacity: 0.8;
	margin-left: 0.1em;
}

.outcome .lbl {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	opacity: 0.95;
}

/* ═══════════════════════════ ECOSYSTEM ═══════════════════════════ */
.ecosystem {
	background: var(--navy-dk);
	padding: var(--vertical-padding) 0;
}

.eco-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 2.5rem;
}

.eco-tag {
	background: rgba(47, 211, 234, 0.08);
	border: 1px solid rgba(47, 211, 234, 0.25);
	color: #fff;
	padding: 8px 18px;
	border-radius: 50px;
	font-weight: 600;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	transition: var(--trans);
}

.eco-tag:hover {
	border-color: var(--teal-gl);
	background: rgba(47, 211, 234, 0.18);
	transform: translateY(-2px);
}

.eco-tag .small {
	font-size: 0.65rem;
	color: var(--amber-gl);
	letter-spacing: 0.08em;
	margin-left: 0.5rem;
	text-transform: uppercase;
}

/* ═══════════════════════════ CTA ═══════════════════════════ */
.cta {
	background: var(--navy-dk);
	padding: var(--vertical-padding) 0;
	text-align: center;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse at 50% 50%,
		rgba(47, 211, 234, 0.15),
		transparent 60%
	);
}

.cta-inner {
	position: relative;
	z-index: 2;
}

.cta h2 em {
	font-style: normal;
	color: var(--teal-gl);
	text-shadow: 0 0 40px rgba(47, 211, 234, 0.4);
}

.cta p {
	font-style: italic;
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	line-height: 1.55;
	opacity: 0.9;
	max-width: 780px;
	margin: 0 auto 2.5rem;
}

.cta-btns {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 1100px) {
	.platform-grid,
	.neuro-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.conditions-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 780px) {
	.outcomes-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 700px) {
	.gap-grid,
	.scenario-grid,
	.scenario-grid.cols-2 {
		grid-template-columns: 1fr;
	}

	.conditions-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.stack-layer {
    grid-template-columns: 1fr;
		gap: 5px;
	}
}

@media (max-width: 590px) {
	.outcomes-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}