/* =================================================================
   HERO — header copy in glass panel, CoIQ lattice stacked below
================================================================= */
.hero {
	padding: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px);
	position: relative;
	z-index: 2;
}
.hero__panel {
	position: relative;
	width: 100%;
	padding: clamp(32px, 4.5vw, 56px) clamp(28px, 4vw, 56px);
	background: linear-gradient(135deg, rgba(45, 125, 255, 0.10), rgba(32, 227, 255, 0.04));
	border: 1px solid rgba(32, 227, 255, 0.22);
	border-radius: 24px;
	backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	box-shadow: 0 24px 70px rgba(7, 22, 43, 0.45), inset 0 1px 0 rgba(255,255,255,0.05);
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}
.hero__panel::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 100% 0%, rgba(32, 227, 255, 0.14), transparent 60%),
		radial-gradient(ellipse 60% 80% at 0% 100%, rgba(45, 125, 255, 0.12), transparent 60%);
	pointer-events: none;
	z-index: 0;
}
.hero__copy {
	position: relative; z-index: 1;
	max-width: 880px; margin: 0 auto;
}
.hero__copy h1 {
	margin: 18px auto 24px;
	max-width: 22ch;
	font-size: clamp(2.25rem, 4vw + 1rem, 4rem);
	line-height: 1.04; font-weight: 700; letter-spacing: -0.03em;
	color: var(--text-primary);
}
.hero__copy h1 .accent {
	display: block;
	background: linear-gradient(120deg, var(--brand-electric-azure), var(--brand-cyan-glow));
	-webkit-background-clip: text; background-clip: text; color: transparent;
	padding-bottom: 0.08em;
}
.hero__intro {
	margin: 0 auto 32px; max-width: 60ch;
	font-size: 1.125rem; line-height: 1.55; color: var(--text-secondary); font-weight: 400;
}
.hero__intro strong { color: var(--text-primary); font-weight: 600; }
.hero__cta {
	display: flex; gap: 14px; flex-wrap: wrap;
	justify-content: center;
}

/* Lattice now lives BELOW the panel — full-width, centered. */
.hero__lattice-wrap {
	position: relative;
	display: flex; align-items: center; justify-content: center;
	margin-top: clamp(28px, 4vw, 48px);
}
.hero-lattice {
	width: 100%;
	max-width: 560px;
	aspect-ratio: 1 / 1;
	display: block;
}
.hero-lattice svg {
	width: 100%; height: 100%; display: block;
}
.hero-lattice--light { display: none; }
[data-theme="light"] .hero-lattice--dark  { display: none; }
[data-theme="light"] .hero-lattice--light { display: block; }

[data-theme="light"] .hero__panel {
	background: linear-gradient(135deg, rgba(45,125,255,0.08), rgba(32,227,255,0.04));
	border-color: rgba(45, 125, 255, 0.22);
	box-shadow: 0 24px 70px rgba(11,42,74,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
}
[data-theme="light"] .hero__panel::before {
	background:
		radial-gradient(ellipse 60% 80% at 100% 0%, rgba(45,125,255,0.10), transparent 60%),
		radial-gradient(ellipse 60% 80% at 0% 100%, rgba(32,227,255,0.10), transparent 60%);
}

@media (max-width: 720px) {
	.hero { padding: clamp(24px, 6vw, 40px) 0 clamp(24px, 5vw, 40px); }
	.hero__panel { padding: clamp(24px, 6vw, 40px) clamp(20px, 5vw, 32px); border-radius: 18px; }
	.hero__copy h1 { font-size: clamp(2rem, 7.5vw, 2.75rem); margin: 14px auto 20px; }
	.hero__intro { font-size: 1.0625rem; margin-bottom: 28px; }
	.hero__cta { flex-direction: column; align-items: stretch; gap: 10px; }
	.hero__cta .btn { width: 100%; justify-content: center; }
	.hero-lattice { max-width: 360px; }
}

/* =================================================================
   ISV-grade band
================================================================= */
.isv-band { padding: clamp(36px, 4vw, 56px) 0 0; z-index: 2; }
.isv-band__copy {
	max-width: 78ch; margin: 0;
	font-size: 1.125rem; line-height: 1.65; color: var(--text-secondary);
	padding: 24px 28px;
	background: linear-gradient(180deg, rgba(157, 178, 206, 0.05), rgba(157, 178, 206, 0.02));
	border: 1px solid rgba(32, 227, 255, 0.16);
	border-left: 3px solid var(--brand-cyan-glow);
	border-radius: 14px;
	backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.isv-band__copy strong { color: var(--text-primary); font-weight: 600; }
[data-theme="light"] .isv-band__copy {
	background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
	border-color: rgba(45, 125, 255, 0.22);
	border-left-color: var(--brand-electric-azure);
}

/* =================================================================
   Glass panels band
================================================================= */
.panels-band { padding: clamp(36px, 4vw, 56px) 0 clamp(56px, 6vw, 80px); z-index: 2; }
.panels-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.glass-panel {
	position: relative;
	padding: 22px 24px;
	background: rgba(157, 178, 206, 0.04);
	border: 1px solid rgba(32, 227, 255, 0.18);
	border-radius: 16px;
	backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	overflow: hidden;
	transition: border-color 200ms ease, transform 200ms ease;
}
.glass-panel::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(32,227,255,0.08), transparent 60%);
	pointer-events: none;
}
.glass-panel:hover { border-color: rgba(32, 227, 255, 0.35); transform: translateY(-2px); }
.glass-panel__eyebrow {
	font-size: 0.6875rem; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--brand-cyan-glow); display: block; margin-bottom: 10px;
}
.glass-panel__metric {
	font-size: 2.5rem; font-weight: 600; line-height: 1;
	color: var(--text-primary); letter-spacing: -0.02em;
	display: flex; align-items: baseline; gap: 8px;
}
.glass-panel__metric--accent { color: var(--brand-cyan-glow); }
.glass-panel__viz { margin-top: 12px; height: 44px; }
.glass-panel__viz svg { width: 100%; height: 100%; display: block; overflow: visible; }
.glass-panel__caption { margin: 8px 0 0; font-size: 0.8125rem; color: var(--text-muted); line-height: 1.45; }
[data-theme="light"] .glass-panel { background: rgba(255, 255, 255, 0.65); border-color: rgba(45, 125, 255, 0.22); }
[data-theme="light"] .glass-panel:hover { border-color: rgba(45, 125, 255, 0.45); }
[data-theme="light"] .glass-panel__eyebrow,
[data-theme="light"] .glass-panel__metric--accent { color: var(--brand-electric-azure); }
[data-theme="light"] .glass-panel::before {
	background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(45,125,255,0.10), transparent 60%);
}
@media (max-width: 900px) { .panels-band__grid { grid-template-columns: 1fr; } }

/* =================================================================
   Philosophy
================================================================= */
.philosophy { padding: clamp(72px, 9vw, 112px) 0; }
.philosophy__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.philosophy__head .eyebrow { margin-bottom: 18px; }
.philosophy__head h2 {
	margin: 0 0 16px;
	font-size: clamp(2.75rem, 5vw + 1rem, 4.5rem);
	line-height: 1.02; font-weight: 700; letter-spacing: -0.03em;
}
.philosophy__head h2 .accent {
	background: linear-gradient(120deg, var(--brand-electric-azure), var(--brand-cyan-glow));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.philosophy__head p { margin: 0; color: var(--text-secondary); font-size: 1.1875rem; line-height: 1.55; }
.flow {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: stretch; gap: 16px;
}
.flow__step {
	position: relative;
	padding: 36px 32px;
	background: linear-gradient(180deg, rgba(157, 178, 206, 0.05), rgba(157, 178, 206, 0.02));
	border: 1px solid rgba(32, 227, 255, 0.20);
	border-radius: 18px;
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	display: flex; flex-direction: column; gap: 14px;
	transition: border-color 220ms ease, transform 220ms ease;
}
.flow__step:hover { border-color: rgba(32, 227, 255, 0.45); transform: translateY(-3px); }
.flow__step__num { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; color: var(--brand-cyan-glow); }
.flow__step__icon {
	width: 64px; height: 64px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 14px;
	background: rgba(32, 227, 255, 0.10);
	border: 1px solid rgba(32, 227, 255, 0.30);
	color: var(--brand-cyan-glow);
}
.flow__step__icon svg { width: 36px; height: 36px; }
.flow__step__title { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.015em; color: var(--text-primary); margin: 0; }
.flow__step__sub { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--text-secondary); }
.flow__arrow { display: flex; align-items: center; justify-content: center; color: var(--brand-cyan-glow); opacity: 0.7; }
.flow__arrow svg { width: 36px; height: 36px; }
[data-theme="light"] .flow__step { background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55)); border-color: rgba(45, 125, 255, 0.22); }
[data-theme="light"] .flow__step:hover { border-color: rgba(45, 125, 255, 0.45); }
[data-theme="light"] .flow__step__num,
[data-theme="light"] .flow__arrow { color: var(--brand-electric-azure); }
[data-theme="light"] .flow__step__icon {
	background: rgba(45, 125, 255, 0.10);
	border-color: rgba(45, 125, 255, 0.30);
	color: var(--brand-electric-azure);
}
@media (max-width: 1000px) {
	.flow { grid-template-columns: 1fr; gap: 12px; }
	.flow__arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* =================================================================
   Why-Microsoft cards
================================================================= */
.trust-strip {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 8px 28px;
	margin: 0 auto 36px;
	padding: 14px 24px;
	max-width: max-content;
	background: rgba(157, 178, 206, 0.04);
	border: 1px solid rgba(32, 227, 255, 0.20);
	border-radius: 999px;
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	font-size: 0.8125rem; font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--text-secondary);
}
.trust-strip span { position: relative; padding-left: 18px; }
.trust-strip span::before {
	content: ""; position: absolute; left: 0; top: 50%;
	transform: translateY(-50%);
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--brand-cyan-glow);
	box-shadow: 0 0 8px rgba(32, 227, 255, 0.55);
}
[data-theme="light"] .trust-strip {
	background: rgba(255, 255, 255, 0.70);
	border-color: rgba(45, 125, 255, 0.22);
	color: var(--text-secondary);
}
[data-theme="light"] .trust-strip span::before {
	background: var(--brand-electric-azure);
	box-shadow: 0 0 8px rgba(45, 125, 255, 0.45);
}
@media (max-width: 640px) {
	.trust-strip {
		gap: 8px 18px; padding: 12px 18px;
		font-size: 0.75rem; letter-spacing: 0.03em;
	}
	.trust-strip span { padding-left: 14px; }
}

.why-ms__row + .why-ms__row { margin-top: 28px; }
.why-ms__row-label {
	display: inline-flex; align-items: center; gap: 10px;
	margin: 0 0 14px;
	font-size: 0.6875rem; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--brand-cyan-glow);
}
.why-ms__row-label::before {
	content: ""; width: 28px; height: 1px;
	background: linear-gradient(90deg, transparent, var(--brand-cyan-glow));
}
.why-ms__row--secondary .why-ms__row-label { color: #B388FF; }
.why-ms__row--secondary .why-ms__row-label::before {
	background: linear-gradient(90deg, transparent, #B388FF);
}
[data-theme="light"] .why-ms__row-label { color: var(--brand-electric-azure); }
[data-theme="light"] .why-ms__row-label::before {
	background: linear-gradient(90deg, transparent, var(--brand-electric-azure));
}
[data-theme="light"] .why-ms__row--secondary .why-ms__row-label { color: #7B5CE0; }
[data-theme="light"] .why-ms__row--secondary .why-ms__row-label::before {
	background: linear-gradient(90deg, transparent, #7B5CE0);
}

.why-ms__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-ms__card {
	position: relative;
	background: linear-gradient(180deg, rgba(157, 178, 206, 0.05), rgba(157, 178, 206, 0.02));
	border: 1px solid var(--surface-border);
	border-radius: 16px; padding: 28px 24px;
	display: flex; flex-direction: column; gap: 8px;
	transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
	overflow: hidden;
}
.why-ms__card::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(32, 227, 255, 0.06), transparent 60%);
	pointer-events: none; opacity: 0; transition: opacity 220ms ease;
}
.why-ms__card:hover { border-color: rgba(32, 227, 255, 0.40); transform: translateY(-3px); }
.why-ms__card:hover::before { opacity: 1; }
.why-ms__icon {
	width: 40px; height: 40px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 10px;
	background: rgba(32, 227, 255, 0.10);
	border: 1px solid rgba(32, 227, 255, 0.25);
	color: var(--brand-cyan-glow);
	margin-bottom: 8px;
}
.why-ms__icon svg { width: 22px; height: 22px; }
.why-ms__card h3 { margin: 0; font-size: 1.0625rem; font-weight: 600; color: var(--text-primary); letter-spacing: -0.01em; }
.why-ms__card > p { margin: 0 0 8px; font-size: 0.8125rem; color: var(--text-muted); }
.why-ms__card ul { margin: 4px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.why-ms__card li {
	position: relative; padding-left: 16px;
	font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5;
}
.why-ms__card li::before {
	content: ""; position: absolute; left: 0; top: 8px;
	width: 5px; height: 5px; border-radius: 50%;
	background: var(--brand-cyan-glow);
}
[data-theme="light"] .why-ms__card { background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55)); border-color: rgba(11, 42, 74, 0.10); }
[data-theme="light"] .why-ms__card:hover { border-color: rgba(45, 125, 255, 0.40); }
[data-theme="light"] .why-ms__card::before {
	background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(45, 125, 255, 0.08), transparent 60%);
}
[data-theme="light"] .why-ms__icon {
	background: rgba(45, 125, 255, 0.10);
	border-color: rgba(45, 125, 255, 0.28);
	color: var(--brand-electric-azure);
}
[data-theme="light"] .why-ms__card li::before { background: var(--brand-electric-azure); }
@media (max-width: 1000px) { .why-ms__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .why-ms__grid { grid-template-columns: 1fr; } }

/* =================================================================
   Security-by-default glass card
================================================================= */
.security-card {
	position: relative;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 18px;
	backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
	padding: clamp(32px, 4vw, 56px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	overflow: hidden;
}
.security-card::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 50% 80% at 0% 0%, rgba(32, 227, 255, 0.08), transparent 60%),
		radial-gradient(ellipse 50% 80% at 100% 100%, rgba(45, 125, 255, 0.06), transparent 60%);
	pointer-events: none;
}
.security-card__head { position: relative; max-width: 60ch; margin-bottom: 40px; }
.security-card__head .eyebrow { margin-bottom: 16px; }
.security-card__head h2 { margin: 0 0 12px; font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem); line-height: 1.15; font-weight: 600; letter-spacing: -0.015em; }
.security-card__head p { margin: 0; font-size: 1.0625rem; line-height: 1.6; color: var(--text-secondary); }
.security-card__grid {
	position: relative;
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px;
}
.security-card__grid li {
	display: flex; flex-direction: column; gap: 6px;
	padding-left: 16px;
	border-left: 2px solid var(--brand-cyan-glow);
}
.security-card__grid li strong { font-size: 0.9375rem; color: var(--text-primary); font-weight: 600; }
.security-card__grid li span { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; }
[data-theme="light"] .security-card {
	background: rgba(255, 255, 255, 0.70);
	border-color: rgba(45, 125, 255, 0.22);
	box-shadow: 0 24px 60px rgba(11, 42, 74, 0.12), inset 0 1px 0 rgba(255,255,255,0.6);
}
[data-theme="light"] .security-card::before {
	background:
		radial-gradient(ellipse 50% 80% at 0% 0%, rgba(45, 125, 255, 0.08), transparent 60%),
		radial-gradient(ellipse 50% 80% at 100% 100%, rgba(32, 227, 255, 0.08), transparent 60%);
}
[data-theme="light"] .security-card__grid li { border-left-color: var(--brand-electric-azure); }
@media (max-width: 1000px) { .security-card__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .security-card__grid { grid-template-columns: 1fr; } }

/* =================================================================
   Platform — diagram + module cards
================================================================= */
.platform-section { position: relative; }
.platform-snapshot {
	display: grid; grid-template-columns: 1fr 1.15fr;
	gap: clamp(32px, 5vw, 64px); align-items: center;
	margin-bottom: 64px;
}
.platform-snapshot__copy h2 {
	margin: 16px 0 16px;
	font-size: clamp(2.25rem, 3vw + 1rem, 2.75rem);
	line-height: 1.1; font-weight: 600; letter-spacing: -0.025em;
}
.platform-snapshot__copy h2 .accent {
	background: linear-gradient(120deg, var(--brand-electric-azure), var(--brand-cyan-glow));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.platform-snapshot__lead { margin: 0 0 22px; font-size: 1.0625rem; line-height: 1.6; color: var(--text-secondary); }
.platform-starter {
	margin: 0 0 22px;
	padding: 14px 18px;
	background: rgba(157, 178, 206, 0.05);
	border-left: 3px solid var(--brand-cyan-glow);
	border-radius: 8px;
	font-size: 0.9375rem; color: var(--text-secondary);
}
.platform-starter strong { color: var(--text-primary); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-right: 6px; }
.platform-snapshot__link {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--brand-cyan-glow); font-weight: 600; text-decoration: none;
	font-size: 0.9375rem;
}
.platform-snapshot__link:hover { filter: brightness(1.15); }
.platform-snapshot__visual {
	position: relative;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 18px;
	padding: 18px;
	backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
	box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.platform-snapshot__visual svg { width: 100%; height: auto; display: block; border-radius: 10px; }
[data-theme="light"] .platform-snapshot__visual {
	background: rgba(255, 255, 255, 0.70);
	border-color: rgba(45, 125, 255, 0.22);
	box-shadow: 0 24px 60px rgba(11, 42, 74, 0.18);
}
[data-theme="light"] .platform-starter {
	background: rgba(45, 125, 255, 0.06);
	border-left-color: var(--brand-electric-azure);
}
[data-theme="light"] .platform-snapshot__link { color: var(--brand-electric-azure); }
@media (max-width: 1000px) { .platform-snapshot { grid-template-columns: 1fr; } }

.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module-card {
	position: relative;
	display: flex; flex-direction: column;
	padding: 24px 22px;
	background: linear-gradient(180deg, rgba(157, 178, 206, 0.05), rgba(157, 178, 206, 0.02));
	border: 1px solid var(--surface-border);
	border-radius: 16px;
	transition: border-color 220ms ease, transform 220ms ease;
	overflow: hidden;
}
.module-card::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(32, 227, 255, 0.07), transparent 60%);
	pointer-events: none; opacity: 0; transition: opacity 220ms ease;
}
.module-card:hover { border-color: rgba(32, 227, 255, 0.40); transform: translateY(-2px); }
.module-card:hover::before { opacity: 1; }
.module-card__cat {
	display: inline-flex; align-items: center;
	font-size: 0.6875rem; font-weight: 700;
	letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--brand-cyan-glow);
	margin-bottom: 10px;
}
.module-card__cat--enablement { color: #B388FF; }
.module-card__cat--optimization { color: #7CFFB2; }
.module-card__name { margin: 0 0 4px; font-size: 1.375rem; font-weight: 700; letter-spacing: -0.015em; color: var(--text-primary); }
.module-card__name .iq { color: var(--brand-cyan-glow); font-weight: 600; }
.module-card__tag { margin: 0 0 18px; font-size: 0.875rem; line-height: 1.5; color: var(--text-muted); flex: 1; }
.module-card__cta {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 10px 16px; border-radius: 8px;
	background: rgba(32, 227, 255, 0.08);
	border: 1px solid rgba(32, 227, 255, 0.30);
	color: var(--brand-cyan-glow);
	font-weight: 600; font-size: 0.8125rem; text-decoration: none;
	transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
	align-self: flex-start;
}
.module-card__cta:hover {
	background: var(--brand-cyan-glow);
	border-color: var(--brand-cyan-glow);
	color: #07162B;
}
[data-theme="light"] .module-card { background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55)); border-color: rgba(11, 42, 74, 0.10); }
[data-theme="light"] .module-card:hover { border-color: rgba(45, 125, 255, 0.40); }
[data-theme="light"] .module-card::before {
	background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(45, 125, 255, 0.08), transparent 60%);
}
[data-theme="light"] .module-card__cat { color: var(--brand-electric-azure); }
[data-theme="light"] .module-card__cat--enablement { color: #7B5CE0; }
[data-theme="light"] .module-card__cat--optimization { color: #1F9C5C; }
[data-theme="light"] .module-card__name .iq { color: var(--brand-electric-azure); }
[data-theme="light"] .module-card__cta {
	background: rgba(45, 125, 255, 0.08);
	border-color: rgba(45, 125, 255, 0.30);
	color: var(--brand-electric-azure);
}
[data-theme="light"] .module-card__cta:hover {
	background: var(--brand-electric-azure);
	border-color: var(--brand-electric-azure);
	color: #FFFFFF;
}
@media (max-width: 900px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .modules-grid { grid-template-columns: 1fr; } }

/* =================================================================
   Final CTA band
================================================================= */
.cta-band {
	position: relative;
	background: linear-gradient(135deg, rgba(45, 125, 255, 0.18), rgba(32, 227, 255, 0.08));
	border: 1px solid rgba(32, 227, 255, 0.30);
	border-radius: 22px;
	padding: clamp(40px, 6vw, 72px);
	text-align: center;
	overflow: hidden;
	box-shadow: 0 28px 80px rgba(7, 22, 43, 0.5);
}
.cta-band::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 20% 0%, rgba(32, 227, 255, 0.18), transparent 60%),
		radial-gradient(ellipse 60% 80% at 80% 100%, rgba(45, 125, 255, 0.18), transparent 60%);
	pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
	margin: 0 0 14px;
	font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
	line-height: 1.15; font-weight: 600; letter-spacing: -0.02em;
	color: var(--text-primary);
}
.cta-band p { margin: 0 auto 28px; max-width: 56ch; font-size: 1.0625rem; line-height: 1.6; color: var(--text-secondary); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
[data-theme="light"] .cta-band {
	background: linear-gradient(135deg, rgba(45, 125, 255, 0.12), rgba(32, 227, 255, 0.06));
	border-color: rgba(45, 125, 255, 0.28);
	box-shadow: 0 28px 80px rgba(11, 42, 74, 0.15);
}
[data-theme="light"] .cta-band::before {
	background:
		radial-gradient(ellipse 60% 80% at 20% 0%, rgba(32, 227, 255, 0.18), transparent 60%),
		radial-gradient(ellipse 60% 80% at 80% 100%, rgba(45, 125, 255, 0.20), transparent 60%);
}
